/* Navy Black Transportation — shared styles */

:root {
  /* Navy and black. Three families, because an accent has to survive
   * both grounds: chrome reads on the dark sections, ink reads on the
   * light ones, and steel is the one tone legible on either. */
  --navy-900: #050a18;
  --navy-800: #0a1330;
  --navy-700: #101c40;
  --navy-600: #1a2a56;

  --black-900: #000000;
  --black-800: #05080f;
  --black-700: #16203a;      /* black with navy still in it */

  --chrome-300: #c7d0e4;     /* light steel — on navy and black */
  --chrome-400: #94a3c4;
  --steel-500: #4a6ba8;      /* the dual-ground accent */
  --ink-900: #0b1020;        /* near-black — text and icons on light */
  --marble-50: #ffffff;
  --marble-100: #f6f5f2;
  --marble-200: #e8e6e1;
  --ink-700: #2a3040;
  --ink-500: #5c6478;

  --bg: var(--marble-100);
  --surface: var(--marble-50);
  --text: var(--ink-700);
  --muted: var(--ink-500);
  --line: var(--marble-200);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(6, 15, 38, .06), 0 4px 12px rgba(6, 15, 38, .05);
  --shadow-md: 0 8px 30px rgba(6, 15, 38, .12);
  --max: 1160px;
  /* Cormorant Garamond for anything that carries the brand: a
   * high-contrast serif is what makes a black-car page read expensive
   * rather than utilitarian.
   *
   * Jost is the working face — a geometric sans in the Futura line, so
   * the pairing is period-correct rather than accidental.
   *
   * Numbers stay on Jost even inside serif headings: Cormorant's figures
   * are delicate and unevenly spaced, which is fine in a sentence and
   * wrong on a fare. */
  --font: "Jost", "Futura", "Century Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", Georgia, serif;
  --numeric: var(--font);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: .045em;      /* caps in a serif need room to breathe */
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--navy-800);
  text-transform: uppercase;
  font-weight: 600;            /* 700 makes Cormorant look inflated */
}
h1 { font-size: clamp(2.7rem, 6.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 {
  font-size: 1.2rem; text-transform: none; letter-spacing: .01em;
  font-weight: 600;
}
p { margin: 0 0 1rem; }

.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.center { text-align: center; }
.lede { color: var(--muted); font-size: 1.06rem; max-width: 62ch; }
.center .lede { margin-inline: auto; }

/* --- Eyebrow / rule ------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font);
  text-transform: uppercase; letter-spacing: .26em;
  font-size: .72rem; font-weight: 500;
  color: var(--ink-900);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--steel-500); }

/* On the dark sections the near-black eyebrow disappeared entirely. */
.hero .eyebrow, .band .eyebrow { color: var(--chrome-300); }
.hero .eyebrow::before, .band .eyebrow::before { background: var(--chrome-300); }

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent {
  background: linear-gradient(135deg, var(--black-700), var(--black-800));
  color: #fff; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 208, 228, .22);
}
.btn--accent:hover {
  box-shadow: 0 8px 22px rgba(5, 8, 15, .42);
  border-color: rgba(199, 208, 228, .4);
}
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }

@media (max-width: 560px) {
  .btn { white-space: normal; }
  .btn--lg { padding: .9rem 1.2rem; font-size: .95rem; }
  .hero__cta .btn { flex: 1 1 100%; }
}

/* --- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
/* The artwork is a wide lockup, so height alone must drive the size.
 * A max-width here is not a safety net - with object-fit:contain it
 * clamps the width first and the image renders SHORTER than the height
 * asked for, which is why every increase looked like it did nothing.
 * Width is left unbounded on desktop, and on phones capped only by what
 * is actually free beside the menu button. */
.brand__mark {
  height: 44px; width: auto;
  object-fit: contain; flex: none;
}
@media (max-width: 860px) {
  .brand__mark { height: 40px; max-width: calc(100vw - 140px); }
}
@media (max-width: 560px) {
  .brand__mark { height: 36px; max-width: calc(100vw - 120px); }
}
.brand__name {
  font-family: var(--display); text-transform: uppercase; color: #fff;
  font-weight: 600; font-size: 1.35rem; line-height: 1; letter-spacing: .08em;
}
.brand__sub {
  display: block; font-family: var(--font); font-size: .58rem; font-weight: 600;
  letter-spacing: .28em; color: var(--chrome-300); margin-top: .28rem; text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--navy-800); text-decoration: none; font-size: .93rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--steel-500); }
.nav .btn { color: #fff; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .6rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-800); margin: 4px 0; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; inset: 74px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--surface); padding: .5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav:not(.is-open) { display: none; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: .9rem; border-bottom: 0; justify-content: center; }
}

/* --- Hero ----------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(27, 47, 94, .95), transparent 62%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #04101f 100%);
  color: #fff;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 46%, rgba(74, 107, 168, .5) 46.4%, transparent 47.2%),
              linear-gradient(115deg, transparent 52%, rgba(74, 107, 168, .28) 52.3%, transparent 53%);
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1.05fr .95fr; align-items: start; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--chrome-300); }
.hero__lede { color: rgba(255, 255, 255, .78); font-size: 1.1rem; max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.hero__pills li {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; color: rgba(255, 255, 255, .75); display: flex; align-items: center; gap: .55rem;
}
.hero__pills li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--chrome-300); }

/* Booking card in hero */
.quote-card {
  background: var(--surface); color: var(--text);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  border-top: 4px solid var(--steel-500);
}
.quote-card h2 { font-size: 1.5rem; margin-bottom: .2rem; }
.quote-card__note { font-size: .86rem; color: var(--muted); margin-bottom: 1.2rem; }

/* --- Forms ---------------------------------------------------------- */
.field { margin-bottom: .95rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--navy-700); margin-bottom: .35rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .9rem;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel-500); box-shadow: 0 0 0 3px rgba(74, 107, 168, .28);
}
.field-row { display: grid; gap: 0 .9rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--muted); margin: .8rem 0 0; }
.form-status {
  margin-top: 1rem; padding: .85rem 1rem; border-radius: 10px; font-size: .92rem;
  background: rgba(74, 107, 168, .12); border: 1px solid rgba(74, 107, 168, .4);
}
.form-status[hidden] { display: none; }

.field__label {
  display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--navy-700); margin-bottom: .35rem;
}
.field__hint { font-size: .82rem; color: var(--muted); margin: -.15rem 0 .6rem; }

/* Open pickup times */
.slots { display: flex; flex-wrap: wrap; gap: .45rem; }
.slots__empty { width: 100%; margin: 0; font-size: .88rem; color: var(--muted); }
.slot {
  font: inherit; font-size: .85rem; font-weight: 600;
  padding: .5rem .8rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--navy-700);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.slot:hover { border-color: var(--steel-500); }
.slot.is-selected { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.slot:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(74, 107, 168, .35); }

/* Driver shift grid */
.shift-grid { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.shift-grid__head, .shift-grid__row {
  display: grid; grid-template-columns: 3.4rem repeat(4, 1fr); align-items: center;
}
.shift-grid__head { background: var(--marble-100); border-bottom: 1px solid var(--line); }
.shift-grid__head span {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy-700); text-align: center; padding: .5rem .2rem; line-height: 1.2;
}
.shift-grid__head small { display: block; font-weight: 500; letter-spacing: 0; color: var(--muted); font-size: .64rem; }
.shift-grid__row + .shift-grid__row { border-top: 1px solid var(--line); }
.shift-grid__day {
  font-size: .8rem; font-weight: 600; color: var(--navy-700); padding-left: .8rem;
}
.shift { display: block; padding: .45rem; cursor: pointer; text-align: center; }
.shift input { position: absolute; opacity: 0; width: 0; height: 0; }
.shift span[aria-hidden] {
  display: grid; place-items: center;
  height: 30px; max-width: 54px; margin-inline: auto; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
/* A faint tick sits there unchecked, so the cell reads as a toggle, not a text box */
.shift span[aria-hidden]::after { content: "✓"; font-size: .85rem; color: var(--marble-200); }
.shift:hover span[aria-hidden] { border-color: var(--steel-500); transform: translateY(-1px); }
.shift input:checked + span[aria-hidden] {
  background: linear-gradient(135deg, var(--steel-500), var(--navy-900));
  border-color: var(--ink-900);
}
.shift input:checked + span[aria-hidden]::after { color: #fff; }
.shift input:focus-visible + span[aria-hidden] { box-shadow: 0 0 0 3px rgba(74, 107, 168, .35); }

/* Service chooser (radio cards) */
.choice-grid { display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 1.1rem; }
@media (max-width: 420px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .8rem; border: 1px solid var(--line); border-radius: 10px;
  font-size: .88rem; font-weight: 600; color: var(--navy-700); cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.choice input:checked + span { border-color: var(--steel-500); background: rgba(74, 107, 168, .10); }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(74, 107, 168, .3); }
.choice svg { width: 18px; height: 18px; flex: none; color: var(--ink-900); }

/* --- Service cards -------------------------------------------------- */
.cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 2.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(74, 107, 168, .5); }
.card__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--navy-800); color: var(--chrome-300);
  border: 2px solid var(--steel-500);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { text-transform: uppercase; font-family: var(--display); letter-spacing: .04em; font-size: 1.2rem; }
.card p { color: var(--muted); font-size: .94rem; margin: 0; }
.card em { display: block; font-style: italic; color: var(--ink-900); font-size: .9rem; margin-bottom: .55rem; }

/* --- Steps ---------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin-top: 2.5rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--numeric); font-size: 2.4rem; font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: rgba(74, 107, 168, .35); line-height: 1; display: block; margin-bottom: .3rem;
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* --- Split / driver band -------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.band {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff; position: relative; overflow: hidden;
}
.band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 68%, rgba(74, 107, 168, .35) 68.3%, transparent 69%);
}
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .78); }
.band .wrap { position: relative; z-index: 1; }

/* A white card sitting inside a dark section is its own ground. Without
 * this the section's white headings and paragraphs carry into it and
 * disappear — which is exactly what happened to "Who we're looking for". */
.band .quote-card h2,
.band .quote-card h3,
.hero .quote-card h2,
.hero .quote-card h3 { color: var(--navy-800); }
.band .quote-card p,
.hero .quote-card p { color: var(--text); }
.band .quote-card .quote-card__note,
.hero .quote-card .quote-card__note { color: var(--muted); }
.band .quote-card .perks li,
.hero .quote-card .perks li { color: var(--text); }
.band .quote-card .perks li::before,
.hero .quote-card .perks li::before {
  background: rgba(74, 107, 168, .12); color: var(--steel-500);
}
.perks { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .75rem; }
/* Defaults to the light ground, since most sections are light. The dark
 * bands opt in below — the reverse of how this was written, which made
 * every list on a white section invisible. */
.perks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--text); }
.perks li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(74, 107, 168, .12); border: 1px solid var(--steel-500);
  color: var(--steel-500); display: grid; place-items: center; font-size: .72rem; margin-top: .15rem;
}
.band .perks li, .hero .perks li { color: rgba(255, 255, 255, .88); }
.band .perks li::before, .hero .perks li::before {
  background: rgba(74, 107, 168, .18); color: var(--chrome-300);
}

/* --- Stats ---------------------------------------------------------- */
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 2.4rem; }
.stat { text-align: center; padding: 1.3rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat b { display: block; font-family: var(--numeric); font-variant-numeric: tabular-nums; font-weight: 500; font-size: 2rem; color: var(--navy-800); line-height: 1; }
.stat span { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* --- FAQ ------------------------------------------------------------ */
.faq { margin-top: 2.2rem; display: grid; gap: .7rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy-800); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-900); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: .8rem 0 0; color: var(--muted); font-size: .95rem; }

/* --- Contact strip -------------------------------------------------- */
.contact-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 2.2rem; }
.contact-item {
  display: flex; gap: .85rem; align-items: center; padding: 1.1rem 1.2rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-decoration: none;
}
.contact-item:hover { border-color: rgba(74, 107, 168, .6); }
.contact-item svg { width: 20px; height: 20px; color: var(--ink-900); flex: none; }
.contact-item b { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
.contact-item span { color: var(--navy-800); font-weight: 600; font-size: .96rem; word-break: break-word; }

/* --- Footer --------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .7); padding: 3rem 0 2rem; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .12em;
  color: #fff; font-size: .95rem; margin: 0 0 .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .93rem; }
.site-footer a:hover { color: var(--chrome-300); }
.site-footer__tagline { font-family: var(--display); font-size: 1.4rem; color: var(--chrome-300); margin-top: .8rem; }
.site-footer__bottom {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
}

/* --- Service page rate tables ---------------------------------------- */
.rate-table { width: 100%; border-collapse: collapse; margin: .2rem 0 0; }
.rate-table th, .rate-table td {
  text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.rate-table th {
  font-weight: 500; font-size: .92rem; color: var(--text); padding-right: 1rem;
}
.rate-table td { text-align: right; }
.rate-table td b {
  font-family: var(--numeric); font-weight: 600; font-variant-numeric: tabular-nums;
  color: var(--navy-800); white-space: nowrap;
}
.rate-table td small { display: block; font-size: .74rem; color: var(--muted); margin-top: .15rem; }
.rate-table tr:last-child th, .rate-table tr:last-child td { border-bottom: 0; }
.rate-examples__title {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted); margin: 1.5rem 0 .2rem; font-family: var(--font); font-weight: 500;
}
.rate-table--examples td b { color: var(--steel-500); }
.rate-lead { font-size: .95rem; color: var(--text); margin: 0; }

/* --- Legal pages ------------------------------------------------------ */
.legal__title { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal__updated {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted); margin-top: -.4rem;
}
.legal__h2 {
  font-size: 1.15rem; text-transform: none; letter-spacing: .01em;
  margin-top: 2.2rem; color: var(--navy-800);
}
.legal p { font-size: .95rem; line-height: 1.75; }
.legal p b { color: var(--ink-900); }

/* --- How it works, as a numbered journey ----------------------------- */
.how-steps {
  list-style: none; counter-reset: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; gap: 1.6rem; max-width: 74ch; margin-inline: auto;
}
.how-step { display: flex; gap: 1.1rem; align-items: flex-start; }
.how-step__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-800); color: #fff;
  font-family: var(--numeric); font-weight: 600; font-size: 1rem;
  font-variant-numeric: tabular-nums;
}
.how-step h3 { margin: .35rem 0 .3rem; font-size: 1.14rem; }
.how-step p { margin: 0; color: var(--text); font-size: .96rem; }
.how-step p b { color: var(--navy-800); font-weight: 600; }
.how-note {
  max-width: 74ch; margin: 2rem auto 0; text-align: center;
  font-size: .9rem; color: var(--muted);
}
.how-note a { color: var(--steel-500); }

@media (max-width: 560px) {
  .how-step { gap: .85rem; }
  .how-step__num { width: 32px; height: 32px; font-size: .9rem; }
}

/* --- Confirm-before-sending panel ------------------------------------ */
.confirm { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1rem; }
.confirm__backdrop {
  position: absolute; inset: 0; background: rgba(5, 10, 24, .62);
  backdrop-filter: blur(3px); animation: confirm-fade .18s ease;
}
.confirm__panel {
  position: relative; width: min(100%, 460px); max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--line); border-top: 4px solid var(--steel-500);
  box-shadow: 0 30px 80px rgba(5, 10, 24, .45);
  padding: clamp(1.3rem, 4vw, 1.9rem);
  animation: confirm-rise .22s cubic-bezier(.2, .8, .2, 1);
}
@keyframes confirm-fade { from { opacity: 0; } }
@keyframes confirm-rise { from { opacity: 0; transform: translateY(14px); } }

.confirm__title { font-size: 1.5rem; margin-bottom: .2rem; }
.confirm__note { font-size: .84rem; color: var(--muted); margin-bottom: 1.1rem; }

.confirm__rows { display: grid; gap: 0; }
.confirm__row {
  display: flex; gap: 1rem; justify-content: space-between; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px solid var(--line);
}
.confirm__row span { font-size: .82rem; color: var(--muted); flex: none; }
.confirm__row b {
  font-weight: 500; text-align: right; color: var(--navy-800);
  overflow-wrap: anywhere;
}

.confirm__fare {
  display: grid; gap: .1rem; margin-top: 1rem; padding: .9rem 1rem;
  background: rgba(74, 107, 168, .09); border: 1px solid rgba(74, 107, 168, .22);
  border-radius: var(--radius);
}
.confirm__fare span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.confirm__fare b {
  font-family: var(--numeric); font-size: 1.9rem; font-weight: 600;
  font-variant-numeric: tabular-nums; color: var(--navy-800); line-height: 1.1;
}
.confirm__fare em {
  font-style: normal; font-size: .84rem; font-weight: 500;
  color: var(--navy-800); margin-top: .1rem;
}
.confirm__fare small { font-size: .76rem; color: var(--muted); }

.confirm__agree {
  display: flex; gap: .65rem; align-items: flex-start;
  margin-top: 1.1rem; font-size: .82rem; line-height: 1.5; color: var(--text);
  cursor: pointer;
}
.confirm__agree input { margin-top: .22rem; flex: none; width: 17px; height: 17px; accent-color: var(--steel-500); }
.confirm__agree a { color: var(--steel-500); }

.confirm__actions { display: flex; gap: .6rem; margin-top: 1.3rem; }
.confirm__actions .btn { flex: 1 1 0; padding: .85rem 1rem; }
.confirm__actions .btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

@media (max-width: 460px) {
  .confirm__actions { flex-direction: column-reverse; }
}

/* --- Utility -------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* ====================================================================
   MOTION & LIFE
   Everything below is decoration. It is all switched off wholesale by
   the reduced-motion block at the very bottom of this file.
   ==================================================================== */

/* --- Scroll progress bar -------------------------------------------- */
.progress {
  position: fixed; inset: 0 auto auto 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--navy-800), var(--steel-500));
  z-index: 100; pointer-events: none;
}

/* --- Header states --------------------------------------------------- */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.site-header.is-stuck {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 30px rgba(5, 10, 24, .12);
}
.site-header.is-stuck .site-header__inner { min-height: 62px; }
.site-header__inner { transition: min-height .3s ease; }
.brand__mark { transition: transform .4s cubic-bezier(.2, .8, .2, 1); }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); }

/* --- Scroll reveal ---------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="zoom"] { transform: scale(.94); }

/* --- Hero entrance ---------------------------------------------------- */
.hero__grid > * { animation: hero-in .9s cubic-bezier(.2, .7, .2, 1) both; }
.hero__grid > *:nth-child(2) { animation-delay: .12s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  animation: line-up 1s cubic-bezier(.2, .8, .2, 1) both;
}
.hero h1 .line:nth-child(2) > span { animation-delay: .1s; }
@keyframes line-up { from { transform: translateY(105%); } to { transform: none; } }

/* --- Live availability chip ------------------------------------------ */
.status {
  display: flex; width: fit-content; align-items: center; gap: .6rem;
  padding: .5rem .95rem .5rem .8rem; border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: .86rem; color: rgba(255, 255, 255, .9);
  margin-bottom: 1.4rem; backdrop-filter: blur(6px);
}
.status__dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #46d17f; flex: none; }
.status__dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid #46d17f; animation: ping 2.2s ease-out infinite;
}
.status.is-closed .status__dot { background: var(--chrome-300); }
.status.is-closed .status__dot::after { border-color: var(--chrome-300); }
@keyframes ping {
  0% { transform: scale(.6); opacity: .9; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
.status b { font-weight: 600; }

/* --- Hero photo (ready for a real image; see the PHOTO SLOT in index.html) --- */
.hero-photo {
  margin: 2.6rem 0 0; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(74, 107, 168, .35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}
.hero-photo img { display: block; width: 100%; height: auto; }
/* Keeps the navy identity over any photo, however it was shot */
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 38, .1), rgba(6, 15, 38, .55));
  pointer-events: none;
}

/* --- Marquee ticker ---------------------------------------------------- */
.ticker {
  background: var(--navy-900); border-block: 1px solid rgba(74, 107, 168, .28);
  overflow: hidden; padding: .85rem 0;
}
.ticker__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; }
.ticker span {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .22em;
  font-size: .92rem; color: rgba(255, 255, 255, .72); white-space: nowrap;
}
.ticker span.accent { color: var(--chrome-300); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- Fare estimator ---------------------------------------------------- */
.estimator {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.estimator__presets { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.preset {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .5rem .95rem; font: inherit; font-size: .85rem; font-weight: 600;
  color: var(--navy-700); cursor: pointer; transition: all .18s ease;
}
.preset:hover { border-color: var(--steel-500); transform: translateY(-1px); }
.preset.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.estimator__readout { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; margin-bottom: .2rem; }
.estimator__price {
  font-family: var(--numeric); font-size: clamp(2.4rem, 6.4vw, 3.4rem); line-height: 1;
  font-weight: 500; font-variant-numeric: tabular-nums;
  color: var(--navy-800); font-variant-numeric: tabular-nums;
}
.estimator__unit { color: var(--muted); font-size: .95rem; }
.estimator__miles { font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin: 1.6rem 0 .4rem;
  border-radius: 999px; background: var(--marble-200); cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel-500), var(--navy-900));
  border: 3px solid #fff; box-shadow: 0 2px 10px rgba(11, 16, 32, .45); cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid #fff;
  background: var(--steel-500); box-shadow: 0 2px 10px rgba(11, 16, 32, .45); cursor: grab;
}
input[type="range"]:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(74, 107, 168, .3); }
.estimator__scale { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); }
.estimator__note { font-size: .8rem; color: var(--muted); margin: 1.3rem 0 0; }

/* Live estimate inside the booking form */
.mini-quote {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin: -.2rem 0 1rem; padding: .75rem 1rem; border-radius: 10px;
  background: rgba(74, 107, 168, .10); border: 1px solid rgba(74, 107, 168, .35);
  font-size: .88rem; color: var(--navy-800);
}
.mini-quote b {
  font-family: var(--numeric); font-size: 1.25rem; white-space: nowrap;
  font-weight: 600; font-variant-numeric: tabular-nums;
}
.mini-quote small { display: block; color: var(--muted); font-size: .76rem; margin-top: .15rem; }
.mini-quote[hidden] { display: none; }

/* --- Animated route line (how it works) -------------------------------- */
.route { width: 100%; height: 40px; margin-bottom: -1rem; }
.route path {
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.4s cubic-bezier(.4, 0, .2, 1);
}
.route.is-visible path { stroke-dashoffset: 0; }

/* --- Counters ---------------------------------------------------------- */
.stat b { font-variant-numeric: tabular-nums; }
.stat { transition: transform .2s ease, border-color .2s ease; }
.stat:hover { transform: translateY(-3px); border-color: rgba(74, 107, 168, .55); }

/* --- Reviews slider ----------------------------------------------------- */
.reviews { position: relative; max-width: 780px; margin: 2.4rem auto 0; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; transition: transform .6s cubic-bezier(.3, .7, .2, 1); }
.review { flex: 0 0 100%; padding: 0 .5rem; }
.review blockquote {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); text-align: center;
}
.review__stars { color: var(--steel-500); letter-spacing: .2em; font-size: 1rem; }
.review p { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--navy-800); margin: 1rem 0 1.2rem; line-height: 1.5; }
.review cite { font-style: normal; font-weight: 700; color: var(--navy-800); display: block; }
.review small { color: var(--muted); }
.reviews__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.reviews__dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 0; background: var(--marble-200); transition: all .25s ease;
}
.reviews__dots button.is-active { background: var(--steel-500); width: 26px; border-radius: 999px; }

/* --- Card hover lift ---------------------------------------------------- */
.card { position: relative; overflow: hidden; }
.card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--steel-500), var(--navy-900));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .35s ease;
}
.card:hover::after { transform: scaleX(1); }
.card__icon { transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .3s ease; }
.card:hover .card__icon { transform: translateY(-3px) scale(1.08); }

/* --- Back to top --------------------------------------------------------- */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(74, 107, 168, .5);
  background: var(--navy-800); color: var(--chrome-300); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-700); }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .to-top { bottom: 88px; } }

/* --- Slot picker polish ---------------------------------------------------- */
.slot { transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.slot:hover { transform: translateY(-2px); }
.slot.is-selected { animation: pop .3s ease; }
@keyframes pop { 50% { transform: scale(1.08); } }
.slots__empty { animation: fade-in .4s ease; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* --- Reduced motion: turn the whole show off ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > span, .hero__grid > * { animation: none; }
  .route path { stroke-dashoffset: 0; }
  .ticker__track { animation: none; }
}

/* Rider policy line under the booking form */
.form-note--policy {
  margin-top: .5rem; padding-top: .55rem;
  border-top: 1px solid var(--line); color: var(--muted);
}

/* --- Address suggestions ------------------------------------------------- */
.field--suggest { position: relative; }
.suggest {
  position: absolute; z-index: 20; inset: calc(100% + 4px) 0 auto;
  margin: 0; padding: .3rem; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-md); max-height: 240px; overflow-y: auto;
}
.suggest button {
  display: block; width: 100%; text-align: left; cursor: pointer;
  padding: .55rem .7rem; border: 0; border-radius: 7px; background: none;
  font: inherit; font-size: .88rem; color: var(--text);
}
.suggest button:hover, .suggest button.is-active { background: rgba(74, 107, 168, .14); }

/* --- Service tier prices (rideshare-app style) --------------------------- */
.choice span { position: relative; }
.choice__price {
  margin-left: auto; font-family: var(--numeric); font-size: .95rem;
  font-weight: 600; font-variant-numeric: tabular-nums;
  color: var(--navy-800); letter-spacing: .01em;
}
.choice input:checked + span .choice__price { color: var(--ink-900); }

.form-note--consent { font-size: .72rem; line-height: 1.5; opacity: .85; }

/* --- Charter page: the two rate cards ------------------------------------ */
.cards--two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 860px; margin-inline: auto; }
.card--rate { display: flex; flex-direction: column; }
.card--rate .eyebrow { margin-bottom: .4rem; }
.card__price {
  display: block; font-family: var(--numeric); font-size: 2.7rem; line-height: 1;
  font-weight: 500; font-variant-numeric: tabular-nums;
  color: var(--navy-800); letter-spacing: .01em;
}
.card--rate:hover .card__price { color: var(--ink-900); }
.card__unit {
  display: block; font-size: .82rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .09em; margin: .35rem 0 .9rem;
}
.card--rate .perks { margin-top: auto; }
.card__link {
  display: inline-block; margin-top: .9rem; font-weight: 600; font-size: .88rem;
  color: var(--ink-900); text-decoration: none;
}
.card__link:hover { text-decoration: underline; }
.rate-note { margin-top: 1.8rem; font-size: .85rem; color: var(--muted); }

/* --- Trip map ------------------------------------------------------------ */
/* --- Vehicle picker ------------------------------------------------------
 * Modelled on how a rideshare app asks the same question: the photo does
 * the explaining, the rate sits where the eye already is, and the whole
 * card is the target rather than a 20px dropdown arrow. */
.vehicles { display: grid; gap: .6rem; margin-top: .1rem; }

.vehicle { position: relative; display: block; cursor: pointer; }
.vehicle input {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.vehicle__body {
  display: flex; align-items: center; gap: .9rem;
  padding: .7rem .9rem;
  border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--surface);
  transition: border-color .16s ease, background .16s ease,
              transform .16s ease, box-shadow .16s ease;
}
.vehicle:hover .vehicle__body {
  border-color: var(--chrome-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.vehicle input:checked + .vehicle__body {
  border-color: var(--steel-500);
  background: rgba(74, 107, 168, .09);
  box-shadow: 0 0 0 3px rgba(74, 107, 168, .16);
}
/* Keyboard users get the same ring the mouse gets. */
.vehicle input:focus-visible + .vehicle__body {
  outline: 2px solid var(--ink-900); outline-offset: 2px;
}

.vehicle__img {
  width: 84px; height: 54px; object-fit: contain; flex: none;
  filter: drop-shadow(0 3px 6px rgba(6, 15, 38, .16));
  transition: transform .16s ease;
}
.vehicle input:checked + .vehicle__body .vehicle__img { transform: scale(1.05); }

.vehicle__text { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.vehicle__name {
  font-family: var(--display); font-size: 1.22rem; letter-spacing: .02em; font-weight: 600;
  color: var(--navy-800); line-height: 1.15;
}
.vehicle__meta { font-size: .76rem; color: var(--muted); line-height: 1.35; }

.vehicle__price {
  margin-left: auto; text-align: right; flex: none;
  display: flex; align-items: baseline; gap: .1rem;
}
.vehicle__price b {
  font-family: var(--numeric); font-size: 1.2rem; color: var(--navy-800);
  font-weight: 600; font-variant-numeric: tabular-nums;
}
.vehicle__price small { font-size: .72rem; color: var(--muted); }
.vehicle input:checked + .vehicle__body .vehicle__price b { color: var(--ink-900); }

@media (max-width: 420px) {
  .vehicle__img { width: 64px; height: 42px; }
  .vehicle__name { font-size: 1rem; }
  .vehicle__body { gap: .7rem; padding: .6rem .7rem; }
}

/* --- Is that time free? --------------------------------------------------- */
.slot-status {
  margin: .5rem 0 0; padding: .55rem .75rem; border-radius: 10px;
  font-size: .84rem; font-weight: 600; border: 1px solid transparent;
}
.slot-status.is-open {
  background: rgba(22, 128, 82, .08); border-color: rgba(22, 128, 82, .3); color: #14724a;
}
.slot-status.is-closed {
  background: rgba(176, 42, 42, .07); border-color: rgba(176, 42, 42, .28); color: #a5301f;
}

.trip-map-panel { margin-bottom: 1rem; }
.trip-map {
  height: 240px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--marble-100);
}
.trip-map .leaflet-container { font: inherit; background: var(--marble-100); }

/* Leaflet ships a chrome-heavy set of controls: a leaf badge, a white
 * credit bar and a chunky zoom box. The tile licences require the credit,
 * so it stays — but it shrinks to a faint corner line that only comes
 * forward when the cursor is on it. The zoom buttons are restyled navy so
 * the map reads as part of the page instead of a widget dropped into it. */
.trip-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, .6);
  color: rgba(92, 100, 120, .75);
  font-size: 9px; line-height: 1.5;
  padding: 1px 5px; margin: 0;
  border-radius: 6px 0 0 0;
  opacity: .6; transition: opacity .18s ease, color .18s ease;
}
.trip-map .leaflet-control-attribution:hover { opacity: 1; color: var(--muted); }
.trip-map .leaflet-control-attribution a { color: inherit; text-decoration: none; }
.trip-map .leaflet-control-attribution a:hover { text-decoration: underline; }

.trip-map .leaflet-control-zoom { border: 0; box-shadow: var(--shadow-sm); }
.trip-map .leaflet-control-zoom a {
  width: 26px; height: 26px; line-height: 26px;
  background: rgba(11, 24, 54, .88); color: #fff;
  border: 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 16px; font-weight: 500;
}
.trip-map .leaflet-control-zoom a:last-child { border-bottom: 0; }
.trip-map .leaflet-control-zoom a:hover { background: var(--steel-500); color: #fff; }
.trip-map__legend {
  display: flex; align-items: center; flex-wrap: wrap; gap: .4rem 1rem;
  margin: .6rem 0 0; font-size: .78rem; color: var(--muted);
}
.trip-map__legend .dot {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: .35rem;
}
.dot--from { background: var(--navy-800); }
.dot--to { background: var(--steel-500); }
.trip-map__stats { margin-left: auto; font-weight: 600; color: var(--navy-800); }

/* --- Why there's no price yet -------------------------------------------- */
.trip-hint {
  margin: 0 0 1rem; padding: .7rem .85rem; border-radius: 10px;
  background: rgba(74, 107, 168, .10); border: 1px solid rgba(74, 107, 168, .35);
  font-size: .82rem; color: var(--navy-800);
}
.trip-hint[hidden] { display: none; }

/* --- Scheduled routes: route cards ---------------------------------------- */
.route-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem; margin-top: 1.6rem;
}
.route-card {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: 1rem 1.1rem; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-sm); cursor: pointer;
  text-align: left; font: inherit; color: inherit; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.route-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.route-card.is-taken { border-color: var(--steel-500); box-shadow: 0 0 0 2px var(--steel-500) inset; }
.route-card__where { display: flex; flex-direction: column; gap: .18rem; min-width: 0; }
.route-card__where b { font-size: .95rem; color: var(--navy-800); }
.route-card__where small { font-size: .76rem; color: var(--muted); }
.route-card__fare { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.route-card__fare b { font-size: 1.1rem; color: var(--navy-800); }
.route-card__fare small { font-size: .7rem; color: var(--muted); }

/* --- Scheduled routes: seat plan -------------------------------------------- */
.seat-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.6rem; align-items: start; margin-top: 1.6rem;
}
@media (max-width: 860px) { .seat-layout { grid-template-columns: 1fr; } }

.seat-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: .78rem; color: var(--muted); }
.seat-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.seat-key {
  width: 14px; height: 14px; border-radius: 4px; display: inline-block;
  background: var(--marble-50); border: 1px solid var(--chrome-400);
}
.seat-key--mine { background: var(--steel-500); border-color: var(--steel-500); }
.seat-key--out { background: var(--marble-200); border-color: var(--marble-200); }

.seat-plan {
  padding: 1.2rem; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .45rem;
}
.seat-front {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .4rem .8rem; margin-bottom: .4rem; border-bottom: 1px dashed var(--line);
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted);
}
.seat-front__door { color: var(--chrome-400); }

.seat-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .5rem; }
.seat-row__side { display: flex; gap: .4rem; justify-content: center; }
.seat-row__aisle { width: 1.4rem; text-align: center; font-size: .68rem; color: var(--muted); }

.seat {
  width: 2.1rem; height: 2.1rem; border-radius: 8px; border: 1px solid var(--chrome-400);
  background: var(--marble-50); color: var(--ink-700); font-size: .68rem; font-weight: 700;
  cursor: pointer; transition: background .12s, color .12s, border-color .12s, transform .12s;
}
.seat:hover:not(:disabled) { border-color: var(--steel-500); transform: translateY(-1px); }
.seat.is-taken { background: var(--steel-500); border-color: var(--steel-500); color: #fff; }
.seat.is-blocked {
  background: var(--marble-200); border-color: var(--marble-200); color: var(--muted);
  cursor: not-allowed;
}

.seat-rear {
  margin-top: .5rem; padding-top: .7rem; border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.seat-rear__wc {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted);
}
.seat-rear__bench { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }

.seat-summary { position: sticky; top: 5.5rem; }
