/* =====================================================================
   Amber Cabs — Jaipur
   Theme: Pink Block. White canvas, single hot-pink accent, sharp 6px
   corners, Bricolage Grotesque headings over Inter body.
   Deliberately shares no design tokens with the sibling sites.
   Vanilla CSS, no build step.

   Variable names below (--amber*) are a holdover from this theme's first
   iteration ("Midnight Amber", dark + amber). Renaming them would touch
   every file in web2/ for no functional gain, so only the VALUES changed:
   --amber is now the pink accent, --amber-wash is now a pale pink tint, etc.
   Treat --amber* as "accent", not literally amber.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* #c2185b (not the more obvious #e91e63) chosen deliberately: it clears
     4.5:1 contrast against white at 5.87:1, so it's safe for both link text
     on --bg and white text on a solid button. #e91e63 only manages 4.35:1
     and fails AA for normal-weight text. */
  --amber:      #c2185b;   /* pink accent — was amber #ffb703 */
  --amber-dim:  #ad1457;   /* accent, hover/active — darker still */
  --amber-deep: #f8bbd0;   /* pale pink, used for borders on tinted panels */
  --amber-wash: #fdf2f6;   /* pale pink tint, was a near-black wash */
  --amber-bright: #e91e63; /* decorative-only use (large text, icons, non-text fills) */

  --bg:      #ffffff;
  --bg-alt:  #fdf5f8;
  --bg-lift: #fbe9f0;

  --ink:      #1a1214;
  --ink-mute: #5c4a50;
  --ink-dim:  #8a7680;

  --line:      #f1dde5;
  --line-lift: #e8c8d4;

  --ok:   #2e9e5b;
  --warn: #d1373f;

  --font-head: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --h1: clamp(2.4rem, 6.5vw, 4.6rem);
  --h2: clamp(1.6rem, 3.4vw, 2.6rem);
  --h3: clamp(1.1rem, 1.8vw, 1.35rem);

  --r:    6px;
  --r-sm: 4px;

  /* Dark-theme shadows relied on a black canvas to read as "lift". On white
     they'd look like dirt; light-theme shadows need to be soft, low-alpha,
     and tinted toward the accent rather than pure black. */
  --shadow:    0 8px 24px rgba(233, 30, 99, 0.12), 0 2px 6px rgba(26, 18, 20, 0.06);
  --shadow-lg: 0 24px 64px rgba(233, 30, 99, 0.16), 0 4px 12px rgba(26, 18, 20, 0.08);

  --container: 1120px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* height of the sticky booking bar, so content can clear it */
  --bookbar-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-mute);
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); letter-spacing: -0.01em; }
ul { padding-left: 1.1rem; }
b, strong { color: var(--ink); font-weight: 600; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--amber); color: #fff; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--amber); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.band { padding: clamp(56px, 9vw, 112px) 0; }
/* The header is sticky and opaque. Without this, every in-page anchor
   (#routes, #services, #estimate) scrolls its heading underneath it. */
[id] { scroll-margin-top: 84px; }
.band--alt { background: var(--bg-alt); }
.band--edge { border-block: 1px solid var(--line); }
.rule { height: 1px; background: var(--line); border: 0; }

.head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px;
}
.head p { margin-top: 16px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 22px; border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--amber { background: var(--amber); color: #fff; }
.btn--amber:hover { background: var(--amber-dim); }
.btn--outline { border-color: var(--line-lift); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }
.btn--ghost { color: var(--ink-mute); background: transparent; padding-inline: 12px; }
.btn--ghost:hover { color: var(--amber); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top strip ---------- */
.strip {
  background: var(--amber-wash); border-bottom: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-mute);
}
.strip .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.strip__facts { display: flex; gap: 22px; }
.strip a { color: var(--ink); font-weight: 600; }

/* ---------- Header: sticky, full-bleed, inline CTA ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  /* translucent white to blur behind, not the old theme's translucent black */
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.hdr.is-scrolled { border-bottom-color: var(--line-lift); }
.hdr .wrap { display: flex; align-items: center; gap: 28px; min-height: 66px; }

.logo { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 700; }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--amber); color: #fff; border-radius: var(--r-sm);
}
.logo__mark svg { width: 21px; height: 21px; }
.logo__text { font-family: var(--font-head); font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1.1; }
.logo__text small {
  display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
}

.menu { margin-left: auto; }
.menu__list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.menu__list > li > a {
  display: block; padding: 9px 13px; font-size: 0.9rem; font-weight: 500;
  color: var(--ink-mute); border-radius: var(--r-sm);
}
.menu__list > li > a:hover { color: var(--ink); background: var(--bg-lift); text-decoration: none; }
.menu__list > li > a[aria-current="page"] { color: var(--amber); }

.sub { position: relative; }
.sub__panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 10;
  min-width: 232px; padding: 8px; list-style: none; margin: 0;
  background: var(--bg-lift); border: 1px solid var(--line-lift);
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
}
.sub:hover .sub__panel, .sub:focus-within .sub__panel, .sub.open .sub__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub__panel a {
  display: block; padding: 9px 12px; font-size: 0.88rem; color: var(--ink-mute);
  border-radius: var(--r-sm);
}
.sub__panel a:hover { color: var(--ink); background: var(--bg-alt); text-decoration: none; }

.hdr__cta { display: flex; align-items: center; gap: 8px; }
.burger {
  display: none; background: none; border: 1px solid var(--line-lift);
  color: var(--ink); padding: 8px; border-radius: var(--r-sm); cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* ---------- Hero: full-bleed, single column, centered ---------- */
.hero {
  position: relative; text-align: center;
  padding: clamp(64px, 11vw, 148px) 0 clamp(52px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(194, 24, 91, 0.08), transparent 70%),
    var(--bg);
}
.hero h1 { max-width: 15ch; margin-inline: auto; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lead {
  max-width: 58ch; margin: 26px auto 0; font-size: clamp(1rem, 1.6vw, 1.16rem);
}
.hero__acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.hero__proof {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 34px;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.85rem; background: var(--bg-alt);
}
.stars { color: var(--amber); letter-spacing: 2px; font-size: 0.9rem; }

/* Two columns rather than a flex row: four items across one line wrap 3+1 and
   leave the last tick orphaned. A 2×2 grid stays balanced at every width. */
.hero__ticks {
  display: grid; grid-template-columns: repeat(2, max-content);
  gap: 12px 40px; justify-content: center;
  list-style: none; padding: 0; margin: 32px auto 0;
  font-size: 0.9rem;
}
.hero__ticks li { display: flex; align-items: center; gap: 8px; }
.hero__ticks svg { width: 15px; height: 15px; color: var(--amber); flex: none; }

/* ---------- Quick facts (route pages) ----------
   Left-aligned sibling of .hero__ticks. The hero variant centres itself, which
   is wrong anywhere the surrounding .head is left-aligned. */
.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  gap: 12px 40px; list-style: none; padding: 0; margin: 0 0 28px;
  font-size: 0.9rem;
}
.facts li { display: flex; align-items: center; gap: 8px; }
.facts svg { width: 15px; height: 15px; color: var(--amber); flex: none; }

/* ---------- Fare estimator ---------- */
.calc {
  max-width: 760px; margin-inline: auto;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(22px, 3.5vw, 34px);
}
.calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f { display: flex; flex-direction: column; gap: 7px; }
.f label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-dim); }
.f input, .f select {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-lift);
  border-radius: var(--r-sm); padding: 12px 13px; width: 100%;
}
.f input:focus, .f select:focus { border-color: var(--amber); outline: none; }
.f select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%); background-position: right 16px center, right 11px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.f input::placeholder { color: var(--ink-dim); }
.f.hide { display: none; }

.calc__out {
  margin: 22px 0 18px; padding: 22px; text-align: center;
  background: var(--amber-wash); border: 1px solid var(--amber-deep); border-radius: var(--r-sm);
}
.calc__out .l { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }
.calc__amt {
  font-family: var(--font-head); font-size: clamp(2.1rem, 5vw, 2.9rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; margin: 4px 0 2px;
  font-variant-numeric: tabular-nums;
}
.calc__break { font-size: 0.83rem; color: var(--ink-dim); }
.note { font-size: 0.8rem; color: var(--ink-dim); text-align: center; margin-top: 12px; }
/* A .note under a left-aligned block, rather than under a centred form. */
.note--start { text-align: left; margin-top: 22px; }
.form-status { font-size: 0.88rem; margin-top: 12px; text-align: center; }

/* Utilities. These exist so pages never need an inline style attribute — an
   inline style is unreachable from the stylesheet and drifts per page. */
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 26px; }
.mt-0 { margin-top: 0; }

/* ---------- Routes: table (web2's distinguishing choice) ---------- */
.rtable { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.rtable caption { text-align: left; color: var(--ink-dim); font-size: 0.84rem; padding-bottom: 12px; }
.rtable th {
  text-align: left; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-dim);
  padding: 0 16px 12px; border-bottom: 1px solid var(--line-lift);
}
.rtable th:last-child, .rtable td:last-child { text-align: right; }
.rtable td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rtable tbody tr { transition: background 0.14s; }
.rtable tbody tr:hover { background: var(--bg-lift); }
.rtable a { color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.rtable a:hover { color: var(--amber); text-decoration: none; }
.rtable a svg { width: 15px; height: 15px; color: var(--ink-dim); flex: none; }
.rtable .num { font-variant-numeric: tabular-nums; color: var(--ink-mute); }
.rtable .fare { font-variant-numeric: tabular-nums; color: var(--amber); font-weight: 600; }
.chip {
  display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--amber); background: var(--amber-wash);
  border: 1px solid var(--amber-deep); border-radius: 999px; padding: 2px 9px; margin-left: 9px;
}
.rtable__scroll { overflow-x: auto; }

/* ---------- Price table (route pages) ---------- */
.ptable { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.ptable caption { text-align: left; color: var(--ink-dim); font-size: 0.84rem; padding-bottom: 12px; }
.ptable th {
  text-align: left; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim); font-weight: 600; padding: 0 14px 12px; border-bottom: 1px solid var(--line-lift);
}
.ptable td { padding: 15px 14px; border-bottom: 1px solid var(--line); }
.ptable small { display: block; color: var(--ink-dim); font-size: 0.8rem; font-weight: 400; }
/* Money cells are marked up, not inferred from column position: a package table
   has several fare columns and highlighting only the last one is meaningless. */
.ptable .fare,
.ptable td:last-child:not(.plain) {
  text-align: right; color: var(--amber); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ptable th:last-child { text-align: right; }
/* Multi-fare tables (hourly packages): every price column reads as a price. */
.ptable--fares td:not(:first-child),
.ptable--fares th:not(:first-child) {
  text-align: right; font-variant-numeric: tabular-nums;
}
.ptable--fares td:not(:first-child) { color: var(--amber); font-weight: 600; }

/* ---------- Cards (services) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.card {
  background: var(--bg-alt); padding: 30px 26px; display: flex; flex-direction: column;
  transition: background 0.16s;
}
a.card:hover { background: var(--bg-lift); text-decoration: none; }
.card__ico { width: 40px; height: 40px; color: var(--amber); margin-bottom: 18px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.92rem; flex: 1; }
.card__go { margin-top: 18px; font-size: 0.85rem; font-weight: 600; color: var(--amber); display: inline-flex; align-items: center; gap: 7px; }
.card__go svg { width: 14px; height: 14px; transition: transform 0.16s var(--ease); }
a.card:hover .card__go svg { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 30px; counter-reset: s; }
.step { counter-increment: s; padding-top: 22px; border-top: 2px solid var(--line-lift); }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--amber);
  display: block; margin-bottom: 12px; line-height: 1;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ---------- Fleet: horizontal scroll ---------- */
.fleet {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(268px, 1fr);
  gap: 18px; overflow-x: auto; padding-bottom: 14px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
  scrollbar-color: var(--line-lift) transparent;
}
.fleet::-webkit-scrollbar { height: 6px; }
.fleet::-webkit-scrollbar-thumb { background: var(--line-lift); border-radius: 3px; }
.fcard {
  scroll-snap-align: start; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: var(--r); padding: 24px;
}
.fcard__img { background: var(--bg); border-radius: var(--r-sm); padding: 18px; margin-bottom: 20px; }
.fcard h3 { margin-bottom: 6px; }
.fcard__models { font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 16px; }
.fcard__spec { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; }
.fcard__spec li {
  font-size: 0.76rem; padding: 4px 10px; border: 1px solid var(--line-lift);
  border-radius: 999px; color: var(--ink-mute);
}
.fcard__rate { font-size: 0.88rem; color: var(--ink-dim); }
.fcard__rate b { color: var(--amber); font-variant-numeric: tabular-nums; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 34px; text-align: center; }
.stats__n {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700;
  color: var(--amber); letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums; contain: layout;
}
.stats__n span { font-size: 0.5em; }
.stats__l { font-size: 0.84rem; color: var(--ink-dim); margin-top: 10px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.quote { background: var(--bg-alt); border: 1px solid var(--line); border-left: 2px solid var(--amber); border-radius: var(--r); padding: 26px; }
.quote p { font-size: 0.94rem; margin: 14px 0 18px; }
.quote figcaption { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; }
.quote__av {
  width: 36px; height: 36px; flex: none; display: grid; place-items: center;
  background: var(--amber-wash); border: 1px solid var(--amber-deep);
  color: var(--amber); border-radius: 50%; font-weight: 700; font-size: 0.9rem;
}
.quote b { display: block; color: var(--ink); }
.quote figcaption span span { color: var(--ink-dim); font-size: 0.8rem; }

/* ---------- FAQ: two-column accordion ---------- */
.faq { columns: 2; column-gap: 22px; }
.faq details {
  break-inside: avoid; margin-bottom: 12px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: var(--r); padding: 0 20px;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600;
  color: var(--ink); font-size: 0.95rem; display: flex; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber); font-size: 1.25rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 16px 0 20px; font-size: 0.91rem; }

/* ---------- Split (content pages) ---------- */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.prose h2 { margin: 34px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 15px; }
.prose ul { margin-bottom: 15px; }
.prose li { margin-bottom: 7px; }
.aside {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px; position: sticky; top: 90px;
}
.aside h3 { margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta h2 { max-width: 18ch; margin-inline: auto; }
.cta p { max-width: 52ch; margin: 16px auto 0; }
.cta__acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.ftr { background: var(--bg-alt); border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 76px) 0 0; }
.ftr__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
.ftr h3 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); font-family: var(--font-body); font-weight: 600; margin-bottom: 16px; }
.ftr__about { font-size: 0.89rem; margin-top: 18px; max-width: 40ch; }
.ftr__links { list-style: none; padding: 0; margin: 0; }
.ftr__links li { margin-bottom: 9px; }
.ftr__links a { font-size: 0.88rem; color: var(--ink-mute); }
.ftr__links a:hover { color: var(--amber); }
.ftr__contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.88rem; }
.ftr__contact > div { display: flex; align-items: flex-start; gap: 10px; }
.ftr__contact svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: 4px; }
.ftr__contact a { color: var(--ink-mute); }
.ftr__contact a:hover { color: var(--amber); }
.ftr__end {
  margin-top: clamp(40px, 6vw, 64px); padding: 22px 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 0.8rem; color: var(--ink-dim);
}
.ftr__legal { display: flex; gap: 18px; }
.ftr__legal a { color: var(--ink-dim); }
.ftr__legal a:hover { color: var(--amber); }

/* ---------- Sticky booking bar (web2's signature interaction) ----------
   Collapsed: a bar. Expanded: a sheet with the full quote form.
   With JS off the <details> still opens — progressive enhancement. */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--bg); border-top: 1px solid var(--line-lift);
  /* was rgba(0,0,0,0.5) — heavy black lift made sense on a dark page; on
     white it read as a grey smudge, so this is lighter and ink-tinted. */
  box-shadow: 0 -8px 28px rgba(26, 18, 20, 0.10);
  transform: translateY(100%);
  /* visibility flips only after the slide-out finishes, so the exit animates */
  transition: transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.bookbar.is-visible, .bookbar.is-open {
  transform: translateY(0);
  transition-delay: 0s, 0s;
}
/* Before JS runs there is no .is-scroll-managed, so the bar (and the form
   inside it) is visible and usable. */
.bookbar:not(.is-scroll-managed) { transform: translateY(0); }
/* Translated off-screen it would still take clicks and keyboard focus — a Tab
   stop nobody can see. Take it out of the tree until it's actually shown. */
.bookbar.is-scroll-managed:not(.is-visible):not(.is-open) { visibility: hidden; }

.bookbar__row {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--bookbar-h); padding: 12px 22px;
}
.bookbar__label { font-size: 0.86rem; flex: 1; min-width: 0; }
.bookbar__label b { display: block; color: var(--ink); font-size: 0.98rem; }

.bookbar__call {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  color: var(--ink-mute); font-size: 0.86rem; font-weight: 600;
  padding: 10px 14px; border: 1px solid var(--line-lift); border-radius: var(--r);
}
.bookbar__call:hover { color: var(--amber); border-color: var(--amber); text-decoration: none; }
.bookbar__call svg { width: 17px; height: 17px; flex: none; }

.bookbar__toggle { flex: none; }
.bookbar__toggle::after { content: ""; }
.bookbar.is-open .bookbar__toggle::after { content: " \2715"; }

.bookbar__sheet {
  border-top: 1px solid var(--line); padding: 26px 22px 30px;
  max-height: 70vh; overflow-y: auto;
}
.bookbar__sheet .wrap { padding-inline: 0; }
.bookbar__sheet[hidden] { display: none; }

.tabs { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.tabs button {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line-lift); color: var(--ink-mute);
  transition: all 0.14s;
}
.tabs button[aria-selected="true"] { background: var(--amber); border-color: var(--amber); color: #fff; }

/* Content must clear the bar when it's showing. */
body { padding-bottom: 0; }
@media (max-width: 860px) { body { padding-bottom: var(--bookbar-h); } }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; } .d2 { transition-delay: 0.1s; } .d3 { transition-delay: 0.15s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .aside { position: static; }
}
@media (max-width: 860px) {
  .burger { display: block; }
  .hdr__cta .btn--outline { display: none; }
  /* .menu is fixed-position here, so it no longer pushes the CTA right. */
  .hdr__cta { margin-left: auto; }
  .hero__ticks { grid-template-columns: max-content; gap: 10px; }
  .menu {
    position: fixed; inset: 66px 0 auto; z-index: 99;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 66px); overflow-y: auto;
    display: none;
  }
  .menu.open { display: block; }
  .menu__list { flex-direction: column; align-items: stretch; padding: 12px; gap: 2px; }
  .menu__list > li > a { padding: 13px 14px; }
  .sub__panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: 0 0 0 14px;
    display: none;
  }
  .sub.open .sub__panel { display: block; }
  .faq { columns: 1; }
  .calc__grid { grid-template-columns: 1fr; }
  .strip__facts { display: none; }
  .strip .wrap { justify-content: center; }
}
@media (max-width: 560px) {
  .ftr__grid { grid-template-columns: 1fr; }
  .hero__acts .btn { width: 100%; }
  .stats { gap: 26px; }
  /* The strapline is the first thing to go; Call and Get-a-fare must survive. */
  .bookbar__label { display: none; }
  .bookbar__row { gap: 10px; padding-inline: 16px; }
  .bookbar__toggle { flex: 1; }
  .bookbar__call span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .bookbar { transition: none; }
}

@media print {
  .hdr, .strip, .bookbar, .ftr, .cta { display: none; }
  body { background: #fff; color: #000; }
}
