/* ==========================================================================
   CarBookingClub.com — Global Stylesheet
   Built to the project design system (design_system.md)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — navy is now ink, not a background. */
  --orange:          #E85D04;
  --orange-hover:    #CE5104;
  --orange-active:   #B44503;
  --orange-tint:     #FFF3EA;
  --orange-line:     #FBD5B8;
  --blue:            #0B5FBF;
  --link-hover:      #08447F;
  --blue-hover:      #08447F;
  --blue-focus:      #2F80ED;
  --amber:           #F59E0B;
  --amber-dark:      #B45309;
  --info:            #2F80ED;
  --trust-green:     #00B67A;

  /* Backgrounds — the whole site sits on white with one tinted band. */
  --canvas:          #FFFFFF;
  --canvas-alt:      #F6F8FB;
  --canvas-warm:     #FDF8F3;
  --plate:           #E9EEF4;   /* backdrop for vehicle cutouts */
  --surface:         #FFFFFF;
  --promo-fill:      #FFF3EA;
  --promo-border:    #FBD5B8;
  --amber-fill:      #FEF6E7;
  --amber-text:      #92400E;
  --success-fill:    #EDFBF4;
  --success-border:  #B6EBD3;
  --error-fill:      #FEF3F2;
  --error-border:    #FBC5C0;
  --sale-red:        #C82121;

  /* Text */
  --text-heading:    #0E1B2A;
  --text-body:       #47576B;
  --text-muted:      #6B7C91;
  --text-placeholder:#94A3B8;
  --text-inverse:    #FFFFFF;

  /* Lines */
  --border:          #E4E9F0;
  --border-strong:   #C9D2DE;
  --divider:         #EEF2F7;

  /* Status */
  --success:         #0E9F6E;
  --success-dark:    #05603A;
  --error:           #D92D20;
  --error-dark:      #912018;

  /* Radius */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-xl:  12px;
  --radius-pill: 9999px;

  /* Elevation — light theme needs cooler, wider, weaker shadows. */
  --shadow-sm: 0 1px 2px 0 rgba(14, 27, 42, .05);
  --shadow-md: 0 2px 4px -1px rgba(14, 27, 42, .06), 0 4px 12px -2px rgba(14, 27, 42, .05);
  --shadow-lg: 0 4px 8px -2px rgba(14, 27, 42, .06), 0 12px 32px -8px rgba(14, 27, 42, .10);
  --shadow-xl: 0 8px 16px -4px rgba(14, 27, 42, .07), 0 24px 48px -12px rgba(14, 27, 42, .14);

  /* Spacing (8px grid) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12:48px;
  --space-16:64px;

  /* Layout */
  --container: 1200px;
  --container-wide: 1280px;
  --transition: all .2s ease-in-out;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

/* Keep in-page anchor targets clear of the sticky header. */
[id] { scroll-margin-top: 88px; }

h1, h2, h3, h4 { color: var(--text-heading); margin: 0 0 var(--space-4); }
h1 { font-size: 30px; font-weight: 700; line-height: 1.15; letter-spacing: -.025em; }
h2 { font-size: 23px; font-weight: 700; line-height: 1.22; letter-spacing: -.02em; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.35; }
h4 { font-size: 16px; font-weight: 600; line-height: 1.4; }

p { margin: 0 0 var(--space-4); }

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--link-hover); text-decoration: underline; }

ul, ol { margin: 0 0 var(--space-4); padding-left: var(--space-5); }
li { margin-bottom: var(--space-2); }

:focus-visible { outline: 2px solid var(--blue-focus); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: var(--space-3) var(--space-4);
  border-radius: 0 0 var(--radius-md) 0; font-weight: 700;
}
.skip-link:focus { left: 0; text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-4); }

/* Sections sit on white by default. --alt is the one tinted band, and it is
   used to group runs of content, not to stripe every other section. */
.section { padding: var(--space-8) 0; }
.section--alt { background: var(--canvas-alt); }
.section.section--tight { padding: var(--space-6) 0; }
.section--divided { border-top: 1px solid var(--border); }

/* Left-aligned by default: a wall of centred headings is what made the page
   read as filler. Centring is now opt-in via .section-head--center. */
.section-head { max-width: 640px; margin: 0 0 var(--space-6); }
.section-head h2 { margin-bottom: var(--space-2); }
.section-head p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Heading with a trailing action on the same baseline (desktop). */
.section-bar {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.section-bar .section-head { margin-bottom: 0; }

.grid { display: grid; gap: var(--space-4); }
.grid--tight { gap: var(--space-3); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.lead { font-size: 16px; line-height: 1.6; color: var(--text-body); }
.caption { font-size: 13px; line-height: 1.4; }

/* Constrained reading measure for long-form blocks. */
.measure { max-width: 860px; margin-left: auto; margin-right: auto; }

/* Spacing utilities — on the 8px scale only, so nothing invents its own step. */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   4. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--surface);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); min-height: 64px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand:hover { text-decoration: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0; flex-shrink: 0;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); color: var(--text-heading); cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--canvas-alt); }

.main-nav { display: none; }
.main-nav.is-open { display: block; }

.main-nav ul {
  list-style: none; margin: 0; padding: var(--space-2) 0 var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-1);
  border-top: 1px solid var(--border);
}
.main-nav li { margin: 0; }

.main-nav a {
  display: block; padding: var(--space-3) var(--space-2);
  color: var(--text-body); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-md);
}
.main-nav a:hover { color: var(--text-heading); text-decoration: none; background: var(--canvas-alt); }
.main-nav a.is-active { color: var(--text-heading); font-weight: 700; }


/* Header call button. Outlined rather than filled: the page has exactly one
   filled orange control (Search Cars), and a second one competes with it. */
.header-call {
  display: inline-flex; align-items: center; gap: var(--space-2);
  flex-shrink: 0; margin-left: auto;
  background: var(--surface); color: var(--text-heading);
  border: 1px solid var(--border-strong);
  font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  padding: 6px 14px 6px 6px; border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: var(--transition);
}
.header-call:hover {
  background: var(--orange-tint); border-color: var(--orange-line);
  color: var(--text-heading); text-decoration: none;
}

.header-call__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--orange-tint); color: var(--orange);
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: var(--space-3) var(--space-5);
  border: 1px solid transparent; border-radius: var(--radius-md);
  cursor: pointer; text-align: center; transition: var(--transition);
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--orange); color: #fff; font-size: 16px; font-weight: 700;
  padding: 14px 28px;
}
.btn-primary:hover { background: var(--orange-hover); color: #fff; }
.btn-primary:active { background: var(--orange-active); }
/* The primary CTA carries its own orange focus ring — the global blue ring reads
   as a different control on an orange field. */
.btn-primary:focus-visible { outline: 2px solid var(--orange-active); outline-offset: 2px; }

.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--border-strong); border-color: var(--border-strong);
  color: var(--text-placeholder); box-shadow: none; cursor: not-allowed;
  transform: none; pointer-events: none;
}

.btn-secondary { background: var(--surface); color: var(--text-heading); border-color: var(--border-strong); padding: 10px 18px; }
.btn-secondary:hover { background: var(--canvas-alt); border-color: var(--text-placeholder); color: var(--text-heading); }

.btn-ghost { background: transparent; color: var(--blue); padding: var(--space-2) var(--space-3); }
.btn-ghost:hover { background: var(--canvas-alt); color: var(--link-hover); }

.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
/* A single warm wash rather than a navy slab. The search card is the object
   that has to stand out here, so the surface behind it stays quiet. */
.hero {
  position: relative;
  background: var(--canvas-warm);
  border-bottom: 1px solid var(--border);
  padding: var(--space-8) 0 var(--space-12);
}
.hero-inner { max-width: 680px; }

/* Hero art. The vehicle is a transparent cutout, so it needs a plate under it
   or it reads as clip-art floating on the wash. */
.hero-grid { display: grid; gap: var(--space-6); align-items: center; }
.hero-art { position: relative; display: none; }
.hero-art::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 62%, #FFE8D4 0%, rgba(255,232,212,0) 68%);
}
.hero-art img { position: relative; z-index: 1; width: 100%; height: auto; }

/* The hero is the one place with a display size — everywhere else stays on
   the h1/h2 scale, so this reads as the entry point rather than as noise. */
.hero h1 {
  font-size: 34px; line-height: 1.1; letter-spacing: -.03em;
  color: var(--text-heading); margin-bottom: var(--space-3);
}
.hero p { color: var(--text-body); font-size: 16px; line-height: 1.6; max-width: 620px; }
.hero p:last-child { margin-bottom: 0; }

.hero-badges {
  list-style: none; margin: var(--space-5) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5);
}
.hero-badges li { margin: 0; }

/* Borderless: three bordered green capsules floating on the hero read as
   decoration. As plain checked text they read as facts. */
.pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--text-body); font-size: 14px; font-weight: 500;
}
.pill svg { flex-shrink: 0; color: var(--success); }

.page-hero {
  background: var(--canvas-warm);
  border-bottom: 1px solid var(--border);
  padding: var(--space-8) 0;
}
.page-hero h1 { color: var(--text-heading); margin-bottom: var(--space-2); }
.page-hero p { color: var(--text-body); font-size: 16px; max-width: 680px; margin: 0; }

.breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-3); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span { color: var(--text-heading); font-weight: 600; }
.breadcrumbs .sep { margin: 0 var(--space-2); color: var(--border-strong); font-weight: 400; }

/* Light-surface variant (spec 6.4 — Breadcrumbs) */
.breadcrumbs--light { color: var(--text-muted); }
.breadcrumbs--light a { color: var(--text-muted); }
.breadcrumbs--light a:hover { color: var(--blue); }
.breadcrumbs--light span { color: var(--text-heading); font-weight: 700; }
.breadcrumbs--light .sep { color: var(--text-placeholder); }

/* --------------------------------------------------------------------------
   7. Search Widget
   -------------------------------------------------------------------------- */
/* Pulled below the hero's bottom edge so it straddles the wash and the white
   below it — that overlap is what makes it read as the primary object. */
.search-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: var(--space-5); margin-top: var(--space-8); margin-bottom: calc(var(--space-12) * -1);
  position: relative; z-index: 2;
}
.search-card h2 {
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: var(--space-4); padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--divider);
}

.search-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }

.field { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-body); }

.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap svg { position: absolute; left: 12px; color: var(--text-muted); pointer-events: none; }

.input, .select {
  width: 100%; height: 48px; /* 44px at >=1024px, see Responsive */
  font-family: inherit; font-size: 14px; color: var(--text-heading);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 10px 14px;
  transition: var(--transition);
}
.input-wrap .input { padding-left: 38px; }
.input::placeholder { color: var(--text-placeholder); }
.input:focus, .select:focus {
  border-color: var(--blue-focus); outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .2);
}
.input.is-error, .select.is-error, .input[aria-invalid="true"], .select[aria-invalid="true"] {
  border-color: var(--error); box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}
.input:disabled, .select:disabled {
  background: var(--border); color: var(--text-placeholder); cursor: not-allowed;
}

.select {
  appearance: none; -webkit-appearance: none;
  padding-right: 32px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

.field-pair { display: grid; grid-template-columns: 1fr 110px; gap: var(--space-2); }

.checkbox-row { display: flex; align-items: center; gap: var(--space-2); }
.checkbox-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; margin: 0; flex-shrink: 0; cursor: pointer;
  background: var(--surface); border: 2px solid var(--text-placeholder);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-color: var(--blue);
}
.checkbox-row label { font-size: 14px; color: var(--text-body); cursor: pointer; font-weight: 400; }

.search-actions { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.search-note { font-size: 12px; color: var(--text-muted); margin: 0; }

.alert {
  display: none; align-items: flex-start; gap: var(--space-2);
  background: var(--error-fill); border: 1px solid var(--error-border); color: var(--error-dark);
  font-size: 13px; font-weight: 500; padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md); margin-top: var(--space-3);
}
.alert.is-visible { display: flex; }
.alert svg { flex-shrink: 0; margin-top: 2px; }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-5);
  transition: var(--transition); height: 100%;
}
.card h3 { margin-bottom: var(--space-2); font-size: 17px; }
.card p { color: var(--text-muted); margin: 0; font-size: 14px; line-height: 1.6; }

a.card { display: block; color: inherit; }
a.card:hover, .card--link:hover {
  border-color: var(--border-strong); box-shadow: var(--shadow-md);
  text-decoration: none;
}
a.card:hover h3 { color: var(--blue); }

.card-icon {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-tint); color: var(--orange);
  border-radius: var(--radius-lg); margin-bottom: var(--space-4);
}

.card-link {
  display: inline-flex; align-items: center; gap: var(--space-1);
  margin-top: var(--space-3); font-size: 14px; font-weight: 600; color: var(--blue);
}

/* Trip-type cards get a mark of their own: these four are concepts, not
   vehicles, so an icon carries them where a car photo would not. */
.card-mark {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--canvas-alt); color: var(--text-heading);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: var(--space-4);
}
a.card:hover .card-mark { background: var(--orange-tint); border-color: var(--orange-line); color: var(--orange); }

/* Card media (vehicle photography). Cutouts sit on a tinted plate rather than
   a white panel, so the card doesn't read as an empty box with a car in it. */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  margin: 0; padding: var(--space-4);
  /* Distinctly tinted, never white: half this fleet is white or silver, and a
     white cutout on a white plate is an empty card. */
  background: var(--plate); border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 9; overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .25s ease-out;
}
.card--media .card-body { padding: var(--space-5); flex: 1 1 auto; }
a.card--media:hover .card-media img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  a.card--media:hover .card-media img { transform: none; }
}

/* Fleet strip — visual proof of range, sitting between the hero and the first
   block of claims. Scrolls horizontally rather than wrapping into a ragged grid.
   The wrapper's edge fade is the only cue that it scrolls, since overlay
   scrollbars are invisible at rest. */
.fleet-wrap { position: relative; }
.fleet-wrap::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 64px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--canvas) 90%);
}
.fleet {
  display: flex; gap: var(--space-3);
  margin: 0; padding: 0 0 var(--space-3); list-style: none;
  overflow-x: auto; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.fleet li {
  margin: 0; flex: 0 0 auto; width: 190px; scroll-snap-align: start;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3);
  background: var(--plate); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.fleet img { width: 100%; height: auto; }

.fleet-note { margin: var(--space-3) 0 0; font-size: 13px; color: var(--text-muted); }

/* Locations. Six full cards for six city names was more container than
   content — these are one-line destinations, so they get one line each. */
.location-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.location-list li { margin: 0; border-bottom: 1px solid var(--border); }

.location-link {
  display: flex; align-items: baseline; gap: var(--space-3);
  padding: var(--space-4) var(--space-2); color: inherit;
}
.location-link:hover { text-decoration: none; background: var(--canvas-alt); }
.location-link b {
  font-size: 16px; font-weight: 700; color: var(--text-heading);
  letter-spacing: -.01em; flex-shrink: 0;
}
.location-link:hover b { color: var(--blue); }
.location-link span { font-size: 14px; color: var(--text-muted); }
.location-link .arrow { margin-left: auto; color: var(--text-placeholder); font-size: 16px; }

/* The airport code is what a traveller actually scans this list for, so it is
   set as a badge rather than buried in the sub-label. */
.code {
  flex-shrink: 0; align-self: center;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  color: var(--text-body); background: var(--canvas-alt);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 3px 6px;
}
.location-link:hover .code { background: var(--orange-tint); border-color: var(--orange-line); color: var(--orange); }
.section--alt .code { background: var(--surface); }

/* Numbered steps. Boxed steps fought with the boxed cards above and below,
   so the sequence is drawn with a rule and numbers instead of four more cards. */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-6); }
.steps li { margin: 0; padding-top: var(--space-4); border-top: 2px solid var(--border); }
.steps h3 { font-size: 17px; margin: var(--space-3) 0 var(--space-2); }
.steps p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: .06em; text-transform: uppercase;
}

/* Feature rows — icon beside the text, no box. Used where the content is a
   short claim rather than a destination you can click into. */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-6); }
.feature-list li { margin: 0; display: flex; gap: var(--space-4); align-items: flex-start; }
.feature-list h3 { font-size: 16px; margin: 0 0 var(--space-1); }
.feature-list p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-tint); color: var(--orange); border-radius: var(--radius-lg);
}

/* Read-more link list, for the "before you rent" reference topics. */
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.link-list li { margin: 0; border-top: 1px solid var(--border); }
.link-list li:last-child { border-bottom: 1px solid var(--border); }
.link-list a { display: block; padding: var(--space-4) var(--space-2); color: inherit; }
.link-list a:hover { background: var(--canvas-alt); text-decoration: none; }
.link-list b {
  display: block; font-size: 16px; font-weight: 700; color: var(--text-heading);
  margin-bottom: var(--space-1);
}
.link-list a:hover b { color: var(--blue); }
.link-list span { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Review cards */
.review-card { padding-top: var(--space-4); border-top: 2px solid var(--border); height: 100%; }
.review-card blockquote { margin: 0 0 var(--space-4); font-size: 15px; line-height: 1.65; color: var(--text-heading); }
.review-card cite {
  font-style: normal; font-size: 14px; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: var(--space-3);
}

/* Initials, not stock portraits — a face we cannot source is worse than none. */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--orange-tint); color: var(--orange);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.stars { display: flex; gap: 2px; color: var(--trust-green); margin-bottom: var(--space-3); }

/* Promo banner */
.promo-banner {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--promo-fill); border: 1px solid var(--promo-border);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5);
}
.promo-banner h3 { margin: 0 0 var(--space-1); font-size: 16px; }
.promo-banner p { margin: 0; font-size: 13px; color: var(--amber-text); }

.badge {
  display: inline-block; background: var(--sale-red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 2px 6px; border-radius: var(--radius-sm);
}

/* Sale accent strip (spec 1 — Sale Accent Gradient) */
.sale-strip {
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 500; text-align: center;
  padding: var(--space-2) var(--space-4);
}
.sale-strip a { color: #fff; font-weight: 700; text-decoration: underline; }

/* --------------------------------------------------------------------------
   8b. Trust, Supplier & Carousel Components  (design_system.md §5, §6.2, §6.5)
   -------------------------------------------------------------------------- */

/* Numeric UI — tabular figures so counters and prices don't jitter (spec 2). */
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* Trust score widget (spec 5 — Trust Badges).
   Score and review count are content, not decoration: populate from real data. */
.trust-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-2) var(--space-3);
}
.trust-badge .stars { margin-bottom: 0; }
.trust-badge-score { font-size: 14px; font-weight: 700; color: var(--text-heading); }
.trust-badge-meta  { font-size: 12px; color: var(--text-muted); }

/* Supplier logo grid (spec 3 — Supplier Logo Grid; spec 6.2 — Supplier Logo Cards) */
.supplier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

.supplier-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-3) var(--space-4);
  min-height: 64px; transition: var(--transition);
}
.supplier-card img { max-height: 40px; max-width: 120px; width: auto; object-fit: contain; }
.supplier-card:hover {
  border-color: var(--blue-focus); box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  transform: scale(1.03);
}

/* Carousel controls (spec 6.1 — Icon Carousel Buttons) */
.carousel-nav { display: flex; gap: var(--space-2); }
.carousel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); color: var(--text-heading);
  cursor: pointer; transition: var(--transition);
}
.carousel-btn:hover { background: var(--canvas-alt); border-color: var(--text-placeholder); }
.carousel-btn:disabled { color: var(--text-placeholder); cursor: not-allowed; }

/* Countdown timer box (spec 6.5 — Countdown Timer Box).
   Digits are tabular; unit labels are micro-uppercase. */
.countdown {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: var(--amber-fill); color: var(--amber-text);
  border-radius: var(--radius-md); padding: var(--space-2) var(--space-3);
}
.countdown-label { font-size: 13px; font-weight: 500; }
.countdown-unit  { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.countdown-unit b { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
.countdown-unit span {
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 0; }

.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: none; border: 0; padding: var(--space-4) var(--space-5);
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text-heading);
  text-align: left; cursor: pointer; transition: var(--transition);
}
.accordion-trigger:hover { background: var(--canvas-alt); }
.accordion-trigger svg { flex-shrink: 0; color: var(--text-muted); transition: transform .3s ease-in-out; }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-in-out; }
.accordion-panel.is-open { grid-template-rows: 1fr; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 var(--space-5) var(--space-4); color: var(--text-body); font-size: 14px; }

/* --------------------------------------------------------------------------
   10. Prose (long-form pages)
   -------------------------------------------------------------------------- */
.prose {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-6) var(--space-5);
  max-width: 800px; margin: 0 auto;
}
.prose h2 { margin-top: var(--space-8); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--space-6); }
.prose p, .prose li { font-size: 16px; line-height: 1.65; }
.prose > p:last-child { margin-bottom: 0; }

.notice {
  background: var(--canvas-alt); border: 1px solid var(--border);
  border-left: 4px solid var(--amber); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.notice p { font-size: 14px; color: var(--text-body); }
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: var(--text-heading); }
.notice--info { border-left-color: var(--info); }
.notice--error { border-left-color: var(--error); background: var(--error-fill); border-color: var(--error-border); }

/* --------------------------------------------------------------------------
   11. CTA Band
   -------------------------------------------------------------------------- */
/* The one warm block on the page, so the closing CTA is the only thing that
   interrupts the white rhythm. */
.cta-band {
  background: var(--orange-tint);
  border-top: 1px solid var(--orange-line);
  border-bottom: 1px solid var(--orange-line);
  text-align: center; padding: var(--space-12) 0;
}
.cta-band h2 { color: var(--text-heading); margin-bottom: var(--space-3); }
.cta-band p { color: var(--text-body); font-size: 16px; max-width: 520px; margin: 0 auto var(--space-6); }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--canvas-alt); border-top: 1px solid var(--border);
  color: var(--text-body); padding: var(--space-12) 0 var(--space-6);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }

.footer-brand img { height: 36px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--text-muted); max-width: 320px; }

.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-heading); margin-bottom: var(--space-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a { font-size: 14px; color: var(--text-body); }
.footer-col a:hover { color: var(--blue); text-decoration: none; }

.footer-address { font-size: 13px; line-height: 1.6; font-style: normal; color: var(--text-muted); }
.footer-address strong { color: var(--text-heading); display: block; margin-bottom: var(--space-1); font-weight: 700; }

.footer-bottom {
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--space-3);
  font-size: 13px; color: var(--text-muted);
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   13. Mobile Call Bar
   -------------------------------------------------------------------------- */
/* Pinned to both edges rather than centred with a width, so it can never
   overflow the viewport at any screen size. Every fixed-size child is
   flex-shrink: 0 and the text column is min-width: 0, which is what actually
   stops a long phone number from pushing the bar past its container. */
.call-bar {
  position: fixed;
  z-index: 90;
  left:   calc(var(--space-3) + env(safe-area-inset-left));
  right:  calc(var(--space-3) + env(safe-area-inset-right));
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom));
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.call-bar__inner {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px var(--space-3);
  min-width: 0;
}

.call-bar__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange-tint); color: var(--orange);
  border-radius: var(--radius-pill);
}

/* min-width: 0 lets the flex item shrink below its content width so the
   ellipsis below can actually take effect. */
.call-bar__text { flex: 1 1 auto; min-width: 0; }

.call-bar__label {
  margin: 0; font-size: 12px; line-height: 1.3; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.call-bar__num {
  display: block;
  font-size: 17px; font-weight: 700; line-height: 1.25; color: var(--text-heading);
  letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.call-bar__num:hover { color: var(--orange); text-decoration: none; }

.call-bar__action {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange); color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(255, 90, 0, .3);
  transition: var(--transition);
}
.call-bar__action:hover { background: var(--orange-hover); color: #fff; text-decoration: none; }
.call-bar__action:focus-visible { outline: 3px solid rgba(255, 90, 0, .45); outline-offset: 2px; }

.call-bar__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0; padding: 0;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-pill); color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.call-bar__close:hover { background: var(--canvas-alt); color: var(--text-heading); }

/* Keep the last of the footer clear of the bar while it is showing. */
body.has-call-bar { padding-bottom: 84px; }

/* Very narrow phones: drop the redundant round call button — the whole
   number is already a tel: link — rather than letting the row squeeze. */
@media (max-width: 359px) {
  .call-bar__inner { gap: var(--space-2); padding: 10px var(--space-2); }
  .call-bar__avatar { display: none; }
  .call-bar__num { font-size: 16px; }
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
/* Very narrow phones: the header carries logo + call + menu, so the call
   button drops its label and keeps just the icon rather than wrapping. */
@media (max-width: 359px) {
  .header-inner { gap: var(--space-2); }
  .header-call { padding: 4px; }
  .header-call__num { display: none; }
}

@media (min-width: 640px) {
  .supplier-grid { grid-template-columns: repeat(3, 1fr); }
  .location-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-8); }
  .link-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-8); }
  /* On two columns the top rule already separates each row, so the shared
     bottom border would double up on the last row of each column. */
  .link-list li:last-child { border-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-6); }
  .feature-list { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-8); }
  .section-bar { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .search-actions { flex-direction: row; align-items: center; justify-content: space-between; }
  .search-actions .btn { flex-shrink: 0; }
  .promo-banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  h1 { font-size: 32px; }
  .hero h1 { font-size: 44px; }
  .hero { padding: var(--space-12) 0 var(--space-16); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .feature-list { grid-template-columns: repeat(3, 1fr); }
  .fleet li { width: 210px; }
  /* The call bar is mobile-only — the header button covers larger screens. */
  .call-bar { display: none; }
  body.has-call-bar { padding-bottom: 0; }
  h2 { font-size: 24px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: var(--space-16) 0; }
  .section-head { margin-bottom: var(--space-8); }
  .section-bar { margin-bottom: var(--space-8); }
  .container { padding: 0 var(--space-6); }
  /* Search container: 8px mobile -> 12px desktop (spec 6.2) */
  .search-card { padding: var(--space-6); border-radius: var(--radius-xl); }
  .prose { padding: var(--space-8); }
}

@media (min-width: 1024px) {
  /* Inputs: 48px touch target on mobile -> 44px on desktop (spec 6.3) */
  .input, .select { height: 44px; }
  .location-list { grid-template-columns: repeat(3, 1fr); }
  .link-list { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 48px; }
  .search-card { padding: var(--space-6) var(--space-8) var(--space-8); }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: var(--space-8); }
  .hero-art { display: block; }
  .supplier-grid { grid-template-columns: repeat(6, 1fr); }
  .nav-toggle { display: none; }
  .main-nav { display: block !important; }
  .main-nav ul { flex-direction: row; align-items: center; justify-content: center; gap: var(--space-1); padding: 0; border-top: 0; }
  .main-nav a { padding: var(--space-2) var(--space-3); font-size: 13px; }
  .header-inner { min-height: 72px; gap: var(--space-4); }
  /* Source order puts the call button next to the logo for mobile reach;
     on desktop it belongs at the far right, with the nav taking the space
     between logo and call button so its links sit centred. */
  .main-nav { order: 2; flex: 1 1 auto; }
  .header-call { order: 3; margin-left: 0; font-size: 13px; }
  .header-call__icon { width: 26px; height: 26px; }
  .search-grid { grid-template-columns: repeat(4, 1fr); }
  .search-grid .field--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
