/* =====================================================================
   CITY CABZ — Milton Keynes
   Editorial chauffeur · near-black + off-white · one flat blue signal
   Display: Clash Display · Body: General Sans · Codes/figures: IBM Plex Mono
   Motif: departures board — mono airport codes, hairline rules, tabular fares
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:       #08090c;   /* page */
  --ink-2:     #0b0d12;   /* alt sections */
  --surface:   #0f1117;   /* cards */
  --surface-2: #0b0d12;

  --paper:     #edeff3;   /* primary text + white buttons */
  --paper-dim: #aab2c0;   /* body */
  --paper-mut: #69707e;   /* meta / labels */

  --line:   rgba(255,255,255,.085);
  --line-2: rgba(255,255,255,.16);

  --blue:   #2f7bff;      /* brand signal (logo pin) */
  --blue-2: #6ea2ff;      /* lighter accent for dark bg */
  --ok:     #37d68a;
  --nav-bg: rgba(8,9,12,.78);
  --scrim-1: rgba(8,9,12,.72);  /* hero scrim top */
  --scrim-2: rgba(8,9,12,.34);  /* hero scrim mid */

  --disp: 'Clash Display', Georgia, serif;
  --sans: 'General Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 76px);
  --e-out: cubic-bezier(.22, 1, .36, 1);
  --e-soft: cubic-bezier(.4, 0, .12, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(15px, 1.02vw, 16.5px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 2px; }

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

/* ---------- Type ---------- */
.display { font-family: var(--disp); font-weight: 500; letter-spacing: -.02em; line-height: 1.0; }
.display em { font-style: normal; font-weight: 500; color: var(--blue-2); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-2);
  display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--blue-2); opacity: .7; }

.section-title { font-size: clamp(31px, 5.2vw, 60px); line-height: 1.03; letter-spacing: -.025em; font-weight: 600; }

.sec-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 60px); }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head__lead { margin-top: 20px; color: var(--paper-dim); font-size: clamp(15px, 1.2vw, 17.5px); max-width: 56ch; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .sec-head__lead { margin-inline: auto; }

/* Mono kicker (hero) */
.kicker { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--paper-dim); display: inline-flex; align-items: center; gap: 12px; text-transform: uppercase; }
.kicker__tag { font-weight: 600; color: #fff; background: var(--blue); padding: 3px 8px; border-radius: 4px; letter-spacing: .08em; }
.kicker__sep { width: 4px; height: 4px; background: var(--paper-mut); border-radius: 50%; }

/* ---------- Buttons ---------- */
.btn {
  --bh: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: var(--bh); padding: 0 26px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600; letter-spacing: .005em; white-space: nowrap;
  position: relative; will-change: transform;
  transition: transform .5s var(--e-out), background-color .35s, color .35s, border-color .35s;
}
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn--sm { --bh: 42px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { --bh: 58px; padding: 0 30px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--solid { background: var(--paper); color: var(--ink); }
.btn--solid:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn--solid svg { stroke-width: 2.2; }
.btn--solid:hover svg { transform: translateX(2px); transition: transform .4s var(--e-out); }

.btn--ghost { background: transparent; color: var(--paper); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--paper); transform: translateY(-2px); }

.btn--line { background: transparent; color: var(--paper-dim); border: 1px solid var(--line-2); }
.btn--line:hover { color: var(--paper); border-color: var(--blue-2); }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 200; background: var(--ink); display: grid; place-items: center; transition: opacity .6s var(--e-soft), visibility .6s; }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader__pin { width: 24px; height: 32px; background: var(--blue-2); clip-path: path('M12 0C5.4 0 0 5 0 11.6 0 19.5 12 32 12 32s12-12.5 12-20.4C24 5 18.6 0 12 0z'); position: relative; animation: pinDrop .7s var(--e-out) both; }
.loader__pin::after { content: ""; position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.loader__word { font-family: var(--mono); font-weight: 600; letter-spacing: .18em; font-size: 14px; color: var(--paper); }
.loader__bar { width: 120px; height: 1px; background: var(--line-2); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 40%; background: var(--blue-2); animation: loadSlide 1s var(--e-soft) infinite; }
@keyframes pinDrop { from { transform: translateY(-16px) scale(.7); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes loadSlide { from { transform: translateX(-130%); } to { transform: translateX(360%); } }

/* ---------- NAV ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .4s var(--e-soft), border-color .4s; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: var(--nav-bg); backdrop-filter: blur(14px) saturate(130%); border-bottom-color: var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 15px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 28px; width: auto; }
@media (min-width: 1000px){ .brand img { height: 32px; } }

.nav__links { display: none; gap: 28px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--paper-dim); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--blue-2); transition: width .35s var(--e-out); }
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }
@media (min-width: 940px){ .nav__links { display: flex; } }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: none; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13.5px; font-weight: 500; color: var(--paper); }
.nav__phone svg { width: 15px; height: 15px; fill: var(--blue-2); }
.nav__phone:hover { color: var(--blue-2); }
@media (min-width: 720px){ .nav__phone { display: inline-flex; } }

.nav__burger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span { width: 22px; height: 2px; background: var(--paper); transition: transform .4s var(--e-out), opacity .3s; }
.nav.is-open .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 940px){ .nav__burger { display: none; } }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--ink-2); padding: 104px var(--pad) 40px; display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .55s var(--e-out); visibility: hidden; }
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a { display: flex; align-items: baseline; gap: 16px; font-family: var(--disp); font-size: clamp(28px, 8vw, 44px); font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mm__n { font-family: var(--mono); font-size: 12px; color: var(--blue-2); font-weight: 500; }
.mobile-menu__cta { margin-top: 30px; --bh: 56px; }
.mobile-menu__meta { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 6px; color: var(--paper-dim); font-size: 14px; }
.mobile-menu__meta a { font-family: var(--mono); color: var(--paper); font-size: 17px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding-top: clamp(104px, 14vh, 150px); padding-bottom: clamp(46px, 8vh, 92px); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); filter: saturate(1.05) contrast(1.04); }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(6,9,16,.34) 0%, rgba(6,9,16,0) 30%, rgba(6,9,16,.55) 70%, rgba(6,9,16,.96) 100%),
  linear-gradient(90deg, rgba(6,9,16,.62), rgba(6,9,16,0) 60%); }
/* sunny hero keeps the sky brighter */
html[data-hero="sunny"] .hero__scrim { background:
  linear-gradient(180deg, rgba(6,9,16,.12) 0%, rgba(6,9,16,0) 34%, rgba(6,9,16,.5) 72%, rgba(6,9,16,.95) 100%),
  linear-gradient(90deg, rgba(6,9,16,.5), rgba(6,9,16,0) 62%); }
.hero__lanes { position: absolute; inset: 0; box-shadow: inset 0 0 220px 30px rgba(8,9,12,.7); pointer-events: none; }
.hero__grain { position: absolute; inset: 0; opacity: .4; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); width: 100%; }
.hero__kicker { margin-bottom: 24px; }
.hero__title { font-size: clamp(40px, 8.2vw, 100px); font-weight: 600; letter-spacing: -.032em; max-width: 15ch; }
.hero__sub { margin-top: 24px; max-width: 50ch; color: var(--paper-dim); font-size: clamp(16px, 1.45vw, 19px); }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero__fares { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); }
.hero__fares li { font-family: var(--mono); font-size: 13px; color: var(--paper-dim); padding: 16px 22px 0 0; margin-right: 22px; display: flex; align-items: center; gap: 9px; }
.hero__fares .code { color: var(--blue-2); font-weight: 600; letter-spacing: .03em; }
.hero__fares b { color: var(--paper); font-weight: 600; }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: none; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--blue-2), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 10px; background: var(--paper); animation: scrollLine 1.8s var(--e-soft) infinite; }
.hero__scroll-txt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--paper-mut); }
@keyframes scrollLine { 0%{ transform: translateY(-100%); } 60%,100%{ transform: translateY(340%); } }
@media (min-width: 820px) and (min-height: 640px){ .hero__scroll { display: flex; } }

/* ---------- Marquee (thin ticker) ---------- */
.marquee { background: var(--ink-2); border-block: 1px solid var(--line); overflow: hidden; padding: 12px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--mono); font-weight: 500; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--paper-dim); }
.marquee i { color: var(--blue-2); font-style: normal; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* ---------- Section base ---------- */
.services, .fares, .why, .fleet, .areas, .book, .faq { padding: clamp(70px, 10vw, 138px) 0; position: relative; }
.fleet, .book { background: var(--ink-2); border-block: 1px solid var(--line); }

/* ---------- SERVICES (editorial cards) ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
@media (min-width: 640px){ .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc { position: relative; padding: 30px 26px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .4s; }
.svc:hover { background: var(--surface); }
.svc__num { font-family: var(--mono); font-size: 12px; color: var(--paper-mut); letter-spacing: .08em; }
.svc__icon { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); margin: 20px 0 18px; transition: border-color .4s; }
.svc:hover .svc__icon { border-color: var(--blue-2); }
.svc__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--paper); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.svc p { color: var(--paper-dim); font-size: 14px; }
.svc--wide { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; border-right: none; }
.svc--wide .svc__icon { margin: 0; flex-shrink: 0; }
.svc--wide .svc__body { flex: 1 1 280px; }
.svc--wide .svc__num { position: absolute; top: 30px; right: 26px; }
.svc__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-weight: 500; font-size: 13.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--blue-2); white-space: nowrap; }
.svc__link span { transition: transform .35s var(--e-out); }
.svc__link:hover span { transform: translateX(4px); }
/* tidy seams on small screens */
@media (max-width: 999px){ .svc:nth-child(2n) { border-right: none; } }
@media (min-width: 1000px){ .svc:nth-child(4n) { border-right: none; } }

/* ---------- FARES — departures board ---------- */
.fares__panel { border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); padding: clamp(20px, 3.4vw, 36px); }

.classtabs { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 10px; padding: 5px; margin-bottom: 26px; background: var(--ink); }
.classtabs__pill { position: absolute; top: 5px; left: 5px; height: calc(100% - 10px); width: calc((100% - 10px)/3); border-radius: 7px; background: var(--paper); transition: transform .45s var(--e-out); z-index: 0; }
.classtabs__btn { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0; padding: 10px 8px; color: var(--paper-dim); transition: color .35s; }
.classtabs__btn strong { font-size: clamp(13.5px, 1.5vw, 15px); font-weight: 600; }
.classtabs__btn em { font-style: normal; font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; opacity: .85; }
.classtabs__btn.is-active { color: var(--ink); }

/* route indicator */
.route { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.route__node { display: flex; flex-direction: column; line-height: 1.15; }
.route__node b { font-family: var(--mono); font-size: clamp(17px, 2.2vw, 21px); font-weight: 600; letter-spacing: .04em; }
.route__node em { font-style: normal; font-size: 11.5px; color: var(--paper-mut); }
.route__node--dest { text-align: right; align-items: flex-end; }
.route__node--dest b { color: var(--blue-2); }
.route__line { flex: 1; height: 1px; position: relative; background: var(--line-2); }
.route__plane { position: absolute; top: 50%; left: 0; width: 16px; height: 16px; transform: translate(-8px, -50%); fill: var(--blue-2); stroke: none; animation: planeRun 5s var(--e-soft) infinite; }
@keyframes planeRun { 0%{ left: 0; opacity: 0; } 14%{ opacity: 1; } 86%{ opacity: 1; } 100%{ left: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce){ .route__plane { animation: none; left: 50%; } }

/* board header */
.board-head { display: flex; align-items: center; justify-content: space-between; padding: 0 18px 10px; border-bottom: 1px solid var(--line-2); }
.board-head span { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-mut); }

/* board rows */
.fare-grid { display: flex; flex-direction: column; }
.brow { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); position: relative; transition: background .3s; }
.brow::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--blue-2); transform: scaleY(0); transition: transform .35s var(--e-out); }
.brow:last-child { border-bottom: none; }
.brow:hover { background: var(--surface); }
.brow.is-active { background: rgba(47,123,255,.07); }
.brow.is-active::before { transform: scaleY(1); }
.brow__code { font-family: var(--mono); font-weight: 600; font-size: 15px; letter-spacing: .04em; color: var(--blue-2); width: 46px; flex-shrink: 0; }
.brow__air { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.brow__name { font-size: 15.5px; font-weight: 600; }
.brow__sub { font-family: var(--mono); font-size: 11px; color: var(--paper-mut); letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 420px){ .brow { gap: 12px; padding: 14px 14px; } .brow__code { width: 38px; font-size: 14px; } .brow__sub { font-size: 10.5px; } }
.brow__price { font-family: var(--mono); font-weight: 600; font-size: clamp(19px, 2.6vw, 23px); color: var(--paper); white-space: nowrap; font-variant-numeric: tabular-nums; }
.brow__price i { font-style: normal; font-size: 11px; font-weight: 400; color: var(--paper-mut); }

.fares__note { margin-top: 20px; font-family: var(--mono); font-size: 11.5px; color: var(--paper-mut); line-height: 1.6; }
.fares__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- WHY ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
@media (min-width: 620px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.feat { padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .4s; }
.feat:hover { background: var(--surface); }
.feat__ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); margin-bottom: 18px; transition: border-color .4s; }
.feat:hover .feat__ic { border-color: var(--blue-2); }
.feat__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--paper); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.feat p { color: var(--paper-dim); font-size: 14px; }
@media (max-width: 979px){ .feat:nth-child(2n){ border-right: none; } }
@media (min-width: 980px){ .feat:nth-child(3n){ border-right: none; } }

/* ---------- FLEET ---------- */
.fleet-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 540px){ .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 820px){ .fleet-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1140px){ .fleet-grid { grid-template-columns: repeat(5,1fr); } }
.fcard { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: transform .5s var(--e-out), border-color .4s; }
.fcard:hover { transform: translateY(-4px); border-color: var(--line-2); }
.fcard--accent { border-color: rgba(110,162,255,.4); }
.fcard__img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.fcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--e-out); }
.fcard:hover .fcard__img img { transform: scale(1.05); }
.fcard__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--surface) 88%, transparent)); }
.fcard__body { padding: 18px 20px 22px; }
.fcard__tag { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--blue); padding: 4px 9px; border-radius: 4px; }
html[data-edition="departures"] .fcard__tag { color: #0a0c0b; }
.fcard__top { display: flex; gap: 8px; margin-bottom: 14px; }
.fcard__seats, .fcard__bags { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .02em; color: var(--paper-dim); padding: 4px 9px; border: 1px solid var(--line-2); border-radius: 5px; }
.fcard h3 { font-family: var(--disp); font-size: 24px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 4px; }
.fcard__model { font-family: var(--mono); font-size: 11px; color: var(--blue-2); letter-spacing: .02em; margin-bottom: 10px !important; }
.fcard p { color: var(--paper-dim); font-size: 13px; }

/* ---------- AREAS ---------- */
.areas__wrap { display: grid; grid-template-columns: 1fr; gap: 42px; align-items: start; }
@media (min-width: 920px){ .areas__wrap { grid-template-columns: 1fr 1fr; gap: 70px; } }
.areas__intro .btn { margin-top: 28px; }
.areas__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (min-width: 460px){ .areas__list { grid-template-columns: repeat(3,1fr); } }
.areas__list li { position: relative; padding: 16px 14px 16px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 13px; letter-spacing: .01em; color: var(--paper-dim); transition: color .3s, background .3s; }
.areas__list li::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 7px; height: 7px; border-radius: 50% 50% 50% 0; background: var(--blue-2); }
.areas__list li:hover { color: var(--paper); background: var(--surface); }
@media (max-width: 459px){ .areas__list li:nth-child(2n){ border-right: none; } }
@media (min-width: 460px){ .areas__list li:nth-child(3n){ border-right: none; } }

/* ---------- BOOK ---------- */
.book-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
@media (min-width: 760px){ .book-grid { grid-template-columns: repeat(3,1fr); } }
.bcard { position: relative; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .4s; }
.bcard:hover { background: var(--surface); }
.bcard__n { font-family: var(--mono); font-size: 12.5px; color: var(--blue-2); letter-spacing: .06em; }
.bcard h3 { font-size: 21px; font-weight: 600; margin: 14px 0 8px; letter-spacing: -.01em; }
.bcard p { color: var(--paper-dim); font-size: 14px; margin-bottom: 18px; }
.bcard__go { font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: .02em; color: var(--paper); }
.bcard:hover .bcard__go { color: var(--blue-2); }
@media (max-width: 759px){ .bcard { border-right: none; } }
@media (min-width: 760px){ .bcard:last-child { border-right: none; } }

/* ---------- FAQ ---------- */
.faq__wrap { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 920px){ .faq__wrap { grid-template-columns: .8fr 1.2fr; gap: 56px; } .faq .sec-head { position: sticky; top: 108px; margin-bottom: 0; } }
.faq__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-weight: 600; font-size: clamp(15px, 1.5vw, 17px); list-style: none; cursor: pointer; transition: color .3s; }
.qa summary:hover { color: var(--blue-2); }
.qa summary::-webkit-details-marker { display: none; }
.qa__ic { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.qa__ic::before, .qa__ic::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--blue-2); transition: transform .4s var(--e-out); }
.qa__ic::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.qa__ic::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.qa[open] .qa__ic::after { transform: translate(-50%,-50%) scaleY(0); }
.qa__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--e-out); }
.qa[open] .qa__a { max-height: 260px; }
.qa__a p { padding: 0 4px 24px; color: var(--paper-dim); font-size: 15px; max-width: 64ch; }

/* ---------- CTA — London dusk video ---------- */
.cta { position: relative; padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; border-top: 1px solid var(--line); text-align: center; }
.cta__media { position: absolute; inset: 0; }
.cta__video { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,.74), rgba(8,9,12,.6) 50%, var(--ink)); }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(32px, 6vw, 66px); line-height: 1.03; letter-spacing: -.025em; font-weight: 600; }
.cta p { margin: 22px auto 0; max-width: 48ch; color: var(--paper-dim); font-size: clamp(16px, 1.35vw, 18.5px); }
.cta__btns { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(54px, 8vw, 84px); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 46px; padding-bottom: 46px; }
@media (min-width: 880px){ .footer__top { grid-template-columns: 1.3fr 2fr; gap: 60px; } }
.footer__brand img { height: 32px; width: auto; margin-bottom: 20px; }
.footer__brand p { color: var(--paper-dim); font-size: 14px; max-width: 40ch; }
.footer__social { display: flex; gap: 9px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--line-2); transition: border-color .3s, transform .4s var(--e-out); }
.footer__social a:hover { border-color: var(--blue-2); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; fill: none; stroke: var(--paper); stroke-width: 1.6; stroke-linejoin: round; }
.footer__cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
@media (min-width: 560px){ .footer__cols { grid-template-columns: repeat(3,1fr); } }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-mut); margin-bottom: 4px; }
.footer__col a, .footer__col span { color: var(--paper-dim); font-size: 14px; transition: color .3s; }
.footer__col a:hover { color: var(--blue-2); }
.footer__hours { display: inline-flex; align-items: center; gap: 8px; color: var(--paper) !important; font-family: var(--mono); font-size: 13px; }
.footer__hours i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding: 22px 0 30px; border-top: 1px solid var(--line); color: var(--paper-mut); font-family: var(--mono); font-size: 12px; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--paper); }

/* ---------- Sticky mobile dock ---------- */
.dock { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; display: flex; gap: 10px; transform: translateY(140%); transition: transform .5s var(--e-out); }
.dock.is-show { transform: none; }
.dock a { height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 14.5px; }
.dock__call { flex: 0 0 116px; background: var(--surface); border: 1px solid var(--line-2); color: var(--paper); backdrop-filter: blur(12px); }
.dock__call svg { width: 17px; height: 17px; fill: var(--blue); }
.dock__book { flex: 1; background: var(--paper); color: var(--ink); }
@media (min-width: 720px){ .dock { display: none; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--e-out), transform .8s var(--e-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; } .hero__video { transform: none; } }

/* =====================================================================
   EDITIONS — the switcher reskins the WHOLE site (data-edition on <html>)
   Each edition redefines palette + fonts + shape + accent.
   Hero + CTA keep their own cinematic dark token context in every edition.
   ===================================================================== */

/* ---- BLACK-CAR · dark, premium, motion-led ---- */
html[data-edition="black-car"]{
  --ink:#08090c; --ink-2:#0b0d12; --surface:#0f1117; --surface-2:#0b0d12;
  --paper:#edeff3; --paper-dim:#aab2c0; --paper-mut:#69707e;
  --line:rgba(255,255,255,.085); --line-2:rgba(255,255,255,.16);
  --blue:#2f7bff; --blue-2:#6ea2ff; --ok:#37d68a;
  --nav-bg:rgba(8,9,12,.78);
  --disp:'Clash Display', Georgia, serif;
  --sans:'General Sans', system-ui, sans-serif;
  --mono:'IBM Plex Mono', ui-monospace, monospace;
  --radius:14px; --radius-sm:8px;
}

/* ---- SHOWROOM · bold automotive, bright, dramatic type ---- */
html[data-edition="showroom"]{
  --ink:#f3f3f0; --ink-2:#e8e8e3; --surface:#ffffff; --surface-2:#f1f1ec;
  --paper:#0b0b0d; --paper-dim:#46464a; --paper-mut:#86868c;
  --line:rgba(11,11,13,.13); --line-2:rgba(11,11,13,.22);
  --blue:#1636ff; --blue-2:#1636ff; --ok:#0f9d52;
  --nav-bg:rgba(243,243,240,.86);
  --disp:'Anton', 'Arial Narrow', sans-serif;
  --sans:'Satoshi', 'General Sans', system-ui, sans-serif;
  --mono:'IBM Plex Mono', ui-monospace, monospace;
  --radius:3px; --radius-sm:2px;
}

/* ---- DEPARTURES · retro transit board, amber on dark, mono ---- */
html[data-edition="departures"]{
  --ink:#0a0c0b; --ink-2:#0e110f; --surface:#13171400; --surface:#121613; --surface-2:#0d100e;
  --paper:#f0ede3; --paper-dim:#9ba59b; --paper-mut:#616d62;
  --line:rgba(255,255,255,.09); --line-2:rgba(255,255,255,.17);
  --blue:#ffb400; --blue-2:#ffc64d; --ok:#37d68a;
  --nav-bg:rgba(10,12,11,.84);
  --disp:'IBM Plex Mono', ui-monospace, monospace;
  --sans:'General Sans', system-ui, sans-serif;
  --mono:'IBM Plex Mono', ui-monospace, monospace;
  --radius:2px; --radius-sm:2px;
}

/* Hero & CTA are always cinematic over their video — scope a dark token set */
.hero, .cta {
  --paper:#f4f7fd; --paper-dim:#ccd5e3; --paper-mut:#97a4b8;
  --ink:#0a0e16; --surface:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.14); --line-2:rgba(255,255,255,.24);
  --blue-2:#7fb0ff;
  color: var(--paper); /* re-resolve inherited color with the scoped token */
}
.hero__title, .cta h2 { color: var(--paper); }

/* Nav content stays light while transparent over the (dark) hero video */
.nav:not(.is-stuck) .nav__links a { color: rgba(255,255,255,.74); }
.nav:not(.is-stuck) .nav__links a:hover { color: #fff; }
.nav:not(.is-stuck) .nav__phone { color: #fff; }
.nav:not(.is-stuck) .nav__phone svg { fill: #fff; }
.nav:not(.is-stuck) .nav__burger span { background: #fff; }

/* ---- Theme-aware logo swap ---- */
.brand__light, .footer__logo .brand__light { display: block; }
.brand__dark,  .footer__logo .brand__dark  { display: none; }
html[data-mode="light"] .nav.is-stuck .brand__light { display: none; }
html[data-mode="light"] .nav.is-stuck .brand__dark  { display: block; }
html[data-mode="light"] .footer__logo .brand__light { display: none; }
html[data-mode="light"] .footer__logo .brand__dark  { display: block; }

/* ---- Bigger, standout footer logo ---- */
.footer__logo { display: block; margin-bottom: 24px; }
.footer__logo img { height: 60px; width: auto; margin-bottom: 0; }
@media (min-width: 880px){ .footer__logo img { height: 76px; } }

/* ---- Interactive "move to drive" hint ---- */
.hero__drive { position: absolute; left: var(--pad); bottom: 26px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); padding: 8px 13px;
  border-radius: 100px; backdrop-filter: blur(6px); animation: driveHint 3s var(--e-soft) infinite; }
.hero__drive svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes driveHint { 0%,100%{ opacity:.6 } 50%{ opacity:1 } }
.hero__drive[hidden] { display: none; }
@media (max-width: 719px){ .hero__drive { display: none !important; } }

/* =====================================================================
   CUSTOMISER (client appearance picker)
   ===================================================================== */
.cust { position: fixed; right: 18px; bottom: 18px; z-index: 95; }
/* Mobile: sits above the dock, and rides in with it (script.js toggles .is-show).
   The hero fare chips are pinned to the hero's bottom edge, so a FAB parked in
   the bottom corner covers them while the hero owns the viewport. */
@media (max-width: 719px){
  .cust { bottom: 78px; right: 12px;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity .35s var(--e-out), transform .35s var(--e-out), visibility .35s; }
  .cust.is-show, .cust.is-open { opacity: 1; visibility: visible; transform: none; }
}
.cust__fab { display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 17px 0 14px;
  border-radius: 100px; background: var(--surface); border: 1px solid var(--line-2); color: var(--paper);
  font-family: var(--sans); font-weight: 600; font-size: 14px; box-shadow: 0 12px 32px -12px rgba(0,0,0,.5);
  transition: transform .4s var(--e-out); }
.cust__fab svg { width: 20px; height: 20px; fill: var(--blue); }
.cust__fab:hover { transform: translateY(-2px); }
.cust__panel { position: absolute; right: 0; bottom: 58px; width: 286px; background: var(--surface);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 18px; box-shadow: 0 28px 70px -24px rgba(0,0,0,.65);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98); transform-origin: bottom right;
  transition: opacity .35s var(--e-out), transform .35s var(--e-out), visibility .35s; }
.cust.is-open .cust__panel { opacity: 1; visibility: visible; transform: none; }
.cust__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cust__head strong { font-size: 15px; font-weight: 600; }
.cust__x { font-size: 22px; line-height: 1; color: var(--paper-mut); width: 28px; height: 28px; border-radius: 7px; }
.cust__x:hover { color: var(--paper); }
.cust__group { margin-bottom: 16px; }
.cust__label { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--paper-mut); margin-bottom: 10px; }
.cust__swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sw { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px; transition: border-color .3s, background .3s; }
.sw:hover { border-color: var(--line-2); }
.sw.is-active { border-color: var(--blue); background: color-mix(in srgb, var(--blue) 9%, transparent); }
.sw__chip { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; }
.sw__chip i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.sw em { font-style: normal; font-size: 12.5px; font-weight: 500; }
.cust__heroes { display: flex; flex-direction: column; gap: 7px; }
.hopt { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; font-size: 13.5px; font-weight: 500; text-align: left; transition: border-color .3s, background .3s; }
.hopt span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.hopt:hover { border-color: var(--line-2); }
.hopt.is-active { border-color: var(--blue); background: color-mix(in srgb, var(--blue) 9%, transparent); }
.cust__note { font-size: 11px; color: var(--paper-mut); margin-top: 2px; line-height: 1.5; }
@media (prefers-reduced-motion: reduce){ .hero__drive { animation: none; } }

/* =====================================================================
   EDITION SIGNATURES — shape, type treatment, accents per edition
   ===================================================================== */
/* Shape tokens flow into components so each edition's geometry differs */
.btn, .dock__call, .dock__book { border-radius: var(--radius-sm); }
.svc-grid, .why-grid, .book-grid, .areas__list, .fares__panel, .fare-grid,
.classtabs, .fcard, .cust__panel, .cust__fab, .feat, .qa, .svc__icon, .feat__ic { border-radius: var(--radius); }
.classtabs__pill, .classtabs__btn { border-radius: var(--radius-sm); }

/* SHOWROOM — oversized condensed uppercase headlines, electric-blue buttons */
html[data-edition="showroom"] .display,
html[data-edition="showroom"] .section-title,
html[data-edition="showroom"] .hero__title,
html[data-edition="showroom"] .cta h2 { text-transform: uppercase; letter-spacing: .005em; line-height: .9; }
html[data-edition="showroom"] .hero__title { font-size: clamp(40px, 7vw, 96px); }
html[data-edition="showroom"] .display em,
html[data-edition="showroom"] .section-title em { color: var(--blue); }
html[data-edition="showroom"] .btn--solid { background: var(--blue); color: #fff; }
html[data-edition="showroom"] .btn--solid:hover { filter: brightness(1.1); }
html[data-edition="showroom"] .kicker, html[data-edition="showroom"] .eyebrow { font-weight: 600; }

/* DEPARTURES — mono uppercase board type, amber accents, dashed ticket edges */
html[data-edition="departures"] .display,
html[data-edition="departures"] .section-title,
html[data-edition="departures"] .hero__title,
html[data-edition="departures"] .cta h2 { text-transform: uppercase; letter-spacing: -.01em; font-weight: 700; }
html[data-edition="departures"] .kicker__tag,
html[data-edition="departures"] .fcard__tag { color: #0a0c0b; }
html[data-edition="departures"] .fares__panel { border-style: dashed; }
html[data-edition="departures"] .fcard--accent { border-style: dashed; }
html[data-edition="departures"] .btn--solid { color: #0a0c0b; }
html[data-edition="departures"] .marquee i { color: var(--blue); }

/* =====================================================================
   CUSTOMISER — edition picker rows
   ===================================================================== */
.cust__editions { display: flex; flex-direction: column; gap: 7px; }
.ed { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; text-align: left; transition: border-color .3s, background .3s; }
.ed:hover { border-color: var(--line-2); }
.ed.is-active { border-color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, transparent); }
.ed__sw { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; border: 1px solid var(--line-2); }
.ed__sw--bc { background: linear-gradient(135deg, #0b0d12 42%, #2f7bff); }
.ed__sw--sh { background: linear-gradient(135deg, #ffffff 46%, #1636ff); }
.ed__sw--dp { background: linear-gradient(135deg, #0e110f 46%, #ffb400); }
.ed__txt { display: flex; flex-direction: column; line-height: 1.18; }
.ed__txt em { font-style: normal; font-size: 13.5px; font-weight: 600; }
.ed__txt i { font-style: normal; font-size: 11px; color: var(--paper-mut); }
.hopt span { /* keep existing */ }

/* Departures: hero/CTA accent goes amber to match the board */
html[data-edition="departures"] .hero, html[data-edition="departures"] .cta { --blue-2: #ffc64d; }

/* =====================================================================
   LIVE QUOTE + ROUTE MAP
   ===================================================================== */
.quote { padding: clamp(70px,10vw,138px) 0; background: var(--ink-2); border-block: 1px solid var(--line); }
.quote__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 920px){ .quote__grid { grid-template-columns: .92fr 1.08fr; gap: 22px; align-items: stretch; } }

.quote__panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px,3vw,30px); display: flex; flex-direction: column; gap: 18px; }
.qfields { display: grid; gap: 12px; }
@media (min-width: 460px){ .qfields { grid-template-columns: 1fr 1fr; } }
.qfield { display: flex; flex-direction: column; gap: 7px; }
.qfield__lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--paper-mut); }
.qfield__sel { display: flex; align-items: center; gap: 9px; padding: 0 12px; height: 50px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface-2); transition: border-color .3s; }
.qfield__sel:focus-within { border-color: var(--blue); }
.qfield__sel svg { width: 17px; height: 17px; fill: none; stroke: var(--blue-2); stroke-width: 1.7; stroke-linejoin: round; flex-shrink: 0; }
.qfield__sel select { flex: 1; height: 100%; background: none; border: none; color: var(--paper); font-family: var(--sans); font-size: 14.5px; font-weight: 500; cursor: pointer; -webkit-appearance: none; appearance: none; }
.qfield__sel select option { color: #14171f; background: #fff; }

.qclass { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px; background: var(--surface-2); }
.qclass__pill { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc((100% - 8px)/3); border-radius: var(--radius-sm); background: var(--paper); transition: transform .45s var(--e-out); z-index: 0; }
.qclass__btn { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding: 8px 4px; color: var(--paper-dim); transition: color .35s; }
.qclass__btn strong { font-size: 13.5px; font-weight: 600; }
.qclass__btn em { font-style: normal; font-family: var(--mono); font-size: 10px; opacity: .8; }
.qclass__btn.is-active { color: var(--ink); }

.qprice { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; min-height: 70px; align-content: center; }
.qprice__route { width: 100%; font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em; color: var(--blue-2); }
.qprice__from { font-family: var(--mono); font-size: 13px; color: var(--paper-mut); }
.qprice__big { font-family: var(--mono); font-weight: 700; font-size: clamp(36px,7vw,52px); line-height: 1; color: var(--paper); font-variant-numeric: tabular-nums; }
.qprice__handoff { width: 100%; font-size: 14px; color: var(--paper-dim); line-height: 1.5; }
.qprice__handoff b { color: var(--paper); font-weight: 600; }

.qincl { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.qincl li { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12.5px; color: var(--paper-dim); }
.qincl svg { width: 15px; height: 15px; fill: none; stroke: var(--ok); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.quote__map { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 16px 6px; overflow: hidden; min-height: 330px; display: flex; flex-direction: column; }
.qmap__head { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--paper-mut); display: flex; align-items: center; gap: 8px; }
.qmap__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: qpulse 2s var(--e-soft) infinite; }
@keyframes qpulse { 0%,100%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 45%, transparent); } 50%{ box-shadow: 0 0 0 5px transparent; } }
[data-q-map] { width: 100%; flex: 1; min-height: 280px; }
.qline { stroke: var(--line-2); stroke-width: 1; opacity: .45; }
.qroute { stroke: var(--blue-2); stroke-width: 2.5; fill: none; stroke-linecap: round; }
.qhub__ring { fill: none; stroke: var(--blue); stroke-width: 1.5; opacity: .45; }
.qhub__ring2 { fill: none; stroke: var(--blue); stroke-width: 1; opacity: .22; }
.qhub__core { fill: var(--blue); }
.qhub__label { font-family: var(--mono); font-size: 12px; font-weight: 700; fill: var(--paper); text-anchor: middle; }
.qnode { cursor: pointer; }
.qnode__dot { fill: var(--surface-2); stroke: var(--line-2); stroke-width: 1.5; transition: stroke .3s, fill .3s; }
.qnode__code { font-family: var(--mono); font-size: 12px; font-weight: 600; fill: var(--paper-dim); text-anchor: middle; transition: fill .3s; pointer-events: none; }
.qnode:hover .qnode__dot { stroke: var(--blue-2); }
.qnode.is-active .qnode__dot { fill: var(--blue); stroke: var(--blue-2); }
.qnode.is-active .qnode__code { fill: #fff; }
.qcar__halo { fill: var(--blue); opacity: .25; animation: qcarpulse 1.6s var(--e-soft) infinite; }
.qcar__core { fill: var(--blue-2); stroke: var(--surface); stroke-width: 1.5; }
@keyframes qcarpulse { 0%,100%{ transform: scale(1); opacity:.25 } 50%{ transform: scale(1.5); opacity:.05 } }

/* =====================================================================
   ASK CITY CABZ — chat assistant
   ===================================================================== */
.chat { position: fixed; left: 18px; bottom: 18px; z-index: 96; }
/* Mobile: see the matching .cust rule — rides in with the dock so it never
   covers the hero fare chips. */
@media (max-width: 719px){
  .chat { left: 12px; bottom: 78px;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity .35s var(--e-out), transform .35s var(--e-out), visibility .35s; }
  .chat.is-show, .chat.is-open { opacity: 1; visibility: visible; transform: none; }
}

.chat__fab { display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 19px 0 16px;
  border-radius: 100px; background: var(--blue); color: #fff; font-family: var(--sans); font-weight: 600;
  font-size: 14.5px; box-shadow: 0 14px 34px -12px color-mix(in srgb, var(--blue) 75%, transparent);
  transition: transform .4s var(--e-out), filter .3s; }
html[data-edition="departures"] .chat__fab { color: #0a0c0b; }
.chat__fab:hover { transform: translateY(-2px); filter: brightness(1.07); }
.chat__ic { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.chat__ic--close { display: none; }
.chat.is-open .chat__ic--open { display: none; }
.chat.is-open .chat__ic--close { display: block; }
.chat.is-open .chat__fab-txt { display: none; }
.chat.is-open .chat__fab { padding: 0; width: 50px; justify-content: center; }

.chat__panel { position: absolute; left: 0; bottom: 62px; width: min(360px, calc(100vw - 24px));
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; max-height: min(560px, calc(100vh - 130px));
  box-shadow: 0 30px 80px -24px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.97); transform-origin: bottom left;
  transition: opacity .35s var(--e-out), transform .35s var(--e-out), visibility .35s; }
.chat.is-open .chat__panel { opacity: 1; visibility: visible; transform: none; }

.chat__head { display: flex; align-items: center; gap: 11px; padding: 14px 14px 13px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.chat__avatar { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue); }
.chat__avatar svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linejoin: round; stroke-linecap: round; }
html[data-edition="departures"] .chat__avatar svg { stroke: #0a0c0b; }
.chat__id { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.chat__id strong { font-size: 14.5px; font-weight: 600; }
.chat__id i { font-style: normal; font-family: var(--mono); font-size: 10.5px; color: var(--paper-mut); display: inline-flex; align-items: center; gap: 6px; }
.chat__on { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.chat__x { font-size: 22px; line-height: 1; color: var(--paper-mut); width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.chat__x:hover { color: var(--paper); }

.chat__log { flex: 1; overflow-y: auto; padding: 16px 14px 6px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.msg { max-width: 84%; padding: 10px 13px; font-size: 14px; line-height: 1.5; border-radius: 14px; }
.msg b { font-weight: 600; }
.msg--bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); color: var(--paper); border-bottom-left-radius: 5px; }
.msg--bot strong { color: var(--blue-2); }
.msg--user { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 5px; }
html[data-edition="departures"] .msg--user { color: #0a0c0b; }
.msg--typing { display: inline-flex; gap: 4px; align-self: flex-start; padding: 13px 14px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; }
.msg--typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--paper-mut); animation: typing 1.2s infinite; }
.msg--typing i:nth-child(2){ animation-delay: .2s; } .msg--typing i:nth-child(3){ animation-delay: .4s; }
@keyframes typing { 0%,60%,100%{ opacity:.3; transform: translateY(0) } 30%{ opacity:1; transform: translateY(-3px) } }

.chat__chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 8px 14px; }
.chip { font-family: var(--mono); font-size: 11.5px; padding: 7px 11px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--paper-dim); transition: border-color .25s, color .25s, background .25s; white-space: nowrap; }
.chip:hover { border-color: var(--blue); color: var(--blue-2); }

.chat__form { display: flex; gap: 8px; padding: 12px 14px 14px; border-top: 1px solid var(--line); }
.chat__form input { flex: 1; height: 44px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 100px; background: var(--surface-2); color: var(--paper); font-family: var(--sans); font-size: 14px; }
.chat__form input:focus { outline: none; border-color: var(--blue); }
.chat__send { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: filter .25s, transform .3s; }
html[data-edition="departures"] .chat__send { color: #0a0c0b; }
.chat__send:hover { filter: brightness(1.08); transform: scale(1.05); }
.chat__send svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.msg--bot a { color: var(--blue-2); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.msg--user a { color: inherit; text-decoration: underline; }

/* =====================================================================
   EXPERIENCE BAND (image)
   ===================================================================== */
.exp { position: relative; overflow: hidden; padding: clamp(80px,12vw,150px) 0; border-block: 1px solid var(--line); }
.exp__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,9,16,.9) 0%, rgba(6,9,16,.72) 45%, rgba(6,9,16,.35) 100%), linear-gradient(180deg, rgba(6,9,16,.4), rgba(6,9,16,.6)); }
.exp__inner { position: relative; z-index: 1; --paper:#f4f7fd; --paper-dim:#ccd5e3; --blue-2:#7fb0ff; color: var(--paper); max-width: 620px; }
html[data-edition="departures"] .exp__inner { --blue-2:#ffc64d; }
.exp__inner h2 { color: var(--paper); margin: 18px 0 0; font-size: clamp(30px,5.4vw,60px); line-height: 1.04; }
.exp__lead { margin-top: 18px; color: var(--paper-dim); font-size: clamp(15px,1.3vw,18px); max-width: 52ch; }
.exp__stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 28px; margin-top: 34px; max-width: 460px; }
@media (min-width: 560px){ .exp__stats { grid-template-columns: repeat(4,1fr); gap: 0; } .exp__stats li { padding-right: 18px; border-right: 1px solid rgba(255,255,255,.18); } .exp__stats li:last-child { border-right: none; } }
.exp__stats li { display: flex; flex-direction: column; gap: 3px; }
.exp__stats b { font-family: var(--disp); font-size: clamp(22px,3vw,28px); font-weight: 700; color: var(--paper); }
html[data-edition="black-car"] .exp__stats b, html[data-edition="departures"] .exp__stats b { color: var(--blue-2); }
.exp__stats span { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--paper-dim); text-transform: uppercase; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews { padding: clamp(70px,10vw,138px) 0; background: var(--ink); }
.rev-head { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: clamp(36px,5vw,52px); align-items: end; }
@media (min-width: 760px){ .rev-head { grid-template-columns: 1fr auto; } }
.rev-score { display: flex; flex-direction: column; gap: 4px; padding: 18px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
@media (min-width: 760px){ .rev-score { text-align: right; align-items: flex-end; } }
.rev-score__num { font-family: var(--disp); font-size: 46px; font-weight: 700; line-height: 1; color: var(--paper); }
.rev-score__sub { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--paper-mut); }
.rev-stars { color: #ffb400; font-size: 16px; letter-spacing: 2px; }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px){ .rev-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .rev-grid { grid-template-columns: repeat(3,1fr); } }
.rev { display: flex; flex-direction: column; gap: 12px; padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .5s var(--e-out), border-color .4s; }
.rev:hover { transform: translateY(-4px); border-color: var(--line-2); }
.rev p { color: var(--paper); font-size: 15px; line-height: 1.55; flex: 1; }
.rev__by { display: flex; align-items: center; gap: 11px; }
.rev__av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 600; color: #fff; background: var(--av, var(--blue)); flex-shrink: 0; }
.rev__id { display: flex; flex-direction: column; line-height: 1.25; }
.rev__id b { font-size: 14px; font-weight: 600; }
.rev__id i { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--paper-mut); }

/* =====================================================================
   QUOTE — Leaflet route map
   ===================================================================== */
.qmap { width: 100%; flex: 1; min-height: 320px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); position: relative; z-index: 0; }
.qmap .leaflet-container { background: var(--surface-2); font-family: var(--mono); outline: none; }
.qmap .leaflet-control-attribution { background: color-mix(in srgb, var(--ink) 70%, transparent); color: var(--paper-mut); font-family: var(--mono); font-size: 9px; padding: 1px 5px; }
.qmap .leaflet-control-attribution a { color: var(--paper-mut); }
.qmap .leaflet-tile { filter: saturate(.92); }
.qpin { position: relative; width: 44px; height: 44px; display: grid; place-items: center; }
.qpin i { width: 12px; height: 12px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 28%, transparent); transition: transform .3s, background .3s; }
.qpin b { position: absolute; top: 25px; font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--paper); background: color-mix(in srgb, var(--ink) 78%, transparent); padding: 1px 5px; border-radius: 3px; white-space: nowrap; }
.qpin--hub i { width: 18px; height: 18px; background: var(--blue); box-shadow: 0 0 0 6px color-mix(in srgb, var(--blue) 22%, transparent), 0 0 16px var(--blue); }
.qpin--hub b { color: #fff; background: var(--blue); }
html[data-edition="departures"] .qpin--hub b { color: #0a0c0b; }
.qpin--active i { transform: scale(1.4); background: var(--blue); box-shadow: 0 0 0 6px color-mix(in srgb, var(--blue) 25%, transparent), 0 0 16px var(--blue); }
.qroute-line { stroke: var(--blue) !important; stroke-width: 3; fill: none; stroke-linecap: round;
  filter: drop-shadow(0 0 4px var(--blue)) drop-shadow(0 0 10px var(--blue));
  stroke-dasharray: 13 11; animation: qflow 1.1s linear infinite; }
@keyframes qflow { to { stroke-dashoffset: -24; } }
@media (prefers-reduced-motion: reduce){ .qroute-line { animation: none; } }

/* =====================================================================
   WHY (two-column with image) · AREAS image · SERVICES 3-col · NEWSLETTER
   ===================================================================== */
.why__wrap { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 940px){ .why__wrap { grid-template-columns: .82fr 1.18fr; gap: 38px; align-items: start; } }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
@media (min-width: 940px){ .why__media { position: sticky; top: 96px; aspect-ratio: 4/5; min-height: 0; } }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__badge { position: absolute; left: 14px; bottom: 14px; display: flex; flex-direction: column; padding: 11px 15px; background: color-mix(in srgb, #06090f 70%, transparent); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); }
.why__badge b { font-family: var(--disp); font-size: 22px; color: #fff; line-height: 1; }
.why__badge span { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-top: 3px; }
.why__content .sec-head { text-align: left; margin: 0 0 22px; max-width: none; }
.why__content .sec-head .eyebrow { justify-content: flex-start; }
.why .why-grid { border: none; border-radius: 0; overflow: visible; display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 520px){ .why .why-grid { grid-template-columns: 1fr 1fr; } }
.why .feat { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; }

.areas__img { margin-top: 26px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.areas__img img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1000px){
  .svc-grid { grid-template-columns: repeat(3,1fr); }
  .svc:nth-child(4n) { border-right: 1px solid var(--line); }
  .svc:nth-child(3n) { border-right: none; }
}

.footer__news { margin-top: 24px; max-width: 330px; }
.footer__news label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--paper-mut); margin-bottom: 9px; }
.footer__news-row { display: flex; gap: 8px; }
.footer__news input { flex: 1; height: 44px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface); color: var(--paper); font-family: var(--sans); font-size: 14px; }
.footer__news input:focus { outline: none; border-color: var(--blue); }
.footer__news button { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--blue); color: #fff; display: grid; place-items: center; transition: filter .25s, transform .3s; }
html[data-edition="departures"] .footer__news button { color: #0a0c0b; }
.footer__news button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.footer__news button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.footer__news-done { display: block; margin-top: 10px; font-family: var(--mono); font-size: 12px; color: var(--ok); }
