/* =========================================================
   Roll & Ride — design system
   Display: Bricolage Grotesque · Body: Public Sans
   Signature: the hi-vis "safety edge" (ramp hazard edging)
   ========================================================= */

:root {
  /* Ink */
  --ink:        #0A1E25;
  --ink-2:      #10303A;
  --ink-3:      #17414D;
  --ink-soft:   #4A6570;
  --ink-mute:   #5D757F;

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-alt:     #F1F8F6;
  --line:       #DFE9EA;
  --line-soft:  #EDF3F3;

  /* Brand */
  --teal:       #0F8F8F;   /* accent / icons */
  --teal-cta:   #0C7C7C;   /* surfaces carrying white text — 5.0:1 */
  --teal-dark:  #0A6A6A;
  --teal-deep:  #064E4E;
  --mint:       #DFF3EE;

  /* Accents */
  --gold:       #EBC317;   /* action colour — CTAs, ramp edging, grab rails */
  --gold-dark:  #D3AE0F;   /* hover */
  --hi-vis:     #EBC317;   /* alias, kept so existing rules keep working */
  --hi-vis-ink: #0A1E25;   /* text on gold — 10.1:1 */
  --green:      #17A05B;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Shadows */
  --sh-sm:   0 1px 2px rgba(10,30,37,.05), 0 4px 12px rgba(10,30,37,.05);
  --sh-md:   0 2px 6px rgba(10,30,37,.05), 0 16px 34px rgba(10,30,37,.08);
  --sh-lg:   0 40px 80px -28px rgba(10,30,37,.30);
  --sh-teal: 0 10px 26px -6px rgba(15,143,143,.45);
  --sh-gold: 0 10px 26px -8px rgba(235,195,23,.75);

  /* Type */
  --font-display: "Bricolage Grotesque", "Public Sans", system-ui, sans-serif;
  /* Logo wordmark. Poiret One matches the supplied artwork most closely —
     same geometric monoline, same distinctive ampersand and R leg.
     Close alternates if you prefer: "Josefin Sans", "Quicksand", "Comfortaa". */
  --font-logo: "Poiret One", "Josefin Sans", var(--font-display);
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: 22px;
  --header-h: 92px;

  /* Motion */
  --ease: cubic-bezier(.22, .78, .3, 1);
}

@media (min-width: 1600px) { :root { --maxw: 1300px; } }
@media (max-width: 380px)  { :root { --gutter: 16px; } }

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.66;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.1vw, 3.05rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.015em; }

p { margin: 0 0 1rem; color: var(--ink-soft); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--hi-vis); color: var(--hi-vis-ink); }

/* Visible, consistent keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}
/* on dark surfaces the ring flips so it stays visible */
.section--dark :focus-visible,
.footer :focus-visible,
.topbar :focus-visible,
.callout :focus-visible { outline-color: var(--gold); }

/* Grid/flex children must be allowed to shrink below their min-content width,
   otherwise one long unbreakable string (the email) widens the whole page. */
.hero__grid > *, .contact__grid > *, .app__grid > *,
.split > *, .footer__grid > *, .trust .wrap > * { min-width: 0; }
.info-list li > span { min-width: 0; }
.info-list a, .footer a, .topbar a { overflow-wrap: anywhere; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 8vw, 108px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #E4EEF0; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 10% 112%, rgba(15,143,143,.26), transparent 64%),
    radial-gradient(600px 340px at 90% -12%, rgba(235,195,23,.11), transparent 62%);
}
.section--dark > .wrap { position: relative; z-index: 1; }
.section--dark p { color: #A9C2C8; }
.section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: .85rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px;
  background: var(--hi-vis); flex: none;
}
.section--dark .eyebrow { color: var(--hi-vis); }
.section--dark .eyebrow::before { background: var(--hi-vis); }

.section__head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 56px); }
.section__head.center { text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head p { font-size: 1.06rem; }

/* Skip link */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip:focus { top: 12px; color: #fff; }

/* ===== SIGNATURE: the hi-vis safety edge =====
   Hazard edging borrowed from wheelchair ramps + grab rails. */
.hazard {
  height: 6px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--hi-vis) 0 9px,
    var(--ink) 9px 18px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px;                 /* generous target for low-dexterity users */
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem; letter-spacing: -.005em;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .22s var(--ease), background .2s var(--ease),
              box-shadow .22s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: var(--ink); box-shadow: var(--sh-gold); }
.btn--primary:hover { background: var(--gold-dark); color: var(--ink); box-shadow: 0 16px 34px -10px rgba(235,195,23,.85); }

.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--teal-deep); border-color: var(--teal); background: #fff; }

.btn--hi { background: var(--gold); color: var(--ink); box-shadow: var(--sh-gold); }
.btn--hi:hover { background: var(--gold-dark); color: var(--ink); }

.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--onDark:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: .95rem 1.8rem; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #A9C2C8;
  font-size: .855rem;
  position: relative;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 26px;
  justify-content: space-between; align-items: center;
  padding-block: 9px;
}
.topbar a { color: #CFE3E6; font-weight: 600; }
.topbar a:hover { color: var(--hi-vis); }
.topbar__group { display: inline-flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.t-compact { display: none; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; padding-block: 4px; }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(23,160,91,.7); animation: livePulse 2.4s infinite; flex: none;
}
@keyframes livePulse {
  70% { box-shadow: 0 0 0 8px rgba(23,160,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,160,91,0); }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  /* Solid, not translucent: large headings were showing through the header
     as they scrolled under it. Also drops a backdrop-filter on mobile. */
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 8px 28px -12px rgba(10,30,37,.22); }
.header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: var(--header-h); position: relative;
}

/* scroll progress — the safety edge again */
.progress {
  position: absolute; left: 0; bottom: -1px; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--hi-vis));
  transition: width .1s linear;
}

.brand { display: inline-flex; align-items: center; color: var(--ink); }
/* The badge carries its own wordmark, so it stands alone — no typeset name beside it. */
.brand__mark {
  width: 68px; height: 68px; flex: none;
  border-radius: 16px; /* opaque square tile — a radius keeps it from reading as a raw image */
}
.footer .brand__mark { width: 80px; height: 80px; margin-left: 0; border-radius: 18px; }
.brand__text { display: block; line-height: 1; }
.brand__name {
  display: block;
  font-family: var(--font-logo); font-weight: 400;
  font-size: 1.17rem; letter-spacing: .01em; line-height: 1;
  color: var(--ink);
}
.brand__tag {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .5rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink-soft);
  /* Centred under the wordmark. text-indent cancels the trailing space that
     letter-spacing adds after the last letter, which otherwise pulls the word
     visibly left of true centre. */
  text-align: center; text-indent: .34em;
}
.footer .brand__name { color: #fff; }
.footer .brand__tag  { color: var(--gold); }
@media (max-width: 420px) {
  .brand__mark { width: 50px; height: 50px; border-radius: 12px; }
  .brand__name { font-size: 1.04rem; }
  .brand__tag { font-size: .46rem; letter-spacing: .28em; text-indent: .28em; }
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: 10px 14px; border-radius: 999px; position: relative;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:not(.btn):hover { color: var(--teal-deep); background: var(--bg-alt); }
.nav a.is-active:not(.btn) { color: var(--teal-deep); }
.nav a.is-active:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 3px; border-radius: 2px; background: var(--hi-vis);
}
.nav .btn { margin-left: 10px; }
.nav__logins { display: inline-flex; align-items: center; gap: 2px; }
.nav__corp { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.nav__corp svg { width: 15px; height: 15px; opacity: .7; flex: none; }
.nav__logins .nav__corp + .nav__corp svg { display: none; }
.nav__logins .nav__corp + .nav__corp { position: relative; }
.nav__logins .nav__corp + .nav__corp::before {
  content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 15px; background: var(--line);
}

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 50px; height: 50px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 86px) 0 clamp(60px, 7vw, 96px);
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(15,143,143,.16), transparent 62%),
    radial-gradient(700px 420px at 4% 8%, rgba(255,197,61,.14), transparent 60%),
    linear-gradient(180deg, #F3FAF8 0%, #FFFFFF 74%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 5vw, 68px); align-items: center;
}
.hero h1 { margin-bottom: .55rem; }
.hero .u-mark {
  position: relative; white-space: nowrap;
}
.hero .u-mark::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: -.02em;
  height: .14em; border-radius: 999px; background: var(--hi-vis);
}
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.18rem); max-width: 48ch; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 24px; }

.hero__note { font-size: .93rem; margin: -6px 0 20px; color: var(--ink-soft); }
.hero__note a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.hero__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero__points li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .97rem; font-weight: 500; color: var(--ink-soft);
}
.hero__points .tick {
  width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  background: rgba(23,160,91,.12); color: var(--green);
  display: grid; place-items: center;
}
.hero__points .tick svg { width: 13px; height: 13px; }

.hero__proof {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 26px; padding: 12px 18px 12px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--sh-sm); font-size: .9rem; color: var(--ink-soft);
}
.hero__proof strong { color: var(--ink); font-weight: 700; }
.hero__proof .stars svg { width: 16px; height: 16px; }

/* Hero media */
.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg);
  transform: rotate(-1.1deg);
}
.hero__frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__frame .hazard { position: absolute; left: 0; right: 0; bottom: 0; height: 9px; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  border-radius: inherit;
}

.hero__badge {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: var(--r);
  padding: 15px 20px; box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 13px;
}
.hero__badge .dot {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: var(--ink); color: var(--hi-vis); display: grid; place-items: center;
}
.hero__badge .dot svg { width: 20px; height: 20px; }
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.03em; line-height: 1.1; }
.hero__badge span { font-size: .8rem; color: var(--ink-soft); }

.hero__chip {
  position: absolute; right: -10px; top: 26px; z-index: 3;
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 12px 26px -10px rgba(10,30,37,.6);
  border: 1px solid rgba(255,255,255,.22);
  display: inline-flex; align-items: center; gap: .4rem;
}
.hero__chip svg { width: 15px; height: 15px; color: var(--gold); }

/* Page-load orchestration — one sequenced moment, not scattered effects.
   Only armed when .js is set, which the head script skips under reduced motion. */
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes mediaIn { from { opacity: 0; transform: translateY(24px) scale(.975); } to { opacity: 1; transform: none; } }

.js .hero__copy > *  { animation: riseIn .62s var(--ease) backwards; }
.js .hero__copy > *:nth-child(1) { animation-delay: .04s; }
.js .hero__copy > *:nth-child(2) { animation-delay: .10s; }
.js .hero__copy > *:nth-child(3) { animation-delay: .16s; }
.js .hero__copy > *:nth-child(4) { animation-delay: .22s; }
.js .hero__copy > *:nth-child(5) { animation-delay: .28s; }
.js .hero__copy > *:nth-child(6) { animation-delay: .34s; }
.js .hero__media { animation: mediaIn .8s var(--ease) .12s backwards; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  display: flex; align-items: center; gap: 11px;
  padding: 22px 24px; font-size: .93rem; font-weight: 600; color: var(--ink);
  border-left: 1px solid var(--line-soft);
}
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__item svg { width: 21px; height: 21px; color: var(--teal); flex: none; }

/* ---------- Partner / accreditation band ---------- */
/* Uses the same hairline-divider device as the trust strip, deliberately.
   Six items sit better as 3x2 than 6-across: the logos get real presence and
   the names fit on one or two lines instead of three ragged ones. */
.partners {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 0; row-gap: 44px;
  max-width: 940px; margin-inline: auto;
}
.partner {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center; padding: 4px 26px;
  border-left: 1px solid var(--line);
}
.partner:nth-child(3n+1) { border-left: 0; }
.partner__logo { height: 92px; display: flex; align-items: center; justify-content: center; }
.partner img {
  width: auto; height: auto; max-height: 92px; max-width: 100%; object-fit: contain;
  transition: transform .3s var(--ease);
}
.partner:hover img { transform: scale(1.06); }
.partner__name {
  font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-mute); line-height: 1.5; margin-top: auto;
}

@media (max-width: 640px) {
  .partners { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .partner:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .partner:nth-child(odd)  { border-left: 0; }
  .partner { padding: 4px 12px; gap: 13px; }
  .partner__logo { height: 66px; }
  .partner img { max-height: 66px; }
  .partner__name { font-size: .68rem; }
}

/* ---------- Fleet ---------- */
.fleet__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 52px);
}
.fleet__head > div { max-width: 620px; }
.fleet__head h2 { margin-bottom: .4rem; }
.fleet__head p { font-size: 1.04rem; margin: 0; }
.fleet__head .btn { flex: none; }

.fleet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.vehicle {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.vehicle:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--mint); }

.vehicle__media {
  position: relative; padding: 16px 12px 0;
  /* Three of the four vehicles are white or silver, so a light field made them
     vanish. Dark stage — same reasoning as the booking app's thumbnails. */
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(15,143,143,.30), transparent 62%),
    linear-gradient(168deg, #17414D 0%, #0A1E25 100%);
}
/* the cut-outs have no shadow of their own — this grounds them */
.vehicle__media::after {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 12%;
  height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 72%);
}
.vehicle__media img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 900 / 560; object-fit: contain;
  transition: transform .5s var(--ease);
}
.vehicle:hover .vehicle__media img { transform: translateX(3px) scale(1.035); }

.vehicle__tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(255,255,255,.13); color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
}

.vehicle__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.vehicle__body h3 { font-size: 1.16rem; margin-bottom: .35rem; }
.vehicle__body p { font-size: .92rem; margin: 0 0 16px; }

.spec { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.spec li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--ink);
}
.spec__i {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: rgba(235,195,23,.18); color: #8A6D00;
}
.spec__i svg { width: 17px; height: 17px; }

.vehicle__cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .92rem; color: var(--teal-dark); padding-block: 4px;
}
.vehicle__cta svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.vehicle:hover .vehicle__cta svg { transform: translateX(4px); }

@media (max-width: 1080px) { .fleet { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .fleet { grid-template-columns: 1fr; gap: 18px; }
  .fleet__head { display: block; }
  .fleet__head .btn { width: 100%; margin-top: 22px; }
}

/* ---------- Quick date chips + friendlier time select ---------- */
.quickdates { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.chip-btn {
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  color: var(--ink-soft); background: #fff;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 15px; min-height: 36px; cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.chip-btn:hover { border-color: var(--teal); color: var(--teal-deep); }
.chip-btn[aria-pressed="true"] {
  background: var(--mint); border-color: var(--teal); color: var(--teal-deep);
}
.field select optgroup { font-weight: 700; color: var(--ink); }
.field select option { font-weight: 400; color: var(--ink); }

.page-hero__note { margin-top: 18px; font-size: .95rem; }
.page-hero__note a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Legal pages ---------- */
.page-hero--legal h1 { max-width: 20ch; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 40px; margin: 20px 0 0; }
.legal-meta div { display: grid; gap: 2px; }
.legal-meta dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute);
}
.legal-meta dd { margin: 0; font-size: .95rem; font-weight: 600; color: var(--ink); }

.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
/* Without this the table's min-width props the whole column open and the page
   scrolls sideways on phones — overflow-x can't help a column that can't shrink. */
.legal-layout > * { min-width: 0; }

.legal-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.legal-toc__title {
  font-family: var(--font-body); font-size: .74rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px;
}
.legal-toc__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; counter-reset: none; }
.legal-toc__list a {
  display: block; padding: 7px 12px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--ink-soft); line-height: 1.4;
  border-left: 2px solid transparent;
}
.legal-toc__list a:hover { background: var(--bg-alt); color: var(--teal-deep); }
.legal-toc__list a.is-active {
  color: var(--teal-deep); font-weight: 700; border-left-color: var(--gold); background: var(--bg-alt);
}

.legal { max-width: 76ch; }
.legal h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem); margin: 2.2em 0 .6em;
  padding-top: .6em; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px);
}
.legal > h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.02rem; margin: 1.6em 0 .5em; color: var(--ink); }
.legal p { font-size: .98rem; line-height: 1.75; margin-bottom: 1em; }
.legal ul { margin: 0 0 1.2em; padding-left: 1.15rem; }
.legal ul li { font-size: .98rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: .5em; }
.legal ul li::marker { color: var(--teal); }
.legal a { text-decoration: underline; text-underline-offset: 2px; }

.legal-dl { margin: 0 0 1.4em; display: grid; gap: 0; }
.legal-dl dt {
  font-weight: 700; color: var(--ink); font-size: .95rem;
  padding-top: .8em; border-top: 1px solid var(--line-soft);
}
.legal-dl dt:first-child { border-top: 0; padding-top: 0; }
.legal-dl dd { margin: .2em 0 .8em; font-size: .95rem; line-height: 1.65; color: var(--ink-soft); }

.legal-table-wrap { overflow-x: auto; margin: 0 0 1.4em; -webkit-overflow-scrolling: touch; }
.legal-table { border-collapse: collapse; width: 100%; min-width: 380px; font-size: .95rem; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.legal-table thead th {
  background: var(--bg-alt); font-size: .76rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute);
}
.legal-table td { color: var(--ink-soft); }
.legal-table td:first-child { color: var(--ink); font-weight: 600; }

.legal-address {
  font-style: normal; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 22px; line-height: 1.85; font-size: .96rem; color: var(--ink);
}
.legal-foot {
  margin-top: 2.4em; padding-top: 1.4em; border-top: 1px solid var(--line);
  font-size: .93rem; color: var(--ink-soft);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc {
    position: static; background: var(--bg-alt); border: 1px solid var(--line);
    border-radius: var(--r); padding: 18px 20px;
  }
  .legal-toc__list { grid-template-columns: repeat(2, 1fr); display: grid; gap: 2px 12px; }
  .legal { max-width: none; }
}
@media (max-width: 560px) { .legal-toc__list { grid-template-columns: 1fr; } }

/* ---------- Interior page hero + contact page ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 5vw, 68px) 0 clamp(44px, 5vw, 72px);
  background:
    radial-gradient(760px 420px at 88% -10%, rgba(15,143,143,.16), transparent 62%),
    radial-gradient(600px 360px at 4% 6%, rgba(235,195,23,.14), transparent 60%),
    linear-gradient(180deg, #F3FAF8 0%, #FFFFFF 78%);
}
.crumb { font-size: .86rem; color: var(--ink-mute); margin-bottom: 18px; }
.crumb a { color: var(--teal-dark); font-weight: 600; }
.crumb span { margin: 0 .35rem; }
.page-hero h1 { max-width: 16ch; margin-bottom: .5rem; }
.page-hero__lead { font-size: clamp(1.02rem, 1.4vw, 1.14rem); max-width: 56ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.contact-big {
  display: block; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.24rem;
  letter-spacing: -.02em; color: var(--ink); word-break: break-word;
}
.contact-big--sm { font-size: .98rem; color: var(--teal-dark); line-height: 1.45;
  word-break: normal; overflow-wrap: anywhere; }
.contact-big--sm svg { width: 15px; height: 15px; vertical-align: -2px; }
a.contact-big:hover { color: var(--teal-deep); }
.contact-alt, .info-alt {
  display: block; margin-top: 4px; font-size: .9rem; font-weight: 600; color: var(--ink-soft);
}
.contact-alt span, .info-alt span { font-weight: 500; color: var(--ink-mute); }
.contact-alt:hover, .info-alt:hover { color: var(--teal-deep); }
.info-list .info-alt { font-size: .92rem; }

.login-grid { max-width: 880px; margin-inline: auto; }
.login-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 24px; color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.login-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--teal); color: var(--ink); }
.login-card .icon { margin: 0; width: 48px; height: 48px; flex: none; }
.login-card strong { display: block; font-family: var(--font-display); font-size: 1.08rem; letter-spacing: -.015em; }
.login-card small { display: block; font-size: .9rem; color: var(--ink-soft); margin-top: 2px; }
.login-card > svg { width: 18px; height: 18px; margin-left: auto; flex: none; color: var(--teal-dark); transition: transform .25s var(--ease); }
.login-card:hover > svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .page-hero__actions .btn { width: 100%; }
  .login-card { padding: 18px; gap: 13px; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--mint); }
.card p { font-size: .96rem; }
.card h3 { margin-bottom: .4rem; }

.icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--mint); color: var(--teal-deep); margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.icon svg { width: 25px; height: 25px; }
.card:hover .icon { background: var(--teal-cta); color: #fff; }

/* Feature cards get a top hairline that fills on hover */
.card--feature { overflow: hidden; }
.card--feature::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: var(--hi-vis); transition: width .45s var(--ease);
}
.card--feature:hover::before { width: 100%; }

/* Photo cards */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__media { position: relative; overflow: hidden; }
.card--photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .7s var(--ease);
}
.card--photo:hover img { transform: scale(1.06); }
.card--photo .card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,37,0) 45%, rgba(10,30,37,.55) 100%);
}
.card__tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; backdrop-filter: blur(6px);
}
.card--photo .card__body { padding: 24px 26px 28px; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 14px;
  font-weight: 700; font-size: .92rem; color: var(--teal-dark); padding-block: 4px;
}
.card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card--photo:hover .card__link svg { transform: translateX(4px); }

/* ---------- Split section (sticky head + card field) ---------- */
.split {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 4vw, 62px); align-items: start;
}
.split__head { position: sticky; top: calc(var(--header-h) + 30px); }
.split__head .section__head { margin-bottom: 22px; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split__head { position: static; }
}

/* ---------- How it works: the ramp ---------- */
.ramp { position: relative; }
.ramp__line {
  position: absolute; inset: auto 0 0 0; height: 100%;
  width: 100%; pointer-events: none; z-index: 0;
}
.ramp__line path {
  fill: none; stroke: rgba(255,197,61,.45); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 12 14;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.ramp.in .ramp__line path { stroke-dashoffset: 0; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  position: relative; z-index: 1;
}
.step {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 30px 26px 28px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.step:hover { border-color: rgba(255,197,61,.5); background: var(--ink-3); }
.step__n {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  background: var(--hi-vis); color: var(--hi-vis-ink);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { font-size: .96rem; margin: 0; }
/* the ascent */
.steps .step:nth-child(2) { transform: translateY(-26px); }
.steps .step:nth-child(3) { transform: translateY(-52px); }
.steps .step:nth-child(2):hover { transform: translateY(-32px); }
.steps .step:nth-child(3):hover { transform: translateY(-58px); }
.ramp__base { margin-top: 10px; border-radius: 999px; overflow: hidden; }

/* ---------- App ---------- */
.app__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center;
}
.apps { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; border-radius: 15px; padding: 12px 22px;
  min-height: 56px; transition: transform .22s var(--ease), background .22s var(--ease);
}
.store:hover { background: var(--ink-3); color: #fff; transform: translateY(-2px); }
.store svg { width: 27px; height: 27px; flex: none; }
.store small { display: block; font-size: .68rem; opacity: .8; line-height: 1.3; }
.store b { font-weight: 700; font-size: 1.02rem; line-height: 1.2; }

.app__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.app__points li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .98rem; font-weight: 500; color: var(--ink-soft);
}
.app__points .tick {
  width: 24px; height: 24px; border-radius: 50%; flex: none; margin-top: 1px;
  background: var(--mint); color: var(--teal-deep); display: grid; place-items: center;
}
.app__points .tick svg { width: 14px; height: 14px; }

/* Phone mock */
.phone {
  width: min(310px, 78vw); margin-inline: auto; position: relative;
  border-radius: 42px; padding: 11px;
  background: linear-gradient(160deg, #1B3B45, #0A1E25);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.phone__screen {
  background: #fff; border-radius: 32px; overflow: hidden; position: relative;
  aspect-ratio: 9 / 18.5; display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 20px; border-radius: 999px; background: #0A1E25; z-index: 4;
}
.phone__map {
  flex: 1; position: relative; min-height: 0;
  background:
    linear-gradient(180deg, #E9F4F1, #DCEDE9);
}
.phone__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone__pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-cta); border: 3px solid #fff; box-shadow: var(--sh-teal);
  display: grid; place-items: center; color: #fff; z-index: 3;
}
.phone__pin svg { position: static; width: 19px; height: 19px; }
.phone__route { stroke-dasharray: 340; stroke-dashoffset: 340; }
.reveal.in .phone__route { stroke-dashoffset: 0; transition: stroke-dashoffset 1.7s var(--ease) .35s; }
.phone__pin::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(15,143,143,.5); animation: pulseRing 2.6s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.75); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.phone__eta {
  position: absolute; left: 14px; top: 42px; z-index: 3;
  background: rgba(255,255,255,.95); border-radius: 12px; padding: 8px 12px;
  box-shadow: var(--sh-sm); font-size: .72rem; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: .4rem;
}
.phone__eta i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.phone__sheet {
  background: #fff; border-top: 1px solid var(--line);
  padding: 16px 16px 20px; position: relative; z-index: 3;
  box-shadow: 0 -12px 30px -14px rgba(10,30,37,.28);
}
.phone__sheet::before {
  content: ""; display: block; width: 42px; height: 4px; border-radius: 999px;
  background: var(--line); margin: 0 auto 14px;
}
.phone__driver { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.phone__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--mint); color: var(--teal-deep); display: grid; place-items: center;
  font-weight: 800; font-size: .9rem;
}
.phone__driver b { display: block; font-size: .84rem; line-height: 1.3; }
.phone__driver small { display: block; font-size: .7rem; color: var(--ink-mute); }
.phone__row {
  display: flex; align-items: center; gap: .5rem; font-size: .72rem;
  color: var(--ink-soft); padding: 8px 0; border-top: 1px dashed var(--line);
}
.phone__row svg { width: 14px; height: 14px; color: var(--teal); flex: none; }
.phone__cta {
  margin-top: 12px; background: var(--teal-cta); color: #fff; border-radius: 12px;
  text-align: center; padding: 11px; font-size: .82rem; font-weight: 700;
}

/* ---------- Reviews ---------- */
.rating {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 26px; margin-bottom: 30px; box-shadow: var(--sh-sm);
}
.rating__score {
  font-family: var(--font-display); font-size: 2.9rem; font-weight: 800; font-variant-numeric: tabular-nums;
  letter-spacing: -.04em; line-height: 1; color: var(--ink);
}
.rating__meta { display: grid; gap: 3px; }
.rating__label { font-weight: 800; letter-spacing: .05em; text-transform: uppercase; font-size: .78rem; color: var(--teal-deep); }
.rating__count { font-size: .88rem; color: var(--ink-soft); }
.rating .btn { margin-left: auto; }
.g-mark { width: 32px; height: 32px; flex: none; }
.g-mark--sm { width: 19px; height: 19px; }

.stars { display: flex; gap: 2px; color: #F5A623; }
.stars svg { width: 18px; height: 18px; }

.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; position: relative; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review__head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; position: relative; z-index: 1; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .92rem;
}
.review__meta { min-width: 0; flex: 1; }
.review__meta strong { display: flex; align-items: center; gap: 6px; font-size: .96rem; }
.review__meta small { display: block; color: var(--ink-mute); font-size: .78rem; }
.verified { width: 15px; height: 15px; color: #1a73e8; flex: none; }
.review p { color: var(--ink); font-size: .97rem; flex: 1; }
.review__source {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .78rem; color: var(--ink-mute); font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--teal); box-shadow: var(--sh-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 22px;
  font-weight: 700; font-size: 1.02rem; position: relative;
  font-family: var(--font-display); letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 13px; height: 13px; margin-top: -8px;
  border-right: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--teal-deep); }
.faq .faq__body { padding: 0 22px 22px; }
.faq .faq__body p { font-size: .98rem; margin: 0; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 4vw, 52px); align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 14px; }
.info-list li {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px 18px; transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.info-list li:hover { border-color: var(--teal); transform: translateX(3px); }
.info-list .icon { margin: 0; width: 46px; height: 46px; flex: none; border-radius: 13px; }
.info-list .icon svg { width: 21px; height: 21px; }
.info-list strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-mute); font-weight: 700; }
.info-list a, .info-list span.val { display: block; color: var(--ink); font-size: 1.03rem; font-weight: 600; }
.info-list a:hover { color: var(--teal-deep); }

.map { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.map iframe { width: 100%; height: 340px; border: 0; display: block; filter: saturate(.9); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-md); position: relative;
}
.form__head { margin-bottom: 22px; }
.form__head h3 { font-size: 1.45rem; margin-bottom: .2rem; }
.form__head p { font-size: .93rem; margin: 0; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; min-height: 52px;
  border: 1.5px solid var(--line); border-radius: 13px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A6570' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input::placeholder, .field textarea::placeholder { color: #9DB2B9; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,143,143,.14);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .note { display: flex; gap: .5rem; align-items: flex-start; color: var(--ink-soft); font-size: .85rem; margin-top: 14px; }
.form .note svg { width: 16px; height: 16px; color: var(--teal); flex: none; margin-top: 3px; }

/* urgent call panel */
.callout {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 26px; position: relative; overflow: hidden;
}
.callout::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 6px;
  background-image: repeating-linear-gradient(-45deg, var(--hi-vis) 0 9px, var(--ink) 9px 18px);
}
.callout__text { flex: 1; min-width: 200px; padding-left: 12px; }
.callout strong { display: block; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -.02em; }
.callout span { font-size: .9rem; color: #A9C2C8; }

/* ---------- Service-area chips ---------- */
.areas { margin: 0 0 26px; }
.areas__label {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px;
}
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: .87rem; font-weight: 600; color: var(--ink-soft);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chips li:hover { border-color: var(--teal); color: var(--teal-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #A9C2C8; padding: 0 0 30px; position: relative; }
.footer .hazard { height: 6px; }
.footer__inner { padding-top: clamp(52px, 6vw, 76px); }
.footer h3 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); font-weight: 800; }
.footer a { color: #A9C2C8; }
.footer a:hover { color: var(--hi-vis); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; font-size: .94rem; }
.footer ul a { display: inline-block; padding-block: 5px; }
.footer .brand { color: #fff; }
.footer__blurb { margin-top: 18px; max-width: 34ch; color: #A9C2C8; font-size: .95rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px;
  font-size: .86rem; display: flex; justify-content: space-between; gap: 10px 24px; flex-wrap: wrap;
  color: #8FA9B0;
}
/* Legal line: wraps as whole phrases rather than breaking the ABN mid-number. */
.footer__legal .sep { opacity: .5; }
.footer__legal .nb { white-space: nowrap; }
@media (max-width: 700px) {
  .footer__bottom { flex-direction: column; gap: 12px; }
  .footer__legal .sep { display: none; }
}

.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.socials a {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.14);
  transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), color .22s var(--ease);
}
.socials a:hover { background: var(--teal-cta); border-color: var(--teal-cta); transform: translateY(-3px); color: #fff; }
.socials svg { width: 19px; height: 19px; }

/* ---------- Floating call button ---------- */
.fab {
  position: fixed; right: 18px; bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90; display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--ink); padding: 15px 22px; min-height: 56px;
  border-radius: 999px; font-weight: 800; font-size: 1rem;
  box-shadow: 0 18px 36px -12px rgba(235,195,23,.9);
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .3s var(--ease);
}
.fab:hover { background: var(--gold-dark); color: var(--ink); transform: translateY(-3px); }
.fab svg { width: 20px; height: 20px; }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--gold); animation: fabPulse 2.4s infinite; pointer-events: none;
}
@keyframes fabPulse {
  0% { opacity: .75; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.32); }
}
.fab.is-hidden { opacity: 0; pointer-events: none; transform: translateY(16px); }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
/* the staggered steps keep their ramp offset when revealed */
.js .steps .step { opacity: 0; transform: translateY(22px); }
.js .steps .step.in { opacity: 1; transition: opacity .7s var(--ease), transform .45s var(--ease); transition-delay: var(--d, 0ms); }
.js .steps .step:nth-child(1).in { transform: translateY(0); }
.js .steps .step:nth-child(2).in { transform: translateY(-26px); }
.js .steps .step:nth-child(3).in { transform: translateY(-52px); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav a:not(.btn) { padding: 10px 9px; font-size: .9rem; }
  .nav .btn { padding: .8rem 1.15rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .hero__grid, .contact__grid, .app__grid, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero__frame { transform: none; }
  .hero__media { margin-top: 8px; }
  .hero__badge { left: 12px; bottom: 14px; }
  .hero__chip { right: 12px; top: 14px; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .trust__item { border-left: 0; padding: 16px 0; }
  .trust__item:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line-soft); }

  /* ramp flattens on mobile — the stagger stops being readable */
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps .step:nth-child(2),
  .steps .step:nth-child(3),
  .steps .step:nth-child(2):hover,
  .steps .step:nth-child(3):hover,
  .js .steps .step:nth-child(2).in,
  .js .steps .step:nth-child(3).in { transform: none; }
  .ramp__line { display: none; }
  .ramp__base { margin-top: 22px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* mobile nav */
  .nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px var(--gutter) 22px; display: none;
    box-shadow: 0 22px 40px -20px rgba(10,30,37,.3);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 15px 6px; border-bottom: 1px solid var(--line-soft); border-radius: 0; font-size: 1.05rem; }
  .nav a.is-active:not(.btn)::after { left: 6px; right: auto; width: 22px; bottom: 8px; }
  .nav__logins { display: contents; }
  .nav__logins .nav__corp + .nav__corp svg { display: block; }
  .nav__logins .nav__corp + .nav__corp::before { display: none; }
  .nav .btn { margin: 16px 0 0; width: 100%; }
  .nav-toggle { display: inline-flex; }
  .header .wrap { position: relative; }
}

@media (max-width: 700px) {
  .topbar { font-size: .8rem; }
  .topbar .wrap { flex-wrap: nowrap; gap: 14px; }
  .topbar__group { gap: 16px; flex-wrap: nowrap; }
  .topbar__hide { display: none; }
}
@media (max-width: 620px) {
  .topbar { font-size: .76rem; }
  .t-full { display: none; }
  .t-compact { display: inline; }
  .topbar .wrap { gap: 10px; }
  .topbar__item { gap: .35rem; }
}
@media (max-width: 360px) {
  .topbar__pulse { display: none; }
  .topbar { font-size: .72rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--2, .field-row, .footer__grid, .trust .wrap { grid-template-columns: 1fr; }
  .trust__item:nth-child(even) { padding-left: 0; border-left: 0; }
  .trust__item { border-top: 1px solid var(--line-soft); }
  .trust__item:first-child { border-top: 0; }
  .rating { justify-content: center; text-align: center; }
  .rating .btn { margin-left: 0; width: 100%; }
  .fab span { display: none; }
  .fab { padding: 0; width: 60px; height: 60px; justify-content: center; }
  .fab svg { width: 24px; height: 24px; }
  .hero__badge { position: static; margin-top: 16px; }
  .hero__actions .btn { width: 100%; }
  .hero__chip { right: 10px; top: 10px; }
  .callout { flex-direction: column; align-items: stretch; }
  .callout .btn { width: 100%; }
}

/* Tablet band: three-up grids became full-width single columns here, which made
   the photo cards enormous. Two-up is the right density for this range. */
@media (min-width: 641px) and (max-width: 960px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: repeat(4, 1fr); }
  .trust__item { padding: 18px 16px; }
  .trust__item:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-soft); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .steps .step { opacity: 1 !important; }
  .card:hover, .review:hover, .btn:hover, .store:hover, .socials a:hover, .fab:hover { transform: none; }
  .card--photo:hover img { transform: none; }
  .ramp__line path { stroke-dashoffset: 0; }
  .phone__route { stroke-dashoffset: 0; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .header, .fab, .map, .socials, .hero__chip { display: none !important; }
  body { font-size: 12pt; }
  .section { padding: 18px 0; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
