/* =========================================================
   STARLIGHT TAXI — bright, high-contrast, readable
   (Variable names retain "night-N" / "ink-high" naming for
   minimal diff churn; values now represent a light palette.)
   ========================================================= */

:root {
  /* Surface tones — cool stone, paired with charcoal ink and copper accent */
  --night-0: #dfe2e6;      /* deepest tint (footer) */
  --night-1: #eff1f3;      /* primary bg */
  --night-2: #ffffff;      /* card surface */
  --night-3: #e3e6ea;      /* raised / cool wash */
  --ink-high: #14181c;     /* near-black for body text — WCAG AAA on bg */
  --ink-mid:  #3e454d;     /* secondary text — WCAG AA */
  --ink-low:  #6c747d;     /* tertiary labels */
  --ink-trace:rgba(20, 24, 28, 0.12);
  --divider:  rgba(20, 24, 28, 0.16);

  /* Copper accent — warm metallic against cool slate.
     --accent / --accent-hi    — text-color uses (must be readable on light bg)
     --accent-bg / --accent-bg-hi — solid fills (buttons, bars)
     --accent-ink              — text color INSIDE accent fills */
  --accent:        #b27538;
  --accent-hi:     #8e5b27;
  --accent-bg:     #b27538;
  --accent-bg-hi:  #8e5b27;
  --accent-lo:     rgba(178, 117, 56, 0.10);
  --accent-ink:    #ffffff;

  /* Type system */
  --font-display: 'Inter Tight', system-ui, sans-serif;
  --font-accent:  'Inter Tight', system-ui, sans-serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Rhythm — generous for legibility */
  --pad-section: clamp(3rem, 6vw, 5rem);
  --pad-x: clamp(1.25rem, 3.5vw, 2.25rem);
  --maxw: 1280px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --- Reset --- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:18px; }
body {
  font-family: var(--font-body);
  color: var(--ink-high);
  background: var(--night-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--accent-bg); color: var(--accent-ink);
  padding: .85rem 1.5rem; border-radius: 0 0 8px 8px;
  font-weight: 600; z-index: 300; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: var(--night-1);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  padding: .65rem 0;
  border-bottom-color: var(--divider);
  box-shadow: 0 2px 12px rgba(26, 20, 16, 0.06);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--ink-high);
}
.brand__mark {
  width: 22px; height: 22px; color: var(--accent);
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .005em;
}
.brand__word em {
  font-style: normal;
  font-family: inherit;
  font-weight: 700;
  color: var(--accent);
}
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__link {
  font-size: 1rem; font-weight: 500; letter-spacing: 0;
  color: var(--ink-high);
  position: relative;
}
.nav__link:hover { color: var(--accent); }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent-bg);
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__phone:hover { background: var(--accent-bg-hi); transform: translateY(-1px); }
.nav__phone .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bg);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 166, 104, .6); }
  70% { box-shadow: 0 0 0 8px rgba(232, 166, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 166, 104, 0); }
}

.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger:hover,
.nav__hamburger:focus-visible {
  background: var(--accent-lo);
}
.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink-high);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .18s var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Scrim behind mobile menu — fades in when menu opens */
.nav__scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s .3s;
  z-index: 99;
  cursor: pointer;
}
.nav__scrim.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease);
}

/* =========================================================
   HERO — booking-first, light & legible
   ========================================================= */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: 7rem var(--pad-x) 4rem;
  background: var(--night-1);
}


.hero__grid {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent);
  text-transform: none;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent-bg);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink-high);
  text-wrap: balance;
}
.hero__headline em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  font-size: 1em;
  letter-spacing: -0.01em;
}
.hero__headline-sub {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-top: .35em;
}

.hero__sub {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--ink-mid);
  max-width: 48ch;
  line-height: 1.55;
  text-wrap: pretty;
}

/* hero__meta removed in light redesign */

/* Hero Right - Integrated Image & Card */
.hero__right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.hero__photo {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(26, 20, 16, 0.25);
  width: 100%;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/4;
  display: block;
}

/* Booking card */
.hero__card {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  align-self: end;
  justify-self: start;
  transform: translate(-4rem, 2.5rem);
  
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 12px 32px -12px rgba(26, 20, 16, 0.18);
  width: 100%;
  max-width: 380px;
}

.hero__card-top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--divider);
  gap: 1rem;
}
.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-high);
}
.hero__card-status {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-mid);
}

.hero__card-cta {
  display: flex; flex-direction: column; gap: .4rem;
  text-decoration: none;
  color: var(--accent-ink);
  background: var(--accent-bg);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  transition: background .2s var(--ease), transform .2s var(--ease);
  text-align: center;
  align-items: center;
}
.hero__card-cta:hover { background: var(--accent-bg-hi); transform: translateY(-2px); }
.hero__card-cta-label {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
}
.hero__card-cta-number {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: .65rem;
}
.hero__card-cta-number svg { width: 26px; height: 26px; opacity: .95; }

.hero__card-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem 1.25rem;
  font-size: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}
.hero__card-row dt {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-mid);
  align-self: center;
}
.hero__card-row dd {
  color: var(--ink-high);
  font-size: 1rem;
  font-weight: 500;
}
.hero__card-row dd strong { color: var(--accent); font-weight: 700; }
.hero__card-row dd a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-lo);
}
.hero__card-row dd a:hover { border-bottom-color: var(--accent); }
.hero__card-row-note {
  display: block;
  font-size: .85rem;
  color: var(--ink-mid);
  font-weight: 400;
  margin-top: .15rem;
}

.hero__card-alt {
  font-size: .9rem;
  color: var(--ink-mid);
  text-align: center;
  padding-top: .25rem;
}
.hero__card-alt a { color: var(--accent); border-bottom: 1px solid var(--accent-lo); font-weight: 500; }
.hero__card-alt a:hover { border-bottom-color: var(--accent); }



/* =========================================================
   SECTION — shared
   ========================================================= */
.section {
  position: relative;
  padding: var(--pad-section) var(--pad-x);
  isolation: isolate;
}
.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section__head {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--divider);
}
.section__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  display: flex; align-items: baseline; gap: .65rem;
}
.section__num::before {
  content: ""; width: 24px; height: 2px; background: var(--accent-bg); display: inline-block;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink-high);
  text-wrap: balance;
}
.section__title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}

/* =========================================================
   RATES — fares table, fleet, loyalty
   ========================================================= */
.rates { background: var(--night-1); }

.rates__table {
  border-top: 2px solid var(--divider);
  margin-bottom: 2rem;
}
.rates__row {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap: 1.5rem;
  padding: 1.25rem .25rem;
  border-bottom: 1px solid var(--divider);
  align-items: center;
  transition: background .2s var(--ease);
}
.rates__row:not(.rates__row--head):hover {
  background: var(--accent-lo);
}
.rates__row--head {
  padding: .85rem .25rem;
  border-bottom: 2px solid var(--divider);
}
.rates__row--head .rates__cell {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mid);
}
.rates__cell {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-high);
  font-weight: 500;
}
.rates__cell strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.35rem;
}
.rates__cell--share span {
  color: var(--ink-mid);
  font-size: .95rem;
  font-weight: 500;
}
.rates__cell--flat,
.rates__cell--share {
  text-align: right;
}
.rates__route-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-high);
  letter-spacing: -0.005em;
}
.rates__route-meta {
  display: block;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mid);
  margin-top: .2rem;
}

.rates__notes {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding: 1.5rem 0;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--divider);
}
.rates__notes li {
  font-size: 1rem;
  color: var(--ink-mid);
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.5;
}
.rates__notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  top: 0;
  line-height: 1.5;
}
.rates__notes strong {
  color: var(--ink-high);
  font-weight: 700;
}

.rates__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.rates__sub-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink-high);
  margin-bottom: 1rem;
}
.rates__sub-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.fleet__list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--divider);
}
.fleet__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  padding: 1.1rem .25rem;
  align-items: baseline;
  border-bottom: 1px solid var(--divider);
}
.fleet__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.fleet__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-high);
}
.fleet__name em {
  font-family: inherit;
  font-style: normal;
  color: var(--ink-mid);
  font-weight: 400;
  font-size: .95rem;
  margin-left: .35rem;
}

.loyalty__list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--divider);
}
.loyalty__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem .25rem;
  border-bottom: 1px solid var(--divider);
}
.loyalty__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-high);
}
.loyalty__discount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.loyalty__item--free .loyalty__discount {
  font-size: 1.4rem;
  letter-spacing: -0.005em;
}
.loyalty__note {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* =========================================================
   FEATURE SHOT — establishing photo, contained editorial frame
   ========================================================= */
.feature-shot {
  margin: 0 auto;
  width: 100%;
  max-width: var(--maxw);
  padding: clamp(2rem, 5vw, 4rem) var(--pad-x);
  background: transparent;
}
.feature-shot img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px -12px rgba(26, 20, 16, 0.18);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--night-3); }


.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.services__col-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--divider);
}
.services__col-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-high);
}
.services__col-title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.services__col-count {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.services__list {
  display: flex; flex-direction: column;
}
.services__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--divider);
  align-items: center;
  transition: background .2s var(--ease), padding .2s var(--ease);
}
.services__item:last-child { border-bottom: 0; }
.services__item:hover {
  background: var(--accent-lo);
  padding-left: .75rem;
}
.services__item-num {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
}
.services__item-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-high);
  letter-spacing: -0.005em;
}

.services__footnote {
  margin-top: 2.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: var(--ink-high);
}
.services__footnote em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.services__footnote a {
  color: var(--accent);
  border-bottom: 2px solid var(--accent-lo);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease);
}
.services__footnote a:hover { border-bottom-color: var(--accent); }

/* =========================================================
   COVERAGE — featured band
   ========================================================= */
.coverage {
  background: var(--night-1);
  padding: var(--pad-section) var(--pad-x);
  position: relative;
}

.coverage__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.coverage__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink-high);
  text-wrap: balance;
  margin-bottom: 1.25rem;
}
.coverage__headline em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.coverage__copy {
  color: var(--ink-mid);
  font-size: 1.1rem;
  max-width: 46ch;
  line-height: 1.6;
}
.coverage__list {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--divider);
}
.coverage__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.15rem .25rem;
  border-bottom: 1px solid var(--divider);
  align-items: center;
}
.coverage__item-mark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  width: 36px;
}
.coverage__item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-high);
}
.coverage__item-name em {
  font-family: inherit;
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--night-3);
  position: relative;
}
.about__inner {
  max-width: 1040px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.about__lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  color: var(--ink-high);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  margin-bottom: 2rem;
}
.about__lede em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.about__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--divider);
  border-bottom: 2px solid var(--divider);
}
.about__fact {
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.about__fact + .about__fact {
  padding-left: 1.5rem;
  border-left: 1px solid var(--divider);
}
.about__fact-label {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mid);
}
.about__fact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-high);
}
.about__fact-value em {
  font-family: inherit;
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.about__gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.about__photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--night-2);
  box-shadow: 0 8px 24px -12px rgba(26, 20, 16, 0.18);
}
.about__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}



/* =========================================================
   FOOTER CTA + FOOTER
   ========================================================= */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) var(--pad-x);
  background: var(--night-3);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}

.cta-band__inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 1rem;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink-high);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.cta-band__title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.cta-band__phone {
  display: inline-flex; align-items: center; gap: .85rem;
  padding: 1.25rem 2rem;
  background: var(--accent-bg);
  color: var(--accent-ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  min-height: 56px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.cta-band__phone:hover { background: var(--accent-bg-hi); transform: translateY(-2px); }
.cta-band__phone svg { width: 26px; height: 26px; }

.cta-band__or {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mid);
  text-transform: none;
}
.cta-band__or a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-lo);
  margin-left: .25rem;
}
.cta-band__or a:hover { border-bottom-color: var(--accent); }

/* Footer */
.footer {
  background: var(--night-0);
  padding: clamp(3rem, 5vw, 4rem) var(--pad-x) 2rem;
  border-top: 1px solid var(--divider);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  color: var(--ink-mid);
  font-size: 1rem;
  max-width: 36ch;
  margin-top: .85rem;
  line-height: 1.55;
}
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-high);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer__col li { padding: .35rem 0; font-size: 1rem; color: var(--ink-mid); }
.footer__col a { color: var(--ink-high); font-weight: 500; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mid);
  flex-wrap: wrap;
  gap: .75rem;
}

/* =========================================================
   LEGAL / STANDALONE PAGES (privacy, terms)
   ========================================================= */
.legal {
  padding: clamp(6rem, 10vw, 8rem) var(--pad-x) 4rem;
  max-width: 760px;
  margin: 0 auto;
}
.legal__header {
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider);
}
.legal__eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 1rem;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.005em;
  color: var(--ink-high);
  margin-bottom: 0.75rem;
}
.legal__updated {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mid);
}
.legal__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-mid);
}
.legal__body section { margin-bottom: 2.25rem; }
.legal__body section:last-of-type { margin-bottom: 0; }
.legal__body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-high);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.legal__body p { margin-bottom: 1rem; }
.legal__body p:last-child { margin-bottom: 0; }
.legal__body ul {
  padding-left: 0;
  margin-bottom: 1rem;
}
.legal__body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
}
.legal__body ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.legal__body strong {
  color: var(--ink-high);
  font-weight: 500;
}
.legal__lead {
  font-size: 1.05rem;
  color: var(--ink-high);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--divider);
}
.legal__contact li::before { display: none; }
.legal__contact li { padding-left: 0; }
.legal__back {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--divider);
  text-align: center;
}
.legal__back a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  border-bottom: 2px solid var(--accent-lo);
  padding-bottom: 2px;
}
.legal__back a:hover { border-bottom-color: var(--accent); }

/* =========================================================
   404 PAGE
   ========================================================= */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--pad-x);
  text-align: center;
}
.notfound__inner {
  max-width: 520px;
}
.notfound__eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.notfound__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 1;
  color: var(--ink-high);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.notfound__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink-high);
  margin-bottom: 1rem;
}
.notfound__title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.notfound__copy {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}
.notfound__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.notfound__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 52px;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.notfound__btn--primary {
  background: var(--accent-bg);
  color: var(--accent-ink);
}
.notfound__btn--primary:hover { background: var(--accent-bg-hi); transform: translateY(-2px); }
.notfound__btn--ghost {
  color: var(--ink-high);
  border: 2px solid var(--divider);
}
.notfound__btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav__links {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 340px);
    background: var(--night-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 5.5rem 2rem 2rem;
    border-left: 1px solid var(--divider);
    box-shadow: -12px 0 32px -12px rgba(26, 20, 16, 0.18);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 95;
    will-change: transform;
  }
  .nav__links.is-open {
    transform: translateX(0);
  }
  .nav__links .nav__link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-high);
    width: 100%;
    padding: .85rem 0;
    border-bottom: 1px solid var(--divider);
  }
  .nav__links .nav__phone {
    margin-top: 1rem;
    align-self: stretch;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem;
  }
  .nav__hamburger { display: flex; }
  .nav__scrim { display: block; }
  body.menu-open { overflow: hidden; }

  .hero { padding: 5.5rem var(--pad-x) 4rem; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__right {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 2rem;
  }
  .hero__card { 
    transform: none;
    max-width: 100%; 
    justify-self: stretch; 
    align-self: stretch;
    background: var(--night-2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--divider);
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rates__sub { grid-template-columns: 1fr; gap: 2.5rem; }
  .coverage__inner { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; }
  .about__fact + .about__fact { padding-left: 0; border-left: 0; border-top: 1px solid var(--divider); padding-top: 1.25rem; }
  .about__gallery { grid-template-columns: 1fr; }

  .rates__row {
    grid-template-columns: 1fr;
    gap: .35rem;
    padding: 1rem .25rem;
  }
  .rates__row--head { display: none; }
  .rates__cell--flat,
  .rates__cell--share { text-align: left; }
  .rates__cell--flat::before {
    content: "Flat fare · ";
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-low);
    margin-right: .4rem;
  }
  .rates__cell--share::before {
    content: "Shared · ";
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-low);
    margin-right: .4rem;
  }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__card-cta-number { font-size: 1.5rem; }
  .hero__card-cta-number--alt { font-size: 1.15rem; }
  .about__facts { grid-template-columns: 1fr; }
  .about__fact:nth-child(odd) { border-right: 0; padding-left: 0; }
  .about__fact:nth-child(n+2) { border-top: 1px solid var(--divider); }
}

