/* =============================================================================
   THE LIMOUSINE CONNECTIONS — Luxury Design System
   A single, self-contained stylesheet. Design tokens first, then components.
   Black · Gold · Ivory. Mobile-first. WCAG 2.2 AA. Core Web Vitals optimized.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* --- Brand color: Obsidian --- */
  --obsidian-900: #0A0A0B;
  --obsidian-800: #0D0D0F;
  --obsidian-700: #141417;
  --obsidian-600: #1B1B20;
  --obsidian-500: #24242B;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* --- Brand color: Gold (champagne, restrained) --- */
  --gold-100: #F3E4C2;
  --gold-300: #E8C77E;
  --gold-400: #D4AF6A;
  --gold-500: #C6A05C;
  --gold-600: #B8893D;
  --gold-grad: linear-gradient(135deg, #E8C77E 0%, #C6A05C 45%, #B8893D 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(232,199,126,.16), rgba(184,137,61,.06));

  /* --- Neutrals / Ivory --- */
  --ivory: #FAF8F4;
  --ivory-dim: #EFEBE3;
  --cloud: #C9C6BF;
  --mist: #9A968D;
  --slate: #6E6B64;

  /* --- Semantic --- */
  --bg: var(--obsidian-900);
  --bg-raised: var(--obsidian-700);
  --text: var(--ivory);
  --text-muted: var(--cloud);
  --text-faint: var(--mist);
  --accent: var(--gold-400);
  --success: #6FCF97;
  --danger: #E8836F;

  /* --- Glass --- */
  --glass-bg: rgba(20, 20, 23, 0.55);
  --glass-brd: rgba(255, 255, 255, 0.10);
  --glass-blur: 18px;

  /* --- Typography --- */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tracking-wide: 0.18em;
  --tracking-wider: 0.28em;

  /* Fluid type scale (clamp: min, preferred, max) */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --fs-lead: clamp(1.12rem, 1rem + 0.6vw, 1.35rem);
  --fs-h4: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-h3: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  --fs-h2: clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  --fs-h1: clamp(2.9rem, 2.1rem + 4vw, 5.5rem);

  /* --- Spacing (8pt) --- */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;

  /* --- Layout --- */
  --container: 1240px;
  --container-narrow: 900px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* --- Elevation --- */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow-gold: 0 12px 40px rgba(198,160,92,.22);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 420ms;
  --dur-slow: 800ms;

  --header-h: 84px;
}

/* -----------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--obsidian-600); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

::selection { background: var(--gold-400); color: var(--obsidian-900); }

/* Focus visibility — WCAG 2.2 (2.4.11 / 2.4.13) */
:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Skip link — WCAG 2.4.1 */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  z-index: 999; padding: 12px 20px;
  background: var(--gold-400); color: var(--obsidian-900);
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 12px; }

.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;
}

/* -----------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.grid { display: grid; gap: var(--sp-6); }
.flow > * + * { margin-top: var(--sp-4); }

/* -----------------------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-sans); font-size: var(--fs-eyebrow);
  font-weight: 500; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--gold-400);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px;
  background: var(--gold-grad); display: inline-block;
}
.eyebrow--center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold-grad); display: inline-block;
}
.lead { font-size: var(--fs-lead); color: var(--text-muted); font-weight: 300; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.text-center { text-align: center; }
.section-head { max-width: 640px; }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--sp-4); }
.section-head p { margin-top: var(--sp-4); }

/* -----------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --_bg: var(--gold-grad);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-3);
  padding: 0.95rem 1.9rem; min-height: 48px;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; position: relative;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold-grad); color: var(--obsidian-900); box-shadow: var(--shadow-gold); font-weight: 600; }
.btn--primary:hover { box-shadow: 0 16px 46px rgba(198,160,92,.36); }

.btn--ghost { background: rgba(255,255,255,.03); color: var(--ivory); border-color: var(--line-strong); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn--dark { background: var(--obsidian-900); color: var(--ivory); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1rem; min-height: 56px; }
.btn__icon { width: 18px; height: 18px; }

/* -----------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border-bottom-color: var(--line);
  height: 68px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: var(--sp-5); }

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.6rem; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--gold-400); margin-top: 4px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-6); list-style: none; }
.nav__link {
  position: relative; font-size: 0.92rem; font-weight: 400; color: var(--text-muted);
  padding-block: 6px; transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-grad); transition: width var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ivory); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.header__phone { display: none; align-items: center; gap: var(--sp-2); font-size: 0.92rem; font-weight: 500; }
.header__phone svg { width: 16px; height: 16px; color: var(--gold-400); }
.header__cta { display: none; }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 12px; background: transparent;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer;
}
.menu-toggle span { display: block; height: 1.5px; width: 100%; background: var(--ivory); transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,9,.86); backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-8) var(--sp-6);
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility var(--dur);
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-nav__link {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 500;
  color: var(--ivory); padding-block: var(--sp-2); display: inline-block;
  border-bottom: 1px solid var(--line); transition: color var(--dur-fast) var(--ease), padding-left var(--dur) var(--ease);
}
.mobile-nav__link:hover { color: var(--gold-300); padding-left: var(--sp-3); }
.mobile-nav__footer { margin-top: var(--sp-7); display: flex; flex-direction: column; gap: var(--sp-4); }

/* -----------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__bg--photo img { opacity: .9; object-position: 70% center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(10,10,11,.35), transparent 55%),
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.35) 40%, rgba(10,10,11,.92) 100%),
    linear-gradient(90deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.25) 60%, transparent 100%);
}
.hero__glow {
  position: absolute; z-index: -1; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,106,.16), transparent 65%);
  top: -180px; right: -140px; filter: blur(20px); pointer-events: none;
}
.hero__inner { width: 100%; }
.hero__content { max-width: 720px; }
.hero h1 { margin-top: var(--sp-5); }
.hero h1 .serif-italic { display: block; }
.hero__lead { margin-top: var(--sp-5); max-width: 540px; }
.hero__actions { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.hero__trust { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-6) var(--sp-7); align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: var(--sp-3); }
.hero__trust-item strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--ivory); }
.hero__trust-item span { font-size: 0.82rem; color: var(--text-faint); line-height: 1.3; max-width: 120px; }
.stars { color: var(--gold-400); letter-spacing: 2px; font-size: 0.95rem; }

/* Scroll cue */
.scroll-cue { position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%); display: none; flex-direction: column; align-items: center; gap: var(--sp-2); color: var(--text-faint); font-size: 0.7rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; }
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(var(--gold-400), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-300); animation: scrollcue 2.2s var(--ease) infinite; }
@keyframes scrollcue { 0% { top: -50%; } 100% { top: 100%; } }

/* -----------------------------------------------------------------------------
   8. BOOKING WIDGET (glass)
   -------------------------------------------------------------------------- */
.booking-widget {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  position: relative;
}
.booking-widget::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(232,199,126,.5), transparent 40%, transparent 60%, rgba(232,199,126,.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.booking-widget__tabs { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-5); border-bottom: 1px solid var(--line); }
.booking-tab {
  background: none; border: none; padding: var(--sp-3) var(--sp-4); cursor: pointer;
  color: var(--text-faint); font-size: 0.9rem; font-weight: 500; position: relative;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color var(--dur-fast);
}
.booking-tab[aria-selected="true"] { color: var(--gold-300); border-bottom-color: var(--gold-400); }
.booking-form { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; }
.field__control {
  display: flex; align-items: center; gap: var(--sp-3);
  background: rgba(255,255,255,.04); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 0 var(--sp-4); min-height: 52px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast);
}
.field__control:focus-within { border-color: var(--gold-400); background: rgba(255,255,255,.06); }
.field__control svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }
.field__control input, .field__control select {
  border: none; background: transparent; width: 100%; padding-block: 0.85rem;
  font-size: 0.98rem; outline: none;
}
.field__control input::placeholder { color: var(--slate); }
.field__control select { cursor: pointer; appearance: none; }
.field__control select option { background: var(--obsidian-700); color: var(--ivory); }
.booking-form__submit { margin-top: var(--sp-2); }
.quote-out {
  margin-top: var(--sp-4); padding: var(--sp-4); border-radius: var(--radius-sm);
  background: var(--gold-grad-soft); border: 1px solid rgba(212,175,106,.25);
  display: none; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.quote-out.is-shown { display: flex; }
.quote-out__label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gold-300); }
.quote-out__note { font-size: 0.82rem; color: var(--text-faint); margin-top: 4px; max-width: 260px; }

/* -----------------------------------------------------------------------------
   9. CARDS / GENERIC
   -------------------------------------------------------------------------- */
.card {
  background: linear-gradient(180deg, var(--obsidian-700), var(--obsidian-800));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,106,.35); box-shadow: var(--shadow); }

/* Service cards */
.services-grid { grid-template-columns: 1fr; }
.service-card { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--gold-grad-soft); border: 1px solid rgba(212,175,106,.25); color: var(--gold-300);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.45rem; }
.service-card p { color: var(--text-muted); font-size: 0.96rem; }
.service-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--gold-300); font-size: 0.9rem; font-weight: 500; }
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* -----------------------------------------------------------------------------
   10. FLEET SHOWCASE
   -------------------------------------------------------------------------- */
.fleet-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
.fleet-card { padding: 0; }
.fleet-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: radial-gradient(125% 125% at 50% 28%, #fbfaf8 0%, #f2efe9 62%, #eae5dc 100%); }
.fleet-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 7% 5%; transition: transform var(--dur-slow) var(--ease); background: transparent; }
.fleet-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(120,100,60,.06)); pointer-events: none; }
.fleet-card:hover .fleet-card__media img { transform: scale(1.06); }
.fleet-card__badge {
  position: absolute; top: var(--sp-4); left: var(--sp-4); z-index: 2;
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--glass-bg); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px); color: var(--gold-200, var(--gold-300));
}
.fleet-card__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.fleet-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-4); }
.fleet-card h3 { font-size: 1.5rem; }
.fleet-card__class { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); }
.fleet-card__specs { display: flex; gap: var(--sp-5); margin-top: var(--sp-4); flex-wrap: wrap; }
.fleet-spec { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.85rem; color: var(--text-muted); }
.fleet-spec svg { width: 16px; height: 16px; color: var(--gold-400); }
.fleet-card__foot { margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.fleet-card__price { font-size: 0.85rem; color: var(--text-faint); }
.fleet-card__price strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--ivory); display: block; }

/* -----------------------------------------------------------------------------
   11. PROCESS / STEPS
   -------------------------------------------------------------------------- */
.steps { grid-template-columns: 1fr; counter-reset: step; gap: var(--sp-6); }
.step { position: relative; padding-left: 0; }
.step__num {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 600;
  line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .9; display: block; margin-bottom: var(--sp-3);
}
.step h3 { font-size: 1.35rem; margin-bottom: var(--sp-2); }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* -----------------------------------------------------------------------------
   12. STATS BAND
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; line-height: 1; }
.stat__num .gold-text { display: inline; }
.stat__label { margin-top: var(--sp-2); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

/* -----------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
.testimonial { padding: var(--sp-6); }
.testimonial__stars { color: var(--gold-400); letter-spacing: 3px; margin-bottom: var(--sp-4); }
.testimonial__quote { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; line-height: 1.4; color: var(--ivory); }
.testimonial__author { margin-top: var(--sp-5); display: flex; align-items: center; gap: var(--sp-3); }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad-soft); border: 1px solid rgba(212,175,106,.3); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--gold-300); flex-shrink: 0; }
.testimonial__name { font-weight: 500; font-size: 0.95rem; }
.testimonial__meta { font-size: 0.8rem; color: var(--text-faint); }
.reviews-badge { display: inline-flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); border-radius: var(--radius-pill); background: rgba(255,255,255,.03); border: 1px solid var(--line-strong); }
.reviews-badge__g { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.reviews-badge__g span:nth-child(1){color:#4285F4}.reviews-badge__g span:nth-child(2){color:#EA4335}.reviews-badge__g span:nth-child(3){color:#FBBC05}.reviews-badge__g span:nth-child(4){color:#4285F4}.reviews-badge__g span:nth-child(5){color:#34A853}.reviews-badge__g span:nth-child(6){color:#EA4335}

/* -----------------------------------------------------------------------------
   14. CITY / SERVICE AREA
   -------------------------------------------------------------------------- */
.cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.city-link {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast); font-size: 0.95rem;
}
.city-link:hover { border-color: rgba(212,175,106,.4); background: var(--gold-grad-soft); color: var(--gold-100); }
.city-link svg { width: 15px; height: 15px; color: var(--gold-400); opacity: 0; transition: opacity var(--dur-fast); }
.city-link:hover svg { opacity: 1; }

/* -----------------------------------------------------------------------------
   15. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--sp-5) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ivory);
}
.faq-q__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q__icon::before, .faq-q__icon::after { content: ""; position: absolute; background: var(--gold-400); transition: transform var(--dur) var(--ease); }
.faq-q__icon::before { top: 11px; left: 3px; width: 18px; height: 2px; }
.faq-q__icon::after { top: 3px; left: 11px; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-q__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
.faq-a__inner { padding-bottom: var(--sp-5); color: var(--text-muted); max-width: 90%; }

/* -----------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 5rem); text-align: center; border: 1px solid var(--line-strong); }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,10,11,.9), rgba(10,10,11,.55)); }
.cta-band h2 { margin-bottom: var(--sp-4); }
.cta-band p { max-width: 560px; margin-inline: auto; margin-bottom: var(--sp-6); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

/* -----------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--obsidian-800); border-top: 1px solid var(--line); padding-block: var(--sp-8) var(--sp-6); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
.footer__grid > * { min-width: 0; } /* let columns shrink below content width so the email never overflows */
.footer__contact a { overflow-wrap: anywhere; }
.footer__brand { max-width: 340px; }
.footer__brand p { margin-top: var(--sp-4); color: var(--text-faint); font-size: 0.92rem; }
.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--text-muted); transition: all var(--dur-fast) var(--ease); }
.footer__social a:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: var(--sp-4); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--gold-300); }
.footer__contact li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--text-muted); font-size: 0.92rem; margin-bottom: var(--sp-3); }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: var(--sp-4); align-items: center; text-align: center; }
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.footer__legal a { font-size: 0.82rem; color: var(--text-faint); }
.footer__copy { font-size: 0.82rem; color: var(--slate); }

/* -----------------------------------------------------------------------------
   18. STICKY MOBILE BOOKING BAR
   -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: var(--sp-2); padding: var(--sp-3) var(--sp-4);
  padding-bottom: calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: rgba(10,10,11,.82); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line-strong);
  transform: translateY(120%); transition: transform var(--dur) var(--ease);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; padding-inline: var(--sp-4); font-size: 0.92rem; }
.sticky-bar .btn--ghost { flex: 0 0 auto; width: 52px; padding: 0; }

/* -----------------------------------------------------------------------------
   19. REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* -----------------------------------------------------------------------------
   20. DECOR
   -------------------------------------------------------------------------- */
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); border: 0; }
.section--alt { background: linear-gradient(180deg, var(--obsidian-800), var(--obsidian-900)); }
.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-5) var(--sp-7); align-items: center; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: var(--sp-3); color: var(--text-faint); font-size: 0.85rem; }
.trust-badge svg { width: 26px; height: 26px; color: var(--gold-400); }

/* Breadcrumbs */
.breadcrumbs { padding-top: calc(var(--header-h) + var(--sp-5)); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: 0.82rem; color: var(--text-faint); }
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: var(--sp-2); color: var(--slate); }

/* -----------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form__full { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 760px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
  .scroll-cue { display: flex; }
}
@media (min-width: 1000px) {
  .nav { display: block; }
  .menu-toggle { display: none; }
  .header__phone, .header__cta { display: inline-flex; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .sticky-bar { display: none; }
  .hero-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-8); align-items: center; }
}
@media (min-width: 1000px) and (max-width: 1199px) { .hero-layout { gap: var(--sp-6); } }

/* Print */
@media print {
  .header, .sticky-bar, .mobile-nav, .scroll-cue, .hero__bg { display: none !important; }
  body { color: #000; background: #fff; }
}
