:root {
  --ink: #17231f;
  --muted: #64746d;
  --paper: #fbfaf4;
  --soft: #eef1e7;
  --line: rgba(23, 35, 31, 0.14);
  --forest: #21493d;
  --river: #2f6f75;
  --clay: #a65f3d;
  --gold: #c99a4a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 29, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(20, 28, 24, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-wrap {
  display: grid;
  width: 72px;
  height: 54px;
  place-items: center;
  border-radius: 6px;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(8, 18, 15, 0.18));
}

.site-header.is-scrolled .brand-logo-wrap,
.site-header.is-open .brand-logo-wrap {
  background: transparent;
}

.brand-logo {
  width: 66px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

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

.nav a:not(.nav-cta) {
  opacity: 0.86;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
}

.nav-cta {
  background: var(--gold);
  color: #1d170d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
}

.hero-video,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  background: var(--forest);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 15, 0.86), rgba(8, 18, 15, 0.42) 58%, rgba(8, 18, 15, 0.16)),
    linear-gradient(0deg, rgba(8, 18, 15, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 60px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.video-toggle {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.button.primary {
  border: 0;
  background: var(--gold);
  color: #1f190d;
  cursor: pointer;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.hero-facts {
  margin: 46px 0 0;
}

.hero-facts div {
  min-width: 160px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.intro,
.section-heading,
.location,
.lots,
.contact-card,
.site-footer {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 82px);
}

.copy {
  color: var(--muted);
  font-size: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
}

.feature-image {
  min-height: 520px;
  overflow: hidden;
}

.feature-copy {
  max-width: 620px;
  padding-right: clamp(0px, 3vw, 44px);
}

.feature-copy p,
.location-copy p,
.lots-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.status-grid,
.leisure-grid,
.gallery-grid,
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 36px auto 0;
}

.status-card,
.leisure-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 35, 31, 0.06);
}

.status-card {
  padding: 28px;
  border-top: 5px solid var(--forest);
}

.status-card.progress {
  border-top-color: var(--river);
}

.status-card.planned {
  border-top-color: var(--clay);
}

.status-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.status-card li + li {
  margin-top: 8px;
}

.works {
  background: #f4f0e6;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.works-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  align-items: stretch;
}

.works-grid figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
  box-shadow: 0 18px 55px rgba(23, 35, 31, 0.12);
}

.works-grid .wide {
  grid-row: span 2;
  min-height: 620px;
}

.works-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(251, 250, 244, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.videos .section-heading h2 {
  color: var(--white);
}

.videos .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 36px auto 0;
}

.video-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
}

.video-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050807;
  object-fit: cover;
}

.video-card div {
  padding: 8px 6px 10px;
}

.video-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card h3 {
  color: var(--white);
}

.video-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.leisure {
  background: var(--forest);
  color: var(--white);
}

.leisure .section-heading {
  color: var(--white);
}

.leisure-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.leisure-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.leisure-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.location,
.lots {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  font-size: 14px;
}

.map-panel {
  height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery {
  background: var(--paper);
}

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 900;
}

.lots {
  align-items: start;
}

.lot-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 48%, rgba(47, 111, 117, 0.18) 48% 52%, transparent 52%),
    var(--soft);
  box-shadow: var(--shadow);
}

.lot-board span {
  aspect-ratio: 1.35;
  border: 1px solid rgba(33, 73, 61, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.lot-board span:nth-child(4n) {
  background: rgba(201, 154, 74, 0.22);
}

.contact {
  background: var(--ink);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin-bottom: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #25d366;
  color: #06240f;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 13px 12px;
  }

  .split,
  .feature-band,
  .location,
  .lots,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 360px;
  }

  .feature-copy {
    padding: 0 clamp(18px, 4vw, 56px) clamp(56px, 7vw, 90px);
  }

  .status-grid,
  .leisure-grid,
  .gallery-grid,
  .works-grid,
  .video-grid,
  .video-card.featured {
    grid-template-columns: 1fr;
  }

  .video-card.featured {
    grid-column: auto;
  }

  .works-grid .wide {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo-wrap {
    width: 58px;
    height: 44px;
  }

  .brand-logo {
    width: 52px;
    max-height: 40px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  .hero-facts div {
    width: 100%;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .map-panel {
    height: 360px;
  }

  .lot-board {
    grid-template-columns: repeat(3, 1fr);
  }
}
