:root {
  --bg: #0E1416;
  --bg-soft: #161D20;
  --cream: #F4EFE7;
  --cream-soft: #FBF7F0;
  --paper: #F7F2EA;
  --ink: #1A2024;
  --gold: #C9A452;
  --gold-soft: #DBC078;
  --muted: rgba(26, 32, 36, 0.55);
  --line: rgba(201, 164, 82, 0.20);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-eyebrow.centered { text-align: center; }
.section-eyebrow.light { color: var(--gold-soft); }

.display {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.display.centered { text-align: center; }
.display.light { color: var(--cream); }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(14, 20, 22, 0.88);
  backdrop-filter: blur(12px);
  padding: 18px 0;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  gap: 32px;
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.005em;
  color: var(--cream);
  flex-shrink: 0;
}
.brand-1 { color: var(--cream); }
.brand-2 { color: var(--gold); font-style: italic; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-links a {
  color: rgba(244, 239, 231, 0.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold-soft); }

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(14,20,22,0.65) 0%, rgba(14,20,22,0.45) 35%, rgba(14,20,22,0.10) 70%, rgba(14,20,22,0.00) 100%),
    linear-gradient(to bottom, rgba(14,20,22,0.30) 0%, rgba(14,20,22,0.10) 30%, rgba(14,20,22,0.15) 60%, rgba(14,20,22,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}
.hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(68px, 9.4vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,0.75), 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  max-width: 560px;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0.92;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
}
.hero-price {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(42px, 4.6vw, 64px);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 3px 28px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.6);
}
.hero-price .dollar {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 3px;
  position: relative;
  top: 0.08em;
}
.hero-discover {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.85;
}
.discover-line {
  width: 1px;
  height: 32px;
  background: rgba(244,239,231,0.6);
  animation: drip 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.15); opacity: 1; }
}

/* ─────────────── OVERVIEW ─────────────── */
.overview {
  padding: 160px 0 140px;
  background: var(--paper);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: start;
}
.overview-copy p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--ink);
}
/* First paragraph pull-quote treatment */
.overview-lede {
  font-size: 19px !important;
  line-height: 1.6 !important;
  color: var(--ink) !important;
  margin-bottom: 28px !important;
}
.overview-lede em {
  font-style: italic;
  color: var(--gold);
}
.overview-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row:last-child { border-bottom: none; }
.stat-num {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
}
.stat-lbl {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────── GALLERY ─────────────── */
.gallery {
  padding: 140px 0 0;
  background: var(--cream-soft);
}
.gallery-header { margin-bottom: 60px; }
.gallery-title { margin-bottom: 20px; }
.gallery-intro {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
}

/* Gallery category tiles — three clickable cards, each opens the
   lightbox scoped to that category's photos */
.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 100px;
}
.gallery-tile {
  cursor: pointer;
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.25s ease;
}
.gallery-tile:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.22); }
.gallery-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery-tile-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-tile:hover .gallery-tile-img img { transform: scale(1.05); }
.gallery-tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--bg);
}
.gallery-tile-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream);
}
.gallery-tile-count {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}

/* ─────────────── FLOOR PLANS ─────────────── */
.floorplans {
  padding: 140px 0;
  background: var(--paper);
}
.floorplans-intro {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-top: 20px;
}
.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.floorplan-cell {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.floorplan-cell:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.floorplan-cell img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
}
.floorplan-label {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ─────────────── VIRTUAL WALKTHROUGH ─────────────── */
.walkthrough {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.walkthrough-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
.walkthrough-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(14,20,22,0.88) 0%, rgba(14,20,22,0.70) 45%, rgba(14,20,22,0.30) 100%),
    linear-gradient(to bottom, rgba(14,20,22,0.20) 0%, rgba(14,20,22,0.55) 100%);
}
.walkthrough-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 1320px;
}
.walkthrough-lede {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(244,239,231,0.88);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 44px;
}
.walkthrough-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.walkthrough-cta:hover { background: var(--gold-soft); }
.walkthrough-cta::after {
  content: '→';
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.2s;
}
.walkthrough-cta:hover::after { transform: translateX(4px); }

/* ─────────────── LIGHTBOX ─────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,14,16,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lb-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px 100px 16px;
}
.lb-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Close button */
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 5;
  border-radius: 0;
}
.lb-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Prev / Next arrows */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 5;
}
.lb-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* Meta bar */
.lb-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}
.lb-section-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.lb-counter {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: rgba(244,239,231,0.55);
}

/* ─────────────── THE ESTATE ─────────────── */
.estate {
  padding: 160px 0;
  background: var(--paper);
}
.estate-hero {
  width: 100%;
  height: 56vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
  margin-bottom: 100px;
}
.estate-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.estate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.estate-card {
  background: var(--cream-soft);
  border-top: 2px solid var(--gold);
  overflow: hidden;
}
.estate-card-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.estate-card-body {
  padding: 48px 44px;
}
.estate-card-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.estate-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.estate-card-stats {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.estate-card p {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}

/* ─────────────── AMENITIES ─────────────── */
.amenities {
  padding: 160px 0;
  background: var(--bg);
  color: var(--cream);
}
.amenities .section-eyebrow { color: var(--gold-soft); }
.amenities .display { color: var(--cream); }
.amenities .display em { color: var(--gold-soft); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-top: 60px;
}
.amenity {
  padding-top: 22px;
  border-top: 1px solid rgba(201,164,82,0.4);
}
.amenity-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.amenity h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--cream);
}
.amenity p {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244,239,231,0.75);
}

/* ─────────────── WATERFRONT ─────────────── */
.waterfront-image {
  height: 100vh;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}
.waterfront-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,20,22,0.85) 0%, rgba(14,20,22,0.55) 60%, rgba(14,20,22,0.30) 100%);
}
.waterfront-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 1320px;
}
.waterfront-lede {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 48px;
  opacity: 0.92;
}
.waterfront-stats {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 56px;
  border-top: 1px solid rgba(201,164,82,0.35);
  padding-top: 32px;
}
.wf-num {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold-soft);
  line-height: 1;
}
.wf-lbl {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.65);
  margin-top: 8px;
}

/* ─────────────── INQUIRE ─────────────── */
.inquire {
  padding: 160px 0;
  background: var(--paper);
}
.inquire-lede {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-top: 20px;
}
.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.agent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.agent-photo {
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.agent-name {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.agent-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.agent-brokerage {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 22px;
}
.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-contact a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  display: inline-block;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.agent-contact a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.contact-form {
  display: grid;
  gap: 22px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.contact-form input,
.contact-form textarea {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: white;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button {
  padding: 18px;
  background: var(--ink);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--gold); color: var(--ink); }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--bg);
  color: rgba(244,239,231,0.55);
  padding: 36px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.footer-text {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.10em;
}
.footer-top {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,239,231,0.25);
  color: var(--cream);
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-top:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 24px; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-links {
    list-style: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 84vw);
    height: 100vh;
    margin: 0;
    padding: 96px 32px 32px;
    background: rgba(14, 20, 22, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(244,239,231,0.08); }
  .nav-links a { display: block; padding: 16px 0; font-size: 14px; }
  .nav-cta { padding: 10px 18px; font-size: 10px; }
  .hero-content { padding: 100px 28px 80px; }
  .overview { padding: 100px 0 80px; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .estate { padding: 100px 0; }
  .estate-hero { height: 38vh; min-height: 260px; margin-bottom: 60px; }
  .estate-grid { grid-template-columns: 1fr; gap: 32px; }
  .estate-card-body { padding: 36px 28px; }
  .estate-card-img { height: 220px; }
  .amenities { padding: 100px 0; }
  .amenities-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Gallery tiles — stack vertically on tablet */
  .gallery-tiles { grid-template-columns: 1fr; gap: 16px; padding-bottom: 60px; }
  /* Floor plans — stack vertically on tablet */
  .floorplans { padding: 100px 0; }
  .floorplans-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Walkthrough */
  .walkthrough { height: 70vh; min-height: 480px; }
  .walkthrough-lede { font-size: 15px; max-width: 100%; }
  /* Lightbox */
  .lb-stage { padding: 48px 56px 12px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  /* Waterfront */
  .waterfront-image { background-attachment: scroll; background-position: center 35%; height: 90vh; min-height: 600px; }
  .hero-bg { background-position: center 45%; }
  .waterfront-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* Inquire / Footer */
  .inquire { padding: 100px 0; }
  .inquire-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-text { font-size: 10px; }
}

@media (max-width: 540px) {
  .lb-stage { padding: 48px 16px 12px; }
  .walkthrough-content .display { font-size: clamp(32px, 9vw, 48px); }
}
