/* ================================================================
   VX4 OVERLAND — Design system (AURUM-inspired)
   ================================================================ */

/* ----------------------------------------------------------------
   TOKENS
   ---------------------------------------------------------------- */
:root {
  /* surfaces */
  --c-bg:        #000000;
  --c-bg-soft:   #0f0f10;
  --c-card:      #161617;
  --c-card-hi:   #1c1c1d;
  --c-card-line: #232325;

  /* ink */
  --c-ink:       #f4f1ec;
  --c-ink-2:     #b4b0a8;
  --c-ink-3:     rgba(244, 241, 236, 0.55);
  --c-ink-4:     rgba(244, 241, 236, 0.25);
  --c-line:      rgba(244, 241, 236, 0.08);

  /* Brand palette (from VX4 client guide)
     ------------------------------------
     #CBBD93  light sand  — primary warm accent (Sahara world)
     #BDAF8C  mid sand    — soft accent / borders
     #7E7A55  olive-dark  — secondary cool accent
     #636B2F  deep olive  — primary forest accent (Rennsteig world)
  */

  /* warm sand — Sahara world */
  --c-accent:      #cbbd93;
  --c-accent-soft: #bdaf8c;
  --c-accent-dim:  rgba(203, 189, 147, 0.7);

  /* olive / forest — Rennsteig world */
  --c-cool:        #636b2f;
  --c-cool-soft:   #7e7a55;
  --c-cool-dim:    rgba(99, 107, 47, 0.7);

  /* light surfaces (pure white floor) */
  --c-paper:       #ffffff;
  --c-paper-soft:  #f5f5f4;
  --c-paper-line:  rgba(0, 0, 0, 0.10);
  --c-paper-line-soft: rgba(0, 0, 0, 0.06);
  --c-ink-dark:    #0a0a0a;
  --c-ink-dark-2:  #555555;
  --c-ink-dark-3:  rgba(0, 0, 0, 0.55);

  /* shape */
  --r-pill: 999px;
  --r-card: 18px;
  --r-card-lg: 28px;
  --r-tag: 999px;

  /* type stacks */
  --t-display: 'Inter', system-ui, sans-serif;
  --t-body:    'Inter', system-ui, sans-serif;
  --t-mono:    'JetBrains Mono', ui-monospace, monospace;
  --t-numeric: 'Inter', system-ui, sans-serif;

  /* layout */
  --gutter: 56px;
  --max-w:  1640px;
}

/* ----------------------------------------------------------------
   PRELOADER  — minimal spinner
   ---------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(244, 241, 236, 0.12);
  border-top-color: var(--c-accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .preloader__spinner { animation-duration: 2.5s; }
}

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

/* Lock scroll while the preloader is up */
body.is-loading { overflow: hidden; }

/* ----------------------------------------------------------------
   RESET
   ---------------------------------------------------------------- */
/* Smooth-scroll for in-page anchors — but respect reduced motion */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--c-paper-soft);
  color: var(--c-ink);
  font-family: var(--t-body);
  font-weight: 450;             /* heavier default — body text was looking thin */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }
img     { display: block; max-width: 100%; }
button  { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--c-accent); color: var(--c-bg); }

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.accent     { color: var(--c-accent); font-style: italic; font-weight: 500; }
.eyebrow {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--r-pill);
  font-family: var(--t-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.7,0,.3,1),
              background .25s ease,
              color .25s ease,
              box-shadow .25s ease;
}

.btn--primary {
  background: var(--c-ink);
  color: var(--c-bg);
  box-shadow: 0 12px 36px rgba(244, 241, 236, 0.18);
}
.btn--primary:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(212, 168, 136, 0.3);
}
.btn--primary svg { transition: transform .35s ease; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: rgba(244, 241, 236, 0.06);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  pointer-events: none;
  transition: background .35s ease,
              backdrop-filter .35s ease,
              border-color .35s ease,
              padding .35s ease;
}
.nav > * { pointer-events: auto; }
.nav::after {
  /* invisible at top; turns into a frosted glass bar once .is-scrolled.
     Dark-tinted blur so it works on BOTH light and dark sections — no
     awkward bright slab over the black slates. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease,
              backdrop-filter .35s ease,
              -webkit-backdrop-filter .35s ease,
              border-color .35s ease;
}
.nav.is-scrolled::after {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav.is-scrolled { padding-top: 16px; padding-bottom: 16px; }

/* On the dark sections the inverted (black) logo would disappear over
   the dark frosted bar — undo the invert so it stays white. */
.nav.is-scrolled .nav__brand-img { filter: none; }
/* Centred nav-bar — absolute so it sits on the viewport mid-line,
   not on the mid-line of whatever Grid column it lived in before. */
.nav__links {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 56px;
  color: var(--c-ink);
}
.nav__brand-img {
  height: 100%;
  width: auto;
  display: block;
  /* Default (over the hero): warm sand glow that breathes — feels alive
     against the dark video background. */
  filter: drop-shadow(0 0 12px rgba(203, 189, 147, 0.30))
          drop-shadow(0 0 28px rgba(203, 189, 147, 0.18));
  animation: navBrandPulse 5s ease-in-out infinite;
  transition: filter .5s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav__brand:hover .nav__brand-img {
  transform: scale(1.04);
}
@keyframes navBrandPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(203, 189, 147, 0.25))
            drop-shadow(0 0 22px rgba(203, 189, 147, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(203, 189, 147, 0.50))
            drop-shadow(0 0 36px rgba(203, 189, 147, 0.28));
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav__brand-img { animation: none; }
}

/* When scrolled past the hero: kill the glow and pulse. The logo stays
   white (no invert) because the frosted bar is dark — see .nav::after. */
.nav.is-scrolled .nav__brand-img {
  filter: none;
  animation: none;
}

/* ----- Glass-pill mixin via shared styles ---------------------- */
.nav__links,
.nav__socials,
.nav__cta {
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
}

/* ----- Main nav links — Dynamic-Island-style pill bar ---------- */
.nav__links {
  display: inline-flex;
  align-items: center;
  padding: 7px;
  gap: 2px;
}
.nav__links li { list-style: none; }
.nav__links a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--t-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--c-ink-2);
  transition: color .3s ease;
}
.nav__links a.is-active           { color: var(--c-bg); }
.nav__links a:hover,
.nav__links a:focus-visible        { color: var(--c-bg); }
/* While the nav is being hovered, the active link gives up its dark text
   unless it's the one being hovered — so the white pill only ever sits
   under one black-text link at a time. */
.nav__links:hover a.is-active:not(:hover) { color: var(--c-ink-2); }

/* Sliding indicator — white pill behind the active / hovered item */
.nav__links-indicator {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;          /* JS overrides on load */
  width: 0;
  background: var(--c-ink);
  border-radius: var(--r-pill);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: left .4s cubic-bezier(.4, 0, .2, 1),
              width .4s cubic-bezier(.4, 0, .2, 1),
              opacity .25s ease;
}

/* ----- Right side: socials pill + camp pill -------------------- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__socials {
  display: inline-flex;
  align-items: center;
  padding: 7px;
  gap: 2px;
}
.nav__socials li { list-style: none; }
.nav__socials a {
  width: 43px; height: 43px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-ink-2);
  transition: color .25s ease, background .25s ease;
}
.nav__socials a:hover {
  color: var(--c-ink);
  background: rgba(244, 241, 236, 0.10);
}

/* ----- Camp CTA — exact same size/shape as the hero buttons -- */
.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 7px 7px 7px 22px;
  font-family: var(--t-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  transition: background .35s ease,
              color .35s ease,
              border-color .35s ease,
              transform .35s cubic-bezier(.7, 0, .3, 1),
              box-shadow .35s ease;
}
.nav__cta-label { line-height: 1; white-space: nowrap; }
.nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-bg);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.7, 0, .3, 1),
              background .35s ease, color .35s ease;
}
.nav__cta:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212, 168, 136, 0.32);
}
.nav__cta:hover .nav__cta-icon {
  background: var(--c-bg);
  color: var(--c-accent);
  transform: translateX(2px);
}

/* ================================================================
   FONTS — Inter only (900 for display, 400/500 for body, mono for tags)
   ================================================================
   Display titles use Inter 900 in uppercase with tight tracking — gives
   the bold editorial weight without bringing in another font file.
   ================================================================ */

/* Global display rule — applies to every title across the site */
.hero__title,
.slate__title,
.tour-card__title,
.footer__brand-mark {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
/* em-words: NOT italic (italic Inter 900 looks brittle).
   They just shift to the accent colour — the colour change is the emphasis. */
.hero__title em,
.slate__title em,
.tour-card__title em {
  font-style: normal;
  font-weight: 900;
}

/* ================================================================
   HERO — cross-faded overlay layout with animated mask edge
   ================================================================
   Both videos sit absolute, full-bleed. The Sahara video sits ON TOP
   with a horizontal mask that reveals only the right portion. As the
   user hovers Sahara, the mask edge (--edge) animates to the left,
   so Sahara melts INTO Rennsteig (true cross-fade, no hard seam).
   Same --edge variable drives the panel widths so the content slides
   with the imagery.
   ================================================================ */
@property --edge {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 60%;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--c-bg);
  isolation: isolate;
  --edge: 60%;           /* default split — Sahara ~40% */
  transition: --edge .9s cubic-bezier(.4, 0, .2, 1);
}
.hero:has(.hero__panel--sahara:hover) { --edge: 33%; }

/* ---- Background videos ----
   The reveal animates via clip-path: inset() — GPU-composited, no
   per-frame paint cost like mask-image. will-change promotes both
   layers to their own compositing layer so the browser can swap
   regions on the GPU instead of repainting. */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: filter, clip-path;
  transform: translateZ(0);   /* force own GPU layer */
}
.hero__bg--rennsteig {
  z-index: 1;
  filter: saturate(0.9) contrast(1.04);
  transition: filter .9s cubic-bezier(.4, 0, .2, 1);
}
.hero__bg--sahara {
  z-index: 2;
  filter: saturate(0.9) contrast(1.04) grayscale(1) brightness(0.82);
  clip-path: inset(0 0 0 var(--edge));
  transition: filter .9s cubic-bezier(.4, 0, .2, 1);
}
.hero:has(.hero__panel--sahara:hover) .hero__bg--sahara {
  filter: saturate(0.9) contrast(1.04);
}
.hero:has(.hero__panel--sahara:hover) .hero__bg--rennsteig {
  filter: saturate(0.9) contrast(1.04) grayscale(1) brightness(0.55);
}
.hero:has(.hero__panel--rennsteig:hover) .hero__bg--sahara {
  filter: saturate(0.9) contrast(1.04) grayscale(1) brightness(0.5);
}

/* Hero tag — small mono caps above each title; names the tour */
.hero__tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--t-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-cool);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
}
.hero__tag--accent { color: var(--c-accent); }

/* Dark veil for legibility + a faint brand tint per side:
   olive on the Rennsteig (left), warm sand on the Sahara (right). */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* left: cool olive wash | right: warm sand wash */
    linear-gradient(90deg,
      rgba(99, 107, 47, 0.22) 0%,
      rgba(99, 107, 47, 0.05) 35%,
      rgba(203, 189, 147, 0.05) 65%,
      rgba(203, 189, 147, 0.22) 100%),
    /* vertical legibility veil */
    linear-gradient(180deg,
      rgba(10,10,10,0.65) 0%,
      rgba(10,10,10,0.20) 28%,
      rgba(10,10,10,0.30) 62%,
      rgba(10,10,10,0.85) 100%);
}

/* ---- Content panels — overlay, hover targets ---- */
.hero__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px clamp(28px, 4vw, 80px) 80px;
  cursor: pointer;
  will-change: width;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}
.hero__panel--rennsteig {
  left: 0;
  width: var(--edge);
}
.hero__panel--sahara {
  right: 0;
  width: calc(100% - var(--edge));
  align-items: flex-end;
  text-align: right;
}
.hero__panel-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  margin: auto 0;
  align-items: flex-start;
  text-align: left;
}
.hero__panel--sahara .hero__panel-body {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

/* Hero heading block — small mono kicker + the brutalist title.
   Kicker carries the practical tour-fact in brand colour;
   title stays purely poetic. */
.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero__heading-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 14px;
  border-left: 2px solid var(--c-cool);
  font-family: var(--t-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-ink);
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero__heading-kicker--accent { border-left-color: var(--c-accent); }

/* Hero title — Inter 900 caps, three short lines.
   Each <span> animates in with a stagger; the panel hover
   adds a subtle glow + tightens letter-spacing. */
.hero__title {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--c-ink);
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.6);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0;
  transition: text-shadow .6s ease, letter-spacing .6s ease;
}
.hero__title > span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: heroLineIn 1s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero__title > span:nth-child(1) { animation-delay: 0.45s; }
.hero__title > span:nth-child(2) { animation-delay: 0.62s; }
.hero__title > span:nth-child(3) { animation-delay: 0.78s; }

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hover boost — title glows + tightens when its panel is the focus */
.hero__panel:hover .hero__title,
.hero__panel:focus-within .hero__title {
  letter-spacing: -0.035em;
  text-shadow:
    0 4px 36px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero__title > span {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
.hero__panel--rennsteig .hero__title em { color: var(--c-cool); }
.hero__panel--sahara    .hero__title em { color: var(--c-accent); }

/* Sub-text — constant size both sides, all states */
.hero__sub {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 380px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
/* explicitly cancel any leftover hover-size overrides */
.hero:has(.hero__panel--sahara:hover) .hero__panel .hero__sub {
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 380px;
}

/* ----- CTA buttons — glass pill, label + icon-disk, both sides identical ----- */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 14px 30px;
  border-radius: var(--r-pill);
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-ink);
  font-family: var(--t-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .55s cubic-bezier(.16,.84,.25,1),
              border-color .55s cubic-bezier(.16,.84,.25,1),
              color .55s cubic-bezier(.16,.84,.25,1),
              transform .55s cubic-bezier(.16,.84,.25,1),
              box-shadow .55s cubic-bezier(.16,.84,.25,1);
}
.hero__cta-label { line-height: 1; }
.hero__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-bg);
  flex-shrink: 0;
  transition: transform .55s cubic-bezier(.16,.84,.25,1),
              background .55s cubic-bezier(.16,.84,.25,1),
              color .55s cubic-bezier(.16,.84,.25,1);
}

/* Rennsteig — moss fill on hover, icon-disk slides right */
.hero__cta--rennsteig:hover {
  background: var(--c-cool);
  color: var(--c-bg);
  border-color: var(--c-cool);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -16px rgba(99, 107, 47, 0.6);
}
.hero__cta--rennsteig:hover .hero__cta-icon {
  background: var(--c-bg);
  color: var(--c-cool);
  transform: translateX(5px);
}

/* Sahara — same glass, accent dot via disk in peach */
.hero__cta--sahara,
.hero__cta--soon {
  cursor: default;
  color: var(--c-ink-2);
}
.hero__cta--soon .hero__cta-icon {
  background: var(--c-ink);
  color: var(--c-bg);
}
.hero__cta--soon:hover {
  border-color: rgba(244, 241, 236, 0.40);
  color: var(--c-ink);
}

/* ----- Meta row — glass-pill cards, Monesque numerals ------------ */
.hero__meta {
  display: flex;
  gap: 14px;
  padding-top: 0;
  border-top: 0;
}
.hero__panel--sahara .hero__meta { justify-content: flex-end; }
.meta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 22px 14px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1),
              filter   .9s cubic-bezier(.4, 0, .2, 1);
}
.meta__val {
  font-family: var(--t-display);
  font-size: clamp(40px, 3.6vw, 56px);
  line-height: 0.95;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.meta__lbl {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* Inactive panel: meta turns grayscale to match the dimmed video */
.hero__panel--sahara .meta { filter: grayscale(1) opacity(0.55); }
.hero:has(.hero__panel--sahara:hover) .hero__panel--sahara .meta { filter: none; opacity: 1; }
.hero:has(.hero__panel--sahara:hover) .hero__panel--rennsteig .meta { filter: grayscale(1) opacity(0.55); }
.hero:has(.hero__panel--rennsteig:hover) .hero__panel--sahara .meta { filter: grayscale(1) opacity(0.45); }
.meta { display: flex; flex-direction: column; gap: 4px; }
.meta__val {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.meta__lbl {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* ----- SEAM INDICATOR -------------------------------------------------
   Vertical seam line + circular pill at the dynamic split position.
   Both glow in the colour of whichever world the user is focused on.
   The pill rotates + scales when the layout swaps.  Plus a subtle
   atmospheric halo flares either side of the line for depth. */
/* Frosted-glass seam — a slim translucent column that hairlines both edges,
   matches the pill style used in the buttons and nav. No accent colour. */
.hero__seam {
  position: absolute;
  top: 0;
  left: var(--edge);
  bottom: 0;
  z-index: 5;
  width: 4px;
  pointer-events: none;
  transform: translateX(-50%);
}
.hero__seam-line {
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 1px solid rgba(244, 241, 236, 0.18);
  border-right: 1px solid rgba(244, 241, 236, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero__seam { transition: none; }
}

/* :has-less fallback */
@supports not (selector(:has(*))) {
  .hero__split--sahara { filter: grayscale(0.5) brightness(0.9); }
}

/* Mobile: stack vertically, no cross-fade, no seam indicator */
@media (max-width: 760px) {
  .hero { height: auto; min-height: 0; }
  .hero__bg--sahara {
    -webkit-mask-image: none;
            mask-image: none;
    position: relative;
    height: 50vh;
    grid-area: sahara-bg;
  }
  .hero__bg--rennsteig {
    position: relative;
    height: 50vh;
    grid-area: rennsteig-bg;
  }
  .hero {
    display: grid;
    grid-template-rows: 50vh auto 50vh auto;
    grid-template-areas:
      "rennsteig-bg"
      "rennsteig-panel"
      "sahara-bg"
      "sahara-panel";
  }
  .hero__panel {
    position: relative;
    width: 100%;
    padding: 36px 20px 48px;
  }
  .hero__panel--rennsteig { grid-area: rennsteig-panel; }
  .hero__panel--sahara    { grid-area: sahara-panel; align-items: flex-start; text-align: left; }
  .hero__panel-body { max-width: none; }
  .hero__panel--sahara .hero__panel-body { align-items: flex-start; text-align: left; margin-left: 0; }
  .hero__panel--sahara .hero__meta { justify-content: flex-start; }
  .hero__veil, .hero__seam { display: none; }
  .hero__title { font-size: clamp(40px, 9vw, 64px) !important; }
  .hero__panel--rennsteig .hero__title,
  .hero:has(.hero__panel--sahara:hover) .hero__panel--sahara .hero__title { font-size: clamp(40px, 9vw, 64px) !important; }
}

/* ----------------------------------------------------------------
   PITCH SECTION  ("Landschaften ohne Anschrift")
   ---------------------------------------------------------------- */
.pitch {
  position: relative;
  padding: 160px var(--gutter) 140px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 80px 100px;
}

.pitch__head { grid-column: 1; grid-row: 1; }
.pitch__head .eyebrow { margin-bottom: 24px; }
.pitch__title {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(56px, 8.4vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.pitch__body { grid-column: 1; grid-row: 2; max-width: 580px; }
.pitch__lede {
  font-family: var(--t-body);
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--c-ink);
}
.pitch__lede em.accent {
  display: inline;
  font-size: inherit;
}
.pitch__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink-2);
  max-width: 460px;
}

/* Stats grid lives in the right column, taller */
.pitch__stats {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-self: stretch;
}
.stat {
  position: relative;
  padding: 24px;
  border-radius: var(--r-card);
  background:
    linear-gradient(180deg, rgba(244,241,236,0.04) 0%, rgba(244,241,236,0.01) 100%),
    var(--c-card);
  border: 1px solid var(--c-card-line);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent-dim);
  background:
    linear-gradient(180deg, rgba(212,168,136,0.06) 0%, rgba(244,241,236,0.01) 100%),
    var(--c-card);
}
.stat__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,241,236,0.04);
  border: 1px solid var(--c-line);
  font-size: 18px;
  color: var(--c-accent);
}
.stat__label {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-top: auto;
  margin-bottom: 6px;
}
.stat__value {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.pitch__outro {
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: var(--t-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--c-ink);
  max-width: 900px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}

/* ----------------------------------------------------------------
   FOREST DIVIDER  — bridge from dark mood to light surface
   ---------------------------------------------------------------- */
.divider-forest {
  position: relative;
  height: clamp(360px, 52vh, 560px);
  overflow: hidden;
  background: var(--c-bg);
  isolation: isolate;
}
.divider-forest__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: saturate(0.85) contrast(1.04) brightness(0.92);
  transform: scale(1.04);
}
.divider-forest__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, transparent 30%, rgba(10,10,10,0.50) 100%),
    /* keep the forest dark — transition to cream happens AFTER, in tours::before */
    linear-gradient(180deg,
      var(--c-bg) 0%,
      rgba(10,10,10,0.45) 18%,
      rgba(10,10,10,0.20) 60%,
      rgba(10,10,10,0.35) 100%);
}
.divider-forest__content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.divider-forest__eyebrow { color: var(--c-cool); }
.divider-forest__title {
  font-family: var(--t-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-shadow: 0 4px 30px rgba(0,0,0,0.55);
}
.divider-forest__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-cool);
}
.divider-forest__sub {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ----------------------------------------------------------------
   LIGHT SURFACES — cream paper background with dark ink
   ---------------------------------------------------------------- */
.surface-light {
  background: var(--c-paper);
  color: var(--c-ink-dark);
}
.surface-light .eyebrow      { color: var(--c-cool-soft); }
.surface-light .spec__label  { color: var(--c-ink-dark-3); }
.surface-light .spec__value  { color: var(--c-ink-dark); }

/* Dark button variant for use against the light surface */
.btn--dark {
  background: var(--c-ink-dark);
  color: var(--c-paper);
  box-shadow: 0 12px 36px rgba(21, 20, 15, 0.20);
}
.btn--dark:hover {
  background: var(--c-cool-soft);
  color: var(--c-paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(126, 154, 110, 0.35);
}
.btn--dark svg { transition: transform .35s ease; }
.btn--dark:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------------
   TOURS SECTION (sits on light surface)
   ---------------------------------------------------------------- */
.tours {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 200px var(--gutter) 160px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.tours::before {
  /* clean dark-to-cream gradient just like the footer's reverse — no image,
     no veil tricks. Mirrors .footer-wrap::before in spirit. */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-paper) 100%);
  pointer-events: none;
  z-index: 0;
}
.tours > * {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.tours__head {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tours__head .eyebrow { color: var(--c-ink-dark-3); }
.tours__title {
  font-family: var(--t-display);
  font-size: clamp(48px, 6.4vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--c-ink-dark);
}
.tours__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-cool-soft);
}

.tour {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas: "visual body";
  gap: 60px;
  align-items: center;
}
.tour--reverse {
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas: "body visual";
}
.tour__visual { grid-area: visual; }
.tour__body   { grid-area: body;   }

.tour__visual {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-card);
  box-shadow: 0 30px 80px -30px rgba(21, 20, 15, 0.35);
}
.tour__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.tour__visual-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.55));
}
.tour__badge {
  position: absolute;
  left: 24px; bottom: 22px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(244,241,236,0.18);
  backdrop-filter: blur(10px);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.tour__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 520px;
}
.tour__eyebrow { color: var(--c-cool-soft); }
.tour--sahara .tour__eyebrow { color: var(--c-accent-soft); }

.tour__title {
  font-family: var(--t-display);
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--c-ink-dark);
}
.tour__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-cool-soft);
}
.tour--sahara .tour__title em { color: var(--c-accent-soft); }

.tour__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-dark-2);
  max-width: 480px;
}

.tour__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid var(--c-paper-line);
  border-bottom: 1px solid var(--c-paper-line);
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.spec__label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.spec__value {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  white-space: nowrap;
}

.tour__cta { margin-top: 6px; }

/* ----------------------------------------------------------------
   FOOTER  (stays dark — anchors the page after the light section)
   ---------------------------------------------------------------- */
/* (legacy footer rules removed — active rules at the bottom of the file) */

.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid var(--c-line);
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1200px) {
  :root { --gutter: 36px; }
  .pitch { grid-template-columns: 1fr; gap: 60px; }
  .pitch__stats { grid-column: 1; grid-row: 3; }
  .pitch__outro { grid-row: 4; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr; gap: 24px; }
  .nav__links { display: none; }

  .hero { min-height: auto; height: auto; }
  .hero__sides {
    position: relative;
    grid-template-columns: 1fr;
    padding: 130px 20px 80px;
    gap: 60px;
  }
  .hero__side, .hero__side--right { align-items: flex-start; text-align: left; max-width: 100%; }
  .hero__side--right .hero__meta { justify-content: flex-start; }
  .hero__bottom { position: relative; bottom: auto; padding: 0 20px 30px; }

  .pitch { padding: 80px 20px 60px; gap: 40px; }
  .pitch__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 130px; padding: 18px; }

  .tours { padding: 80px 20px 100px; gap: 80px; }
  .tour,
  .tour--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "body";
    gap: 32px;
  }
  .tour__visual { aspect-ratio: 16/10; }
  .tour__specs { grid-template-columns: repeat(2, 1fr); }

  .divider-forest { height: clamp(280px, 60vw, 420px); }
}

/* ================================================================
   PAGE BELOW THE HERO — components & sections
   ================================================================ */

/* Shared building blocks ----------------------------------------- */
.kicker {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.surface-light .kicker { color: var(--c-cool-soft); }

.display-xl {
  font-family: var(--t-display);
  font-size: clamp(48px, 7vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.display-xl em { color: var(--c-accent); }
.surface-light .display-xl em { color: var(--c-cool-soft); }

.vertical-tag {
  position: absolute;
  top: 120px;
  left: 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.surface-light .vertical-tag { color: var(--c-ink-dark-3); }
.vertical-tag--right { left: auto; right: 18px; }

/* Reveal-on-scroll animation — slower, slightly blurred for Apple-style polish */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(.16, .84, .25, 1),
              transform 1.1s cubic-bezier(.16, .84, .25, 1),
              filter   1.1s cubic-bezier(.16, .84, .25, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Marquee ticker ------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--c-paper-line-soft);
  border-bottom: 1px solid var(--c-paper-line-soft);
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--c-ink-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee__track > span { padding-right: 1.2em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* PITCH ---------------------------------------------------------- */
.pitch {
  position: relative;
  padding: 140px var(--gutter) 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "head  lead"
    "stats stats";
  gap: 60px 100px;
  max-width: none;
}
.pitch > * { max-width: var(--max-w); width: 100%; }
.pitch__head { grid-area: head; display: flex; flex-direction: column; gap: 22px; }
.pitch__lead {
  grid-area: lead;
  align-self: end;
  font-family: var(--t-body);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--c-ink-dark);
  max-width: 480px;
  margin-left: auto;
}

.stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-paper-line);
  border: 1px solid var(--c-paper-line);
  margin-top: 30px;
}
.stat-card {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--c-paper);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: background .3s ease;
}
.stat-card:hover { background: var(--c-paper-soft); }
.stat-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--c-paper-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cool-soft);
  background: rgba(20, 18, 14, 0.02);
}
.stat-card__label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-dark-3);
}
.stat-card__num {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--c-ink-dark);
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}
.stat-card__suffix {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--c-cool-soft);
  display: inline;
}

/* TOUR MODEL — AURUM "R2" pattern: head row, hero image, spec row */
.tour-model {
  position: relative;
  padding: 120px var(--gutter) 60px;
  max-width: none;
}
.tour-model + .tour-model { padding-top: 80px; }
.tour-model:last-of-type { padding-bottom: 120px; }
.tour-model > * {
  max-width: var(--max-w);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.tour-model__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}
.tour-model__head .kicker { grid-column: 1; }
.tour-model__head .display-xl {
  grid-column: 1 / span 2;
  grid-row: 2;
}
.tour-model__cta {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}
.tour-model .section-lead {
  max-width: 540px;
  margin-left: 0;
  margin-bottom: 48px;
}

.tour-model__visual {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 24px;
}
.tour-model__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.tour-model__visual:hover img { transform: scale(1.03); }
.tour-model__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.95);
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

/* Spec row — AURUM's bottom-of-section meta strip */
.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-paper-line);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.spec-row > li {
  padding: 22px 24px;
  background: var(--c-paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-row__icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--c-paper-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cool-soft);
}
.tour-model:nth-of-type(2) .spec-row__icon { color: var(--c-accent-soft); }
.spec-row__label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-dark-3);
}
.spec-row__val {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  color: var(--c-ink-dark);
  margin-top: auto;
}

/* FOREST DIVIDER — sits on pure black, PNG silhouette layered on top.
   Sections BELOW the divider are black; sections ABOVE remain on cream
   (the cream-to-black hand-off happens inside the tour-spot's bottom
   padding via the section below). */
.forest-divider {
  position: relative;
  width: 100%;
  background: var(--c-bg);
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
  line-height: 0;
}
.forest-divider img {
  display: block;
  width: 100%;
  height: auto;
}
/* Fallback if forest-divider.png is missing — clean cream-to-black ramp. */
.forest-divider--fallback {
  height: 240px;
  background: linear-gradient(180deg,
    var(--c-paper) 0%,
    rgba(60, 60, 50, 0.55) 50%,
    var(--c-bg) 100%);
}

/* ================================================================
   AURUM-INSPIRED DESIGN SYSTEM  (dark sections below the divider)
   ================================================================
   Building blocks shared by every section below the forest divider.
   Each section pairs:
     .section-head  — kicker + display title (top-left anchor)
     .section-lead  — italic intro paragraph
   Then a Component grid below (feature-cards, guide, faq, etc.).
   ================================================================ */

/* Shared section frame --------------------------------------- */
.features,
.guide,
.faq {
  position: relative;
  padding: 140px var(--gutter) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px 100px;
}
.section-head {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink-2);
  max-width: 560px;
}
.features .section-lead,
.guide   .section-lead,
.faq     .section-lead {
  grid-column: 2;
  align-self: end;
  margin-left: auto;
  max-width: 460px;
}

/* (legacy AURUM-era .feature-grid rule removed — the active one lives
   further down with the rest of the slate system.) */
.feature-card {
  position: relative;
  padding: 32px 28px 36px;
  background: var(--c-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s ease;
}
.feature-card:hover { background: var(--c-card-hi); }
.feature-card__plus {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--t-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.7;
}
.feature-card h3 {
  font-family: var(--t-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--c-ink);
  padding-right: 32px; /* room for the + */
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink-2);
}

/* GUIDE — Marco profile  --------------------------------- */
.guide {
  grid-template-columns: 1fr;
  gap: 60px;
}
.guide .section-head { grid-column: 1; }
.guide__body {
  grid-column: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.guide__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  border: 1px solid var(--c-card-line);
  background: var(--c-card);
  overflow: hidden;
  margin: 0;
}
.guide__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%; /* keep Marco's face in frame on crop */
  filter: saturate(0.85) contrast(1.04) brightness(0.92);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.guide__portrait:hover img { transform: scale(1.03); }
.guide__portrait::after {
  /* subtle vignette so the caption stays readable */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.guide__portrait-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-ink);
  z-index: 1;
}
.guide__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.guide__text .section-lead { max-width: none; margin-left: 0; }
.guide__quote {
  font-family: var(--t-body);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  color: var(--c-ink);
  padding: 22px 0 22px 22px;
  border-left: 2px solid var(--c-accent);
}
.guide__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-card-line);
  border: 1px solid var(--c-card-line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.guide__tags li {
  padding: 20px 22px;
  background: var(--c-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide__tags li span {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-ink);
}
.guide__tags li b {
  font-family: var(--t-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* FAQ — accordion ----------------------------------------- */
.faq__list {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid var(--c-card-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-card-line);
}
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--t-display);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-accent); }
.faq-item__plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-card-line);
  border-radius: 50%;
  font-family: var(--t-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--c-accent);
  transition: transform .35s cubic-bezier(.7,0,.3,1),
              background .25s ease,
              color .25s ease,
              border-color .25s ease;
}
.faq-item details[open] .faq-item__plus {
  transform: rotate(45deg);
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
}
.faq-item p {
  padding: 0 60px 32px 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-ink-2);
  max-width: 1040px;
}

/* CONTACT — AURUM-style two-column panel ----------------------- */
.contact {
  position: relative;
  padding: 140px var(--gutter) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px 100px;
  align-items: start;
}
.contact .section-head { grid-column: 1; }
.contact__panel {
  grid-column: 2;
  padding: 40px 38px 36px;
  background: var(--c-card);
  border: 1px solid var(--c-card-line);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-2);
}
.contact__channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-card-line);
}
.contact__channel {
  position: relative;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--c-card-line);
  color: var(--c-ink);
  transition: color .25s ease;
}
.contact__channel:hover { color: var(--c-accent); }
.contact__channel-label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.contact__channel-val {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
}
.contact__channel-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-card-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.contact__channel:hover .contact__channel-arrow {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
}
.contact__cta { align-self: flex-start; margin-top: 8px; }

/* (legacy footer rule from an earlier iteration removed — the active
   footer rule lives at the bottom of the file.) */
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo { display: block; line-height: 0; }
.footer__logo img {
  width: 120px;
  height: auto;
  display: block;
}
.footer__claim {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.14);
  color: var(--c-ink-2);
  transition: background .35s cubic-bezier(.16,.84,.25,1),
              border-color .35s ease,
              color .35s ease,
              transform .35s cubic-bezier(.16,.84,.25,1);
}
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
  transform: translateY(-2px);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__hours {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-3);
  margin-bottom: 4px;
}
.footer__col h4 {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
  margin-bottom: 4px;
  transition: color .25s ease;
}
.footer__col a:hover { color: var(--c-accent); }
.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
  margin-top: 60px;
  border-top: 1px solid var(--c-line);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal a { color: var(--c-ink-3); transition: color .25s ease; }
.footer__legal a:hover { color: var(--c-accent); }

/* RESPONSIVE ----------------------------------------------------- */
@media (max-width: 1100px) {
  .pitch { grid-template-columns: 1fr; grid-template-areas: "head" "lead" "stats"; gap: 36px; }
  .pitch__lead { margin-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  .tour-model__head { grid-template-columns: 1fr; gap: 18px; }
  .tour-model__head .kicker,
  .tour-model__head .display-xl,
  .tour-model__cta { grid-column: 1; grid-row: auto; justify-self: start; }
  .tour-model__visual { aspect-ratio: 16 / 10; }

  .features,
  .guide,
  .faq,
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .features .section-lead,
  .guide   .section-lead,
  .faq     .section-lead { grid-column: 1; margin-left: 0; max-width: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .guide__body { grid-template-columns: 1fr; }
  .contact .section-head { grid-column: 1; }
  .contact__panel { grid-column: 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 700px) {
  .pitch, .tour-model, .features, .guide, .faq, .contact {
    padding-left: 20px; padding-right: 20px;
    padding-top: 90px; padding-bottom: 90px;
  }
  .stats { grid-template-columns: 1fr 1fr; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .guide__tags { grid-template-columns: 1fr; }
  .faq-item summary { padding: 22px 0; gap: 16px; }
  .faq-item__plus { width: 28px; height: 28px; font-size: 18px; }
  .contact__panel { padding: 28px 22px 26px; }
  .contact__channel { grid-template-columns: 1fr auto; }
  .contact__channel-label { grid-column: 1; }
  .contact__channel-val { grid-column: 1; }
  .contact__channel-arrow { grid-row: 1 / span 2; grid-column: 2; }
  .vertical-tag { display: none; }
  .footer { padding: 60px 20px 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ================================================================
   PAGE BELOW THE HERO — Glass / Apple-style design system v2
   ================================================================ */

/* SLATE — shared section frame ----------------------------------- */
.slate {
  position: relative;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 4vw, 80px);
  max-width: none;
}
/* Section heads stay anchored at the boxed reading width; everything else
   (stat-grid, feature-grid, guide-block, faq-list, contact-panel) goes
   full-bleed inside the section's padding. */
.slate > * {
  position: relative;
  z-index: 1;
}
.slate__head {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* Light variant — soft-gray surface so white cards sit on something */
.slate--light {
  background: var(--c-paper-soft);   /* #f5f5f4 */
  color: var(--c-ink-dark);
}
/* Stats-only section — slim vertical padding, no head */
.slate--stats-only {
  padding-top: clamp(56px, 5vw, 80px);
  padding-bottom: clamp(56px, 5vw, 80px);
}

/* VX4 wave pattern — fixed-pixel tile so it looks identical in every
   section, no stretch/scale jumps between containers of different size. */
.slate--pattern {
  isolation: isolate;
  overflow: hidden;
}
.slate--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./vx4_overland_muster.svg');
  background-repeat: repeat;
  background-position: center top;
  background-size: 620px auto;
  background-attachment: fixed;
  pointer-events: none;
  z-index: 0;
}
.slate--light.slate--pattern::before {
  opacity: 0.045;
  mix-blend-mode: multiply;
}
.slate--dark.slate--pattern::before {
  opacity: 0.06;
  mix-blend-mode: screen;
}
.slate--light + .slate--light { padding-top: 0; }

/* Dark variant — black surface, like the hero */
.slate--dark {
  background: var(--c-bg);
  color: var(--c-ink);
}
.slate--dark + .slate--dark { padding-top: 0; }

/* Section head — eyebrow / title / lead (boxed reading width).
   More vertical air between elements creates clearer hierarchy. */
.slate__head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.slate__head > * { max-width: 1100px; }
.slate__head .slate__title { max-width: 1280px; }
.slate__head .slate__lead { max-width: 580px; }
.slate__head .slate__eyebrow + .slate__title { margin-top: -6px; }
.slate__head .slate__title + .slate__lead { margin-top: 12px; }
.slate__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}
/* Eyebrow — chapter-marker style.
   Vertical accent bar + bold Inter caps — feels architectural,
   echoes the brutalist title weight without competing with it. */
.slate__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding-left: 0;
  font-family: var(--t-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--c-cool);
}
.slate__eyebrow::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--c-cool);
  flex-shrink: 0;
  border-radius: 1px;
}

.slate--dark .slate__eyebrow { color: var(--c-accent); }
.slate--dark .slate__eyebrow::before { background: var(--c-accent); }

/* Caption eyebrows on highlight-cards (white text on dark gradient) */
.highlight-card figcaption .slate__eyebrow { color: var(--c-accent); }
.highlight-card figcaption .slate__eyebrow::before { background: var(--c-accent); }
.slate__title {
  font-size: clamp(48px, 6.5vw, 120px);
  margin: 0;
}
.slate--light .slate__title { color: var(--c-ink-dark); }
.slate--dark  .slate__title { color: var(--c-ink); }
.slate__title em { color: var(--c-cool-soft); }
.slate--dark .slate__title em { color: var(--c-accent); }
.slate__lead {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  max-width: 560px;
}
.slate--light .slate__lead { color: var(--c-ink-dark-2); }
.slate--dark  .slate__lead { color: var(--c-ink-2); }

/* SLATE — Stats: same card style as the warum feature-pills */
.slate__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.stat-pill {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 20, 15, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 220px;
  transition: transform .6s cubic-bezier(.16,.84,.25,1),
              box-shadow .6s cubic-bezier(.16,.84,.25,1),
              border-color .6s ease;
}
.stat-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 20, 15, 0.10);
  box-shadow: 0 28px 60px -28px rgba(21,20,15,0.22);
}
.slate--dark .stat-pill {
  background: rgba(244, 241, 236, 0.05);
  border-color: rgba(244, 241, 236, 0.10);
}
.stat-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99, 107, 47, 0.10);
  color: var(--c-cool);
}
.slate--dark .stat-pill__icon {
  background: rgba(203, 189, 147, 0.12);
  color: var(--c-accent);
}
.stat-pill__icon svg { width: 28px; height: 28px; display: block; }
.stat-pill__value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  line-height: 0.95;
}
.stat-pill__num {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.95;
  color: var(--c-ink-dark);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.slate--dark .stat-pill__num { color: var(--c-ink); }
.stat-pill__suffix {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: clamp(38px, 3.6vw, 56px);
  color: var(--c-cool);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.slate--dark .stat-pill__suffix { color: var(--c-accent); }
.stat-pill__lbl {
  font-family: var(--t-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-dark-3);
}
.slate--dark .stat-pill__lbl { color: var(--c-ink-3); }

/* TOUR-GRID — two big cards, image up top, glass body */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.tour-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(21, 20, 15, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--c-ink-dark);
  text-decoration: none;
  transition: transform .45s cubic-bezier(.2,.7,.2,1),
              box-shadow .45s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -36px rgba(21,20,15,0.35);
}
.tour-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tour-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.tour-card:hover .tour-card__visual img { transform: scale(1.04); }
.tour-card__num {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--t-display);
  font-size: 72px;
  line-height: 0.85;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
.tour-card__badge {
  position: absolute;
  top: 22px;
  right: 24px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(244, 241, 236, 0.30);
  backdrop-filter: blur(10px);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.tour-card__body {
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tour-card__title {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.tour-card__title em { color: var(--c-cool-soft); }
.tour-card--soon .tour-card__title em { color: var(--c-accent-soft); }
.tour-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink-dark-2);
}
.tour-card__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(21,20,15,0.08);
  border-bottom: 1px solid rgba(21,20,15,0.08);
  margin: 0;
}
.tour-card__specs > div { display: flex; flex-direction: column; gap: 4px; }
.tour-card__specs dt {
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-dark-3);
}
.tour-card__specs dd {
  font-family: var(--t-display);
  font-size: 20px;
  color: var(--c-ink-dark);
  margin: 0;
}
.tour-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 12px 22px;
  margin-top: 6px;
  border-radius: var(--r-pill);
  background: rgba(21, 20, 15, 0.06);
  border: 1px solid rgba(21,20,15,0.10);
  font-family: var(--t-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--c-ink-dark);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.tour-card__cta-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-ink-dark);
  color: var(--c-paper);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
}
.tour-card:hover .tour-card__cta {
  background: var(--c-ink-dark);
  color: var(--c-paper);
  border-color: var(--c-ink-dark);
}
.tour-card:hover .tour-card__cta-icon {
  background: var(--c-paper);
  color: var(--c-ink-dark);
  transform: translateX(3px);
}
.tour-card--soon .tour-card__cta-icon { transform: none; }
.tour-card--soon:hover .tour-card__cta-icon { transform: none; }

/* FEATURE GRID — Apple "feature card with +" --------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.feature-pill {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 20, 15, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  transition: transform .6s cubic-bezier(.16,.84,.25,1),
              box-shadow .6s cubic-bezier(.16,.84,.25,1),
              border-color .6s ease;
}
.feature-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 20, 15, 0.10);
  box-shadow: 0 28px 60px -28px rgba(21,20,15,0.22);
}
.feature-pill__icon {
  transition: transform .6s cubic-bezier(.16,.84,.25,1),
              background .4s ease;
}
.feature-pill:hover .feature-pill__icon {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(99, 107, 47, 0.16);
}
.feature-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(99, 107, 47, 0.10);
  color: var(--c-cool);
  margin-bottom: 6px;
}
.feature-pill__icon svg { width: 30px; height: 30px; display: block; }
.feature-pill h3 {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--c-ink-dark);
}
.feature-pill p {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 450;
  line-height: 1.55;
  color: var(--c-ink-dark-2);
  margin: 0;
}

/* TOUR-SHOW — two big tour cards, image left, body right -------- */
.tour-show {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.tour-show__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid rgba(21, 20, 15, 0.06);
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  transition: transform .7s cubic-bezier(.16,.84,.25,1),
              box-shadow .7s cubic-bezier(.16,.84,.25,1),
              border-color .6s ease;
}
.tour-show__card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 20, 15, 0.10);
  box-shadow: 0 40px 80px -32px rgba(21,20,15,0.28);
}
.tour-show__card--sahara { grid-template-columns: 1fr 1fr; }
.tour-show__card--sahara .tour-show__media { order: 2; }
.tour-show__card--sahara .tour-show__body { order: 1; }

.tour-show__media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.tour-show__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(.16,.84,.25,1);
}
.tour-show__card:hover .tour-show__media img { transform: scale(1.07); }

.tour-show__body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tour-show__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 107, 47, 0.10);
  color: var(--c-cool);
  font-family: var(--t-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tour-show__tag--accent {
  background: rgba(203, 189, 147, 0.18);
  color: #8a7c54;
}
.tour-show__title {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
  margin: 0;
  color: var(--c-ink-dark);
}
.tour-show__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14px;
  color: var(--c-ink-dark-2);
}
.tour-show__facts li {
  padding: 10px 0;
  border-top: 1px solid rgba(21, 20, 15, 0.08);
  line-height: 1.4;
}
.tour-show__facts li strong {
  display: block;
  font-family: var(--t-display);
  font-weight: 900;
  color: var(--c-ink-dark);
  font-size: 15px;
  margin-bottom: 2px;
}
.tour-show__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-dark-2);
  margin: 0;
}
.tour-show__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--c-ink-dark);
  color: #ffffff;
  font-family: var(--t-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-top: auto;
  transition: background .25s ease, transform .25s ease;
}
.tour-show__cta:hover { transform: translateY(-1px); }
.tour-show__cta--soon {
  background: rgba(21, 20, 15, 0.08);
  color: var(--c-ink-dark-2);
  cursor: default;
}
.tour-show__cta--soon:hover { transform: none; }

@media (max-width: 900px) {
  .tour-show__card,
  .tour-show__card--sahara { grid-template-columns: 1fr; }
  .tour-show__card--sahara .tour-show__media { order: 1; }
  .tour-show__card--sahara .tour-show__body { order: 2; }
  .tour-show__media { min-height: 260px; }
  .tour-show__card { min-height: 0; }
}

/* FOREST TRANSITION — no own background; the transparent top of the
   forest PNG simply reveals the body's paper-soft bg above.
   Adds the wave pattern as an overlay so the motif continues through. */
.forest-transition {
  position: relative;
  width: 100%;
  background: transparent;
  margin: -1px 0;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}
.forest-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./vx4_overland_muster.svg');
  background-repeat: repeat;
  background-position: center top;
  background-size: 620px auto;
  background-attachment: fixed;
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.forest-transition img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* GUIDE BLOCK — Marco profile (dark) — stretched columns ---------- */
.guide-block {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: center;
}
.guide-block__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(244,241,236,0.10);
  background: var(--c-card);
  margin: 0;
}
.guide-block__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.85) contrast(1.04) brightness(0.92);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.guide-block__portrait:hover img { transform: scale(1.03); }
.guide-block__portrait::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
}
.guide-block__portrait figcaption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.guide-block__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}
.guide-block__quote {
  font-family: var(--t-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--c-accent);
  margin: 0;
}
.guide-block__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.guide-block__tags li {
  padding: 18px 22px;
  background: rgba(203, 189, 147, 0.06);
  border: 1px solid rgba(203, 189, 147, 0.18);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-block__tags li span {
  display: block;
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--c-ink);
  margin-bottom: 4px;
}

/* FAQ — Accordion on dark --------------------------------------- */
.faq-list {
  border-top: 1px solid rgba(244,241,236,0.10);
}
.faq-item { border-bottom: 1px solid rgba(244,241,236,0.10); }
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: color .35s cubic-bezier(.16,.84,.25,1),
              transform .45s cubic-bezier(.16,.84,.25,1),
              padding-left .45s cubic-bezier(.16,.84,.25,1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover {
  color: var(--c-accent);
  padding-left: 8px;
}
.faq-item details[open] summary {
  color: var(--c-accent);
}
.faq-item__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(244,241,236,0.05);
  border: 1px solid rgba(244,241,236,0.18);
  color: var(--c-ink);
  font-family: var(--t-display);
  font-size: 22px;
  line-height: 1;
  transition: transform .4s cubic-bezier(.7,0,.3,1),
              background .25s ease,
              color .25s ease,
              border-color .25s ease;
}
.faq-item details[open] .faq-item__plus {
  transform: rotate(45deg);
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}
.faq-item p {
  padding: 0 60px 32px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-ink-2);
  max-width: 1040px;
  margin: 0;
}

/* CONTACT — central card with glass-pill channels --------------- */
.slate--contact { text-align: left; }
.contact-panel {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--c-ink);
  transition: background .5s cubic-bezier(.16,.84,.25,1),
              padding-left .5s cubic-bezier(.16,.84,.25,1);
}
.contact-row + .contact-row { border-top: 1px solid rgba(244,241,236,0.08); }
.contact-row:hover {
  background: rgba(244,241,236,0.05);
  padding-left: 36px;
}
.contact-row:hover .contact-row__arrow {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
  transform: translate(2px, -2px);
}
.contact-row__lbl {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.contact-row__val {
  font-family: var(--t-display);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.contact-row__arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(244,241,236,0.05);
  border: 1px solid rgba(244,241,236,0.18);
  color: var(--c-ink);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.contact-row:hover .contact-row__arrow {
  background: var(--c-ink);
  color: var(--c-bg);
  transform: translateX(3px);
}

/* FOOTER — continuous with the last dark section above, no top divider */
.footer {
  position: relative;
  padding: 80px clamp(24px, 4vw, 80px) 40px;
  background: var(--c-bg);
  color: var(--c-ink);
}
/* (duplicate legacy footer rules removed — active rules live earlier) */

/* RESPONSIVE ------------------------------------------------------ */
@media (max-width: 1100px) {
  .slate__stats { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-block { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .guide-block__tags { grid-template-columns: 1fr; }
  .tour-card__specs { grid-template-columns: 1fr 1fr; }
  .contact-row { grid-template-columns: 1fr auto; }
  .contact-row__lbl { grid-column: 1; }
  .contact-row__val { grid-column: 1; }
  .contact-row__arrow { grid-row: 1 / span 2; grid-column: 2; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   HIGHLIGHTS — full-bleed editorial card grid (light)
   ================================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.highlight-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-card);
  isolation: isolate;
  height: clamp(420px, 38vw, 580px);
  margin: 0;
}
.highlight-card--wide { height: clamp(420px, 38vw, 580px); }
.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1.6s cubic-bezier(.2, .7, .2, 1);
  z-index: 0;
}
.highlight-card:hover img { transform: scale(1.05); }
.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 45%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.highlight-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--c-ink);
}
.highlight-card figcaption .slate__eyebrow {
  color: var(--c-accent);
}
.highlight-card h3 {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
  color: var(--c-ink);
}
.highlight-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.92);
  max-width: 480px;
}

@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-card--wide { grid-column: 1 / -1; aspect-ratio: 16/9; }
}
@media (max-width: 700px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { aspect-ratio: 4/5; }
  .highlight-card--wide { aspect-ratio: 4/5; }
}
