﻿
:root {
  --amber:   #8a6a2e;
  --amber-2: #2d261c;
  --amber-3: #a07c38;
  --leaf:    #c9a662;
  --gold:    #c9a662;
  --gold-2:  #a8864c;
  --cream:   #f6f0e3;
  --cream-2: #efe3c9;
  --ink:     #27231e;
  --muted:   #756d61;
  --line:    #e3d6bb;
  --white:   #ffffff;
  --shadow:  0 32px 96px rgba(45, 38, 28, 0.16);
  --shadow-sm: 0 8px 32px rgba(45, 38, 28, 0.09);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.is-solid {
  padding: 14px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(45, 38, 28, 0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(18, 12, 5, 0.3);
  backdrop-filter: blur(20px);
}

.site-header.is-solid nav a { opacity: 0.78; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a, .header-cta, .site-footer a { text-decoration: none; }

nav a { opacity: 0.8; transition: opacity 0.2s; }
nav a:hover { opacity: 1; }

.header-cta {
  border: 1px solid currentColor;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.site-header.is-solid .header-cta:hover {
  background: var(--white);
  color: var(--amber);
  border-color: var(--white);
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--amber-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.webp'); /* hero - preloaded */
  background-position: center 60%;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(25, 18, 8, 0.72) 0%, rgba(25, 18, 8, 0.36) 50%, rgba(25, 18, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(25, 18, 8, 0.45) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 420px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0 60px;
}

.hero-copy { display: flex; flex-direction: column; }

.project-logo {
  width: min(340px, 80vw);
  margin-bottom: 36px;
  mix-blend-mode: multiply;
  filter: contrast(1.8) brightness(0.85);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; max-width: 100%; }

.hero-copy, .section-grid > *, .legacy-copy, .location-copy, .about > *, .final-cta > * { min-width: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.hero-actions, .button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.button, .lead-form button, .sticky-lead button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button:hover, .lead-form button:hover, .sticky-lead button:hover { transform: translateY(-2px); }

.primary { background: var(--amber); color: var(--white); border-color: var(--amber); }
.primary:hover { background: var(--amber-3); border-color: var(--amber-3); }

.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.8); }

.ghost.dark { border-color: var(--amber); color: var(--amber); background: transparent; }
.ghost.dark:hover { background: var(--amber); color: var(--white); }

.small { min-height: 38px; padding: 8px 16px; color: var(--amber); background: var(--white); border-color: var(--line); }

.full { width: 100%; }

/* â”€â”€â”€ HERO FACTS â”€â”€â”€ */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1px;
  margin: 36px 0 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts div {
  flex: 1;
  min-width: 130px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-facts div:last-child { border-right: 0; }

.hero-facts dt {
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* â”€â”€â”€ LEAD FORM â”€â”€â”€ */
.lead-form { display: grid; gap: 16px; }

.hero-form {
  padding: 36px 32px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.form-kicker {
  margin-bottom: -4px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-form h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
}

.lead-form label { display: grid; gap: 8px; }

.lead-form span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(138, 106, 46, 0.1);
}

input::placeholder { color: var(--muted); opacity: 0.55; }

/* â”€â”€â”€ PHONE PREFIX â”€â”€â”€ */
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-wrap:focus-within {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(138, 106, 46, 0.1);
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid var(--line);
  background: var(--cream-2);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.phone-wrap input {
  border: 0;
  background: transparent;
  box-shadow: none;
  flex: 1;
  min-width: 0;
}

.phone-wrap input:focus {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.inline-form .phone-wrap {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.inline-form .phone-prefix {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
}

.inline-form .phone-wrap input {
  color: var(--white);
  background: transparent;
}

.inline-form .phone-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 98, 0.15);
}

/* â”€â”€â”€ SECTIONS â”€â”€â”€ */
section { padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px); }

.band { background: var(--cream); }

.section-grid, .legacy, .location, .about, .final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.section-grid, .section-head, .legacy, .amenities, .location, .tour, .about, .gallery, .final-cta, .site-footer {
  width: min(1240px, 100%);
  margin-inline: auto;
}

/* â”€â”€â”€ INTRO â”€â”€â”€ */
.intro { padding-block: 56px; }

.intro p:last-child, .section-head p, .location-copy p, .about p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.section-head { margin-bottom: 40px; }
.section-head.compact { max-width: 640px; }

/* â”€â”€â”€ PLAN â”€â”€â”€ */
.plots {
  padding-inline: 0;
  padding-bottom: 0;
}

.plots .section-head {
  padding-inline: clamp(20px, 5vw, 64px);
}

.plan-frame {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-frame img { width: 100%; display: block; }
.plan-frame img[data-open-plan],
.plan-frame img[data-open-legacy],
.map-frame img[data-open-map] { cursor: zoom-in; }

figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 13px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

/* â”€â”€â”€ LEGACY â”€â”€â”€ */
.tick-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--muted);
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  content: “✓”;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.2;
}

.image-stack { display: grid; }

.image-stack img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* â”€â”€â”€ AMENITIES â”€â”€â”€ */
/* â”€â”€â”€ AMENITY SLIDER â”€â”€â”€ */
.amenity-slider-outer {
  position: relative;
  width: 100%;
}
.amenity-slider-outer::before,
.amenity-slider-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.amenity-slider-outer::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.amenity-slider-outer::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.amenity-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--amber);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background 0.18s, transform 0.18s;
}
.amenity-nav-btn:hover { background: var(--amber-2); transform: translateY(-50%) scale(1.08); }
.amenity-prev { left: -22px; }
.amenity-next { right: -22px; }
.amenity-nav-btn:disabled { opacity: 0.3; cursor: default; }

.amenity-slider-wrap {
  overflow: scroll;
  scrollbar-width: none;
  width: 100%;
  position: relative;
  user-select: none;
}
.amenity-slider-wrap::-webkit-scrollbar { display: none; }

.amenity-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.amenity-card {
  flex: 0 0 220px;
  min-height: 200px;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { background: var(--cream); box-shadow: var(--shadow-sm); }
.amenity-card[data-amenity-key] { cursor: pointer; }
.amenity-card[data-amenity-key]:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* â”€â”€â”€ AMENITY DETAIL MODAL â”€â”€â”€ */
@keyframes amenity-modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.amenity-detail-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(520px, calc(100vw - 24px));
  max-height: calc(100dvh - 40px);
  border: none;
  border-radius: 24px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.32), 0 4px 16px rgba(0,0,0,0.12);
}
.amenity-detail-modal[open] {
  animation: amenity-modal-in 0.30s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.amenity-detail-modal::backdrop {
  background: rgba(12,8,2,0.82);
  backdrop-filter: blur(6px);
}

/* â”€â”€ hero photo â”€â”€ */
.amenity-detail-hero {
  position: relative;
  width: 100%;
  height: 195px;
  flex-shrink: 0;
  overflow: hidden;
}
.amenity-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenity-detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,0,0.08) 0%,
    rgba(10,6,0,0.50) 100%
  );
}

/* â”€â”€ frosted close button inside hero â”€â”€ */
.amenity-detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.18s;
  z-index: 2;
}
.amenity-detail-close:hover { background: var(--amber); }

/* â”€â”€ body panel â”€â”€ */
.amenity-detail-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 28px 28px;
  overflow-y: auto;
  max-height: calc(100dvh - 40px - 195px);
}

/* â”€â”€ icon badge in body â”€â”€ */
.amenity-detail-icon-badge {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  border: 2.5px solid var(--amber);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.amenity-detail-icon-badge img { width: 50px; height: 50px; object-fit: contain; }

/* â”€â”€ title â”€â”€ */
.amenity-detail-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* â”€â”€ amber accent rule â”€â”€ */
.amenity-detail-divider {
  width: 32px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
  margin: 10px 0 12px;
  flex-shrink: 0;
}

/* â”€â”€ description â”€â”€ */
.amenity-detail-desc {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.72;
  margin: 0;
  max-width: 400px;
}

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.amenity-icon img { width: 88px; height: 88px; object-fit: contain; display: block; }

.amenity-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.amenity-card p  { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 0; }

/* â”€â”€â”€ LOCATION â”€â”€â”€ */
.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}

.time-grid div {
  padding: 22px 20px;
  background: var(--white);
}

.time-grid strong {
  display: block;
  color: var(--amber);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.time-grid span, .stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame img { width: 100%; height: 540px; object-fit: cover; }

/* â”€â”€â”€ TOUR â”€â”€â”€ */
.video-panel {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--amber-2);
}

.video-panel img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.video-panel:hover img { transform: scale(1.04); opacity: 0.65; }

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(138, 106, 46, 0.82);
  padding: 18px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.play-button::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--gold);
}

.video-panel:hover .play-button { background: rgba(138, 106, 46, 0.95); }

.video-coming-soon {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-2);
  border: 1px solid var(--line);
}
.tour-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.tour-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vcs-inner {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px;
  max-width: 400px;
}

.vcs-inner svg {
  color: var(--gold);
  opacity: 0.6;
}

.vcs-inner p:last-child {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* â”€â”€â”€ SHORTS GRID â”€â”€â”€ */
.shorts {
  background: var(--ink);
  color: var(--white);
}

.shorts .section-head { margin-bottom: 40px; }
.shorts .eyebrow { color: var(--gold); }
.shorts h2 { color: var(--white); }

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1240px, 100%);
  margin-inline: auto;
}

.short-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--amber-2);
  border-radius: 4px;
  cursor: pointer;
}
.short-frame:hover .short-expand-btn { opacity: 1; }
.short-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}
.short-expand-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.28);
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.video-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-inner {
  position: relative;
  width: min(380px, calc(100vw - 32px));
}
.video-modal-frame {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 1;
}
.video-modal-close:hover { background: var(--amber); }

.short-frame.coming-soon {
  border: 1px solid rgba(255,255,255,0.08);
}

.short-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.3);
}

.short-placeholder svg { color: var(--gold); opacity: 0.5; }

.short-placeholder p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 820px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* â”€â”€â”€ ABOUT â”€â”€â”€ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.stats div {
  padding: 26px 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div:nth-child(2n) { border-right: 0; }
.stats div:last-child { grid-column: span 2; border-bottom: 0; border-right: 0; }

.approval-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 24px;
  width: fit-content;
}
.approval-badges img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.approval-badges .credai-logo {
  width: auto;
  height: 60px;
  border-left: 1px solid rgba(0,0,0,0.12);
  padding-left: 24px;
  margin-left: 4px;
}

.stats strong {
  display: block;
  color: var(--amber);
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

/* â”€â”€â”€ GALLERY â”€â”€â”€ */
.gallery-shell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-window {
  flex: 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.gallery-window img {
  width: 100%;
  height: min(66vh, 600px);
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.gallery-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--amber);
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  transition: background 0.2s, color 0.2s;
}

.gallery-arrow:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.gallery-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

/* â”€â”€â”€ FINAL CTA â”€â”€â”€ */
.final-cta {
  align-items: stretch;
  color: var(--white);
  background: var(--amber-2);
}

.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { margin-bottom: 0; }

.inline-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.inline-form span { color: rgba(255, 255, 255, 0.6); }
.inline-form input { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); color: var(--white); }
.inline-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.inline-form input:focus { background: rgba(255, 255, 255, 0.14); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 166, 98, 0.15); }

/* â”€â”€â”€ BROCHURE TAB â”€â”€â”€ */
.brochure-tab {
  position: fixed;
  z-index: 24;
  top: 50%;
  right: 0;
  padding: 14px 10px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: var(--white);
  background: var(--amber);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.brochure-tab:hover { background: var(--amber-3); }

/* â”€â”€â”€ WHATSAPP â”€â”€â”€ */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn,
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.call-btn {
  background: var(--amber);
  box-shadow: 0 8px 28px rgba(138, 106, 46, 0.4);
}
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(138, 106, 46, 0.55);
}

.whatsapp-btn svg,
.call-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .whatsapp-btn span, .call-btn span { display: none; }
  .whatsapp-btn, .call-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-actions {
    right: 16px;
    bottom: 80px;
  }
}

/* â”€â”€â”€ STICKY LEAD â”€â”€â”€ */
.sticky-lead {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 23;
  padding: 9px clamp(14px, 5vw, 64px);
  transform: translateY(110%);
  background: rgba(246, 240, 227, 0.97);
  box-shadow: 0 -1px 0 var(--line), 0 -16px 48px rgba(45, 38, 28, 0.1);
  transition: transform 0.3s ease;
  backdrop-filter: blur(16px);
}

.sticky-lead.is-visible { transform: translateY(0); }

.sticky-lead form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.sticky-lead input, .sticky-lead button { min-height: 44px; }
.sticky-lead button { border: 0; color: var(--white); background: var(--amber); padding: 0 24px; }

.sticky-mobile { display: none; gap: 10px; }
.sticky-mobile a {
  flex: 1;
  padding: 14px;
  color: var(--white);
  background: var(--amber);
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* â”€â”€â”€ MODALS â”€â”€â”€ */
.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: min(1140px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  padding: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal::backdrop { background: rgba(18, 12, 5, 0.72); backdrop-filter: blur(4px); }
.modal img { width: 100%; max-height: calc(100vh - 28px); object-fit: contain; }

.panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber-2);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s;
}

.panel-close:hover { background: var(--amber); }

.lead-modal {
  width: min(460px, calc(100vw - 28px));
  padding: 40px;
}

.lead-modal .panel-close { color: var(--ink); background: var(--cream); }
.lead-modal .panel-close:hover { background: var(--cream-2); }

.lightbox-nav {
  padding: 0;
  background: transparent;
  border: 0;
  max-width: 100vw;
  max-height: 100vh;
  overflow: visible;
}

.lightbox-nav::backdrop { background: rgba(0,0,0,0.92); backdrop-filter: blur(6px); }

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(0,0,0,0.75); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.gallery-zoom-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* â”€â”€â”€ TOAST â”€â”€â”€ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  z-index: 50;
  max-width: calc(100vw - 32px);
  padding: 14px 22px;
  transform: translate(-50%, 120px);
  color: var(--white);
  background: var(--amber-2);
  box-shadow: var(--shadow);
  font-size: 14px;
  transition: transform 0.28s ease;
}

.toast.is-visible { transform: translate(-50%, 0); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 40px clamp(20px, 5vw, 64px) 108px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.site-footer strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 8px; }
.site-footer p { max-width: 560px; margin-bottom: 0; line-height: 1.7; }

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
  align-self: start;
}

.site-footer a { transition: color 0.2s; }
.site-footer a:hover { color: var(--amber); }

/* â”€â”€â”€ SCROLL REVEAL â”€â”€â”€ */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].will-animate {
  opacity: 0;
  transform: translateY(32px);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€â”€ HAMBURGER â”€â”€â”€ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* â”€â”€â”€ MOBILE NAV â”€â”€â”€ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: var(--amber-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.mobile-nav nav a {
  display: block;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 16px 24px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav nav a:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--amber) !important;
  color: var(--white) !important;
  border-bottom: none !important;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1080px) {
}

@media (max-width: 820px) {
  /* â”€â”€ Header â”€â”€ */
  .site-header { padding: 12px 16px; }
  nav { display: none; }
  .header-cta { display: none; }
  .brand-logo { height: 40px; }
  .hamburger { display: flex; }

  /* â”€â”€ Hero â”€â”€ */
  .hero { min-height: 100svh; }
  .hero-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 40px;
    gap: 28px;
  }

  h1 { font-size: clamp(36px, 10vw, 54px); }
  h2 { font-size: clamp(28px, 8vw, 48px); }

  .project-logo { width: min(140px, 40vw); margin-bottom: 8px; }
  .hero-lede { font-size: 15px; }

  .hero-actions { margin-top: 20px; gap: 10px; }
  .hero-actions .button { flex: 1; min-width: 0; text-align: center; justify-content: center; }

  .hero-facts { gap: 1px; margin-top: 24px; }
  .hero-facts div { min-width: calc(50% - 1px); padding: 14px 16px; }
  .hero-facts dt { font-size: 26px; }

  .hero-form { padding: 22px 18px; }
  .hero-form h2 { font-size: clamp(22px, 6vw, 30px); }

  /* â”€â”€ Two-col â†’ single col â”€â”€ */
  .section-grid,
  .legacy,
  .location,
  .about,
  .final-cta { grid-template-columns: 1fr; gap: 28px; }

  /* â”€â”€ Sections padding â”€â”€ */
  section { padding: clamp(48px, 8vw, 80px) 18px; }
  .plots { padding-inline: 0; }
  .plots .section-head { padding-inline: 18px; }

  /* â”€â”€ Stats â”€â”€ */
  .stats { grid-template-columns: 1fr 1fr; }
  .stats div:last-child { grid-column: auto; }

  /* â”€â”€ Amenities / time â”€â”€ */
  .time-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Inline form â”€â”€ */
  .inline-form { grid-template-columns: 1fr; }

  /* â”€â”€ Gallery â”€â”€ */
  .gallery-shell { gap: 8px; }
  .gallery-arrow { width: 40px; height: 40px; font-size: 20px; }

  /* â”€â”€ Map / video â”€â”€ */
  .map-frame img { height: 300px; object-fit: cover; }
  .video-panel, .video-panel img { min-height: 260px; }

  /* â”€â”€ Image stack â”€â”€ */
  .image-stack img:last-child { width: 84%; margin-top: -40px; }

  /* â”€â”€ Footer â”€â”€ */
  figcaption, .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { gap: 20px; }
  .site-footer div:last-child { text-align: left; }

  /* â”€â”€ Sticky â”€â”€ */
  .brochure-tab { display: none; }
  .sticky-lead form { display: none; }
  .sticky-mobile { display: flex; }

  /* â”€â”€ Modals â”€â”€ */
  .lead-modal { padding: 24px 18px; max-width: calc(100vw - 32px); }
  dialog[open] { max-width: calc(100vw - 24px); }
}

@media (max-width: 520px) {
  /* â”€â”€ Layout width â”€â”€ */
  .hero-inner, .section-grid, .section-head, .plan-frame, .legacy,
  .amenities, .location, .tour, .about, .gallery, .final-cta, .site-footer {
    width: 100%;
  }

  .header-cta { display: none; }

  /* â”€â”€ Typography â”€â”€ */
  h1 { font-size: clamp(32px, 11vw, 44px); line-height: 1.08; }
  h2 { font-size: clamp(26px, 9vw, 38px); }

  /* â”€â”€ Hero â”€â”€ */
  .hero-inner { padding-top: 90px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts div { min-width: calc(50% - 1px); }
  .hero-facts dt { font-size: 22px; }

  /* â”€â”€ Stats grid 2 col on small phones â”€â”€ */
  .stats { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Amenities 2 col â”€â”€ */

  /* â”€â”€ Final CTA buttons stacked â”€â”€ */
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }

  /* â”€â”€ Modals centered on mobile â”€â”€ */
  .lead-modal { padding: 22px 16px; }
  dialog[open] { max-width: calc(100vw - 24px); margin: auto; border-radius: 12px; }

  /* â”€â”€ Float buttons tighter â”€â”€ */
  .float-actions { right: 12px; bottom: 70px; gap: 8px; }

  /* â”€â”€ Amenity detail modal â†’ centered on small screens â”€â”€ */
  .amenity-detail-modal {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin: auto;
    border-radius: 20px;
    max-height: 92dvh;
  }
  .amenity-detail-hero { height: 160px; }
  .amenity-detail-body {
    padding: 14px 20px 32px;
    max-height: calc(92dvh - 160px);
  }
  .amenity-detail-icon-badge {
    width: 64px; height: 64px;
    border-radius: 16px;
    margin-bottom: 12px;
  }
  .amenity-detail-icon-badge img { width: 44px; height: 44px; }
  .amenity-detail-title { font-size: 20px; }
  .amenity-detail-desc { font-size: 12px; line-height: 1.65; }
}

/* â”€â”€â”€ MOBILE OPTIMISATIONS â”€â”€â”€ */

@media (max-width: 820px) {
  /* Amenity slider — hide buttons, swipe is native on touch */
  .amenity-nav-btn { display: none; }
  /* Prevent -22px absolute buttons from causing horizontal overflow */
  .amenity-slider-outer { overflow: hidden; }
  /* Narrower fade gradients so cards show fully to the edge */
  .amenity-slider-outer::before,
  .amenity-slider-outer::after { width: 32px; }

  /* Approval badges — scale down to fit inside single-col hero */
  .approval-badges { gap: 12px; padding: 12px 16px; }
  .approval-badges img { width: 88px; height: 88px; }
  .approval-badges .credai-logo { height: 48px; padding-left: 14px; }

  /* Stats last item — keep full-width span on mobile too */
  .stats div:last-child { grid-column: span 2; }

  /* Gallery — hide arrows, touch-swipe is available */
  .gallery-arrow { display: none; }
  .gallery-window img { height: min(50vh, 380px); }
  .gallery-shell { flex-direction: column; gap: 0; }

  /* Map shorter */
  .map-frame img { height: 260px; }

  /* Float actions — sit above sticky bar without overlapping hero */
  .float-actions { bottom: 88px; right: 14px; }
}

@media (max-width: 520px) {
  /* Stack hero facts vertically — removes right-column overlap with float buttons */
  .hero-facts div {
    min-width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-facts div:last-child { border-bottom: 0; }
  .hero-facts dt { font-size: 24px; }

  /* Approval badges — wrap on very narrow screens */
  .approval-badges {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 12px 12px;
    gap: 10px;
  }
  .approval-badges img { width: 80px; height: 80px; }
  .approval-badges .credai-logo { height: 44px; padding-left: 10px; }

  /* Image stack — don't overlap on single-col layout */
  .image-stack img:last-child { margin-top: 12px; width: 100%; }

  /* Video panel shorter on small phones */
  .video-panel,
  .video-panel img { min-height: 220px; }

  /* Section padding tighter */
  section { padding-inline: 16px; }
}
