/* =====================================================================
   MALEBO marketing site — styles
   Brand tokens are the single source of truth (mirrors app/src/styles/tokens.css
   and CLAUDE.md). Orange = action, petrol = calm/trust blocks, ink = reading.
   Mobile-first, designed to the French copy length. WCAG AA contrast.
   ===================================================================== */

:root {
  /* Orange — action, brand, highlights */
  --orange-600: #e15a0f;
  --orange-500: #f2751c;
  --orange-700: #b8460a; /* orange text on white — contrast-safe */
  --orange-50:  #fff3ea;
  /* Petrol — trust, confirmations, headers */
  --petrol-700: #123a46;
  --petrol-50:  #e9f0f2;
  /* Ink & neutrals */
  --ink:   #16130f;
  --muted: #6b655d;
  --line:  #e7e1d8;
  --bg:    #fbfaf8;
  --white: #ffffff;
  /* Status */
  --success: #1e7a4b;
  --danger:  #b3271a;
  /* Radii */
  --radius-card: 14px;
  --radius-pill: 999px;
  /* Type — real fallback stacks so text renders before the web fonts arrive */
  --font-display: "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Karla", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  /* Layout */
  --wrap: 1080px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  caret-color: var(--orange-600);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; }
img, svg { max-width: 100%; }
a { color: inherit; }

/* Browser surfaces themed from the palette — the parts we did not draw */
::selection { background: var(--orange-600); color: var(--white); }
:root { scrollbar-color: var(--orange-600) var(--petrol-50); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--petrol-50); }
::-webkit-scrollbar-thumb { background: #c9c1b5; border: 3px solid var(--bg); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-600); }

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

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 60;
  background: var(--ink); color: var(--white); padding: 10px 16px;
  border-radius: var(--radius-pill); text-decoration: none; font-weight: 700;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* Visible focus everywhere ------------------------------------------------ */
:focus-visible {
  outline: 3px solid var(--orange-600);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Numerals line up (prices, times) --------------------------------------- */
.trust__num, .lm__times, .phone__meta, .route__price, .phone__cta { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn__icon { display: inline-flex; }
/* Resting fill is orange-700 so the white label clears WCAG AA (5.4:1);
   white on orange-600 is only 3.7:1. Hover lightens to orange-600. */
.btn--primary { background: var(--orange-700); color: var(--white); box-shadow: 0 6px 16px -8px rgba(184,70,10,.7), 0 1px 2px rgba(22,19,15,.12); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(184,70,10,.75), 0 1px 2px rgba(22,19,15,.12); }
.btn--primary:active { transform: translateY(0); box-shadow: 0 3px 8px -5px rgba(184,70,10,.7); }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: .95rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .7; cursor: progress; }
.btn--onpetrol { background: var(--white); color: var(--petrol-700); box-shadow: 0 6px 18px -10px rgba(0,0,0,.5); }
.btn--onpetrol:hover { background: var(--orange-50); transform: translateY(-1px); }
.btn--onpetrol:active { transform: translateY(0); }

.pill {
  display: inline-flex; align-items: center; min-height: 30px; padding: 4px 14px;
  background: var(--orange-50); color: var(--orange-700);
  border-radius: var(--radius-pill); font-weight: 700; font-size: .82rem;
  border: 1px solid rgba(225,90,15,.18);
}

/* ---------------------------------------------------------------- Banner */
.banner {
  background: var(--petrol-700); color: var(--petrol-50);
  font-size: .82rem; text-align: center;
}
.banner p { padding: 7px var(--gutter); margin: 0 auto; max-width: var(--wrap); }

/* ---------------------------------------------------------------- Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,.86); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; }
.wordmark { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.wordmark__mark { display: inline-flex; }
.wm-body { fill: var(--orange-600); }
.wm-win { fill: var(--petrol-50); }
.wm-wheel { fill: var(--ink); }
.wordmark__text { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: .02em; color: var(--ink); }
.wordmark__tag {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); background: var(--line); padding: 2px 6px; border-radius: 6px; white-space: nowrap;
}
/* Keep the tiny nav tidy on narrow phones; the placeholder tag still shows in the footer. */
.nav .wordmark__tag { display: none; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.langswitch { display: inline-flex; align-items: center; gap: 2px; }
.langswitch__sep { color: var(--line); }
.langswitch__btn {
  min-width: 44px; min-height: 44px; padding: 6px 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  color: var(--muted); border-radius: 10px;
  transition: color .15s ease, background-color .15s ease;
}
.langswitch__btn.is-active { color: var(--orange-700); background: var(--orange-50); }
.langswitch__btn:hover { color: var(--ink); }
.langswitch__btn.is-active:hover { color: var(--orange-700); }
.nav__cta { display: none; }

/* ---------------------------------------------------------------- Shared section bits */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--orange-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--orange-600); flex: 0 0 auto;
}
.eyebrow--onpetrol { color: var(--orange-50); }
.eyebrow--onpetrol::before { background: var(--orange-500); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-title { font-weight: 700; font-size: clamp(1.75rem, 5vw, 2.6rem); letter-spacing: -0.025em; }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 14px; max-width: 52ch; }

section { padding-block: clamp(56px, 9vw, 96px); }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; padding-top: clamp(30px, 5vw, 60px); padding-bottom: clamp(44px, 7vw, 80px); overflow-x: clip; }
/* Warm, subtle atmosphere — a single soft glow, no gradient text, no purple */
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -20% -10% auto auto;
  width: min(560px, 80vw); height: min(560px, 80vw);
  background: radial-gradient(closest-side, rgba(242,117,28,.12), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; gap: 32px; }
.hero__title { font-size: clamp(2.05rem, 7.6vw, 3.4rem); letter-spacing: -0.035em; line-height: 1.02; }
.hero__sub { margin-top: 18px; font-size: clamp(1.06rem, 1rem + 0.4vw, 1.2rem); color: var(--muted); max-width: 38ch; }

/* Capture form */
.capture {
  margin-top: 26px; padding: 22px; background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 0 rgba(22,19,15,.03), 0 2px 6px -3px rgba(18,58,70,.18), 0 22px 44px -26px rgba(18,58,70,.5);
}
.capture__row { margin-bottom: 12px; }
.capture__row--two { display: grid; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field__input {
  width: 100%; min-height: 48px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field__input--area { min-height: auto; resize: vertical; }
.field__input::placeholder { color: #a49d92; }
.field__input:focus { outline: none; border-color: var(--orange-600); box-shadow: 0 0 0 3px rgba(225,90,15,.16); }
.field__input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179,39,26,.14); }
.field__error { color: var(--danger); font-size: .9rem; font-weight: 600; margin: 4px 0 8px; }

.capture .btn--block { margin-top: 6px; }
.capture__trust { margin-top: 12px; font-size: .84rem; color: var(--muted); line-height: 1.45; }
.capture__demo {
  margin-top: 10px; font-size: .78rem; color: var(--petrol-700);
  background: var(--petrol-50); padding: 8px 12px; border-radius: 10px;
}

/* Honeypot — off-screen, never shown */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Success panel (swapped in by JS) */
.capture__success {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px; background: var(--white);
  border: 1.5px solid var(--success); border-radius: var(--radius-card);
}
.capture__success .ok {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--success); color: var(--white);
  display: grid; place-items: center; font-weight: 800;
}
.capture__success h3 { font-size: 1.15rem; margin-bottom: 4px; }
.capture__success p { color: var(--muted); font-size: .95rem; }

/* Hero visual */
.hero__visual { display: grid; gap: 16px; align-content: start; }
.scene-card {
  background: linear-gradient(180deg, var(--petrol-50), var(--white));
  border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 18px 18px 4px; overflow: hidden;
}
.coach-scene { display: block; width: 100%; height: auto; }

.lm {
  margin: 0; padding: 14px; background: #075e54; /* WhatsApp-ish calm green, decorative mock only */
  border-radius: var(--radius-card); color: #eafff7;
  box-shadow: 0 12px 30px -22px rgba(18,58,70,.6);
}
.lm__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.lm__avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--orange-600); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .85rem; }
.lm__name { font-weight: 700; }
.lm__badge { margin-left: auto; background: rgba(255,255,255,.18); font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-pill); }
.lm__bubble { background: #fff; color: var(--ink); border-radius: 12px; border-top-left-radius: 4px; padding: 12px 14px; }
.lm__line { font-weight: 600; margin-bottom: 8px; }
.lm__times { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 4px; }
.lm__times li { display: flex; justify-content: space-between; font-weight: 600; border-bottom: 1px dashed var(--line); padding-bottom: 3px; }
.lm__cls { color: var(--orange-700); font-size: .85rem; }
.lm__code { font-size: .92rem; color: var(--muted); }
.lm__code strong { color: var(--orange-700); letter-spacing: .04em; }

/* ---------------------------------------------------------------- Trust strip */
.trust { position: relative; background: var(--petrol-700); color: var(--petrol-50); }
.trust__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; text-align: center; }
.trust__item { display: flex; flex-direction: column; gap: 6px; padding: 4px 8px; }
.trust__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 9vw, 3.5rem); color: var(--white); line-height: 1; }
.trust__label { color: var(--petrol-50); font-weight: 600; font-size: .98rem; opacity: .9; text-transform: uppercase; letter-spacing: .06em; }
.trust__note { margin-top: 26px; text-align: center; font-size: .82rem; opacity: .7; }

/* ---------------------------------------------------------------- Routes */
.routes__grid { display: grid; gap: 16px; }
.route {
  display: flex; flex-direction: column; text-align: left;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden; cursor: pointer;
  padding: 0; font-family: inherit; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.route:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -26px rgba(18,58,70,.55); border-color: #d9d2c6; }
.route:focus-visible { transform: translateY(-4px); }
.route__scene { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.route__body { padding: 15px 16px 17px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.route__to { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; }
.route__to::after {
  content: ""; width: 7px; height: 7px; flex: 0 0 auto;
  border-right: 2.5px solid var(--orange-700); border-top: 2.5px solid var(--orange-700);
  transform: rotate(45deg); opacity: .45;
  transition: transform .2s ease, opacity .2s ease;
}
.route:hover .route__to::after { opacity: 1; transform: rotate(45deg) translate(2px, -2px); }
.route__from { display: block; font-size: .8rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin-top: 3px; }
.route__price { text-align: right; }
.route__price-prefix { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.route__price-cdf { font-family: var(--font-display); font-weight: 800; color: var(--orange-700); font-size: 1.05rem; }
.route__price-usd { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.routes__note { margin-top: 20px; font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------- Why */
.why { background: var(--orange-50); }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.why__item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 16px 18px; font-size: 1.04rem; font-weight: 600;
}
.why__tick { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--orange-600); position: relative; }
.why__tick::after { content: ""; position: absolute; left: 7px; top: 4px; width: 6px; height: 11px; border: solid var(--white); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------------------------------------------------------------- How (route with stops) */
.how__route { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; position: relative; }
.how__step { position: relative; padding-left: 56px; }
.how__stop {
  position: absolute; left: 0; top: 0; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--petrol-700); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
/* the connecting road between stops */
.how__step:not(:last-child)::before {
  content: ""; position: absolute; left: 18px; top: 40px; bottom: -22px; width: 2px;
  background-image: linear-gradient(var(--line) 60%, transparent 0);
  background-size: 2px 10px; background-repeat: repeat-y;
}
.how__t { font-size: 1.2rem; margin-bottom: 4px; }
.how__d { color: var(--muted); }

/* ---------------------------------------------------------------- App */
.app { background: var(--petrol-50); }
.app__grid { display: grid; gap: 32px; align-items: center; }
.app__install { margin-top: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 16px 18px; }
.app__install-t { font-weight: 700; margin-bottom: 6px; }
.app__install-l { color: var(--muted); font-size: .95rem; margin-bottom: 4px; }
.app__install .pill { margin-top: 8px; }
.app__visual { display: flex; justify-content: center; }
.phone { width: 240px; max-width: 72vw; background: var(--ink); border-radius: 30px; padding: 10px; box-shadow: 0 26px 50px -26px rgba(18,58,70,.6); position: relative; }
.phone__notch { width: 44%; height: 16px; background: var(--ink); border-radius: 0 0 12px 12px; margin: 0 auto 6px; }
.phone__screen { background: var(--bg); border-radius: 22px; padding: 14px; display: grid; gap: 10px; }
.phone__bar { display: flex; align-items: center; }
.phone__brand { font-family: var(--font-display); font-weight: 800; color: var(--orange-700); letter-spacing: .02em; }
.phone__card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: grid; gap: 3px; }
.phone__card--muted { opacity: .72; }
.phone__route { font-weight: 700; }
.phone__meta { font-size: .85rem; color: var(--muted); }
.phone__seat { font-size: .82rem; color: var(--success); font-weight: 700; }
.phone__cta { margin-top: 2px; background: var(--orange-600); color: var(--white); text-align: center; font-weight: 700; padding: 11px; border-radius: var(--radius-pill); }

/* ---------------------------------------------------------------- Diaspora */
.dia { position: relative; background: var(--petrol-700); color: var(--petrol-50); overflow-x: clip; }
.dia::after {
  content: ""; position: absolute; z-index: 0; right: -8%; bottom: -30%;
  width: min(440px, 60vw); height: min(440px, 60vw);
  background: radial-gradient(closest-side, rgba(242,117,28,.18), transparent 70%);
  pointer-events: none;
}
.dia__inner { position: relative; z-index: 1; max-width: 720px; }
.dia__title { font-size: clamp(1.95rem, 6vw, 2.9rem); letter-spacing: -0.03em; color: var(--white); }
.dia__body { margin-top: 16px; font-size: 1.12rem; opacity: .92; max-width: 52ch; }
.dia .btn { margin-top: 26px; }

/* ---------------------------------------------------------------- Charter */
.charter__grid { display: grid; gap: 32px; align-items: start; }
.charter__form { background: var(--white); border-radius: var(--radius-card); padding: 22px; display: grid; gap: 12px; box-shadow: 0 1px 0 rgba(22,19,15,.03), 0 2px 6px -3px rgba(18,58,70,.18), 0 22px 44px -26px rgba(18,58,70,.5); }
.charter__form .capture__row--two { display: grid; gap: 12px; }

/* ---------------------------------------------------------------- Final CTA */
/* Ink on orange = 4.6:1 (AA). White on orange (3.7:1) would fail for body text. */
.final { background: var(--orange-600); color: var(--ink); text-align: center; }
.final__inner { max-width: 680px; margin-inline: auto; }
.final .eyebrow { color: var(--ink); justify-content: center; }
.final .eyebrow::before { background: var(--ink); opacity: .8; }
.final__title { font-size: clamp(1.85rem, 6vw, 2.8rem); color: var(--ink); }
.final__sub { margin-top: 14px; font-size: 1.1rem; max-width: 46ch; margin-inline: auto; }
.final .capture { text-align: left; margin-top: 28px; box-shadow: 0 30px 60px -30px rgba(22,19,15,.5); }

/* ---------------------------------------------------------------- Footer */
.foot { background: var(--ink); color: #cfc8bd; padding-block: 44px 28px; }
.foot__grid { display: grid; gap: 26px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot__brand .wordmark__text { color: var(--white); }
.foot__tagline { margin-top: 10px; color: #a89f92; max-width: 40ch; }
.foot__col { display: grid; gap: 8px; align-content: start; }
.foot__reg { font-size: .92rem; color: #cfc8bd; }
.foot__link { color: var(--orange-500); font-weight: 600; text-decoration: none; width: fit-content; }
.foot__link:hover { text-decoration: underline; }
.foot__base { display: grid; gap: 4px; padding-top: 20px; font-size: .82rem; color: #8f877b; }

/* ---------------------------------------------------------------- Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
/* Orchestrated hero load — the copy rises in sequence */
.hero__copy > .reveal:nth-child(2) { transition-delay: .06s; }
.hero__copy > .reveal:nth-child(3) { transition-delay: .12s; }
.hero__copy > .reveal:nth-child(4) { transition-delay: .18s; }
/* Gentle cascade through grouped items */
.why__item:nth-child(2), .trust__item:nth-child(2), .how__step:nth-child(2) { transition-delay: .08s; }
.why__item:nth-child(3), .trust__item:nth-child(3), .how__step:nth-child(3) { transition-delay: .16s; }
.why__item:nth-child(4) { transition-delay: .24s; }
.why__item:nth-child(5) { transition-delay: .32s; }

/* =====================================================================
   Coach animation (ported from app/src/components/coach/*).
   transform/opacity only; colours from tokens.
   ===================================================================== */
.coach-wheel { transform-box: fill-box; transform-origin: center; animation: coach-spin .6s linear infinite; }
@keyframes coach-spin { to { transform: rotate(360deg); } }
.coach { transform-box: fill-box; transform-origin: center bottom; animation: coach-bob .5s ease-in-out infinite alternate; }
@keyframes coach-bob { from { transform: translateY(0); } to { transform: translateY(-2px); } }
.coach-road { animation: coach-road .55s linear infinite; }
@keyframes coach-road { to { transform: translateX(-40px); } }
.coach-hills { animation: coach-hills 7s linear infinite; }
@keyframes coach-hills { to { transform: translateX(-260px); } }
.coach-dust { transform-box: fill-box; transform-origin: center; opacity: 0; animation: coach-dust .9s ease-out infinite; }
.coach-dust--2 { animation-delay: .3s; }
.coach-dust--3 { animation-delay: .6s; }
@keyframes coach-dust {
  0%   { opacity: 0; transform: translateX(0) scale(.5); }
  25%  { opacity: .55; }
  100% { opacity: 0; transform: translateX(-16px) scale(1.25); }
}
.coach-body { fill: var(--orange-600); }
.coach-skirt { fill: var(--orange-700); }
.coach-roof { fill: var(--petrol-700); }
.coach-window { fill: var(--petrol-50); }
.coach-tyre { fill: var(--ink); }
.coach-hub { fill: var(--bg); }
.coach-arch { fill: var(--ink); }
.coach-headlight { fill: var(--orange-50); }
.coach-roadline { fill: var(--line); }
.coach-dash { fill: var(--muted); }
.coach-hill { fill: var(--petrol-50); }
.coach-dust--puff { fill: var(--line); }
.coach-bumper { fill: var(--petrol-700); }

/* Destination postcard scenes (ported from DestinationScene) */
.route__scene .s-sky { fill: var(--petrol-50); }
.route__scene .s-sun { fill: var(--orange-500); }
.route__scene .s-ground { fill: var(--petrol-700); }
.route__scene .s-water { fill: var(--petrol-700); }
.route__scene .s-accent { fill: var(--orange-600); }
.route__scene .s-light { fill: var(--orange-50); }

/* =====================================================================
   Responsive — designed mobile-first; enhance upward.
   ===================================================================== */
@media (min-width: 520px) {
  .nav .wordmark__tag { display: inline-block; }
}

@media (min-width: 560px) {
  .capture__row--two { grid-template-columns: 1fr 1fr; }
  .charter__form .capture__row--two { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
  .trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.16); }
  .routes__grid { grid-template-columns: repeat(2, 1fr); }
  .why__list { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .nav__cta { display: inline-flex; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 44px; }
  .routes__grid { grid-template-columns: repeat(3, 1fr); }
  .how__route { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .how__step { padding-left: 0; padding-top: 52px; }
  .how__stop { top: 0; }
  .how__step:not(:last-child)::before {
    left: 44px; top: 18px; bottom: auto; right: -14px; width: auto; height: 2px;
    background-image: linear-gradient(90deg, var(--line) 60%, transparent 0);
    background-size: 10px 2px; background-repeat: repeat-x;
  }
  .app__grid { grid-template-columns: 1.1fr .9fr; }
  .charter__grid { grid-template-columns: .9fr 1.1fr; }
}

/* =====================================================================
   Reduced motion — park everything (CLAUDE.md non-negotiable).
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .coach-wheel, .coach, .coach-road, .coach-hills, .coach-dust { animation: none; }
  .coach-dust { opacity: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .btn, .route { transition: none; }
}

.app__cta{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;margin-top:1rem}
