/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --ivory:    #FAF7F2;
  --ivory2:   #F3EDE3;
  --ivory3:   #EAE0D2;
  --gold:     #C4A46B;
  --gold-dim: #9E7F4E;
  --ink:      #1A1612;
  --ink2:     #2E2720;
  --mist:     #7A7068;
  --white:    #FFFFFF;

  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body:    'Cormorant Garamond', Georgia, serif;
  --sans:          'Tenor Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(250,247,242,0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(196,164,107,0.15);
}
.nav-logo { display: inline-flex; align-items: center; padding-top: 12px; flex-shrink: 0; width: auto; }
.nav-logo img { height: auto; width: 200px; }
.nav-links {
  display: flex; gap: 2.8rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink2); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-active { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1.6rem; }
.nav-tel {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.12em; color: var(--mist);
}
.nav-btn {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 0.7rem 1.6rem;
  transition: background 0.25s;
  cursor: pointer; border: none;
}
.nav-btn:hover { background: var(--gold-dim); }

/* ══════════════════════════════════════════
   HERO — CINEMATIC FULL BLEED
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 9vh;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  will-change: transform;
  z-index: 0;
}
.hero-bg.kb {
  animation: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(20,14,10,0.45) 0%,
      rgba(20,14,10,0.25) 38%,
      rgba(20,14,10,0.2)  55%,
      rgba(20,14,10,0.65) 80%,
      rgba(20,14,10,0.88) 100%);
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0%, 0%); }
  33%  { transform: scale(1.06) translate(-1%, 0.5%); }
  66%  { transform: scale(1.04) translate(1%, -0.5%); }
  100% { transform: scale(1.08) translate(-0.5%, 1%); }
}

.hero-eyebrow {
  position: relative; z-index: 2;
  font-family: var(--sans); font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
  background: rgba(0,0,0,0.45);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.hero-title {
  position: relative; z-index: 2;
  font-family: var(--serif-display); font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92; color: var(--white);
  text-align: center; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero-rule {
  position: relative; z-index: 2;
  width: 48px; height: 1px; background: var(--gold);
  margin: 2rem auto;
}
.hero-sub {
  position: relative; z-index: 2;
  font-family: var(--serif-body); font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.95); text-align: center;
  max-width: 580px; line-height: 1.7;
  margin-bottom: 2.8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.3);
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-actions {
  position: relative; z-index: 2;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 0; right: 0;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  white-space: nowrap;
}
.hero-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(196,164,107,0.6), transparent);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 0.7; transform: translateY(8px); }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */

/* Hero animate-in via JS class */
.hero-ready .hero-eyebrow,
.hero-ready .hero-title,
.hero-ready .hero-rule,
.hero-ready .hero-sub,
.hero-ready .hero-actions,
.hero-ready .hero-scroll-hint {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ══════════════════════════════════════════
   STATS RIBBON
══════════════════════════════════════════ */
.stats-ribbon {
  background: var(--ink2);
  display: flex; justify-content: center;
  overflow: hidden;
  width: 100%;
}
.stat {
  padding: 1.6rem 3.5rem; flex: 1; min-width: 130px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat:last-child { border-right: none; }
.stat-n {
  display: block;
  font-family: var(--serif-display); font-size: 2rem; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 0.3rem;
}
.stat-l {
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   SHARED TYPOGRAPHY
══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1.1rem;
}
.heading-xl {
  font-family: var(--serif-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05; color: var(--ink);
  margin-bottom: 1.4rem;
}
.heading-xl em { font-style: italic; color: var(--gold-dim); }
.heading-xl.on-dark { color: var(--white); }
.heading-xl.on-dark em { color: var(--gold); }

.body-lg {
  font-family: var(--serif-body); font-size: 1.15rem;
  font-weight: 300; line-height: 1.85;
  color: var(--mist);
}
.body-lg.on-dark { color: rgba(255,255,255,0.5); }

.rule-gold {
  display: block; width: 40px; height: 1px;
  background: var(--gold); margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.6rem; cursor: pointer; border: none;
  transition: all 0.25s var(--ease-out);
}
.btn-solid { color: var(--white); background: var(--gold); }
.btn-solid:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-border { color: var(--ink); background: transparent; border: 1px solid rgba(196,164,107,0.55); }
.btn-border:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.btn-border-white { color: rgba(255,255,255,0.85); background: transparent; border: 1px solid rgba(196,164,107,0.4); }
.btn-border-white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.btn-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

/* ══════════════════════════════════════════
   MARQUEE (scrolling text band)
══════════════════════════════════════════ */
.marquee-band {
  overflow: hidden; background: var(--ivory2);
  border-top: 1px solid rgba(196,164,107,0.2);
  border-bottom: 1px solid rgba(196,164,107,0.2);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}
.marquee-item {
  font-family: var(--serif-display); font-size: 0.85rem;
  font-style: italic; color: var(--gold-dim);
  padding: 0 2.5rem; white-space: nowrap; letter-spacing: 0.04em;
}
.marquee-dot {
  color: var(--gold); padding: 0 0.5rem; font-size: 0.4rem;
  display: inline-flex; align-items: center; vertical-align: middle;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   EDITORIAL SPLIT LAYOUTS
══════════════════════════════════════════ */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.editorial.flip { }
.editorial-photo {
  position: relative; overflow: hidden;
}
.editorial-photo img, .editorial-photo .photo-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.editorial-photo .photo-bg {
  background-size: cover; background-position: center;
  will-change: transform;
  contain: strict;
}
.editorial:hover .photo-bg { transform: none; }

.editorial-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem;
  background: var(--ivory);
}
.editorial-content.dark { background: var(--ink2); }
.editorial-content.ivory2 { background: var(--ivory2); }

/* ══════════════════════════════════════════
   IMMERSIVE PHOTO QUOTE
══════════════════════════════════════════ */
.immersive {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.immersive-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.immersive-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,11,8,0.58);
}
.immersive-content {
  position: relative; z-index: 1;
  text-align: center; padding: 2rem 4rem; max-width: 820px;
}
.immersive-quote {
  font-family: var(--serif-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400; font-style: italic; color: var(--white); line-height: 1.4;
  margin-bottom: 1.5rem;
}
.immersive-attr {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}

/* ══════════════════════════════════════════
   THREE-UP CARDS
══════════════════════════════════════════ */
.cards-section { padding: 7rem 2rem; background: var(--ivory); }
.cards-section.dark { background: var(--ink2); }
.cards-header {
  text-align: center; max-width: 600px; margin: 0 auto 4.5rem;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; max-width: 1300px; margin: 0 auto;
}
.event-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
}
.event-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
  transform: translateZ(0);
}
.event-card:hover .event-card-bg { transform: scale(1.06); }
.event-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.85) 0%, rgba(20,14,10,0.1) 55%, transparent 100%);
  transition: background 0.4s;
}
.event-card:hover .event-card-overlay {
  background: linear-gradient(to top, rgba(20,14,10,0.92) 0%, rgba(20,14,10,0.3) 55%, rgba(20,14,10,0.1) 100%);
}
.event-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2.2rem; z-index: 1;
}
.event-card-num {
  font-family: var(--serif-display); font-size: 0.7rem;
  font-style: italic; color: var(--gold); display: block; margin-bottom: 0.6rem;
}
.event-card-title {
  font-family: var(--serif-display); font-size: 1.8rem;
  font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 0.9rem;
}
.event-card-desc {
  font-family: var(--serif-body); font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s;
  opacity: 0; margin-bottom: 0;
}
.event-card:hover .event-card-desc {
  max-height: 120px; opacity: 1; margin-bottom: 1.2rem;
}
.event-card-arrow {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s;
}
.event-card:hover .event-card-arrow { gap: 0.9rem; }

/* ══════════════════════════════════════════
   TESTIMONIALS — EDITORIAL STYLE
══════════════════════════════════════════ */
.testi-section {
  padding: 7rem 2rem;
  background: var(--ivory2);
}
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { margin-bottom: 4rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.testi-card {
  background: var(--white); padding: 2.8rem 2.4rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(196,164,107,0.1);
}
.testi-open-quote {
  font-family: var(--serif-display); font-size: 4rem; line-height: 0.6;
  color: var(--gold); opacity: 0.35; margin-bottom: 1.2rem;
  display: block;
}
.testi-headline {
  font-family: var(--serif-display); font-size: 1.15rem;
  font-style: italic; color: var(--ink); margin-bottom: 1rem;
}
.testi-body {
  font-family: var(--serif-body); font-size: 1rem;
  font-weight: 300; line-height: 1.8; color: var(--mist); margin-bottom: 1.4rem;
}
.testi-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.15em; }

/* ══════════════════════════════════════════
   GOLD STATEMENT BAND
══════════════════════════════════════════ */
.statement-band {
  background: var(--gold); padding: 5rem 2rem; text-align: center;
}
.statement-band blockquote {
  font-family: var(--serif-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white); max-width: 820px; margin: 0 auto; line-height: 1.45;
}
.statement-band cite {
  display: block; margin-top: 1.4rem;
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-style: normal;
}

/* ══════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════ */
.amenities-section { padding: 7rem 2rem; background: var(--ivory); }
.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center; margin-bottom: 5rem;
}
.amenities-photo-wrap { position: relative; }
.amenities-photo-main {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.amenities-photo-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 52%; aspect-ratio: 1;
  background-size: cover; background-position: center;
  border: 5px solid var(--ivory);
  overflow: hidden;
}
.amenity-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(196,164,107,0.12);
  max-width: 1200px; margin: 0 auto;
}
.amenity-item {
  background: var(--ivory); padding: 2rem 2.2rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: background 0.2s;
}
.amenity-item:hover { background: var(--ivory2); }
.amenity-icon-wrap {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(196,164,107,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
}
.amenity-name {
  font-family: var(--serif-display); font-size: 1rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.2rem;
}
.amenity-desc {
  font-family: var(--serif-body); font-size: 0.88rem;
  font-weight: 300; color: var(--mist); line-height: 1.4;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-hero {
  position: relative; height: 380px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding-bottom: 3.5rem;
  overflow: hidden;
}
.contact-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,14,10,0.2), rgba(20,14,10,0.65));
}
.contact-hero-text {
  position: relative; z-index: 1; padding: 0 4rem;
}
.contact-hero-text h1 {
  font-family: var(--serif-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--white); line-height: 1;
}
.contact-hero-text h1 em { font-style: italic; color: rgba(255,255,255,0.7); }

.contact-body { padding: 6rem 2rem; background: var(--ink2); }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem;
}
.contact-info .heading-xl { font-size: 2.2rem; }
.contact-info .body-lg { margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail { display: flex; gap: 1.2rem; }
.c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(196,164,107,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--gold);
}
.c-label {
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 0.3rem;
}
.c-val {
  font-family: var(--serif-body); font-size: 1rem;
  font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.c-val a { color: var(--gold); }

.contact-form-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,164,107,0.12);
  padding: 3.2rem;
}
.form-heading {
  font-family: var(--serif-display); font-size: 1.6rem;
  font-weight: 400; font-style: italic;
  color: var(--white); margin-bottom: 2.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.fg label {
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,164,107,0.18);
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 1rem;
  font-family: var(--serif-body); font-size: 0.95rem; font-weight: 300;
  outline: none; width: 100%;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--ink2); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-btn {
  width: 100%; font-family: var(--sans); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--gold); border: none;
  padding: 1.1rem; cursor: pointer; margin-top: 0.5rem;
  transition: background 0.25s;
}
.form-btn:hover { background: var(--gold-dim); }

/* ══════════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--ink); padding: 2.8rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(196,164,107,0.1);
}
.footer-logo img { height: 32px; opacity: 0.5; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--sans); font-size: 0.6rem;
  color: rgba(255,255,255,0.18);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   LEGAL MODALS
══════════════════════════════════════════ */
.legal-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,16,12,0.85); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.legal-modal-overlay.open { display: flex; }
.legal-modal {
  background: var(--ivory); color: var(--ink);
  max-width: 720px; width: 100%; max-height: 85vh;
  overflow-y: auto; border-radius: 2px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.legal-modal-close {
  position: sticky; top: 0; float: right;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--mist); line-height: 1;
  margin: -1rem -0.5rem 0.5rem 0;
}
.legal-modal-close:hover { color: var(--ink); }
.legal-modal h2 {
  font-family: var(--serif-display); font-size: 1.6rem;
  font-weight: 400; margin-bottom: 1.5rem; color: var(--ink);
}
.legal-modal h3 {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin: 1.5rem 0 0.5rem;
}
.legal-modal p, .legal-modal li {
  font-family: var(--serif-body); font-size: 0.95rem;
  line-height: 1.75; color: var(--ink2); margin-bottom: 0.75rem;
}
.legal-modal ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }
.legal-modal a { color: var(--gold); }
@media (max-width: 960px) {
  .legal-modal { padding: 2rem 1.5rem; }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
  z-index: 1002;
  position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink2);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(250,247,242,0.99);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 1000;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(196,164,107,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(196,164,107,0.12); }
.mobile-menu ul li a {
  display: block; padding: 1rem 0;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink2);
}
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.mobile-menu .mobile-cta a {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem; border: 1px solid var(--gold);
  color: var(--ink2);
}
.mobile-menu .mobile-cta a.solid {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}

@media (max-width: 960px) {
  /* Nav */
  .nav {
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .nav-btn { display: none; }
  .hamburger { display: flex; margin-left: auto; flex-shrink: 0; }
  .mobile-menu { display: block; top: 64px; }
  .nav-logo { flex-shrink: 0; max-width: calc(100vw - 80px); width: auto; padding-top: 8px; }
  .nav-logo img { width: 140px; max-width: 100%; display: block; }
  .nav-right { flex-shrink: 0; gap: 0; }

  /* Hero */
  .hero { height: 100svh; min-height: 560px; }
  .hero-title img { width: clamp(220px, 60vw, 400px) !important; max-width: calc(100vw - 3rem) !important; }
  .hero-sub { font-size: 0.9rem; padding: 0 1.5rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; padding: 0 2rem; width: 100%; box-sizing: border-box; }
  .hero-scroll-hint { bottom: 1rem; left: 0 !important; right: 0 !important; transform: none !important; }
  .hero-actions { margin-bottom: 5rem; }
  .hero-eyebrow { font-size: 0.55rem; }

  /* Sections */
  .editorial { grid-template-columns: 1fr; }
  .editorial-photo { height: 300px; order: -1; }
  .editorial-content { padding: 2.5rem 1.5rem; }
  .editorial-content .heading-xl { font-size: clamp(2rem, 7vw, 3rem); }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
  .event-card { aspect-ratio: 16/10; }
  .cards-section { padding: 3rem 0; }

  /* Stats */
  .stats-ribbon { flex-wrap: wrap; }
  .stat { padding: 1.2rem 1rem; width: 50%; box-sizing: border-box; border-right: 1px solid rgba(196,164,107,0.15); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(196,164,107,0.15); }
  .stat-n { font-size: 1.8rem; }

  /* Immersive */
  .immersive { min-height: 320px; }
  .immersive-content { padding: 2rem 1.5rem; }
  .immersive-quote { font-size: clamp(1.1rem, 4vw, 1.6rem); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }

  /* Amenities */
  .amenities-top { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-photo-accent { display: none; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-item { padding: 1rem; }
  .amenities-section { padding: 3rem 1.5rem; }

  /* Contact */
  .contact-hero { min-height: 280px; }
  .contact-hero-text { padding: 0 1.5rem; }
  .contact-hero-text h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; max-width: 100%; }
  .contact-body { padding: 0; overflow: hidden; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.5rem 1rem; }
  .contact-details { gap: 1rem; }

  /* Footer */
  .site-footer { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-logo img { width: 160px; margin: 0 auto; }

  /* General spacing */
  .section-pad { padding: 3rem 1.5rem; }
  h2.heading-xl { font-size: clamp(2rem, 7vw, 3.5rem); }
  .body-lg { font-size: 1rem; }
  .btn-actions { flex-direction: column; gap: 0.8rem; }
  .btn-actions .btn { width: 100%; max-width: 280px; text-align: center; }
}
