/* ============================================================
   PASS PURSUITS
   Dark, cinematic, editorial. One theme. One accent (alpenglow).
   One radius system (6px). Type: Clash Display + Satoshi.
   ============================================================ */

:root {
  /* surfaces - glacier-shadow near-black, cool */
  --bg: #0b0e11;
  --bg-elev: #11161b;
  --bg-elev-2: #161d24;

  /* ink - snow off-white */
  --snow: #eef2f3;
  --snow-dim: #aeb8bd;
  --snow-faint: #7e888e;

  /* accent - alpenglow warm gold (brand: the light on the peaks) */
  --accent: #e7a977;
  --accent-bright: #f2c197;
  --accent-deep: #cf8f5d;

  /* lines */
  --line: rgba(238, 242, 243, 0.10);
  --line-strong: rgba(238, 242, 243, 0.20);

  --radius: 6px;
  --radius-lg: 10px;
  --shell: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ff-display: "Clash Display", ui-sans-serif, system-ui, sans-serif;
  --ff-text: "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--snow);
  font-family: var(--ff-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
/* <img> is wrapped in <picture> for AVIF/WebP with JPEG fallback. display:contents makes the
   wrapper transparent to layout, so every ".container img" rule and object-fit keeps working. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #0b0e11; }

/* ---------- layout shell ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--accent); color: #0b0e11; padding: 0.6rem 1rem;
  border-radius: var(--radius); font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography primitives ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--ff-text);
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent);
}
.eyebrow-line { width: 2.4rem; height: 1px; background: var(--accent); opacity: 0.6; }

.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-weight: 500;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.text-link:hover { border-color: var(--accent); gap: 0.85rem; }
.text-link i { font-size: 1.1em; }

/* ---------- buttons (one radius system) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  white-space: nowrap; transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--accent); color: #0b0e11; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--snow); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn i { font-size: 1.15em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(11,14,17,0.55), rgba(11,14,17,0));
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(11,14,17,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--snow); }
.brand-mark { width: 28px; height: 24px; color: var(--accent); flex: none; }
.brand-word { font-family: var(--ff-display); font-weight: 500; font-size: 1.18rem; letter-spacing: -0.01em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 1.7rem; margin-left: auto; }
.nav a:not(.nav-cta) {
  font-size: 0.93rem; color: var(--snow-dim); font-weight: 500;
  position: relative; padding: 0.3rem 0; transition: color 0.25s var(--ease);
}
.nav a:not(.nav-cta)[aria-current="page"] { color: var(--accent); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--snow); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 0.62rem 1.25rem; margin-left: 0.5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--snow); transition: transform 0.3s var(--ease), opacity 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 72px;
  overflow: hidden;
  isolation: isolate; /* contain the z-index:-1 video so it can't bleed behind later sections */
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  /* frame-0 still rendered as a reliable CSS background BEHIND the video (shown during load
     and for reduced-motion / no-JS). cover here matches the video's object-fit exactly.
     JPEG is the base; the @supports block below upgrades it to AVIF/WebP where the browser
     can decode them, keeping the JPEG for older engines. */
  background: var(--bg) url("../assets/images/hero-poster.jpg") center / cover no-repeat;
}
@supports (background-image: image-set(url("x.avif") type("image/avif"))) {
  .hero-media {
    background-image: image-set(
      url("../assets/images/hero-poster.avif") type("image/avif"),
      url("../assets/images/hero-poster.webp") type("image/webp"),
      url("../assets/images/hero-poster.jpg") type("image/jpeg")
    );
  }
}
.hero-media .hero-bg {
  width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease;
  /* own GPU layer: Chrome can fail to repaint seeked frames of a paused video inside a pinned container */
  transform: translateZ(0); will-change: transform;
}
.hero-media .hero-bg.ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,14,17,0.92) 0%, rgba(11,14,17,0.6) 26%, rgba(11,14,17,0.24) 52%, rgba(11,14,17,0.1) 76%, rgba(11,14,17,0.28) 100%),
    linear-gradient(to right, rgba(11,14,17,0.5) 0%, rgba(11,14,17,0.12) 50%, rgba(11,14,17,0) 72%),
    rgba(11,14,17,0.08);
}

.hero-content { position: relative; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 7.2vw, 6rem);
  line-height: 0.98; letter-spacing: -0.025em;
  max-width: 16ch;
}
.hero-title .accent { color: var(--accent); }
.hero-lead { display: block; }
.hero-passes { display: block; position: relative; padding-bottom: 0.08em; }
.hero-pass { display: block; white-space: nowrap; }
/* fallback (no scrub): show only the first pass, statically */
.hero-pass:not(:first-child) { display: none; }
/* scrub mode: stack passes so they can cross-fade */
.hero.is-hero-scrub .hero-pass { display: block; }
.hero.is-hero-scrub .hero-pass:not(:first-child) { position: absolute; top: 0; left: 0; right: 0; }
.hero-sub {
  margin-top: 1.8rem; max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--snow-dim); line-height: 1.55;
}
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.5rem; background: var(--bg); }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center;
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: transparent;
  -webkit-text-stroke: 1px var(--snow-faint); white-space: nowrap; padding-right: 0;
}
.marquee .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-inline: clamp(1.4rem, 3vw, 2.8rem); flex: none; -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   THE PASSES (card row)
   ============================================================ */
.passes { padding-block: clamp(4rem, 9vh, 7rem); border-top: 1px solid var(--line); }
.passes-head { margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.passes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2vw, 2rem); align-items: start; }
.pass-card { display: flex; flex-direction: column; }
.pass-img { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.1rem; }
.pass-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.pass-card:hover .pass-img img { transform: scale(1.05); }
.pass-meta { display: flex; align-items: center; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 0.5rem; }
.pass-meta span + span::before { content: "\00B7"; margin: 0 0.5rem; color: var(--snow-faint); }
.pass-name { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.3rem, 1.6vw, 1.7rem); line-height: 1.05; margin-bottom: 0.45rem; }
.pass-desc { color: var(--snow-dim); font-size: 0.92rem; line-height: 1.5; }

@media (max-width: 720px) { .passes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .passes-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   ETHOS
   ============================================================ */
.ethos { padding-block: clamp(6rem, 14vh, 11rem); }
.ethos-lead {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.32; letter-spacing: -0.015em;
  max-width: 24ch; color: var(--snow);
}
.ethos-lead { max-width: 30ch; }
.ethos-meta { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.5rem; color: var(--snow-faint); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.ethos-meta .rule { width: 3rem; height: 1px; background: var(--line-strong); }

/* ============================================================
   JOURNEYS (horizontal pan)
   ============================================================ */
.journeys { padding-block: clamp(3rem, 6vh, 5rem) clamp(5rem, 10vh, 8rem); }
.journeys-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.journeys-head .eyebrow { margin-bottom: 1.2rem; }
.journeys-head .section-title { max-width: 22ch; }

.pan { position: relative; }
.pan-track {
  display: flex; gap: clamp(1.25rem, 2vw, 2rem);
  padding-inline: var(--gutter);
}
/* default (mobile / reduced-motion / no-js): native horizontal scroll */
.pan { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.pan::-webkit-scrollbar { display: none; }
.route-card { scroll-snap-align: start; }

/* when JS enables the pinned pan, the track moves via transform inside a clipped viewport */
.pan.is-pinned { overflow: hidden; scroll-snap-type: none; }

.route-card {
  flex: 0 0 min(86vw, 420px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.route-img { aspect-ratio: 4 / 3; overflow: hidden; }
.route-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.route-card:hover .route-img img { transform: scale(1.05); }
.route-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.route-country { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); }
.route-name { font-family: var(--ff-display); font-weight: 500; font-size: 1.7rem; line-height: 1.05; letter-spacing: -0.01em; }
.route-desc { color: var(--snow-dim); font-size: 0.98rem; line-height: 1.55; }
.route-stats { display: flex; gap: 1.4rem; margin-top: auto; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.route-stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.route-stats strong { font-family: var(--ff-display); font-weight: 500; font-size: 1.25rem; }
.route-stats span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--snow-faint); }

.route-card--cta { background: linear-gradient(150deg, var(--bg-elev-2), var(--bg-elev)); justify-content: center; }
.route-card--cta .route-body { gap: 1.1rem; justify-content: center; }
.route-card--cta .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding-block: clamp(4rem, 9vh, 8rem); border-top: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.how-visual { position: sticky; top: 100px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.how-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.how-content .section-title { margin-bottom: 2.5rem; }

.steps { display: flex; flex-direction: column; }
.step { padding: 1.8rem 0; border-top: 1px solid var(--line); }
.step:first-of-type { border-top: none; padding-top: 0; }
.step h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.4rem; margin-bottom: 0.6rem; }
.step p { color: var(--snow-dim); max-width: 52ch; }

/* ============================================================
   INCLUDED (bento)
   ============================================================ */
.included { padding-block: clamp(4rem, 9vh, 8rem); }
.included-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.included-head .eyebrow { margin-bottom: 1.2rem; }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); }
.tile { border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; min-height: 260px; position: relative; }
.tile--wide { grid-column: span 2; }
.tile--img { grid-column: span 2; }
.tile--text {
  grid-column: span 2; background: var(--bg-elev);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 0.7rem;
}
.tile-icon { font-size: 2.1rem; color: var(--accent); margin-bottom: 0.4rem; }
.tile h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.45rem; line-height: 1.1; }
.tile--text p { color: var(--snow-dim); font-size: 0.98rem; max-width: 40ch; }

.tile--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile--img:hover img { transform: scale(1.04); }
.tile--img figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.7rem;
  background: linear-gradient(to top, rgba(11,14,17,0.92), rgba(11,14,17,0.55) 55%, transparent);
}
.tile--img figcaption h3 { margin-bottom: 0.4rem; }
.tile--img figcaption p { color: var(--snow-dim); font-size: 0.94rem; max-width: 38ch; }

/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary { padding-block: clamp(4rem, 9vh, 8rem); border-top: 1px solid var(--line); }
.itinerary-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.itinerary-intro { color: var(--snow-dim); margin: 1.5rem 0 2.5rem; max-width: 46ch; }
.days { display: flex; flex-direction: column; }
.day { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.day dt { font-family: var(--ff-display); font-weight: 500; font-size: 1.12rem; margin-bottom: 0.35rem; }
.day dd { color: var(--snow-dim); font-size: 0.97rem; max-width: 50ch; }
.itinerary .text-link { margin-top: 2rem; }
.itinerary-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.itinerary-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-section { padding-block: clamp(5rem, 12vh, 10rem); background: var(--bg-elev); border-block: 1px solid var(--line); }
.pull-quote { max-width: 40ch; margin-inline: auto; text-align: center; }
.pull-quote p {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 3rem); line-height: 1.22; letter-spacing: -0.015em;
}
.pull-quote footer { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 0.2rem; }
.q-name { color: var(--accent); font-weight: 600; letter-spacing: 0.02em; font-family: var(--ff-text); font-size: 0.95rem; }
.q-detail { color: var(--snow-faint); font-size: 0.85rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-block: clamp(5rem, 11vh, 9rem); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-intro .section-title { margin-bottom: 1.5rem; }
.contact-intro p { color: var(--snow-dim); max-width: 44ch; }
.contact-direct { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-direct a { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--snow); font-size: 1.05rem; transition: color 0.25s var(--ease); }
.contact-direct a:hover { color: var(--accent); }
.contact-direct i { color: var(--accent); font-size: 1.3rem; }

.enquiry { display: flex; flex-direction: column; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--snow); letter-spacing: 0.02em; }
.field-optional { color: var(--snow-faint); font-weight: 400; }
.field input, .field textarea, .field select {
  background: var(--bg-elev); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--snow); width: 100%; transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aeb8bd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field select option { color: #0b0e11; }
.field input::placeholder, .field textarea::placeholder { color: var(--snow-faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-elev-2); }
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input, .field.invalid textarea { border-color: #e0775f; }
.field-error { font-size: 0.8rem; color: #f0917c; min-height: 0; }
.form-status { font-size: 0.92rem; color: var(--accent); min-height: 1.2rem; }
.form-status.success { color: #8fd6a0; }
.form-status.error { color: #f0917c; }
/* honeypot: unreachable by pointer, keyboard and screen reader, but present in the DOM for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vh, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--snow-faint); max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--ff-text); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--snow-faint); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col a { display: block; color: var(--snow-dim); font-size: 0.95rem; padding: 0.32rem 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-addr { color: var(--snow-faint); font-size: 0.92rem; margin-top: 0.5rem; }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem; border-top: 1px solid var(--line);
  color: var(--snow-faint); font-size: 0.84rem; letter-spacing: 0.02em;
}
.footer-credit a { color: var(--snow-dim); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.footer-credit a:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   WAYS TO TRAVEL (sales channels)
   ============================================================ */
.channels { padding-block: clamp(4rem, 9vh, 7rem); border-top: 1px solid var(--line); }
.channels-head { margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.channels-head .eyebrow { margin-bottom: 1.2rem; }
.channels-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2vw, 2rem); }
.channel-card {
  display: flex; flex-direction: column; background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  color: var(--snow); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.channel-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.channel-img { aspect-ratio: 16 / 9; overflow: hidden; }
.channel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.channel-card:hover .channel-img img { transform: scale(1.04); }
.channel-body { padding: 1.7rem 1.8rem 1.9rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.channel-tag { align-self: flex-start; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.3rem 0.7rem; }
.channel-name { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.05; margin-top: 0.35rem; }
.channel-desc { color: var(--snow-dim); font-size: 0.98rem; line-height: 1.55; max-width: 48ch; }
.channel-link { margin-top: auto; padding-top: 0.7rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-weight: 500; font-size: 0.95rem; }
.channel-link i { transition: transform 0.3s var(--ease); }
.channel-card:hover .channel-link i { transform: translateX(4px); }

/* flagship feature card: spans the full row, image beside text on desktop */
.channel-card--feature { grid-column: 1 / -1; flex-direction: row; }
.channel-card--feature .channel-img { aspect-ratio: auto; flex: 1.15; min-height: 340px; }
.channel-card--feature .channel-body { flex: 1; justify-content: center; padding: clamp(2rem, 3.5vw, 3.2rem); }
.channel-card--feature .channel-name { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.channel-card--feature .channel-desc { max-width: 52ch; }
@media (max-width: 760px) {
  .channel-card--feature { flex-direction: column; }
  .channel-card--feature .channel-img { aspect-ratio: 16 / 9; min-height: 0; flex: none; }
}

/* ============================================================
   TRIP SUB-PAGES (hero + content blocks)
   ============================================================ */
.subhero { position: relative; isolation: isolate; min-height: 70vh; display: flex; align-items: flex-end; padding-top: 92px; padding-bottom: clamp(3rem, 7vh, 5rem); overflow: hidden; }
.subhero-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.subhero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(11,14,17,0.92) 0%, rgba(11,14,17,0.5) 45%, rgba(11,14,17,0.35) 100%),
    linear-gradient(to right, rgba(11,14,17,0.72), rgba(11,14,17,0.05) 72%);
}
.subhero .shell { position: relative; }
.subhero .eyebrow { margin-bottom: 1.4rem; }
.subhero h1 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2.3rem, 5.4vw, 4.3rem); line-height: 1.0; letter-spacing: -0.02em; max-width: 18ch; }
.subhero-intro { margin-top: 1.4rem; max-width: 50ch; color: var(--snow-dim); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.55; }
.subhero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.section { padding-block: clamp(4rem, 9vh, 7rem); border-top: 1px solid var(--line); }
.section-lede { max-width: 62ch; color: var(--snow-dim); font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; }
.section-lede strong { color: var(--snow); font-weight: 500; }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.split .section-title { margin-bottom: 1.3rem; }

.incl-list { list-style: none; padding: 0; margin: 0; }
.incl-list li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.05rem 0; border-top: 1px solid var(--line); color: var(--snow-dim); }
.incl-list li:first-child { border-top: none; }
.incl-list i { color: var(--accent); font-size: 1.3rem; flex: none; margin-top: 0.05rem; }
.incl-list strong { color: var(--snow); font-weight: 500; display: block; }

.departures { display: flex; flex-direction: column; margin-top: 2.4rem; }
.departure { display: grid; grid-template-columns: 9rem 1fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.departure:last-child { border-bottom: 1px solid var(--line); }
.departure-date { font-family: var(--ff-display); font-weight: 500; font-size: 1.05rem; }
.departure-date strong { display: block; }
.departure-date span { display: block; margin-top: 0.1rem; font-family: var(--ff-text); font-weight: 400; font-size: 0.85rem; color: var(--snow-dim); }
.departure-route strong { color: var(--snow); font-weight: 500; display: block; font-family: var(--ff-display); font-size: 1.1rem; margin-bottom: 0.15rem; }
.departure-route span { color: var(--snow-dim); font-size: 0.94rem; }
.departure-status { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); white-space: nowrap; }
.departure-status.full { color: var(--snow-faint); }
.departure-price { justify-self: end; text-align: right; white-space: nowrap; font-family: var(--ff-display); font-weight: 500; font-size: 1.2rem; color: var(--snow); }
.departure-price .departure-tag { display: block; margin-top: 0.25rem; font-family: var(--ff-text); font-weight: 400; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.departures-note { margin-top: 1.6rem; color: var(--snow-faint); font-size: 0.9rem; }

.poa { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elev); padding: clamp(1.8rem, 3vw, 2.6rem); margin-top: 1.5rem; }
.poa h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.55rem; margin-bottom: 0.6rem; }
.poa p { color: var(--snow-dim); max-width: 54ch; }

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2vw, 1.75rem); margin-top: 2.5rem; }
.flow-step { padding-top: 1.1rem; border-top: 1px solid var(--line-strong); }
.flow-num { font-family: var(--ff-display); color: var(--accent); font-size: 1.05rem; }
.flow-step h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.2rem; margin: 0.5rem 0; line-height: 1.1; }
.flow-step p { color: var(--snow-dim); font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 980px) {
  .channels-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
  .departure { grid-template-columns: 1fr; gap: 0.4rem; }
  .departure-status { justify-self: start; }
  .departure-price { justify-self: start; text-align: left; margin-top: 0.2rem; }
}

/* ============================================================
   REVEAL (only applied via JS when motion allowed)
   ============================================================ */
html.js [data-reveal] { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--wide, .tile--img, .tile--text { grid-column: span 1; }
  .tile--img.tile--wide { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.menu-open .nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
    position: fixed; inset: 64px 0 auto 0; background: rgba(11,14,17,0.97);
    backdrop-filter: blur(16px); padding: 1.5rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
  }
  .site-header.menu-open .nav a:not(.nav-cta) { font-size: 1.1rem; padding: 0.6rem 0; color: var(--snow); }
  .site-header.menu-open .nav-cta { margin: 0.8rem 0 0; }
  .site-header.menu-open { background: rgba(11,14,17,0.97); height: 64px; }
  .site-header.menu-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .how-grid { grid-template-columns: 1fr; }
  .how-visual { position: static; }
  .itinerary-grid { grid-template-columns: 1fr; }
  .itinerary-media { order: -1; }
  .itinerary-media img { aspect-ratio: 16 / 10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 520px) {
  body { font-size: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .route-stats { gap: 1rem; }
  .hero { min-height: 100svh; }
}

/* honor reduced motion globally for any transition-heavy element */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-media .hero-bg { transform: none; }
}

/* ============================================================
   GUIDES - editorial long-form pages
   ============================================================ */

.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--snow-faint); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line-strong); }

.guide-header { padding-top: 140px; padding-bottom: clamp(2.5rem, 5vh, 4rem); }
.guide-header h1 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.02em; max-width: 20ch; margin-top: 1.4rem; }
.guide-standfirst { margin-top: 1.6rem; max-width: 60ch; color: var(--snow-dim); font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; }
.guide-meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; font-size: 0.85rem; color: var(--snow-faint); }
.guide-meta .rule { width: 1px; height: 1rem; background: var(--line-strong); }

/* two-column: sticky contents rail + article body */
.guide-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.guide-toc { position: sticky; top: 110px; }
.guide-toc h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--snow-faint); font-weight: 500; margin-bottom: 1rem; }
.guide-toc a { display: block; padding: 0.4rem 0; font-size: 0.92rem; color: var(--snow-dim); border-left: 1px solid var(--line); padding-left: 0.9rem; }
.guide-toc a:hover { color: var(--accent); border-left-color: var(--accent); }

.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.35rem; }
.prose h2 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.12; letter-spacing: -0.015em; margin-top: 3.5rem; scroll-margin-top: 110px; }
.prose h3 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.2; margin-top: 2.25rem; scroll-margin-top: 110px; }
.prose p, .prose li { color: var(--snow-dim); }
.prose strong { color: var(--snow); font-weight: 500; }
/* :not(.btn) matters. `.prose a` outranks `.btn-primary` on specificity, so without it
   a button inside a guide gets gold text on its gold background, plus an underline. */
.prose a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--accent-deep); }
.prose a:not(.btn):hover { color: var(--accent-bright); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose ul li { list-style: disc; padding-left: 0.35rem; margin-top: 0.6rem; }
.prose ol li { list-style: decimal; padding-left: 0.35rem; margin-top: 0.6rem; }
.prose ul li::marker, .prose ol li::marker { color: var(--accent-deep); }

/* the answer that leads a section - the span an answer engine lifts */
.prose .key-answer { color: var(--snow); font-size: 1.12rem; line-height: 1.6; border-left: 2px solid var(--accent); padding-left: 1.1rem; }

.callout { border: 1px solid var(--line); border-left: 2px solid var(--accent); border-radius: var(--radius); background: var(--bg-elev); padding: 1.25rem 1.4rem; }
.callout h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.05rem; margin: 0 0 0.4rem; }
.callout p { font-size: 0.95rem; margin: 0; }
.callout--warn { border-left-color: #d98f6a; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 34rem; }
.data-table caption { text-align: left; padding: 0.9rem 1rem; color: var(--snow-faint); font-size: 0.85rem; border-bottom: 1px solid var(--line); }
.data-table th, .data-table td { text-align: left; padding: 0.8rem 1rem; border-top: 1px solid var(--line); }
.data-table thead th { color: var(--snow); font-weight: 500; border-top: none; background: var(--bg-elev); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; }
.data-table td { color: var(--snow-dim); }
.data-table td:first-child { color: var(--snow); }
.data-table tbody tr:hover td { background: rgba(238, 242, 243, 0.02); }

/* FAQ - visible Q&A, the format answer engines actually extract */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq-item h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.18rem; line-height: 1.25; margin: 0 0 0.65rem; color: var(--snow); }
.faq-item p { color: var(--snow-dim); margin: 0; max-width: 68ch; }
.faq-item p + p { margin-top: 0.7rem; }

.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.guide-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elev); padding: 1.6rem; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.guide-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.guide-card .channel-tag { color: var(--accent); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; }
.guide-card h2, .guide-card h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.35rem; line-height: 1.15; margin: 0.75rem 0 0.6rem; }
.guide-card p { color: var(--snow-dim); font-size: 0.95rem; line-height: 1.55; flex: 1; }
.guide-card .channel-link { margin-top: 1.2rem; color: var(--accent); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.45rem; }

/* inline CTA back to the commercial pages */
.guide-cta { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elev); padding: clamp(1.6rem, 3vw, 2.4rem); margin-top: 3.5rem; }
.guide-cta h2 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 0 0 0.7rem; }
.guide-cta p { color: var(--snow-dim); max-width: 56ch; margin-bottom: 1.5rem; }

@media (max-width: 980px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .guide-toc a { border-left: none; padding-left: 0; }
  .guide-header { padding-top: 118px; }
}

/* ============================================================
   PASS / COMPARISON PAGES — at-a-glance fact bar
   ============================================================ */
.factbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 2.5rem 0; }
.factbar > div { background: var(--bg-elev); padding: 1.2rem 1.3rem; }
.factbar i { color: var(--accent); font-size: 1.35rem; }
.factbar .factbar-val { display: block; font-family: var(--ff-display); font-weight: 500; font-size: 1.15rem; line-height: 1.15; margin-top: 0.55rem; color: var(--snow); }
.factbar .factbar-lbl { display: block; font-size: 0.74rem; color: var(--snow-faint); text-transform: uppercase; letter-spacing: 0.11em; margin-top: 0.25rem; }
.pass-cta-row { margin-top: 2.5rem; }
