:root {
  --cream: #f5efe7;
  --paper: #fbfaf6;
  --sand: #ded2c1;
  --forest: #13331f;
  --forest-2: #07150d;
  --sage: #799287;
  --deep-teal: #1f4a49;
  --footer-teal: #173534;
  --gold: #c49a5a;
  --ink: #25211b;
  --muted: #7a746b;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(251, 250, 246, 0.93);
  box-shadow: 0 16px 40px rgba(19, 51, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 98px;
  height: 48px;
  border: 1px solid currentColor;
  font-family: var(--serif);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.brand span {
  font-size: 15px;
}

.brand strong {
  font-size: 18px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle svg,
.btn svg,
.home-card svg,
.scroll-cue svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  text-align: center;
}

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

.hero-bg {
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--hero-shift, 0));
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 21, 13, 0.24), rgba(7, 21, 13, 0.42) 46%, rgba(7, 21, 13, 0.68)),
    radial-gradient(circle at 50% 18%, rgba(196, 154, 90, 0.22), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.feature h2,
.statement h2,
.stats h2,
.masterplan h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(54px, 9vw, 128px);
}

.hero-content > p:last-of-type {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  transform: translateX(-50%);
}

.section {
  padding: clamp(82px, 12vw, 150px) clamp(20px, 6vw, 92px);
}

.intro {
  padding-bottom: 0;
  background: var(--paper);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 450px);
  gap: clamp(28px, 8vw, 110px);
  align-items: end;
  max-width: 1160px;
  margin: 0 auto 76px;
}

.intro-copy h2 {
  font-size: clamp(36px, 5vw, 72px);
}

.intro-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.intro-image {
  width: min(1320px, calc(100% + 40px));
  margin: 0 auto;
}

.intro-image img {
  height: clamp(360px, 56vw, 720px);
  object-fit: cover;
}

.craft {
  display: grid;
  gap: clamp(76px, 12vw, 150px);
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.feature {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(280px, 420px);
  gap: clamp(34px, 8vw, 130px);
  align-items: center;
  justify-content: center;
}

.feature-reverse {
  grid-template-columns: minmax(280px, 420px) minmax(280px, 470px);
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-copy span {
  display: block;
  margin-bottom: 24px;
  color: rgba(196, 154, 90, 0.34);
  font-family: var(--serif);
  font-size: 82px;
  line-height: 0.8;
}

.feature h2 {
  color: var(--gold);
  font-size: clamp(34px, 4vw, 58px);
}

.feature-copy p:last-child {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
}

.feature-image {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(37, 33, 27, 0.12);
}

.feature-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature:hover .feature-image img {
  transform: scale(1.045);
}

.radius-top {
  border-radius: 92px 0 92px 0;
}

.radius-bottom {
  border-radius: 0 92px 0 92px;
}

.statement {
  display: grid;
  min-height: 520px;
  place-items: center;
  text-align: center;
}

.statement-line {
  width: 1px;
  height: 128px;
  margin-bottom: 42px;
  background: rgba(196, 154, 90, 0.28);
}

.statement h2 {
  width: min(720px, 100%);
  color: var(--gold);
  font-size: clamp(40px, 6vw, 84px);
}

.residence-hero {
  position: relative;
  overflow: hidden;
}

.residence-hero img {
  height: clamp(420px, 62vw, 780px);
  object-fit: cover;
}

.residence-caption {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: clamp(24px, 7vw, 94px);
  display: grid;
  min-width: min(360px, calc(100% - 40px));
  padding: 34px;
  color: var(--white);
  background: rgba(19, 51, 31, 0.78);
  backdrop-filter: blur(18px);
}

.residence-caption span,
.residence-caption small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.residence-caption strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 104px;
  line-height: 0.8;
}

.stats {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(360px, 760px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--sand);
}

.stats h2 {
  color: var(--forest);
  font-size: clamp(36px, 5vw, 68px);
}

.stats-copy p:last-child {
  color: #5f554a;
}

.floor-plan {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: center;
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(18px, 3vw, 34px);
  background: var(--paper);
  text-align: center;
}

.plan-specs {
  position: absolute;
  right: 50%;
  bottom: 6px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 14px;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 10px 14px;
  border: 1px solid rgba(19, 51, 31, 0.12);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.9);
  box-shadow: 0 14px 34px rgba(7, 21, 13, 0.12);
  text-align: center;
  transform: translateX(50%);
  backdrop-filter: blur(12px);
}

.plan-specs div {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.plan-specs span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-specs strong {
  display: block;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.floor-board {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.floor-board-feature {
  width: min(840px, 100%);
  justify-self: end;
  transform: translateX(clamp(18px, 4vw, 64px));
}

.floor-image {
  position: relative;
  min-width: 0;
  max-height: 420px;
  padding: 0 0 34px;
  overflow: visible;
  background: transparent;
}

.floor-image img {
  width: min(620px, 100%);
  max-height: 390px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.12));
}

.floor-board-feature .floor-image {
  max-height: 560px;
  padding-bottom: 42px;
}

.floor-board-feature .floor-image img {
  width: min(820px, 100%);
  max-height: 520px;
}

.floor-board-feature .plan-specs {
  bottom: 4px;
  padding: 12px 18px;
}

.floor-board-feature .plan-specs strong {
  font-size: 12px;
}

.plan-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 5px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(31, 74, 73, 0.88);
  box-shadow: 0 14px 28px rgba(31, 74, 73, 0.2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.plan-pin::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.pin-living { top: 68%; left: 39%; }
.pin-kitchen { top: 24%; left: 42%; }
.pin-master { top: 31%; left: 79%; }
.pin-bedroom { top: 57%; left: 79%; }
.pin-bath { top: 26%; left: 63%; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(19, 51, 31, 0.16);
}

.stat-grid div {
  min-height: 170px;
  padding: 28px 20px;
  background: rgba(251, 250, 246, 0.38);
}

.stat-grid strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 86px);
  line-height: 0.9;
}

.stat-grid span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.masterplan {
  position: relative;
  display: grid;
  min-height: 790px;
  overflow: hidden;
  place-items: center;
  padding: clamp(80px, 12vw, 150px) 20px;
  color: var(--white);
  background: var(--forest-2);
}

.masterplan-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: grayscale(1) contrast(1.1);
}

.masterplan-bg img {
  height: 100%;
  object-fit: cover;
}

.masterplan-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(320px, 600px);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
  width: min(1180px, 100%);
}

.masterplan h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 76px);
}

.plan-map {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(196, 154, 90, 0.42);
  background:
    linear-gradient(125deg, rgba(196, 154, 90, 0.18), transparent 46%),
    radial-gradient(circle at 75% 25%, rgba(121, 146, 135, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.plot,
.trail {
  position: absolute;
}

.plot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 46px;
  place-items: center;
  color: var(--forest-2);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.plot-a { top: 21%; left: 18%; }
.plot-b { top: 33%; left: 36%; }
.plot-c { top: 45%; left: 54%; }
.plot-d { top: 58%; left: 72%; }

.trail {
  top: 48%;
  left: 13%;
  width: 76%;
  height: 2px;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(18deg);
}

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

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 76px);
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1080px, 100%);
  margin: 0 auto;
  background: rgba(196, 154, 90, 0.24);
}

.home-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--forest-2);
}

.home-card h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.home-card p {
  margin: 6px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.home-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.home-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(196, 154, 90, 0.5);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  padding: clamp(80px, 12vw, 150px) 20px;
  background: #030604;
}

.video-card {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
}

.video-card img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  opacity: 0.86;
}

.video-card button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: #d83a2e;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-card button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.video-card div {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.video-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-card strong {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.85;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(300px, 560px);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(121, 146, 135, 0.18), transparent 42%),
    var(--deep-teal);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 76px);
}

.contact-info a {
  display: block;
  width: max-content;
  color: var(--white);
}

.contact-info strong {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--footer-teal);
  font-size: 12px;
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--forest);
    background: rgba(251, 250, 246, 0.96);
    box-shadow: 0 24px 60px rgba(19, 51, 31, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .intro-copy,
  .feature,
  .feature-reverse,
  .stats,
  .floor-plan,
  .masterplan-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .floor-board {
    overflow: visible;
  }

  .floor-board-feature {
    justify-self: center;
    transform: none;
  }

  .floor-image {
    min-width: 0;
  }

  .feature-reverse .feature-copy {
    order: 0;
  }

  .home-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }

  .brand {
    width: 88px;
    height: 42px;
  }

  .site-nav {
    top: 64px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-actions,
  .footer,
  .video-card div {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .radius-top,
  .radius-bottom {
    border-radius: 56px 0 56px 0;
  }

  .stat-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .floor-image {
    min-width: 0;
  }

  .plan-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 50%;
    bottom: 10px;
    width: min(310px, calc(100% - 20px));
    border-radius: 18px;
  }

  .residence-caption {
    right: 20px;
    left: 20px;
    padding: 26px;
  }

  .residence-caption strong {
    font-size: 82px;
  }

  .plan-map {
    min-height: 320px;
  }

  .plot {
    width: 88px;
    height: 40px;
    font-size: 10px;
  }
}
