/* ============================================================
   OZARK TOURS — Main Stylesheet
   Mobile-first · BEM-inspired · CSS custom properties
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --forest:       #1a2e1a;
  --forest-mid:   #2d4a2d;
  --forest-dark:  #0d1a0d;
  --amber:        #c9893a;
  --amber-light:  #e8a84e;
  --cream:        #f5f0e8;
  --cream-dark:   #e8e0d0;
  --gray:         #6b7280;
  --white:        #ffffff;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --page-padding: clamp(1.25rem, 5vw, 2.5rem);
  --max-width:    1200px;
  --radius:       0.5rem;
  --radius-lg:    1rem;
  --transition:   0.3s ease;
  --nav-height:   68px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--forest-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--amber);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---- Typography Utilities ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.625rem); }

em {
  font-style: italic;
  color: var(--amber);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 540px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: 3rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  min-height: 52px;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--amber-light);
}

.btn--outline {
  border: 2px solid rgba(245, 240, 232, 0.7);
  color: var(--cream);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--forest-dark);
  border-color: var(--cream);
}

.btn--ghost {
  border: 2px solid rgba(245, 240, 232, 0.4);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: rgba(245, 240, 232, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.btn--full {
  width: 100%;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav--scrolled {
  background: rgba(13, 26, 13, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.nav__logo:hover {
  opacity: 0.8;
}

/* Desktop nav links — hidden on mobile */
.nav__links {
  display: none;
  gap: 2.25rem;
}

.nav__links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  padding-bottom: 4px;
  transition: color var(--transition);
}

/* Amber underline grows from the left on hover/focus */
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--amber-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--amber-light);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
  padding: 0.625rem 1.375rem;
  min-height: 44px;
  font-size: 0.875rem;
}

/* Hamburger */
.nav__hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav__hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile full-screen nav */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 20, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem var(--page-padding) 3rem;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 99;
  overflow-y: auto;
}

.nav__links.is-open a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.375rem;
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition), padding-left var(--transition);
}

.nav__links.is-open a:hover {
  color: var(--amber-light);
  padding-left: 0.5rem;
}

.nav__links.is-open a:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
/* Hero is a tall scroll track; the sticky stage pins to the viewport
   while JS pushes the footage in (the "zoom through the sky" effect). */
.hero {
  position: relative;
  height: 170vh;
  background: var(--forest-dark);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -20% 0;
  background-color: var(--forest-dark);
  overflow: hidden;
  will-change: transform, filter;
  transform-origin: 50% 45%;
}

/* Atmospheric bloom that intensifies as you push into the sky */
.hero__atmos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(120% 90% at 50% 42%,
      rgba(255, 248, 235, 0.0) 18%,
      rgba(232, 168, 78, 0.16) 52%,
      rgba(13, 26, 13, 0.72) 100%);
  will-change: opacity;
}

/* Video fills the bg container exactly like a background-image */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Poster attribute handles the fallback static image */
}

/* hero zoom-in handled by JS parallax now */
.hero.is-loaded .hero__bg { }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 10, 0.55) 0%,
    rgba(10, 20, 10, 0.20) 35%,
    rgba(10, 20, 10, 0.20) 60%,
    rgba(10, 20, 10, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--page-padding);
  max-width: 820px;
  color: var(--cream);
}

.hero__content .eyebrow {
  color: var(--amber-light);
}

.hero__headline {
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.88);
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.hero__scroll-hint:hover {
  opacity: 1;
}

.scroll-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);    opacity: 0.8; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

@media (min-width: 600px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================================
   JOURNEY — SCROLLYTELLING
   One SVG line flows down the full height of the section.
   Five content stops, each min-height:100vh, spaced ~500vh total.
   Cards fade in via IntersectionObserver. Line draws via JS.
   ============================================================ */
.journey {
  background: var(--forest-dark);
  color: var(--cream);
  overflow: clip; /* prevents sticky bg from bleeding into next section */
}

.journey__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem var(--page-padding) 2.5rem;
}

.journey__header h2 {
  color: var(--cream);
}

/* ── Track: the tall scrollable section. ── */
.journey__track {
  position: relative;
  /* Tuck the photo's dark top edge up behind the header (seamless join) */
  margin-top: -2.5rem;
  /* padding-bottom keeps the sticky bg-stage pinned through the last stop and
     the Arkansas zoom-out finale — kept short so the state view doesn't linger */
  padding-bottom: 95vh;
}

/* ── Background photo stage: sticky 100vh, crossfades between stops ── */
.journey__bg-stage {
  position: sticky;
  top: 0;
  /* svh = the *visible* viewport on mobile (matches the address-bar-up height),
     so the focal point stays centred on screen instead of being pushed up. */
  height: 100svh;
  margin-bottom: -100svh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.journey__bg-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Even darkening, fading to solid forest-dark at the very bottom so the
     photo melts seamlessly into the blend divider below (no hard seam) */
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 10, 0.32) 0%,
    rgba(10, 22, 10, 0.32) 78%,
    var(--forest-dark) 100%
  );
  z-index: 1;
}

/* Top fade: photo emerges from the dark header — no hard seam */
.journey__bg-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32vh;
  background: linear-gradient(
    to bottom,
    var(--forest-dark) 0%,
    rgba(13, 26, 13, 0.65) 38%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.journey__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.journey__bg[data-bg="0"] {
  opacity: 1;
}

/* Live aerial map fills the sticky bg stage, behind the darkening overlays
   (::after z-1 / ::before z-2) so the trail line + cards stay legible. */
.journey__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--forest-dark);
}
.journey__map .maplibregl-ctrl-attrib { font-size: 10px; opacity: 0.7; }
.journey__map .maplibregl-canvas { outline: none; }

/* Location photo — a compact card that pops up over the map, beside the
   text block, at each stop (JS sets opacity + a side class). */
.journey__photo {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  margin: 0;
  width: min(40vw, 480px);
  height: min(60vh, 580px);
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: #05070f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: opacity 0.3s ease;
}
.journey__photo.is-left  { left: clamp(1.5rem, 6vw, 6rem); right: auto; }
.journey__photo.is-right { right: clamp(1.5rem, 6vw, 6rem); left: auto; }
.journey__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journey__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 7, 15, 0.25) 0%, rgba(5, 7, 15, 0) 30%,
    rgba(5, 7, 15, 0) 46%, rgba(5, 7, 15, 0.92) 100%);
}
.journey__photo-cap {
  z-index: 1;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.65);
}

/* Phone: no room beside the card — dock the popup low and near-full-width. */
@media (max-width: 767px) {
  .journey__photo,
  .journey__photo.is-left,
  .journey__photo.is-right {
    top: auto;
    bottom: 4vh;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(90vw, 460px);
    height: 40vh;
  }
}

/* Takeoff caption over the map at the start of the route */
.journey__depart {
  position: absolute;
  top: 15vh;
  left: 50%;
  transform: translate(-50%, -8px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.journey__depart.is-on { opacity: 1; transform: translate(-50%, 0); }
.journey__depart-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-light);
}
.journey__depart-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--white);
  line-height: 1.05;
}
.journey__depart-sub {
  font-size: 0.8rem; letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.72);
}

/* Map pin that rises / forms out of the terrain when the camera arrives.
   The inner .map-pin is animated; MapLibre positions the outer wrapper. */
.map-pin {
  transform: translateY(9px) scale(0);
  transform-origin: 50% 100%;
  opacity: 0;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.55));
}
.map-pin.is-in {
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.map-pin__svg { display: block; }

/* Ground ripple that expands as the pin forms */
.map-pin::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 16px;
  height: 7px;
  border-radius: 50%;
  background: rgba(232, 168, 78, 0.55);
  transform: translateX(-50%) scale(0);
}
.map-pin.is-in::after {
  animation: pinRipple 1.5s ease-out 0.15s both;
}
@keyframes pinRipple {
  0%   { transform: translateX(-50%) scale(0.3); opacity: 0.85; }
  100% { transform: translateX(-50%) scale(2.6); opacity: 0; }
}

/* ── Trail: fixed viewport overlay. viewBox 0–100 always maps to the
      viewport, so the path coordinates never break (no sticky un-stick). ── */
.trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 4;
}

.journey__path-fill {
  filter: drop-shadow(0 0 8px rgba(232, 168, 78, 1)) drop-shadow(0 0 20px rgba(201, 137, 58, 0.7));
}

/* ── Dots: absolutely positioned on the track at SVG waypoint coords ── */
.journey__dot {
  position: absolute;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.journey__dot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 137, 58, 0.3);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.journey__dot-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(201, 137, 58, 0.2);
  transition: background 0.35s ease;
}

.journey__dot.is-reached .journey__dot-ring {
  border-color: rgba(201, 137, 58, 0.75);
}

.journey__dot.is-reached .journey__dot-inner {
  background: rgba(201, 137, 58, 0.55);
}

.journey__dot.is-active .journey__dot-ring {
  border-color: var(--amber);
  transform: scale(1.6);
  box-shadow: 0 0 14px rgba(201, 137, 58, 0.5);
}

.journey__dot.is-active .journey__dot-inner {
  background: var(--amber);
}

/* ── Content stops ── */
.journey__stop {
  position: relative;
  /* Taller stops = much more scroll per leg, so the map transitions slowly
     and naturally as you scroll instead of flying past. */
  min-height: 185vh;
  display: flex;
  align-items: center;
  padding: 0 var(--page-padding);
  z-index: 1;
}

/* Cards sit on the side opposite to their dot */
.journey__stop[data-side="left"] {
  justify-content: flex-start;
}
.journey__stop[data-side="right"] {
  justify-content: flex-end;
}

/* Mobile: reduced zigzag amplitude — percentage padding clears the dots */
@media (max-width: 767px) {
  .journey__stop {
    min-height: 150vh;
  }
  /* Keep the dark forest-dark blend to a thin strip at the very bottom so it
     doesn't read as a green shade over the lower half of the phone screen. */
  .journey__bg-stage::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 22, 10, 0.28) 0%,
      rgba(10, 22, 10, 0.28) 90%,
      var(--forest-dark) 100%);
  }
  .journey__stop[data-side="left"] {
    padding-right: calc(37% + 0.5rem);
  }
  .journey__stop[data-side="right"] {
    padding-left: calc(37% + 0.5rem);
  }
  .journey__stop .journey__card {
    max-width: none;
    width: 100%;
  }
}

/* ── Content card ── */
.journey__card {
  max-width: 340px;
  background: rgba(13, 26, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 137, 58, 0.28);
  border-radius: 1.25rem;
  padding: 1.875rem 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.journey__card .step-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.25rem;
}

.journey__card .step-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(201, 137, 58, 0.7);
  margin: 0 0 0.75rem;
}

.journey__card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.journey__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.78);
}

@media (min-width: 768px) {
  .journey__card {
    max-width: 440px;
    padding: 2.5rem 2.75rem;
  }

  .journey__card h3 {
    font-size: 1.75rem;
  }

  .journey__card p {
    font-size: 1.0625rem;
    line-height: 1.75;
  }
}

/* ============================================================
   ADVENTURES — CHOOSE YOUR EXPERIENCE
   ============================================================ */
.adventures {
  background: var(--cream);
  padding: 1.5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.adventures .container {
  margin-bottom: 2.5rem;
}

/* ── Trail hand-off connector: the fixed trail line lands on the node,
      then a bar splits out to both sides ── */
.adv-intro {
  position: relative;
  height: 16px;            /* node + bar sit at the top */
  margin-bottom: 2.5rem;
  pointer-events: none;
  z-index: 3;
}

/* Node where the trail lands and splits */
.adv-intro__node {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 13px;
  height: 13px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(232, 168, 78, 0.8);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.05s;
}

/* Horizontal bar splits outward from center to both sides */
.adv-intro__bar {
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(760px, 86vw);
  height: 2px;
  margin-top: -1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: linear-gradient(
    to right,
    rgba(201, 137, 58, 0) 0%,
    var(--amber) 22%,
    var(--amber) 78%,
    rgba(201, 137, 58, 0) 100%
  );
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.18s;
}

.adventures.is-unrolled .adv-intro__node {
  opacity: 1;
  transform: scale(1);
}
.adventures.is-unrolled .adv-intro__bar { transform: translateX(-50%) scaleX(1); }

/* ── Section unfurls downward beneath the split bar ── */
.js .adventures .container {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
  transition-delay: 0.42s;
}

.js .adventures.is-unrolled .container {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.js .adventures__grid > .adv-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .adventures.is-unrolled .adventures__grid > .adv-card {
  opacity: 1;
  transform: none;
}

.adventures.is-unrolled .adv-card:nth-child(1) { transition-delay: 0.58s; }
.adventures.is-unrolled .adv-card:nth-child(2) { transition-delay: 0.65s; }
.adventures.is-unrolled .adv-card:nth-child(3) { transition-delay: 0.72s; }
.adventures.is-unrolled .adv-card:nth-child(4) { transition-delay: 0.79s; }
.adventures.is-unrolled .adv-card:nth-child(5) { transition-delay: 0.86s; }
.adventures.is-unrolled .adv-card:nth-child(6) { transition-delay: 0.93s; }
.adventures.is-unrolled .adv-card:nth-child(7) { transition-delay: 1.00s; }
.adventures.is-unrolled .adv-card:nth-child(8) { transition-delay: 1.07s; }

/* Mobile: single-column stack */
.adventures__grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Adventure card base ── */
.adv-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 280px;
  cursor: pointer;
  background: var(--forest-dark);
}

.adv-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.adv-card:hover .adv-card__bg {
  transform: scale(1.06);
}

/* Gradient overlay */
.adv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 10, 0.82) 0%,
    rgba(10, 20, 10, 0.30) 55%,
    rgba(10, 20, 10, 0.12) 100%
  );
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.adv-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(10, 20, 10, 0.72) 0%,
    rgba(10, 20, 10, 0.20) 55%,
    rgba(10, 20, 10, 0.05) 100%
  );
}

/* Card body — sits above overlay */
.adv-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem 1.75rem;
  z-index: 2;
  transition: transform 0.35s ease;
}

.adv-card:hover .adv-card__body {
  transform: translateY(-5px);
}

.adv-card__tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.45rem;
}

.adv-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  display: inline-block;
  position: relative;
}

/* Amber underline slide-in on hover */
.adv-card__title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
}

.adv-card:hover .adv-card__title::after {
  transform: scaleX(1);
}

.adv-card__tagline {
  display: block;
  font-size: 0.825rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.45;
}

/* Full-card invisible trigger button */
.adv-card__trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
}

.adv-card__trigger span {
  opacity: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  background: rgba(13, 26, 13, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(201, 137, 58, 0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
}

.adv-card:hover .adv-card__trigger span,
.adv-card__trigger:focus span {
  opacity: 1;
  transform: translateY(0);
}

.adv-card__trigger:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: -4px;
  border-radius: var(--radius-lg);
}

/* ── Featured card (Crystal Mining — 2-col) ── */
.adv-card--featured {
  height: 340px;
}

/* Amber color warmth via CSS tint — richer than a border */
.adv-card--featured .adv-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 137, 58, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ── Wide card (Antebellum Mansion — full-width) ── */
.adv-card--wide {
  height: 260px;
}

/* Tablet: 2-column grid */
@media (min-width: 640px) {
  .adventures__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .adv-card--featured {
    grid-column: span 2;
    height: 380px;
  }

  .adv-card--wide {
    grid-column: span 2;
    height: 280px;
  }
}

/* Desktop: 4-column grid */
@media (min-width: 1024px) {
  .adventures__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .adv-card {
    height: 340px;
  }

  .adv-card--featured {
    grid-column: span 2;
    height: 380px;
  }

  .adv-card--wide {
    grid-column: span 4;
    height: 260px;
  }
}

/* ============================================================
   ADVENTURE MODAL
   ============================================================ */
.adv-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
}

.adv-modal[hidden] {
  display: none;
}

.adv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.adv-modal.is-open .adv-modal__backdrop {
  opacity: 1;
}

/* Mobile: bottom sheet */
.adv-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 88vh;
  background: var(--white);
  border-radius: 1.375rem 1.375rem 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile drag-handle indicator */
.adv-modal__dialog::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(13, 26, 13, 0.14);
  border-radius: 2px;
  margin: 0.875rem auto 0;
  flex-shrink: 0;
}

.adv-modal.is-open .adv-modal__dialog {
  transform: translateY(0);
}

.adv-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 26, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.adv-modal__close:hover {
  background: rgba(13, 26, 13, 0.85);
}

.adv-modal__img-wrap {
  flex-shrink: 0;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.adv-modal__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0ms;
}

.adv-modal.is-open .adv-modal__img {
  opacity: 1;
  transition-delay: 80ms;
}

.adv-modal__body {
  padding: 1.75rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.adv-modal__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.adv-modal__title {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  color: var(--forest-dark);
  line-height: 1.15;
  margin: 0;
}

.adv-modal__tagline {
  font-size: 1rem;
  color: var(--amber);
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.adv-modal__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

.adv-modal__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.adv-modal__highlights li {
  font-size: 0.9rem;
  color: var(--forest);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.5;
}

.adv-modal__highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.6rem;
  top: 0.22em;
}

.adv-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.adv-modal__book-btn {
  text-align: center;
}

.adv-modal__back {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.875rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.adv-modal__back:hover {
  color: var(--forest);
}

/* Desktop: centered modal with side-by-side layout */
@media (min-width: 768px) {
  .adv-modal {
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .adv-modal__dialog {
    width: min(80vw, 960px);
    max-height: 90vh;
    border-radius: 1.375rem;
    flex-direction: row;
    transform: scale(0.94);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
    overflow-y: unset;
  }

  .adv-modal__dialog::before {
    display: none;
  }

  .adv-modal.is-open .adv-modal__dialog {
    transform: scale(1);
    opacity: 1;
  }

  .adv-modal__img-wrap {
    width: 42%;
    flex-shrink: 0;
    height: auto;
    min-height: 420px;
  }

  .adv-modal__body {
    flex: 1;
    padding: 2.5rem 2.25rem;
    overflow-y: auto;
  }

  .adv-modal__close {
    top: 1.125rem;
    right: 1.125rem;
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest-dark);
  }

  .adv-modal__close:hover {
    background: var(--white);
  }

  .adv-modal__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   WHY OZARK TOURS — NUMBERED DIFFERENTIATORS
   ============================================================ */
.why {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 0 4rem;
}

.why .container {
  margin-bottom: 3rem;
}

.why .container h2 {
  color: var(--cream);
}

.why__list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
}

/* Initial hidden state — set by JS (progressive enhancement) */
.js .why__item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .why__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why__item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.why__item:last-child {
  border-bottom: none;
}

.why__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.why__text h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why__text p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.68);
}

@media (min-width: 768px) {
  .why__item {
    gap: 3.5rem;
    padding: 2.75rem 0;
  }

  .why__num {
    font-size: 3.25rem;
    min-width: 4.5rem;
  }

  .why__text h3 {
    font-size: 1.5rem;
  }

  .why__text p {
    max-width: 580px;
    font-size: 1rem;
  }
}

/* ============================================================
   STATS — BY THE NUMBERS
   ============================================================ */
.stats {
  background: var(--amber);
  padding: 4.5rem var(--page-padding);
}

.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  text-align: center;
}

.stats__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--forest-dark);
  line-height: 1;
}

.stats__plus,
.stats__star {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--forest-dark);
  opacity: 0.75;
}

.stats__item p {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 26, 13, 0.6);
}

@media (min-width: 640px) {
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 6rem var(--page-padding);
}

.testimonial__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial__mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--amber);
  opacity: 0.35;
  display: block;
  margin-bottom: 1.5rem;
  user-select: none;
}

.testimonial blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
}

.testimonial blockquote footer {
  margin-top: 1.75rem;
}

.testimonial blockquote cite {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-style: normal;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--cream);
  padding: 5rem 0 4rem;
}

.gallery .container {
  margin-bottom: 2.5rem;
}

/* Mobile: stacked, each image fills width */
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-mid);
}

.gallery__img {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

/* Mobile aspect ratios */
.gallery__item     .gallery__img { aspect-ratio: 16 / 10; }
.gallery__item--tall .gallery__img { aspect-ratio: 4 / 5; }
.gallery__item--wide .gallery__img { aspect-ratio: 21 / 9; }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(10, 20, 10, 0.75) 0%, transparent 100%);
  color: var(--cream);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Desktop: CSS grid layout
   [ tall item ] [ item 2  ]
   [ tall item ] [ item 3  ]
   [  wide item spanning 2 cols  ]
*/
@media (min-width: 768px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--tall .gallery__img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 480px;
  }

  .gallery__item .gallery__img {
    aspect-ratio: 5 / 4;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--wide .gallery__img {
    aspect-ratio: 16 / 6;
  }

  .gallery__item:hover .gallery__img {
    transform: scale(1.04);
  }
}

/* ============================================================
   BOOKING — FINAL CTA
   ============================================================ */
.book {
  background: #f0f4ef;
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(13, 26, 13, 0.1);
}

.book__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.book__copy .eyebrow {
  color: var(--amber);
}

.book__copy h2 {
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.book__copy > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 420px;
}

.book__phone {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--amber);
  transition: color var(--transition);
}

.book__phone:hover {
  color: var(--forest);
}

/* Form */
.book__form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(13, 26, 13, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
  color: var(--forest-dark);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9893a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(13, 26, 13, 0.3);
}

.book__form .btn--primary {
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray);
  text-align: center;
}

.form-success {
  background: rgba(45, 74, 45, 0.08);
  border: 1.5px solid var(--forest-mid);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  color: var(--forest);
  font-weight: 600;
  text-align: center;
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .book__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }

  .book__copy {
    flex: 0 0 360px;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }

  .book__form {
    flex: 1;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 4.5rem var(--page-padding) 2rem;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.875rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
}

.footer__phone {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  transition: color var(--transition);
}

.footer__phone:hover {
  color: var(--amber-light);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 0.5rem;
}

.footer__nav a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.65);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--cream);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   GENERAL FADE-IN UTILITY (used for testimonial, etc.)
   ============================================================ */
.js .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PARALLAX UTILITIES
   ============================================================ */
[data-par], [data-par-x] {
  will-change: transform;
}

/* Gallery items: contain overflow so parallax shift doesn't bleed */
.gallery__item {
  overflow: hidden;
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker {
  background: var(--amber);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: ticker-scroll 36s linear infinite;
  white-space: nowrap;
  padding-left: 2.5rem;
}

.ticker__track span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-dark);
  flex-shrink: 0;
}

.ticker__sep {
  color: rgba(13, 26, 13, 0.45) !important;
  letter-spacing: 0 !important;
  font-size: 0.5rem !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.ticker:hover .ticker__track {
  animation-play-state: paused;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  z-index: 1;
  /* Remove gap by pulling into the section above */
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-divider--to-cream { background: var(--forest-dark); }
.wave-divider--to-forest { background: var(--cream); }

/* Blend divider: soft dark→cream gradient (journey melts into adventures).
   Starts at forest-dark to match the photo's faded bottom edge above it. */
.wave-divider--blend {
  height: 240px;
  overflow: visible;
  margin-top: -1px;
  background: linear-gradient(
    to bottom,
    var(--forest-dark) 0%,
    #16261a 22%,
    #36492c 46%,
    #6a7a52 68%,
    #b3b896 86%,
    var(--cream) 100%
  );
}

/* Adjust section tops so waves sit flush */
.flights { margin-top: 0; }
.why { margin-top: 0; }

/* ============================================================
   WHY SECTION — DECORATIVE ORBS
   ============================================================ */
.why {
  position: relative;
  overflow: hidden;
}

.why__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why__orb {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.why__orb--1 {
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(201,137,58,0.10) 0%, transparent 68%);
  top: -15%;
  right: -10%;
}

.why__orb--2 {
  width: min(400px, 50vw);
  height: min(400px, 50vw);
  background: radial-gradient(circle, rgba(201,137,58,0.07) 0%, transparent 65%);
  bottom: 5%;
  left: -8%;
}

.why__orb--3 {
  width: min(250px, 35vw);
  height: min(250px, 35vw);
  background: radial-gradient(circle, rgba(201,137,58,0.12) 0%, transparent 60%);
  top: 45%;
  left: 50%;
}

/* Ensure why content sits above orbs */
.why .container,
.why__list {
  position: relative;
  z-index: 1;
}

/* ============================================================
   AMBIENT FLOATING PARTICLES
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  display: block;
  animation: ambientFloat 18s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,137,58,0.04) 0%, transparent 65%);
  top: 20%;
  left: -80px;
  animation-duration: 22s;
}

.ambient__orb--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,137,58,0.06) 0%, transparent 60%);
  top: 55%;
  right: -40px;
  animation-duration: 16s;
  animation-delay: -8s;
}

.ambient__orb--3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201,137,58,0.05) 0%, transparent 60%);
  bottom: 30%;
  left: 40%;
  animation-duration: 26s;
  animation-delay: -13s;
}

@keyframes ambientFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25%       { transform: translateY(-30px) translateX(20px); }
  50%       { transform: translateY(-10px) translateX(-15px); }
  75%       { transform: translateY(20px) translateX(10px); }
}

/* ============================================================
   TESTIMONIAL MARK parallax — needs relative context
   ============================================================ */
.testimonial__inner {
  position: relative;
}

.testimonial__mark {
  display: block;
  position: relative;
  z-index: 0;
}

/* ============================================================
   FLIGHT MAP — MapLibre globe, scroll-driven flyTo
   Tall track + sticky stage; glass panel updates per leg.
   ============================================================ */
.flightmap {
  position: relative;
  background: #05070f;
  /* height is set by JS (≈ one viewport of scroll per leg);
     this is just a fallback before JS runs. */
  height: 700vh;
}

.flightmap__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #05070f;
}

.flightmap__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Keep MapLibre's own canvas from grabbing scroll/pointer — this is a
   passive, scroll-driven cinematic, not an interactive map. */
.flightmap__map .maplibregl-canvas { outline: none; }
.flightmap__map .maplibregl-ctrl-attrib { font-size: 10px; }

/* Readability scrim behind the panel (bottom-left weighted) */
.flightmap__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,7,15,0.55) 0%, rgba(5,7,15,0) 22%),
    linear-gradient(0deg, rgba(5,7,15,0.85) 0%, rgba(5,7,15,0) 42%);
}

.flightmap__head {
  position: absolute;
  top: clamp(4.5rem, 11vh, 7rem);
  left: 0; right: 0;
  text-align: center;
  padding: 0 var(--page-padding);
  pointer-events: none;
  color: var(--cream);
}
.flightmap__head .eyebrow { color: var(--amber-light); }
.flightmap__head h2 { color: var(--white); }

.flightmap__panel {
  position: absolute;
  left: clamp(1.25rem, 5vw, 3rem);
  bottom: clamp(3rem, 9vh, 5rem);
  width: min(420px, calc(100% - 2.5rem));
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 14, 24, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 168, 78, 0.22);
  color: var(--cream);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.flightmap__panel.is-swapping { opacity: 0; transform: translateY(10px); }

.flightmap__panel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.flightmap__leg {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-light);
}
.flightmap__dist {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.6);
}

.flightmap__name {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.flightmap__vendor {
  font-size: 0.82rem;
  color: var(--amber-light);
  margin-bottom: 0.7rem;
}
.flightmap__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.82);
}

.flightmap__hint {
  position: absolute;
  right: clamp(1.25rem, 5vw, 3rem);
  bottom: clamp(3rem, 9vh, 5rem);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  pointer-events: none;
  animation: flightHintPulse 2.4s ease-in-out infinite;
}
@keyframes flightHintPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@media (max-width: 767px) {
  .flightmap__panel {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
  }
  .flightmap__panel.is-swapping { transform: translateX(-50%) translateY(10px); }
  .flightmap__hint { display: none; }
}

/* ============================================================
   MEET THE PILOT
   ============================================================ */
.pilot {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(4rem, 10vw, 7rem) var(--page-padding);
}

.pilot__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pilot__media {
  position: relative;
}

.pilot__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(232,168,78,0.18), transparent 55%),
    linear-gradient(160deg, #1f3320 0%, #0d1a0d 100%);
  border: 1px solid rgba(245, 240, 232, 0.10);
}

.pilot__photo-note {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}

.pilot__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(13, 26, 13, 0.78);
  color: var(--amber-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 168, 78, 0.3);
}

.pilot__copy .eyebrow { color: var(--amber-light); }
.pilot__copy h2 { color: var(--white); margin-bottom: 1.25rem; }

.pilot__lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.86);
  margin-bottom: 1.75rem;
}

.pilot__creds {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pilot__creds li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.975rem;
  color: rgba(245, 240, 232, 0.82);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.pilot__cred-k {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--amber-light);
  min-width: 5.5rem;
}

@media (min-width: 768px) {
  .pilot__inner {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .pilot__photo { max-width: 420px; }
}

/* ============================================================
   THE AIRCRAFT — AS350 3D scroll fly-through
   Tall track + sticky stage holding the WebGL canvas. Captions
   are absolutely positioned over the canvas and swapped by JS.
   ============================================================ */
.aircraft {
  position: relative;
  height: 360vh;
  background:
    radial-gradient(140% 120% at 50% 8%, #16241a 0%, #0b150b 55%, #060d06 100%);
}

.aircraft__viz {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.aircraft__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.aircraft__intro {
  position: absolute;
  top: clamp(4.5rem, 12vh, 8rem);
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 var(--page-padding);
  z-index: 2;
  pointer-events: none;
  color: var(--cream);
}

.aircraft__intro .eyebrow { color: var(--amber-light); }
.aircraft__intro h2 { color: var(--white); }

.aircraft__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(4rem, 12vh, 7.5rem);
  transform: translateX(-50%) translateY(12px);
  width: min(560px, calc(100% - 2 * var(--page-padding)));
  text-align: center;
  z-index: 2;
  pointer-events: none;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.aircraft__caption.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.aircraft__caption-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
}

.aircraft__caption-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.625rem;
}

.aircraft__caption-body {
  font-size: clamp(0.95rem, 2.2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
}

.aircraft__progress {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  transform: translateX(-50%);
  width: min(220px, 60%);
  height: 2px;
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.18);
  z-index: 2;
  overflow: hidden;
}

.aircraft__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transition: width 0.1s linear;
}

@media (max-width: 767px) {
  /* Shorter runway on phones so the pinned stage isn't endless */
  .aircraft { height: 300vh; }
}

/* ============================================================
   REDUCED MOTION — respect accessibility preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ambient__orb  { animation: none; }
  [data-par], [data-par-x] { transform: none !important; }

  /* Hero: no sky-zoom track — collapse to a single static viewport */
  .hero { height: 100vh; height: 100svh; }
  .hero__bg { transform: none !important; filter: none !important; }
  .hero__content { transform: none !important; opacity: 1 !important; }
  .hero__atmos { opacity: 0 !important; }

  /* Aircraft: collapse the scroll runway; show a single static frame */
  .aircraft { height: 100vh; height: 100svh; }
  .aircraft__caption { position: static; opacity: 1; transform: none; margin-top: 2rem; }

  /* Flight map: collapse the runway; JS shows the whole route at once */
  .flightmap { height: 100vh !important; height: 100svh !important; }
  .flightmap__hint { display: none; }

  /* Adventures unroll: show immediately, no wipe/cascade/split */
  .js .adventures .container,
  .js .adventures__grid > .adv-card {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .adv-intro__node {
    transition: none;
    opacity: 1;
    transform: scale(1);
  }
  .adv-intro__bar {
    transition: none;
    transform: translateX(-50%) scaleX(1);
  }
}

/* ============================================================
   EXPERIENCE SUB-PAGES  +  card→page View Transition
   The "big" adventures open as full immersive pages. The card's
   hero image morphs into the page hero via the cross-document
   View Transitions API (degrades to a normal nav where unsupported).
   ============================================================ */

/* Opt this document (and the experience pages) into MPA transitions. */
@view-transition { navigation: auto; }

/* Shared-element morph: every experience-page hero carries ONE name. The
   source element — the full-screen journey photo that's parked on screen
   when you tap "Learn More" — is tagged with the same name in JS only while
   a stop is active, so the photo expands seamlessly into the page hero.
   (Only one element ever holds the name per page, so there's no clash;
   cards elsewhere just cross-fade.) */
.exp-hero__bg { view-transition-name: exp-hero; }

::view-transition-group(exp-hero) { animation-duration: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}

/* Title card that sits above the full-screen journey photo, with the
   "Learn More" that flows to the experience page. */
.journey__photo-card {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.5rem 1.6rem;
  text-align: left;
  color: var(--white);
}
.journey__photo-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.journey__photo-more {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest-dark);
  background: var(--cream);
  padding: 0.8rem 1.6rem;
  border-radius: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), transform var(--transition);
}
.journey__photo-more span[aria-hidden] { transition: transform var(--transition); }
.journey__photo-more:hover { background: var(--white); transform: translateY(-2px); }
.journey__photo-more:hover span[aria-hidden] { transform: translateX(3px); }

/* Accessible per-card "Learn More" in the scrolling journey track. */
.journey__card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber);
  transition: gap var(--transition);
}
.journey__card-more span[aria-hidden] { transition: transform var(--transition); }
.journey__card-more:hover span[aria-hidden] { transform: translateX(4px); }

/* ---- Experience page ---- */
.exp { background: var(--cream); }

/* Hero */
.exp-hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.exp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.exp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13,26,13,0.55) 0%, rgba(13,26,13,0) 32%),
    linear-gradient(0deg, rgba(13,26,13,0.92) 4%, rgba(13,26,13,0.35) 42%, rgba(13,26,13,0) 70%);
}
.exp-hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding) clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
}
.exp-hero .eyebrow { color: var(--amber-light); }
.exp-hero__title {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  color: var(--cream);
  margin: 0.25rem 0 0.5rem;
}
.exp-hero__tagline {
  font-size: clamp(1.0625rem, 2.4vw, 1.4rem);
  font-weight: 300;
  max-width: 36ch;
  color: rgba(245, 240, 232, 0.92);
}

/* Back link (top-left, over the hero) */
.exp-back {
  position: absolute;
  top: calc(var(--nav-height) + 1rem);
  left: var(--page-padding);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border-radius: 3rem;
  background: rgba(13, 26, 13, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition);
}
.exp-back:hover { background: rgba(13, 26, 13, 0.7); }
.exp-back span[aria-hidden] { transition: transform var(--transition); }
.exp-back:hover span[aria-hidden] { transform: translateX(-3px); }

/* Body sections */
.exp-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.exp-section--tight { padding: clamp(2rem, 5vw, 3rem) 0; }
.exp-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  line-height: 1.4;
  color: var(--forest);
  max-width: 22ch;
}
.exp-lede em { color: var(--amber); }

.exp-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 860px) {
  .exp-grid { grid-template-columns: 1.4fr 1fr; }
}
.exp-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #34432f;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}
.exp-prose p:last-child { margin-bottom: 0; }

/* "Included" card */
.exp-included {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.exp-included h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.exp-included ul { display: grid; gap: 0.85rem; }
.exp-included li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.975rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.9);
}
.exp-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--amber-light);
  transform: rotate(45deg);
}

/* How-it-works steps */
.exp-steps {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px) {
  .exp-steps { grid-template-columns: repeat(4, 1fr); }
}
.exp-step { counter-increment: step; }
.exp-step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}
.exp-step__num::before { content: counter(step, decimal-leading-zero); }
.exp-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0.6rem 0 0.4rem;
  color: var(--forest-dark);
}
.exp-step p { font-size: 0.95rem; line-height: 1.6; color: var(--gray); }

/* Specs strip */
.exp-specs {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px) { .exp-specs { grid-template-columns: repeat(4, 1fr); } }
.exp-spec { background: var(--cream); padding: 1.5rem; text-align: center; }
.exp-spec__k {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.exp-spec__v { font-family: var(--font-serif); font-size: 1.2rem; color: var(--forest-dark); }

/* Gallery */
.exp-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .exp-gallery { grid-template-columns: repeat(3, 1fr); } }
.exp-gallery__item {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.exp-gallery__item--tall { grid-row: span 2; aspect-ratio: 3 / 5; }

/* CTA band */
.exp-cta {
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) var(--page-padding);
}
.exp-cta h2 { color: var(--cream); margin-bottom: 0.75rem; }
.exp-cta p { color: rgba(245, 240, 232, 0.8); max-width: 46ch; margin: 0 auto 2rem; line-height: 1.7; }

/* ============================================================
   PILOT — two-button action row
   ============================================================ */
.pilot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ============================================================
   MORE WAYS TO FLY — private charter + corporate culture
   ============================================================ */
.more {
  background: var(--cream);
  padding: 1rem 0 4.5rem;
  position: relative;
  z-index: 1;
}
.more .container { margin-bottom: 2.5rem; }

.more__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .more__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.more__card {
  position: relative;
  min-height: 340px;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: 0 18px 40px -24px rgba(13, 26, 13, 0.55);
}
.more__card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Forest scrim so the copy stays legible over any photo */
.more__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(13, 26, 13, 0.92) 0%,
    rgba(13, 26, 13, 0.55) 42%,
    rgba(13, 26, 13, 0.10) 100%);
}
.more__card:hover .more__card-bg { transform: scale(1.06); }

.more__card-body { padding: 1.875rem 2rem 2rem; color: var(--cream); }
.more__card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
}
.more__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.more__card-copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
  max-width: 42ch;
}
