:root {
  --ink: #17211d;
  --muted: #5e6864;
  --paper: #fbfbf6;
  --soft: #edf2ed;
  --line: #dbe3dc;
  --green: #176b53;
  --green-dark: #0f4f3d;
  --gold: #c89b3c;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(251, 251, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 79, 61, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  padding: 128px clamp(18px, 4vw, 56px) 28px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-color: #24342e;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 18, 16, 0.62) 0%, rgba(11, 18, 16, 0.34) 52%, rgba(11, 18, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(11, 18, 16, 0.56) 0%, rgba(11, 18, 16, 0.03) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(200, 155, 60, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.launch-note svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.btn {
  padding: 0 18px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 79, 61, 0.28);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.hero-info {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1080px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-info div {
  min-height: 104px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-info span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.section,
.section-band,
.cta-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.promo-strip {
  padding: 24px 0;
  background: var(--green);
  color: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.promo-grid div {
  min-height: 150px;
  padding: 22px;
  background: rgba(15, 79, 61, 0.78);
}

.promo-grid svg {
  margin-bottom: 16px;
  color: var(--gold);
}

.promo-grid strong,
.promo-grid span {
  display: block;
}

.promo-grid strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.promo-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.section-muted,
.section-band {
  background: var(--soft);
}

.intro-grid,
.split,
.location-layout,
.cta-inner,
.parking-feature,
.planning-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro-grid {
  grid-template-columns: 0.85fr 1fr;
}

.intro-grid p:last-child {
  margin: 0;
  font-size: 1.08rem;
}

.split,
.location-layout,
.parking-feature,
.planning-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-copy {
  max-width: 620px;
}

.section-copy p:last-child,
.parking-feature p,
.cta-inner p {
  margin-bottom: 0;
}

.photo-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 107, 83, 0.14), rgba(200, 155, 60, 0.14)),
    var(--line);
  box-shadow: var(--shadow);
}

.photo-panel.wide {
  min-height: 360px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(14, 44, 36, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(13, 38, 33, 0.22);
  backdrop-filter: blur(10px);
}

.photo-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.info-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 8px;
  background: #e7f3ee;
  color: var(--green);
}

.feature-grid svg {
  flex: 0 0 auto;
  color: var(--green);
}

.info-card p {
  margin-bottom: 0;
}

.parking-feature {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.garden-feature {
  align-items: center;
}

.planning-preview {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
}

.planning-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.planning-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04));
}

.planning-preview span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-weight: 900;
}

.planning-preview:hover img {
  transform: scale(1.03);
}

.plan-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.plan-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.plan-points svg {
  flex: 0 0 auto;
  color: var(--green);
}

.distance-list {
  display: grid;
  gap: 12px;
}

.distance-list div {
  display: grid;
  grid-template-columns: 44px 128px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #f4faf6 100%);
}

.distance-list svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 8px;
  background: #e7f3ee;
  color: var(--green);
}

.distance-list span {
  color: var(--green);
  font-size: 1.22rem;
  font-weight: 900;
}

.distance-list p {
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #dfe7e0;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(23, 33, 29, 0.08);
}

.gallery-item.primary {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.06));
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-weight: 900;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-section {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  grid-template-columns: 1fr auto;
}

.cta-inner h2 {
  max-width: 760px;
}

.cta-inner p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-handle {
  margin-top: 12px;
}

.contact-handle strong {
  color: var(--white);
}

.site-footer {
  padding: 28px 0;
  background: #101713;
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 17px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 79, 61, 0.32);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: var(--green-dark);
}

.lightbox {
  width: min(960px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ink);
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero-info,
  .intro-grid,
  .split,
  .location-layout,
  .planning-layout,
  .parking-feature,
  .cta-inner,
  .promo-grid,
  .faq-layout,
  .cards {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    min-height: 420px;
  }

  .planning-preview {
    min-height: 360px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.primary {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .hero-logo {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }

  .nav-links {
    top: 66px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 84vh;
    padding: 104px 18px 18px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-info {
    margin-top: 42px;
  }

  .hero-info div {
    min-height: 88px;
    padding: 18px;
  }

  .hero-badges span {
    flex: 1 1 100%;
  }

  .feature-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.primary {
    grid-column: auto;
  }

  .distance-list div {
    grid-template-columns: 38px 1fr;
    gap: 4px;
  }

  .distance-list p {
    grid-column: 2;
  }

  .photo-panel,
  .photo-panel.wide,
  .planning-preview {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
  }
}
