/* Econo Lodge Galax — Milepost 215
   Appalachian editorial. Bone and ink, brand red, sunrise amber. */

/* ---------- Tokens ---------- */
:root {
  --red: #E31B23;
  --red-deep: #B5121B;
  --maroon: #84002F;
  --amber: #F6BA76;
  --amber-lt: #FAD6AB;

  --bone: #FBF7F0;
  --bone-2: #F3EDE2;
  --bone-3: #E8DFCE;
  --ink: #14191C;
  --ink-2: #1D2428;
  --ink-3: #2B343A;
  --slate: #4A5560;
  --pine: #C9A87C;

  --text: #1A1F22;
  --text-soft: #55605F;
  --text-invert: #F4EFE6;
  --text-invert-soft: #A9B2B4;

  --sunrise: linear-gradient(100deg, var(--amber-lt) 0%, var(--amber) 34%, var(--red) 100%);

  --display: 'Erode', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --body: 'Switzer', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 6px;

  --shadow-sm: 0 2px 10px rgba(20, 25, 28, 0.07);
  --shadow-md: 0 12px 34px -14px rgba(20, 25, 28, 0.30);
  --shadow-lg: 0 34px 70px -30px rgba(20, 25, 28, 0.46);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  background: var(--bone);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -0.012em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Film grain over the whole page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

::selection { background: var(--red); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--text-invert);
  padding: 0.85rem 1.4rem; font-weight: 500;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.5rem;
  font-family: var(--body);
  font-size: 0.845rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 26px -12px rgba(227, 27, 35, 0.85); }
.btn-red:hover { background: var(--red-deep); box-shadow: 0 16px 34px -12px rgba(227, 27, 35, 0.75); }

.btn-outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn-outline:hover { background: currentColor; }
.btn-outline:hover > * { mix-blend-mode: difference; }

.btn-ghost { background: transparent; color: inherit; border-color: rgba(20,25,28,0.22); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-lg { min-height: 56px; padding: 1rem 2rem; font-size: 0.9rem; }
.btn-compact { min-height: 44px; padding: 0.6rem 1.05rem; font-size: 0.76rem; letter-spacing: 0.075em; }

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 120;
  width: 100%; height: 3px;
  background: var(--sunrise);
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(20, 25, 28, 0.09), var(--shadow-sm);
}

/* At rest the header sits on the dark hero, so it starts inverted and flips to
   ink once the bone bar comes in on scroll (or the mobile panel opens). */
.site-header { color: var(--text-invert); }
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,25,28,0.55), transparent);
  opacity: 1; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.site-header .brand-sub { color: var(--amber); }
.site-header .btn-ghost { border-color: rgba(244,239,230,0.45); }
.site-header .btn-ghost:hover { border-color: #fff; color: #fff; }
.site-header .menu-toggle { border-color: rgba(244,239,230,0.45); }
.site-header .brand-name,
.site-header .main-nav a,
.site-header .menu-toggle { transition: color 0.4s var(--ease), border-color 0.4s var(--ease); }

.site-header.is-scrolled,
.site-header.is-menu-open { color: var(--text); }
.site-header.is-scrolled::before,
.site-header.is-menu-open::before { opacity: 0; }
.site-header.is-scrolled .brand-sub,
.site-header.is-menu-open .brand-sub { color: var(--text-soft); }
.site-header.is-scrolled .btn-ghost,
.site-header.is-menu-open .btn-ghost { border-color: rgba(20,25,28,0.22); }
.site-header.is-scrolled .btn-ghost:hover { border-color: var(--red); color: var(--red); }
.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle { border-color: rgba(20,25,28,0.22); }
.header-inner {
  max-width: var(--container); margin-inline: auto;
  padding: 0.85rem var(--gutter);
  min-height: var(--header-h);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; min-height: 44px; }
.brand-logo { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft); margin-top: 0.2rem;
}

.main-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.7rem); margin-left: auto; }
.main-nav a {
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 12px; height: 1.5px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease);
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.header-cta { display: flex; align-items: center; gap: 0.55rem; flex: none; }

.menu-toggle {
  display: none; align-items: center; gap: 0.5rem; margin-left: auto;
  background: none; border: 1px solid rgba(20,25,28,0.22); border-radius: var(--radius);
  padding: 0.55rem 0.85rem; min-height: 44px; cursor: pointer;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.menu-bars { display: grid; gap: 4px; width: 17px; }
.menu-bars i { display: block; height: 1.5px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  background: var(--bone);
  border-top: 1px solid rgba(20,25,28,0.09);
  box-shadow: var(--shadow-md);
  padding: 1rem var(--gutter) 1.6rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 0.9rem 0; text-decoration: none;
  font-family: var(--display); font-size: 1.24rem; font-weight: 700;
  border-bottom: 1px solid rgba(20,25,28,0.08);
}
.mobile-menu-cta { display: grid; gap: 0.6rem; margin-top: 1.2rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: clamp(5rem, 12vh, 8rem);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-sky { position: absolute; inset: 0; z-index: -3; }
.hero-plate {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 2.4s var(--ease);
  will-change: opacity;
}
.hero-plate.is-active { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,25,28,0.58) 0%, rgba(20,25,28,0.34) 24%, rgba(20,25,28,0.50) 56%, rgba(20,25,28,0.88) 100%),
    linear-gradient(90deg, rgba(20,25,28,0.80) 0%, rgba(20,25,28,0.30) 56%, rgba(132,0,47,0.20) 100%);
}
.hero-ridge {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1;
  width: 100%; height: clamp(120px, 22vh, 230px);
}
.hero-ridge .ridge-far  { fill: rgba(20,25,28,0.42); }
.hero-ridge .ridge-mid  { fill: rgba(20,25,28,0.72); }
.hero-ridge .ridge-near { fill: var(--ink); }

.hero-inner { position: relative; color: var(--text-invert); }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
}
.hero-eyebrow .rule { display: block; width: clamp(28px, 6vw, 64px); height: 1px; background: var(--red); }

.hero-title {
  font-size: clamp(2.05rem, 5.9vw, 4.6rem);
  max-width: 19ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(100deg, #FFF6EA 0%, var(--amber-lt) 42%, var(--amber) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-bottom: 0.06em;
}
.hero-lede {
  max-width: 54ch; font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.2rem);
  color: rgba(244, 239, 230, 0.9);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.6rem; }
.hero-actions .btn-outline { color: var(--text-invert); border-color: rgba(244,239,230,0.5); }
.hero-actions .btn-outline:hover { background: var(--text-invert); color: var(--ink); }
.hero-actions .btn-outline:hover > * { mix-blend-mode: normal; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244,239,230,0.2);
}
.hero-facts li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.755rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,230,0.82);
}
.hero-facts li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; z-index: 2;
  transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: start center; padding-top: 9px;
}
.scroll-cue::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 24px; height: 40px; border: 1px solid rgba(244,239,230,0.42); border-radius: 14px;
}
.scroll-cue span { display: block; position: relative; width: 3px; height: 8px; border-radius: 2px; background: var(--amber); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(13px); opacity: 0.15; } }

/* ---------- Section framework ---------- */
.section { position: relative; padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section-dark { background: var(--ink); color: var(--text-invert); }
.section-dark .section-lede, .section-dark p { color: var(--text-invert-soft); }
.section-dark .section-title { color: var(--text-invert); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.6rem, 6vw, 4.4rem); }
.marker {
  display: flex; align-items: center; gap: 0.85rem;
  margin: 0 0 1.15rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.section-dark .marker { color: var(--amber); }
.marker-num {
  display: inline-grid; place-items: center;
  min-width: 34px; height: 34px; padding-inline: 0.4rem;
  border: 1px solid currentColor; border-radius: 50%;
  font-family: var(--display); font-size: 0.82rem; letter-spacing: 0;
}
.section-title {
  font-size: clamp(1.95rem, 1.2rem + 3vw, 3.5rem);
  max-width: 20ch;
  margin-bottom: 1.2rem;
}
.section-lede { color: var(--text-soft); font-size: clamp(1rem, 0.97rem + 0.24vw, 1.12rem); max-width: 62ch; }

/* ---------- 01 Location / compass ---------- */
.section-location { background: linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%); }

.compass-layout {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}
@media (min-width: 900px) { .compass-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); } }

.compass-wrap { position: relative; aspect-ratio: 1; max-width: 620px; margin-inline: auto; width: 100%; }
.compass-texture {
  position: absolute; inset: 6%;
  width: 88%; height: 88%; object-fit: cover;
  opacity: 0.42; border-radius: 50%;
  mix-blend-mode: multiply;
  filter: saturate(0.85);
}
.compass { position: relative; width: 100%; height: 100%; overflow: visible; }

.compass-rings circle { fill: none; stroke: rgba(20,25,28,0.2); stroke-width: 1; }
.compass-rings circle:first-child { stroke-dasharray: 3 7; }
.compass-ticks line { stroke: rgba(20,25,28,0.32); stroke-width: 1.4; }
.compass-ring-label {
  fill: var(--text-soft); font-family: var(--body);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.24em;
  paint-order: stroke fill;
  stroke: var(--bone-2); stroke-width: 6px; stroke-linejoin: round;
}
.compass-core circle { fill: var(--ink); }
.compass-core path { fill: none; stroke: var(--amber); stroke-width: 2; }
.compass-core line { stroke: var(--red); stroke-width: 2; stroke-linecap: round; }

.pin { cursor: pointer; }
.pin-dot {
  fill: var(--bone);
  stroke: var(--ink); stroke-width: 2;
  transition: fill 0.3s var(--ease), stroke 0.3s var(--ease), r 0.3s var(--ease);
}
.pin-hit { fill: transparent; }
.pin:hover .pin-dot, .pin:focus-visible .pin-dot { fill: var(--amber); stroke: var(--red); }
.pin.is-active .pin-dot { fill: var(--red); stroke: var(--red); r: 11; }
.pin.is-active { filter: drop-shadow(0 0 10px rgba(227,27,35,0.55)); }
.pin:focus { outline: none; }
.pin:focus-visible .pin-hit { stroke: var(--red); stroke-width: 2; stroke-dasharray: 3 4; }

.compass-hint {
  position: absolute; left: 50%; bottom: -0.4rem; transform: translateX(-50%);
  margin: 0; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft);
}

.compass-panel { position: relative; }
.compass-list { position: relative; min-height: 250px; }
.compass-list li {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  padding-left: clamp(1.1rem, 2vw, 1.8rem);
  border-left: 2px solid var(--red);
}
.compass-list li.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.card-dist {
  margin: 0 0 0.55rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.compass-list h3 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem); margin-bottom: 0.75rem; }
.compass-list p:not(.card-dist) { color: var(--text-soft); max-width: 46ch; }
.compass-foot {
  margin-top: 2rem; padding-top: 1.3rem;
  border-top: 1px solid rgba(20,25,28,0.13);
  font-size: 0.9rem; color: var(--text-soft);
}

/* Photo strip */
.strip-photos {
  display: grid; gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  margin-top: clamp(3rem, 7vw, 5.5rem);
}
.strip-photos figure { position: relative; margin: 0; overflow: hidden; }
.strip-photos img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.94);
}
.strip-photos figure:hover img { transform: scale(1.045); filter: saturate(1.06); }
.strip-photos figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(20,25,28,0.86));
  color: var(--text-invert);
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- 02 Rooms ---------- */
.section-rooms { overflow: hidden; }
.rooms-grid {
  display: grid; gap: clamp(0.6rem, 1.4vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 860px) {
  .rooms-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
      "m m m m m m m t t t t t"
      "w w w w s s s t t t t t";
  }
  .room-main  { grid-area: m; }
  .room-tall  { grid-area: t; }
  .room-wide  { grid-area: w; }
  .room-small { grid-area: s; }
  .room-main img  { aspect-ratio: 16 / 9; }
  .room-wide img, .room-small img { aspect-ratio: 4 / 3; }
  .room-tall img  { height: 100%; aspect-ratio: auto; }
}
.rooms-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink-2); }
.rooms-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform 1.2s var(--ease); }
.rooms-grid figure:hover img { transform: scale(1.04); }
.rooms-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(9,12,14,0.9));
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-invert);
}

.ledger { border-top: 1px solid rgba(244,239,230,0.16); padding-top: clamp(2rem, 4vw, 3rem); }
.ledger-title {
  font-family: var(--body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 1.8rem;
}
.ledger-list {
  display: grid; gap: 0.9rem clamp(1rem, 3vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}
.ledger-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(244,239,230,0.1);
  font-size: 0.94rem;
  color: var(--text-invert);
}
.ledger-list svg { width: 21px; height: 21px; flex: none; color: var(--red); }
.ledger-note { margin-top: 1.8rem; font-size: 0.92rem; color: var(--text-invert-soft); }
.ledger-note a { color: var(--amber); text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- 03 The Stay ---------- */
.section-stay { background: var(--bone-2); }
.stay-grid {
  display: grid; gap: clamp(0.9rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
}
@media (min-width: 900px) {
  .stay-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .stay-card-feature { grid-column: span 3; grid-row: span 2; }
  .stay-card { grid-column: span 3; }
  .stay-card-wide { grid-column: span 6; }
}
@media (min-width: 1120px) {
  .stay-card-feature { grid-column: span 2; grid-row: span 2; }
  .stay-card { grid-column: span 2; }
  .stay-card-wide { grid-column: span 6; }
}
.stay-card {
  position: relative; overflow: hidden;
  background: var(--bone); border: 1px solid rgba(20,25,28,0.09);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.stay-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(227,27,35,0.3); }
.stay-card h3 { font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem); margin-bottom: 0.6rem; }
.stay-card p { color: var(--text-soft); font-size: 0.95rem; }
.stay-icon {
  width: 46px; height: 46px; margin-bottom: 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sunrise);
  color: var(--ink);
}
.stay-icon svg { width: 23px; height: 23px; }

.stay-card-feature, .stay-card-wide { padding: 0; display: flex; flex-direction: column; }
.stay-card-feature figure, .stay-card-wide figure { margin: 0; overflow: hidden; flex: 1 1 auto; min-height: 180px; }
.stay-card-feature img, .stay-card-wide img {
  width: 100%; height: 100%; object-fit: cover; min-height: 180px;
  transition: transform 1.1s var(--ease);
}
.stay-card-feature:hover img, .stay-card-wide:hover img { transform: scale(1.05); }
.stay-card-body { padding: clamp(1.4rem, 3vw, 2rem); }
@media (min-width: 900px) {
  .stay-card-wide { flex-direction: row; align-items: stretch; }
  .stay-card-wide figure { flex: 0 0 44%; }
  .stay-card-wide .stay-card-body { display: flex; flex-direction: column; justify-content: center; }
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--ink);
  color: var(--text-invert);
  padding-block: clamp(2.8rem, 6vw, 4.4rem);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 130% at 50% 0%, rgba(227,27,35,0.16), transparent 62%);
}
.stats-grid {
  position: relative;
  display: grid; gap: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 0.45rem; }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.3rem, 1.4rem + 3vw, 3.7rem); line-height: 1;
  background: var(--sunrise);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-invert-soft);
}

/* ---------- 04 Explore ---------- */
.explore-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
@media (min-width: 960px) {
  /* cards size to their own copy so a tall neighbour never opens a void inside a short card */
  .explore-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
  .explore-card-lg { grid-column: span 2; grid-row: span 1; display: grid; grid-template-columns: 1fr 1fr; }
  .explore-card-lg figure { height: 100%; }
  .explore-cta { grid-column: span 2; }
}
.explore-card {
  position: relative; overflow: hidden;
  background: var(--bone); border: 1px solid rgba(20,25,28,0.1);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.explore-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(227,27,35,0.28); }
.explore-card figure { margin: 0; overflow: hidden; }
.explore-card img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.96);
}
.explore-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
@media (min-width: 960px) { .explore-card-lg img { aspect-ratio: auto; } }
.explore-body { padding: clamp(1.4rem, 3vw, 2.1rem); display: flex; flex-direction: column; flex: 1 1 auto; }
.explore-tag {
  margin: 0 0 0.7rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.explore-card h3 { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.72rem); margin-bottom: 0.75rem; }
.explore-card p { color: var(--text-soft); font-size: 0.95rem; }
.explore-fact {
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(20,25,28,0.1);
  font-size: 0.83rem !important; font-style: italic;
  color: var(--slate) !important;
}

.explore-cta {
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.4rem;
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--text-invert);
  position: relative; overflow: hidden;
}
.explore-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(76% 120% at 88% 6%, rgba(227,27,35,0.26), transparent 62%);
}
.explore-cta > * { position: relative; }
.explore-cta .explore-tag { color: var(--amber); }
.explore-cta h3 { font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem); margin-bottom: 0.7rem; }
.explore-cta p { color: var(--text-invert-soft); font-size: 0.95rem; max-width: 46ch; }
.explore-cta .btn { align-self: flex-start; margin-top: 1.3rem; }

/* ---------- 05 Seasons ---------- */
.section-seasons { overflow: hidden; }
.seasons-rail {
  display: grid; gap: clamp(0.8rem, 1.8vw, 1.3rem);
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 80vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  padding-bottom: 1.2rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,239,230,0.28) transparent;
}
.seasons-rail::-webkit-scrollbar { height: 5px; }
.seasons-rail::-webkit-scrollbar-thumb { background: rgba(244,239,230,0.28); border-radius: 4px; }
@media (min-width: 940px) {
  .seasons-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    max-width: var(--container); margin-inline: auto;
    padding-bottom: 0;
  }
}
.season {
  scroll-snap-align: start;
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--ink-2);
  display: flex; flex-direction: column;
}
.season figure { margin: 0; overflow: hidden; }
.season img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.season:hover img { transform: scale(1.055); }
.season-body {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.4vw, 1.7rem);
  background: linear-gradient(180deg, transparent, rgba(9,12,14,0.74) 30%, rgba(9,12,14,0.96));
  color: var(--text-invert);
}
.season-when {
  margin: 0 0 0.35rem;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber);
}
.season h3 { font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.75rem); margin-bottom: 0.5rem; }
.season-body p:not(.season-when) { font-size: 0.88rem; color: rgba(244,239,230,0.8) !important; }

.seasons-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(244,239,230,0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, rgba(227,27,35,0.1), transparent 62%);
}
.seasons-cta p { margin: 0; max-width: 54ch; color: var(--text-invert) !important; font-size: 1.02rem; }

/* ---------- Gallery ---------- */
.section-gallery { background: var(--bone-2); }
.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: minmax(0, 1fr); } }

.gallery-item {
  position: relative; display: block; padding: 0; overflow: hidden; cursor: pointer;
  background: var(--bone-3); border: none; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.gallery-item:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery-item:hover img { filter: brightness(1.06) saturate(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(20,25,28,0.06), rgba(132,0,47,0.42));
  opacity: 0; transition: opacity 0.4s var(--ease);
  color: #fff;
}
.gallery-hover svg { width: 34px; height: 34px; transform: scale(0.82); transition: transform 0.45s var(--ease); }
.gallery-item:hover .gallery-hover, .gallery-item:focus-visible .gallery-hover { opacity: 1; }
.gallery-item:hover .gallery-hover svg { transform: scale(1); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox-backdrop { position: absolute; inset: 0; cursor: zoom-out; }
.lightbox-stage {
  position: relative; margin: 0; max-width: 90vw; max-height: 90vh;
  transform: scale(0.94); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  text-align: center;
}
.lightbox.is-open .lightbox-stage { transform: scale(1); opacity: 1; }
.lightbox-stage img {
  max-width: 90vw; max-height: 78vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9);
  margin-inline: auto;
}
.lightbox-stage figcaption {
  margin-top: 1rem; color: rgba(244,239,230,0.78);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.lightbox-btn {
  position: absolute; z-index: 3;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: rgba(244,239,230,0.1); color: #fff;
  border: 1px solid rgba(244,239,230,0.24); border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.06); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: clamp(0.9rem, 3vw, 2rem); right: clamp(0.9rem, 3vw, 2rem); }
.lightbox-prev { left: clamp(0.5rem, 3vw, 2.2rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.5rem, 3vw, 2.2rem); top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-counter {
  position: absolute; left: 50%; bottom: clamp(0.9rem, 3vw, 1.8rem); transform: translateX(-50%);
  margin: 0; color: rgba(244,239,230,0.72);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
}
body.is-locked { overflow: hidden; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 940px) { .faq-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
@media (min-width: 940px) { .faq-intro { position: sticky; top: calc(var(--header-h) + 2rem); } }
.faq-intro > p { color: var(--text-soft); max-width: 44ch; }
.faq-intro .btn { margin-top: 0.6rem; }
.faq-figure { margin: 2.2rem 0 0; overflow: hidden; border-radius: var(--radius-lg); }
.faq-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.faq-item { border-bottom: 1px solid rgba(20,25,28,0.13); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.25rem 0;
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.02rem, 0.95rem + 0.45vw, 1.28rem);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary i {
  position: relative; flex: none;
  width: 26px; height: 26px; border: 1px solid rgba(20,25,28,0.26); border-radius: 50%;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.4s var(--ease);
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.faq-item summary i::before { width: 11px; height: 1.5px; }
.faq-item summary i::after { width: 1.5px; height: 11px; }
.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary i { border-color: var(--red); transform: rotate(180deg); }
.faq-item[open] summary i::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 3rem 1.5rem 0; color: var(--text-soft); margin: 0; }

/* ---------- Contact ---------- */
.section-contact { position: relative; overflow: hidden; }
.section-contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 88% 8%, rgba(227,27,35,0.16), transparent 60%);
  pointer-events: none;
}
.contact-layout { position: relative; display: grid; gap: clamp(2.4rem, 5vw, 4.2rem); align-items: start; }
@media (min-width: 940px) { .contact-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.contact-intro > p { max-width: 46ch; }

.contact-details { display: grid; gap: 0.55rem; margin: 2.2rem 0; }
.contact-detail {
  display: flex; align-items: center; gap: 0.95rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(244,239,230,0.15); border-radius: var(--radius);
  text-decoration: none; color: var(--text-invert);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
a.contact-detail:hover { border-color: var(--red); background: rgba(227,27,35,0.09); transform: translateX(4px); }
.contact-detail svg { width: 21px; height: 21px; flex: none; color: var(--amber); }
.contact-detail span { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-detail strong { font-size: 1rem; font-weight: 600; }
.contact-detail em {
  font-style: normal; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-invert-soft);
}

.map-frame {
  overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(244,239,230,0.15);
  filter: grayscale(0.35) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 300px; border: 0; }

/* Form */
.contact-form {
  background: rgba(244,239,230,0.045);
  border: 1px solid rgba(244,239,230,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
  display: grid; gap: 0.9rem;
}
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; gap: 0.9rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-invert-soft);
}
.field > span em { font-style: normal; opacity: 0.6; letter-spacing: 0.1em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  min-height: 46px;
  font-family: var(--body); font-size: 0.95rem;
  color: var(--text-invert);
  background: rgba(20,25,28,0.55);
  border: 1px solid rgba(244,239,230,0.18);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(169,178,180,0.62); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: rgba(20,25,28,0.8);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23A9B2B4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
  padding-right: 2.4rem;
}
.field select option { color: #14191C; background: #F4EFE6; }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }
.field-error { font-size: 0.76rem; color: #FF9AA0; letter-spacing: 0.02em; text-transform: none; }

.btn-submit { margin-top: 0.5rem; width: 100%; }
.btn-submit-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  display: none;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.is-loading .btn-submit-label { opacity: 0.55; }
.btn-submit.is-loading .btn-submit-spinner { display: block; }
.btn-submit[disabled] { cursor: wait; }
.form-status { margin: 0; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--amber); }
.form-status.is-error { color: #FF9AA0; }
.form-note { margin: 0; font-size: 0.79rem; color: var(--text-invert-soft); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--text-invert);
  padding-top: clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
}
.footer-ridge { position: absolute; top: 0; left: 0; width: 100%; height: clamp(60px, 8vw, 120px); }
.footer-ridge path { fill: var(--bone-2); }
.section-contact + .site-footer .footer-ridge path { fill: var(--ink); }
.footer-grid {
  position: relative;
  display: grid; gap: clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.1fr); } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand .brand-name { color: var(--text-invert); }
.footer-brand .brand-sub { color: var(--amber); }
.footer-brand p { color: var(--text-invert-soft); font-size: 0.93rem; max-width: 42ch; }
.footer-heading {
  margin: 0 0 1.1rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
.footer-nav a, .footer-contact a:not(.btn) {
  color: var(--text-invert-soft); text-decoration: none; font-size: 0.93rem;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover, .footer-contact a:not(.btn):hover { color: var(--amber); }
.footer-hours { font-size: 0.83rem; color: var(--text-invert-soft); margin: 0.4rem 0 0.6rem; line-height: 1.7; }
.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.7rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(244,239,230,0.12);
}
.footer-bottom p { margin: 0; font-size: 0.78rem; color: var(--text-invert-soft); }
.footer-credit { letter-spacing: 0.03em; }
.footer-watermark {
  position: absolute; left: 50%; bottom: -0.16em; transform: translateX(-50%);
  margin: 0; pointer-events: none; user-select: none;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(5rem, 20vw, 15rem); line-height: 0.78;
  color: rgba(244,239,230,0.035);
  white-space: nowrap; letter-spacing: 0.02em;
}

/* ---------- Sticky call bar (mobile) ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 105;
  display: none; gap: 1px;
  background: rgba(20,25,28,0.2);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 -8px 30px -12px rgba(0,0,0,0.5);
}
.call-bar.is-visible { transform: none; }
.call-bar a {
  flex: 1 1 auto;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 54px; padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.call-bar svg { width: 17px; height: 17px; }
.call-bar-phone { background: var(--red); color: #fff; }
.call-bar-book { background: var(--ink); color: var(--text-invert); flex: 0 0 40%; }
@media (max-width: 899px) { .call-bar { display: flex; } }

/* ---------- Motion gating ----------
   .motion is only added when GSAP loaded and reduced motion is not requested.
   Without it every element renders in its final state. */
.motion [data-reveal],
.motion [data-stagger] > *,
.motion [data-hero-el],
.motion [data-split] { opacity: 0; }
.motion .split-line > span { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 899px) {
  :root { --header-h: 66px; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 78svh; padding-bottom: 6rem; }
  .hero-title { max-width: 100%; }
  .site-header.is-menu-open { background: var(--bone); backdrop-filter: none; -webkit-backdrop-filter: none; }
  body { padding-bottom: 54px; }
  .compass-list { min-height: 300px; }
}
@media (max-width: 560px) {
  .hero-facts { gap: 0.5rem 1.2rem; }
  .hero-actions .btn { width: 100%; }
  .seasons-cta { flex-direction: column; align-items: flex-start; }
  .seasons-cta .btn { width: 100%; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-btn { width: 46px; height: 46px; }
  .faq-answer p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-plate { transition: none; }
}

@media print {
  .site-header, .call-bar, .progress-bar, .scroll-cue, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}
