@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green:   #0e4a2d;
  --green-2: #082d1b;
  --green-3: #1a6640;
  --leaf:    #4a7c59;
  --gold:    #c9a96e;
  --gold-2:  #a8864c;
  --cream:   #f7f4ef;
  --cream-2: #ede9e2;
  --ink:     #1a1f1c;
  --muted:   #6b7068;
  --line:    #d8d3ca;
  --white:   #ffffff;
  --shadow:  0 32px 96px rgba(10, 30, 20, 0.14);
  --shadow-sm: 0 8px 32px rgba(10, 30, 20, 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(8, 45, 27, 0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(5, 18, 12, 0.3);
  backdrop-filter: blur(20px);
}

.site-header.is-solid nav a { opacity: 0.78; }
.site-header.is-solid .header-cta:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  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(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--green-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.webp');
  background-position: center 30%;
  background-size: cover;
  filter: saturate(0.82) brightness(0.9);
  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(5, 22, 13, 0.88) 0%, rgba(5, 22, 13, 0.52) 50%, rgba(5, 22, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 22, 13, 0.5) 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;
}

.project-logo {
  width: min(460px, 80vw);
  margin-top: -120px;
  margin-bottom: -140px;
  mix-blend-mode: screen;
  filter: invert(1) hue-rotate(180deg) brightness(1.4) contrast(1.2);
}

.hero-copy { display: flex; flex-direction: column; gap: 0; }

.eyebrow {
  margin: 0 0 10px;
  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: 100%;
  margin-bottom: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  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(--green); color: var(--white); border-color: var(--green); }
.primary:hover { background: var(--green-3); border-color: var(--green-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(--green); color: var(--green); background: transparent; }
.ghost.dark:hover { background: var(--green); color: var(--white); }

.small { min-height: 38px; padding: 8px 16px; color: var(--green); 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(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 74, 45, 0.1);
}

input::placeholder { color: var(--muted); opacity: 0.55; }

/* ─── PHONE PREFIX ─── */
.phone-prefix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-prefix:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 74, 45, 0.1);
}

.phone-prefix span {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--line);
  background: var(--cream-2);
  white-space: nowrap;
  text-transform: none;
}

.phone-prefix input {
  flex: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.phone-prefix input:focus {
  border: 0;
  box-shadow: none;
}

.inline-form .phone-prefix { background: rgba(255,255,255,0.08); }
.inline-form .phone-prefix span { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--gold); }
.inline-form .phone-prefix input { background: transparent; color: var(--white); }

/* ─── 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, .plan-frame, .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 ─── */
.plan-frame {
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-frame img { width: 100%; }
.plan-img { cursor: zoom-in; transition: opacity 0.2s; }
.plan-img:hover { opacity: 0.88; }

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; gap: 16px; position: relative; }

.image-stack img:first-child {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.image-stack img:last-child:not(:first-child) {
  width: 65%;
  justify-self: end;
  margin-top: -80px;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}

.image-stack img:only-child {
  aspect-ratio: unset;
  width: 100%;
  object-fit: contain;
}

/* ─── AMENITIES 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(--gold);
  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(--gold-2); transform: translateY(-50%) scale(1.08); }
.amenity-prev { left: -22px; }
.amenity-next { right: -22px; }

.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(--gold); outline-offset: 2px; }

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--cream-2);
  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; }

/* ─── 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(10,20,14,0.82); backdrop-filter: blur(6px); }
.amenity-detail-hero {
  position: relative;
  width: 100%;
  height: 195px;
  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%);
}
.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;
  transition: background 0.18s;
  z-index: 2;
}
.amenity-detail-close:hover { background: var(--gold); }
.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);
}
.amenity-detail-icon-badge {
  width: 74px; height: 74px;
  border-radius: 18px;
  border: 2.5px solid var(--gold);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.amenity-detail-icon-badge img { width: 56px; height: 56px; object-fit: contain; }
.amenity-detail-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.amenity-detail-divider { width: 32px; height: 2px; background: var(--gold); border-radius: 1px; margin: 10px 0 12px; }
.amenity-detail-desc { color: var(--muted); font-size: 12.5px; line-height: 1.72; margin: 0; max-width: 400px; }

/* ─── 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(--green);
  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-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--green-2);
  overflow: hidden;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── 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: #1a1a1a;
  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(--gold); }

.video-coming-soon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--green-2);
  color: rgba(255,255,255,0.5);
}

.video-coming-soon svg {
  width: 72px;
  height: 72px;
}

.video-coming-soon p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── ABOUT ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats div { padding: 26px 22px; background: var(--white); }
.stats div:last-child { grid-column: span 2; }

.stats strong {
  display: block;
  color: var(--green);
  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.3s ease;
}

.gallery-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  transition: background 0.2s, color 0.2s;
}

.gallery-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.gallery-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(14,74,45,0.25); transition: background 0.3s, transform 0.3s; cursor: pointer; }
.gallery-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── FINAL CTA ─── */
.final-cta {
  align-items: stretch;
  color: var(--white);
  background: var(--green-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, 169, 110, 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(--green);
  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(--green-3); }

/* ─── CALL BUTTON ─── */
.call-btn {
  position: fixed;
  right: 22px;
  bottom: 158px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(14, 74, 45, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14, 74, 45, 0.55);
}

.call-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .call-btn span { display: none; }
  .call-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 16px;
    bottom: 144px;
  }
}

/* ─── WHATSAPP ─── */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .whatsapp-btn span { display: none; }
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 16px;
    bottom: 80px;
  }
}

/* ─── STICKY LEAD ─── */
.sticky-lead {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 23;
  padding: 14px clamp(14px, 5vw, 64px);
  transform: translateY(110%);
  background: rgba(247, 244, 239, 0.97);
  box-shadow: 0 -1px 0 var(--line), 0 -16px 48px rgba(10, 30, 20, 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(--green); padding: 0 24px; }

.sticky-mobile { display: none; gap: 10px; }
.sticky-mobile a {
  flex: 1;
  padding: 14px;
  color: var(--white);
  background: var(--green);
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── MODALS ─── */
.modal {
  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(5, 18, 12, 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;
  color: var(--white);
  background: var(--green-2);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s;
}

.panel-close:hover { background: var(--green); }

.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); }

/* ─── SCROLL POPUP ─── */
.scroll-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 18, 12, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-popup-overlay.is-open { opacity: 1; }

.scroll-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 91;
  width: min(460px, calc(100% - 32px));
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-50%) translateY(-44%) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.scroll-popup.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.scroll-popup .panel-close { color: var(--ink); background: var(--cream); }
.scroll-popup .panel-close:hover { background: var(--cream-2); }

/* ─── NAVIGABLE LIGHTBOX ─── */
.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;
}

.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(--green-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(--green); }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--green-2);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.is-open { opacity: 1; pointer-events: all; }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.mobile-nav nav a { color: var(--white); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.mobile-nav nav a:hover { opacity: 1; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .amenity-slider-outer { padding: 0 8px; }
}

@media (max-width: 820px) {
  /* Header */
  .site-header { padding: 12px 16px; }
  .brand-logo { height: 36px; }
  nav { display: none; }
  .header-cta { padding: 8px 12px; font-size: 10px; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 90px 0 48px;
    gap: 32px;
  }
  .project-logo { display: none; }
  h1 { font-size: clamp(38px, 10vw, 56px); line-height: 1.08; }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-actions .button { width: 100%; text-align: center; }
  .hero-facts { background: none; border: none; gap: 8px; margin-top: 24px; }
  .hero-facts div {
    flex: 1;
    min-width: calc(50% - 4px);
    padding: 10px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-right: 1px solid rgba(255,255,255,0.14);
  }
  .hero-facts dt { font-size: 22px; }

  /* Hero form */
  .hero-form { padding: 22px 18px; }
  .hero-form h2 { font-size: 26px; }

  /* Sections */
  section { padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 32px); }

  .section-grid,
  .legacy,
  .location,
  .about,
  .final-cta { grid-template-columns: 1fr; gap: 32px; }

  h2 { font-size: clamp(28px, 7vw, 44px); }

  /* Image stack */
  .image-stack img:first-child { aspect-ratio: 16/9; }
  .image-stack img:last-child { width: 80%; margin-top: -36px; }

  /* Amenities — hide arrow buttons on touch, swipe natively */
  .amenity-nav-btn { display: none; }
  .amenity-slider-outer { overflow: hidden; }
  .amenity-slider-outer::before,
  .amenity-slider-outer::after { width: 32px; }
  .amenity-card { flex: 0 0 180px; min-height: auto; padding: 20px 16px; }

  /* Location */
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .map-frame img { height: 300px; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:last-child { grid-column: auto; }
  .stats strong { font-size: 38px; }

  /* Tour */
  .video-panel, .video-panel img { min-height: 260px; }
  .play-button { padding: 14px 22px; font-size: 10px; }

  /* Gallery */
  .gallery-shell { gap: 8px; }
  .gallery-arrow { width: 40px; height: 40px; font-size: 22px; }
  .gallery-window img { height: min(50vh, 340px); }

  /* Final CTA */
  .final-cta { padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 32px); }
  .inline-form { grid-template-columns: 1fr; gap: 12px; }
  .inline-form .button { width: 100%; }

  /* Figcaption */
  figcaption { flex-direction: column; gap: 10px; font-size: 12px; }

  /* Footer */
  .site-footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 16px 80px;
  }
  .site-footer div:last-child { text-align: left; }

  /* Brochure tab */
  .brochure-tab { display: none; }

  /* Sticky lead */
  .sticky-lead form { display: none; }
  .sticky-mobile { display: flex; }
  .sticky-mobile a { font-size: 13px; padding: 14px 10px; }

  /* Floating buttons */
  .call-btn, .whatsapp-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    right: 14px;
  }
  .call-btn { bottom: 136px; }
  .whatsapp-btn { bottom: 78px; }
  .call-btn span, .whatsapp-btn span { display: none; }
  .call-btn svg, .whatsapp-btn svg { width: 22px; height: 22px; }

  /* Modals */
  .lead-modal { padding: 28px 20px; width: calc(100vw - 24px); }
  .lead-modal h2 { font-size: 24px; }

  /* Shorts — 2 columns on tablet/mobile */
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shorts .section-head { margin-bottom: 24px; }
  .short-expand-btn { opacity: 1; background: rgba(0,0,0,0.20); font-size: 28px; }
  .short-frame:hover .short-expand-btn { background: rgba(0,0,0,0.38); }

  /* Tour section */
  .video-wrap { border-radius: 0; }

  /* Map */
  .map-frame img { height: 220px; }

  /* Scroll popup */
  .scroll-popup { padding: 28px 20px; }
}

@media (max-width: 480px) {
  /* Tighten further on small phones */
  .hero-inner { padding-top: 80px; }
  h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-facts div { min-width: 100%; }

  .amenity-card { flex: 0 0 160px; }
  .time-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }

  .section-grid, .section-head, .plan-frame, .legacy,
  .amenities, .location, .tour, .about, .gallery,
  .final-cta, .site-footer {
    width: 100%;
  }

  .phone-prefix span { font-size: 13px; padding: 0 10px; }
}

/* ─── 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);
}
