/* ============================================================
   THE OASIS — Escape Reality. Experience Extraordinary.
   Sunrise over the White River · Eureka Springs, Arkansas
   Formerly Riverlight · Crafted by ThatDeveloperGuy.com
   ============================================================ */

:root {
  /* Dawn palette: warm cream base (never clinical white), morning gold light,
     valley sage and misty river blue nature notes, warm ink text. */
  --ink: #f6efe4;         /* Mist Cream, primary warm background */
  --ink-2: #ede3d3;       /* Dawn Linen, secondary section background */
  --mist: #2c2a26;        /* Warm Ink, primary body text (never #000) */
  --sage: #5e6b59;        /* readable sage for secondary text */
  --sage-dim: #8a9483;    /* muted sage for hints and labels */
  --amber: #d9a441;       /* Morning Gold, accent / CTA (dawn light) */
  --amber-deep: #b8862f;  /* deeper gold for gradients */
  --honey: #e7c27d;       /* Sunlit Honey */
  --river: #aec3c9;       /* Misty River Blue, cool counterpoint */
  --forest: #3b4a3f;      /* Deep Forest, soft dark anchor */
  --peach: #e4b48c;       /* Dusk Clay, sunrise-horizon warmth */
  --hairline: rgba(59, 74, 63, 0.16);
  --glass: rgba(246, 239, 228, 0.72);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--mist);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(233, 161, 92, 0.35); color: #2c2a26; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- cinematic photographic film ----------
   Real White River valley photography, cross-dissolved and Ken-Burns-driven by scroll. A warm grade,
   a drifting haze, and film grain unify every frame into one dawn film. This IS the hero graphic. */
.film {
  position: fixed; inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0e100e;
}
.film-layer {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.film-layer.is-active { opacity: 1; }
.film-img {
  position: absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenburns 34s ease-in-out infinite alternate;
}
.film-layer:nth-child(1) .film-img { animation-duration: 36s; transform-origin: 60% 42%; }
.film-layer:nth-child(2) .film-img { animation-duration: 31s; transform-origin: 32% 58%; animation-delay: -7s; }
.film-layer:nth-child(3) .film-img { animation-duration: 38s; transform-origin: 70% 52%; animation-delay: -13s; }
.film-layer:nth-child(4) .film-img { animation-duration: 33s; transform-origin: 42% 46%; animation-delay: -5s; }
.film-layer:nth-child(5) .film-img { animation-duration: 30s; transform-origin: 55% 64%; animation-delay: -10s; }
@keyframes kenburns {
  0%   { transform: scale(1.06) translate(-1.6%, -1%); }
  100% { transform: scale(1.17) translate(1.6%, 1.6%); }
}
/* warm cinematic grade + vignette tying the photos to the dawn brand */
.film-grade {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30,23,12,0.36) 0%, rgba(30,23,12,0) 22%, rgba(20,16,10,0) 60%, rgba(26,18,9,0.52) 100%),
    radial-gradient(115% 82% at 50% 40%, rgba(255,226,172,0.12) 0%, transparent 46%),
    radial-gradient(135% 100% at 50% 46%, transparent 54%, rgba(16,11,6,0.46) 100%);
}
/* slow drifting atmospheric haze so even a held frame breathes */
.film-fog {
  position: absolute; inset: -22%;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  background:
    radial-gradient(40% 30% at 20% 32%, rgba(246,239,228,0.55), transparent 60%),
    radial-gradient(46% 32% at 76% 56%, rgba(246,239,228,0.42), transparent 62%),
    radial-gradient(34% 26% at 54% 80%, rgba(232,222,202,0.36), transparent 60%);
  animation: fogdrift 46s ease-in-out infinite alternate;
}
@keyframes fogdrift {
  0%   { transform: translate3d(-3%, -1%, 0) scale(1.05); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.15); }
}
.film-grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}
@media (prefers-reduced-motion: reduce) {
  .film-img, .film-fog, .film-grain { animation: none; }
  .film-img { transform: scale(1.06); }
}

/* ---------- veil (loader) ---------- */
.veil {
  position: fixed; inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.veil .veil-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--mist);
  opacity: 0.9;
  animation: veilPulse 2.2s ease-in-out infinite;
}
.veil .veil-mark em { font-style: italic; color: var(--amber); }
@keyframes veilPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ---------- progress hairline ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 80;
  pointer-events: none;
}
.progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 44px);
  transition: background 0.5s, padding 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
  /* soft dark scrim at the very top so the light logo + links stay legible over any photo */
  background: linear-gradient(180deg, rgba(12, 9, 5, 0.5) 0%, rgba(12, 9, 5, 0.14) 55%, rgba(12, 9, 5, 0) 100%);
}
.nav--solid {
  background: rgba(246, 239, 228, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding-top: 12px; padding-bottom: 12px;
}

/* logo: a dawn sun-over-river emblem + wordmark; light over photos, ink when the nav goes solid */
.nav .logo {
  display: inline-flex; align-items: center; gap: 11px;
  color: #f6efe4;
  transition: color 0.4s;
}
.logo-mark {
  width: 34px; height: 34px; flex: none; display: block;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  transition: filter 0.4s;
}
.logo-word {
  font-family: var(--serif);
  font-size: 1.42rem; font-weight: 400; letter-spacing: 0.02em; line-height: 1;
  white-space: nowrap;
  color: currentColor;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  transition: text-shadow 0.4s;
}
.logo-word em { font-style: italic; color: var(--amber); }
.nav--solid .logo { color: var(--mist); }
.nav--solid .logo-word { text-shadow: none; }
.nav--solid .logo-mark { filter: none; }

.nav-links {
  display: flex; align-items: center; gap: clamp(16px, 2.6vw, 36px);
}
.nav-links a:not(.btn) {
  font-family: var(--serif);
  font-size: 1.04rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: #f6efe4;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.55);
  padding: 6px 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:not(.btn):hover { color: var(--honey); }
.nav--solid .nav-links a:not(.btn) { color: var(--forest); text-shadow: none; }
.nav--solid .nav-links a:not(.btn):hover { color: var(--amber-deep); }
/* every page lives in the slide-out menu now, so the inline banner links stay hidden at all widths */
.nav-links .hide-m { display: none; }

/* Cabins dropdown — keeps the banner clean while surfacing every page */
.nav-drop { position: relative; }
.nav-drop-btn {
  font-family: var(--serif); font-size: 1.04rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: #f6efe4; background: none; border: 0; cursor: pointer;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.55);
  padding: 6px 0; display: inline-flex; align-items: center; gap: 7px;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-drop-btn::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.75;
}
.nav-drop-btn:hover { color: var(--honey); }
.nav--solid .nav-drop-btn { color: var(--forest); text-shadow: none; }
.nav--solid .nav-drop-btn:hover { color: var(--amber-deep); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(246, 239, 228, 0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--hairline); border-radius: 14px;
  padding: 10px; min-width: 210px;
  box-shadow: 0 22px 54px rgba(2, 4, 3, 0.22);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.nav-drop-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-drop-menu a {
  font-family: var(--serif); font-size: 1.06rem; font-weight: 500;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--mist); text-shadow: none;
  padding: 9px 16px; border-radius: 8px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-drop-menu a em { font-style: italic; color: var(--amber); }
.nav-drop-menu a:hover { background: rgba(217, 164, 65, 0.14); color: var(--amber-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--amber);
  color: #221204;
  box-shadow: 0 6px 30px rgba(233, 161, 92, 0.18);
}
.btn--solid:hover {
  background: #f2b273;
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(233, 161, 92, 0.3);
}
.btn--ghost {
  border: 1px solid rgba(59, 74, 63, 0.3);
  color: var(--mist);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.72rem; }

/* ============================================================
   HOME — the descent
   ============================================================ */

#journey { position: relative; z-index: 10; }

.slot { position: relative; }
.slot--hero { height: 165vh; }
.slot--arrive { height: 135vh; }
.slot--bluff { height: 140vh; }
.slot--cabin { height: 155vh; }
.slot--gallery { height: 300vh; }
.slot--quote { height: 160vh; }

.ch-inner {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 7vw, 110px);
  overflow: hidden;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 22px;
  text-shadow: 0 1px 2px rgba(58, 42, 18, 0.4), 0 0 12px rgba(246, 239, 228, 0.7);
}

/* --- hero --- */
.hero { justify-content: center; text-align: center; }
.hero .hero-stack { width: 100%; position: relative; }
.hero .hero-stack::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 148%; height: 168%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 54% at 50% 50%,
    rgba(246, 239, 228, 0.74) 0%,
    rgba(246, 239, 228, 0.46) 44%,
    rgba(246, 239, 228, 0) 76%);
  z-index: -1;
  pointer-events: none;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 250;
  font-size: clamp(4.2rem, 14vw, 12.5rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-shadow: 0 8px 60px rgba(237, 227, 211, 0.65);
}
.wordmark .line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.wordmark span { display: inline-block; }
.wordmark em { font-style: italic; color: var(--amber); }
.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  color: var(--mist);
  margin-top: 30px;
  text-shadow: 0 1px 2px rgba(246, 239, 228, 0.94), 0 2px 16px rgba(246, 239, 228, 0.85);
}
.hero-tag strong { color: var(--amber-deep); font-weight: 400; }
.hero-meta {
  margin-top: 26px;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 30px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2f382d;
  text-shadow: 0 1px 2px rgba(40, 34, 24, 0.28), 0 1px 12px rgba(246, 239, 228, 0.85);
}
.hero-meta b { color: var(--mist); font-weight: 500; }

.scroll-cue {
  position: absolute;
  bottom: max(34px, env(safe-area-inset-bottom));
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage-dim);
}
.scroll-cue i {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--amber));
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- text chapters --- */
.ch-copy { max-width: 640px; }
.ch-copy .big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.22;
  text-shadow: 0 6px 40px rgba(237, 227, 211, 0.7);
}
.ch-copy .big em { font-style: italic; color: var(--amber); }
.ch-copy p {
  margin-top: 26px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--sage);
  max-width: 52ch;
  line-height: 1.85;
}

.stat-row {
  display: flex; gap: clamp(28px, 6vw, 76px);
  margin-top: 48px; flex-wrap: wrap;
}
.stat-row .stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--mist);
  line-height: 1;
}
.stat-row .stat i {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dim);
  display: block; margin-top: 10px;
}

/* --- cabin chapters --- */
.ch-card {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.ch--flip .ch-card .ch-copy { order: 2; }
.ch--flip .ch-card .ch-photo { order: 1; }

.ch-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 250;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.ch-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.02;
}
.ch-copy h2 em { font-style: italic; color: var(--amber); }
.ch-copy .sub {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 1.15rem;
}
.ch-specs {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 22px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-dim);
}
.ch-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- home narrative readability over the cinematic photo film ----
   Dark text can't survive over varied photography, so the intro chapters use LIGHT type over a soft
   dark scrim (the classic film-subtitle treatment) — always legible, and unmistakably cinematic. */
.ch-copy .big { color: var(--mist); }
.slot--arrive .ch-copy,
.slot--bluff .ch-copy {
  position: relative;
}
.slot--arrive .ch-copy::before,
.slot--bluff .ch-copy::before {
  content: "";
  position: absolute;
  inset: -14% -16% -18% -14%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(75% 88% at 32% 52%, rgba(14, 11, 6, 0.62) 0%, rgba(14, 11, 6, 0.34) 42%, rgba(14, 11, 6, 0) 74%);
}
.slot--arrive .ch-copy .big,
.slot--bluff .ch-copy .big {
  color: #f8f2e6;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.slot--arrive .ch-copy .big em,
.slot--bluff .ch-copy .big em { color: #f2c979; }
.slot--arrive .ch-copy p,
.slot--bluff .ch-copy p {
  color: rgba(248, 242, 230, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.45);
}
.slot--bluff .stat-row .stat b { color: #f8f2e6; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5); }
.slot--bluff .stat-row .stat i { color: rgba(248, 242, 230, 0.82); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); }

/* cabin showcase copy rides a soft frosted-cream panel so it never fights the scene */
.ch-card .ch-copy {
  background: rgba(246, 239, 228, 0.74);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 48px);
  box-shadow: 0 30px 80px rgba(2, 4, 3, 0.16);
}
.ch-card .ch-copy p { color: #35402f; text-shadow: none; }
.ch-card .ch-copy .sub { color: var(--sage); }
.ch-card .ch-copy .ch-specs { color: var(--mist); }

/* river-quote + gallery title ride the photo film too — light type, soft scrim, film-title feel */
.slot--quote .ch-inner > div { position: relative; }
.slot--quote .ch-inner > div::before {
  content: ""; position: absolute; inset: -30% -12%; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 70% at 50% 48%, rgba(14, 11, 6, 0.5) 0%, rgba(14, 11, 6, 0.22) 46%, transparent 72%);
}
.slot--quote .quote-mark { color: #f8f2e6; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45); }
.slot--quote .quote-mark em { color: #f2c979; }
.slot--quote .quote-by { color: rgba(248, 242, 230, 0.85); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6); }
.slot--gallery .g-title h2 { color: #f8f2e6; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4); }
.slot--gallery .g-title h2 em { color: #f2c979; }
.slot--gallery .g-title p { color: rgba(248, 242, 230, 0.9); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6); }

.ch-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 90px rgba(2, 4, 3, 0.6);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
  background: var(--ink-2);
}
.ch-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out);
}
.ch-photo:hover img { transform: scale(1.09); }
.ch-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(217, 164, 65, 0.14), transparent 45%),
    linear-gradient(200deg, rgba(233, 161, 92, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.ch-photo:hover::after { opacity: 1; }

/* --- gallery strip --- */
.slot--gallery .ch-inner { align-items: center; padding: 0; }
.g-track {
  display: flex; align-items: center;
  gap: clamp(18px, 3vw, 44px);
  will-change: transform;
  padding-right: 8vw;
}
.g-title {
  flex: none;
  width: min(430px, 66vw);
  padding-left: 7vw;
}
.g-title h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
}
.g-title h2 em { font-style: italic; color: var(--amber); }
.g-title p { margin-top: 18px; color: var(--sage-dim); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; }
.g-item {
  flex: none;
  width: clamp(300px, 34vw, 560px);
}
.g-item figure {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 70px rgba(2, 4, 3, 0.55);
  background: var(--ink-2);
}
.g-item:nth-child(odd) { transform: translateY(4%); }
.g-item:nth-child(3n) { transform: translateY(-4%); }
.g-item img { width: 110%; height: 100%; object-fit: cover; margin-left: -5%; }
.g-item figcaption {
  margin-top: 14px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage-dim);
}

/* --- quote --- */
.slot--quote .ch-inner { justify-content: center; text-align: center; }
.quote-mark {
  font-family: var(--serif);
  font-weight: 250;
  font-style: italic;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 1.18;
  max-width: 17ch;
  text-shadow: 0 10px 70px rgba(2, 4, 3, 0.85);
}
.quote-mark em { color: var(--amber); }
.quote-by {
  margin-top: 34px;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage-dim);
}

/* ============================================================
   AFTER THE DESCENT — booking · faq · footer
   ============================================================ */
.after {
  position: relative; z-index: 12;
  background: linear-gradient(180deg, rgba(246, 239, 228, 0) 0%, rgba(246, 239, 228, 0.9) 380px, #f6efe4 640px);
  padding-top: 44vh;
}
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) clamp(20px, 5vw, 60px);
}
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}
.sec-head h2 em { font-style: italic; color: var(--amber); }
.sec-head p { margin-top: 20px; color: var(--sage); max-width: 54ch; }

/* booking cards */
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
}
.book-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.45s;
  will-change: transform;
  display: flex; flex-direction: column;
}
.book-card:hover {
  border-color: rgba(233, 161, 92, 0.4);
  box-shadow: 0 30px 80px rgba(2, 4, 3, 0.6);
}
.book-card .bc-img { aspect-ratio: 3 / 2; overflow: hidden; }
.book-card .bc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.book-card:hover .bc-img img { transform: scale(1.06); }
.book-card .bc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.book-card h3 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 1.7rem;
}
.book-card h3 em { font-style: italic; color: var(--amber); }
.book-card .bc-sub { font-family: var(--serif); font-style: italic; color: var(--sage); font-size: 0.98rem; margin-top: 4px; }
.book-card .bc-specs {
  margin: 16px 0 22px;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-dim);
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
.book-card .bc-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.book-note {
  margin-top: 34px;
  text-align: center;
  color: var(--sage-dim);
  font-size: 0.85rem;
}
.book-note a { color: var(--sage); border-bottom: 1px solid var(--hairline); }

/* faq */
.faq-wrap { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--mist);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--amber); }
.faq-q .ico {
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  position: relative;
  transition: transform 0.45s var(--ease-out), border-color 0.3s;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--sage);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out);
}
.faq-q .ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .ico { transform: rotate(135deg); border-color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out);
}
.faq-a p {
  padding: 0 4px 28px;
  color: var(--sage);
  max-width: 60ch;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 260px; }

/* footer */
.footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 60px) 46px;
  position: relative; z-index: 12;
  background: #f6efe4;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer .f-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
}
.footer .f-mark em { font-style: italic; color: var(--amber); }
.footer .f-tag { margin-top: 12px; color: var(--sage-dim); font-family: var(--serif); font-style: italic; }
.footer h4 {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage-dim); font-weight: 600;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--sage); font-size: 0.92rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--amber); }
.footer .f-coords { color: var(--sage-dim); font-size: 0.85rem; line-height: 2; }
.footer-base {
  max-width: 1280px; margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--sage-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-base a { color: var(--sage); }
.footer-base a:hover { color: var(--amber); }

/* ============================================================
   CABIN PAGES
   ============================================================ */
.c-main { position: relative; z-index: 10; }

/* solid reading surface below the hero — content no longer floats over the live scene */
.c-body {
  position: relative;
  z-index: 11;
  background: linear-gradient(
    180deg,
    rgba(246, 239, 228, 0) 0,
    rgba(246, 239, 228, 0.86) 120px,
    var(--ink) 260px
  );
}
.c-body::after {
  /* hold the cream all the way down through the footer */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 260px; bottom: 0;
  background: var(--ink);
  z-index: -1;
}

.c-hero {
  min-height: 92vh;
  padding: 21vh clamp(20px, 6vw, 80px) 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.c-hero h1 {
  font-family: var(--serif);
  font-weight: 250;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 60px rgba(237, 227, 211, 0.65);
}
.c-hero h1 .w { display: inline-block; }
.c-hero h1 em { font-style: italic; color: var(--amber); }
.c-hero .c-sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  color: var(--mist);
  max-width: 40ch;
  text-shadow: 0 1px 22px rgba(246, 239, 228, 0.9), 0 1px 3px rgba(246, 239, 228, 0.9);
}
.c-hero .stats {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
}
.c-hero .stats span {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  background: rgba(246, 239, 228, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* cabin hero rides the cinematic photo film — light film-title treatment over the photograph */
.c-hero .eyebrow { color: #f2c979; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 0 14px rgba(0, 0, 0, 0.4); }
.c-hero h1 { color: #f8f2e6; text-shadow: 0 4px 46px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.42); }
.c-hero h1 em { color: #f2c979; }
.c-hero .c-sub { color: rgba(248, 242, 230, 0.95); text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.45); }
.c-hero .stats span {
  color: #f8f2e6;
  background: rgba(16, 12, 6, 0.34);
  border-color: rgba(248, 242, 230, 0.34);
}
.hero-frame {
  margin: 7vh auto 0;
  width: min(1120px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 60px 120px rgba(2, 4, 3, 0.65);
  background: var(--ink-2);
}
.hero-frame img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }

.c-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 60px);
  position: relative; z-index: 10;
}

.inside { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(30px, 6vw, 100px); }
.inside .in-head { position: sticky; top: 16vh; align-self: start; }
.inside h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
}
.inside h2 em { font-style: italic; color: var(--amber); }
.inside .in-body p {
  color: #3f4a3d;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.9;
  margin-bottom: 1.6em;
}
.inside .in-body p strong { color: var(--mist); font-weight: 500; }

/* what you get — an editorial feature list, not a grid of buttons */
.wyg {
  margin-top: clamp(46px, 6vw, 84px);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--hairline);
}
.wyg li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  color: var(--mist);
  line-height: 1.35;
}
.wyg li::before {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  margin-top: 0.42em;
  transform: rotate(45deg);
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.14);
}

/* masonry gallery */
.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry a {
  display: block;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  break-inside: avoid;
  position: relative;
}
.masonry img {
  width: 100%;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
  filter: brightness(0.94);
}
.masonry a:hover img { transform: scale(1.045); filter: brightness(1.06); }

/* amenities */
.amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 34px;
}
.amenities-grid li {
  color: var(--sage);
  font-size: 0.94rem;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(59, 74, 63, 0.1);
  position: relative;
}
.amenities-grid li::before {
  content: "";
  position: absolute; left: 2px; top: 19px;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--amber-deep);
  opacity: 0.8;
}
.amenities-grid:not(.all) li:nth-child(n + 19) { display: none; }
.amenities-toggle { margin-top: 34px; }

/* cta */
.cta-panel {
  text-align: center;
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  border-radius: 26px;
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 60px);
}
.cta-panel h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-panel h2 em { font-style: italic; color: var(--amber); }
.cta-panel p { color: var(--sage); margin: 22px auto 36px; max-width: 46ch; }
.cta-panel .cta-note { font-size: 0.78rem; color: var(--sage-dim); margin: 24px 0 0; }

/* ---------- cinematic photo bands (cabin pages) ----------
   Full-bleed real photography with a parallax reveal and a light film-title pull-quote, interleaved
   between the reading sections so the cabin pages stay a film top-to-bottom, like the home. */
.cine-band {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  /* .c-body is already full viewport width, so a plain block band is full-bleed with no overflow */
  margin-top: clamp(50px, 9vw, 130px);
  margin-bottom: clamp(50px, 9vw, 130px);
}
.cine-band__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed; /* parallax on desktop; iOS ignores gracefully */
  transform: scale(1.04);
}
.cine-band__grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,10,5,0.42) 0%, rgba(14,10,5,0.2) 42%, rgba(14,10,5,0.52) 100%),
    radial-gradient(120% 92% at 50% 46%, transparent 48%, rgba(12,8,4,0.44) 100%);
}
.cine-band__inner {
  position: relative; z-index: 2;
  max-width: 940px;
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px);
}
.cine-band .eyebrow { color: #f2c979; text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 0 14px rgba(0,0,0,0.4); }
.cine-band h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem); line-height: 1.08;
  color: #f8f2e6;
  text-shadow: 0 3px 40px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.42);
  max-width: 22ch; margin: 0 auto;
}
.cine-band h2 em { font-style: italic; color: #f2c979; }
.cine-band p {
  margin: 22px auto 0; max-width: 52ch;
  color: rgba(248,242,230,0.92);
  font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.45);
}
/* cinematic booking outro: the CTA lives over a sunset */
.cine-band--cta .cine-band__inner { max-width: 820px; }
.cine-band--cta .btn--solid { margin-top: 34px; }
.cine-band--cta .cta-note { font-size: 0.78rem; color: rgba(248,242,230,0.8); margin: 22px 0 0; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.cine-band--cta a:not(.btn) { color: #f2c979; }
@media (max-width: 820px) {
  .cine-band__img { background-attachment: scroll; }
  .cine-band { min-height: 68vh; }
}
@media (prefers-reduced-motion: reduce) {
  .cine-band__img { background-attachment: scroll; }
}

/* siblings */
.sib-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.6vw, 34px);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 95;
  background: rgba(237, 227, 211, 0.93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1400px, 88vw);
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 52px; height: 52px;
  border: 1px solid rgba(59, 74, 63, 0.28);
  border-radius: 50%;
  color: var(--mist);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  background: rgba(246, 239, 228, 0.5);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--amber); color: var(--amber); transform: scale(1.06); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; margin-top: -26px; }
.lb-next { right: 26px; top: 50%; margin-top: -26px; }
.lb-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; letter-spacing: 0.22em; color: var(--sage-dim);
}

/* ============================================================
   CONTENT PAGES (about, weddings, things to do, location, faq, legal)
   ============================================================ */
/* prose blocks on the cream surface */
.prose { max-width: 720px; }
.prose p { color: #3f4a3d; font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.9; margin-bottom: 1.5em; }
.prose p strong { color: var(--mist); font-weight: 500; }
.lede { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.5; color: var(--mist); max-width: 26ch; }

/* signed owner letter (About) */
.letter {
  max-width: 760px; margin: 0 auto;
  background: #fbf6ec;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: clamp(34px, 5vw, 64px);
  box-shadow: 0 30px 70px rgba(2, 4, 3, 0.08);
}
.letter p { color: #3f4a3d; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.95; margin-bottom: 1.3em; }
.letter .sign { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--amber-deep); margin-top: 8px; }
.letter .sign-note { color: var(--sage-dim); font-size: 0.82rem; letter-spacing: 0.02em; }

/* two-column feature split reused from cabins is .inside; a simple stat/host duo */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.duo h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.duo h3 em { font-style: italic; color: var(--amber); }
.duo p { color: #3f4a3d; line-height: 1.85; }

/* things-to-do guide grid */
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; margin-top: clamp(40px, 6vw, 70px); }
.guide-grid .g-card { background: var(--ink); padding: clamp(24px, 3vw, 38px); }
.guide-grid .g-dist { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-deep); font-weight: 600; }
.guide-grid h3 { font-family: var(--serif); font-weight: 350; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 8px 0 10px; }
.guide-grid p { color: var(--sage); font-size: 0.98rem; line-height: 1.7; }

/* legal pages */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 2em 0 0.6em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #3f4a3d; font-size: 1rem; line-height: 1.85; margin-bottom: 1em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: 0.5em; }
.legal .note { color: var(--sage-dim); font-size: 0.85rem; font-style: italic; }

@media (max-width: 860px) {
  .duo, .guide-grid { grid-template-columns: 1fr; }
}

/* consent banner (Consent Mode v2) */
.consent {
  position: fixed; left: 50%; bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  z-index: 90; width: min(680px, calc(100vw - 28px));
  background: rgba(246, 239, 228, 0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(2, 4, 3, 0.22);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  opacity: 0; transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
.consent.on { transform: translateX(-50%) translateY(0); opacity: 1; }
.consent p { flex: 1 1 300px; margin: 0; font-size: 0.9rem; color: var(--sage); line-height: 1.55; }
.consent p a { color: var(--amber-deep); text-decoration: underline; }
.consent-btns { display: flex; gap: 10px; flex: none; }
@media (max-width: 560px) {
  .consent { bottom: 10px; padding: 16px; }
  .consent-btns { width: 100%; }
  .consent-btns .btn { flex: 1; text-align: center; }
}

/* ============================================================
   FLAT MODE (no WebGL / reduced motion) — everything readable
   ============================================================ */
body.flat #scene, body.flat .vignette { display: none; }
body.flat {
  background:
    radial-gradient(90% 60% at 50% 0%, #0b1a14 0%, transparent 60%),
    radial-gradient(70% 50% at 80% 100%, #081209 0%, transparent 55%),
    #f6efe4;
}
body.flat .slot { height: auto !important; }
body.flat .ch-inner {
  position: static;
  height: auto;
  min-height: 0;
  padding-top: 15vh;
  padding-bottom: 15vh;
  overflow: visible;
}
body.flat .hero { min-height: 92vh; padding-top: 22vh; }
body.flat .scroll-cue { display: none; }
body.flat .slot--gallery .ch-inner { display: block; }
body.flat .g-track {
  overflow-x: auto;
  padding: 0 6vw 30px;
  scroll-snap-type: x mandatory;
}
body.flat .g-item { scroll-snap-align: center; }
body.flat .after { padding-top: 8vh; background: transparent; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .wyg { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-links .hide-m { display: none; }
  .nav-links { gap: 14px; }
  .logo-word { font-size: 1.18rem; }
  .logo-mark { width: 27px; height: 27px; }
  .nav { padding-left: 15px; padding-right: 13px; }
  .nav .btn--sm { font-size: 0.64rem; padding: 9px 15px; letter-spacing: 0.08em; }

  .slot--hero { height: 150vh; }
  .slot--cabin { height: 150vh; }
  .slot--gallery { height: 260vh; }

  .ch-inner { align-items: flex-end; padding-bottom: 12vh; }
  .hero.ch-inner, .slot--quote .ch-inner { align-items: center; padding-bottom: 0; }

  .ch-card {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 560px;
  }
  .ch--flip .ch-card .ch-copy { order: 1; }
  .ch--flip .ch-card .ch-photo { order: 2; }
  .ch-photo { aspect-ratio: 16 / 10; }
  .ch-copy p { display: none; }
  .ch-card .ch-copy p { display: block; }

  .g-item { width: 74vw; }
  .g-title { width: 74vw; }

  .book-grid { grid-template-columns: 1fr; }
  .sib-grid { grid-template-columns: 1fr; }

  .inside { grid-template-columns: 1fr; }
  .inside .in-head { position: static; margin-bottom: 8px; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid:not(.all) li:nth-child(n + 13) { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }

  .hero-frame { aspect-ratio: 4 / 3; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}

@media (max-width: 520px) {
  .masonry { columns: 1; }
  .wyg { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 24px; max-width: 100%; white-space: normal; text-align: center; }
  .stat-row { gap: 24px; }
  .cta-panel { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 820px) {
  .btn--sm { padding: 12px 20px; }
}

/* ---------- mobile menu (post-delivery addition) ---------- */
.menu-toggle { display: inline-flex; align-items: center; background: none; border: 0; cursor: pointer; padding: 6px 2px; z-index: 71; margin-left: 4px; }
.menu-toggle .lines { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-toggle .lines i { display: block; height: 1.5px; background: #f6efe4; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45); transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.4s; }
.nav--solid .menu-toggle .lines i { background: var(--mist); box-shadow: none; }
body.menu-open .menu-toggle .lines i { background: var(--mist); box-shadow: none; }
body.menu-open .menu-toggle .lines i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-toggle .lines i:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle .lines i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 69;
  background: rgba(246, 239, 228, 0.96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 14vh clamp(20px, 6vw, 60px) 8vh; gap: 6px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu .mm-tag {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-dim); margin-bottom: 16px;
}
.mobile-menu a {
  font-family: var(--serif); font-weight: 320; font-size: clamp(26px, 4.6vw, 40px); line-height: 1.28;
  color: var(--mist); text-decoration: none; width: fit-content;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), color 0.3s;
}
.mobile-menu a em { font-style: italic; color: var(--amber); }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--amber); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-of-type(1) { transition-delay: 0.06s; }
body.menu-open .mobile-menu a:nth-of-type(2) { transition-delay: 0.12s; }
body.menu-open .mobile-menu a:nth-of-type(3) { transition-delay: 0.18s; }
body.menu-open .mobile-menu a:nth-of-type(4) { transition-delay: 0.24s; }
body.menu-open .mobile-menu a:nth-of-type(5) { transition-delay: 0.3s; }
.mobile-menu .mm-foot {
  position: absolute; bottom: 28px; left: clamp(20px, 6vw, 44px); right: clamp(20px, 6vw, 44px);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-dim);
}
@media (max-width: 820px) { .menu-toggle { display: inline-flex; } }
