/* ===========================================================================
   Denver Classic Limo — site design system (Dark + Gold)
   1. Tokens   2. Base   3. Header & nav   4. Buttons   5. Sections
   6. Hero     7. Cards  8. Fleet          9. Forms (contact)
  10. Footer  11. Utilities  12. Responsive
   ======================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:        #0b0c0e;
  --bg-2:      #111317;
  --surface:   #16181d;
  --surface-2: #1c1f25;
  --line:      #2a2d34;
  --line-soft: #202329;

  --text:      #f4f1ea;
  --text-soft: #b9b4a9;
  --text-faint:#858075;

  --gold:      #c9a45c;
  --gold-hi:   #e0c07f;
  --gold-deep: #a8853f;
  --gold-glow: rgba(201,164,92,.18);

  --danger:    #ef8a80;
  --danger-bg: rgba(239,138,128,.09);
  --ok:        #9fd3a8;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --fast: 160ms var(--ease);

  --max: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  color-scheme: dark;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-hi); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.12; color: var(--text); }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.site-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #111; padding: 12px 18px; font-weight: 700;
}
.site-skip:focus { left: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 78px);
  letter-spacing: -.01em;
}
.h2 { font-family: var(--serif); font-size: clamp(32px, 4.2vw, 50px); }
.h3 { font-family: var(--serif); font-size: 26px; }
.lede { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--text-soft); max-width: 58ch; }
.gold { color: var(--gold); }
em.gold { font-style: italic; }

/* ---------- 3. Header & nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,12,14,.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: .01em; }
.brand__tag { font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-main { margin-left: auto; }
.nav-main ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nav-main a {
  display: block; padding: 10px 14px;
  color: var(--text-soft); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: color var(--fast);
}
.nav-main a:hover { color: var(--text); }
.nav-main a[aria-current="page"] { color: var(--gold); }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px; white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px; padding: 11px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: transparent; color: var(--text); cursor: pointer;
}
.nav-toggle svg { width: 100%; height: 100%; display: block; }

/* ---------- 4. Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 14px 30px;
  border: 1px solid var(--gold); border-radius: 2px;
  background: var(--gold); color: #14120d;
  font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
}
.button:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: #14120d; }
.button:active { transform: translateY(1px); }
.button--ghost { background: transparent; color: var(--text); border-color: rgba(244,241,234,.35); }
.button--ghost:hover { background: transparent; color: var(--gold-hi); border-color: var(--gold); }
.button--sm { min-height: 42px; padding: 10px 20px; font-size: 12px; }
.button svg { width: 15px; height: 15px; }
.button:disabled { opacity: .6; cursor: progress; }

/* ---------- 5. Sections ---------- */
.band { padding: clamp(64px, 9vw, 120px) 0; }
.band--tight { padding: clamp(44px, 6vw, 72px) 0; }
.band--alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band__head { display: grid; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); max-width: 720px; }
.band__head--center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }

.page-hero {
  position: relative;
  padding: clamp(64px, 9vw, 110px) 0 clamp(40px, 6vw, 70px);
  background:
    radial-gradient(ellipse 60% 80% at 85% 0%, rgba(201,164,92,.13), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__inner { display: grid; gap: 18px; max-width: 760px; }
.page-hero .display { font-size: clamp(38px, 5.4vw, 64px); }

.rule { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; margin: 0; }

/* ---------- 6. Home hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,12,14,.96) 0%, rgba(11,12,14,.82) 42%, rgba(11,12,14,.35) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%);
}
.hero__inner { display: grid; gap: 26px; max-width: 700px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 22px;
  padding-top: 26px; border-top: 1px solid rgba(244,241,234,.12);
  font-size: 13px; letter-spacing: .06em; color: var(--text-soft);
}
.hero__facts strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0; }

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

.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--fast), transform var(--fast);
}
.svc-card:hover { border-color: rgba(201,164,92,.55); transform: translateY(-3px); }
.svc-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card__body { display: grid; gap: 10px; padding: 24px 24px 26px; flex: 1; align-content: start; }
.svc-card__body p { color: var(--text-soft); font-size: 15px; }
.svc-card__link {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.svc-card__link::after { content: "→"; transition: transform var(--fast); }
.svc-card__link:hover::after { transform: translateX(4px); }

.feature { display: grid; gap: 12px; padding: 30px 26px; border: 1px solid var(--line); background: var(--surface); }
.feature__icon { width: 42px; height: 42px; color: var(--gold); }
.feature__icon svg { width: 100%; height: 100%; }
.feature p { color: var(--text-soft); font-size: 15px; }
.feature h3 { font-family: var(--serif); font-size: 23px; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split__media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1px solid rgba(201,164,92,.45);
}
.split__body { display: grid; gap: 20px; }
.checklist { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 16px; height: 9px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translateY(-4px);
}

.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 55% 90% at 50% 100%, rgba(201,164,92,.16), transparent 70%), var(--bg-2);
}
.cta-band__inner { display: grid; gap: 20px; justify-items: center; }
.cta-band .lede { margin: 0 auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

/* ---------- 8. Fleet ---------- */
.fleet-card {
  display: grid; grid-template-rows: auto 1fr;
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color var(--fast);
}
.fleet-card:hover { border-color: rgba(201,164,92,.55); }
/* The vehicle cutouts are black on transparent — a soft light stage keeps them legible on dark. */
.fleet-card__stage {
  display: grid; place-items: center;
  aspect-ratio: 16 / 10; padding: 22px;
  background: radial-gradient(ellipse 70% 62% at 50% 58%, #e9e5dc 0%, #bdb7aa 55%, #2a2b2e 100%);
}
.fleet-card__stage img { max-height: 100%; width: auto; filter: drop-shadow(0 14px 14px rgba(0,0,0,.35)); }
.fleet-card__body { display: grid; gap: 12px; padding: 22px 24px 26px; align-content: start; }
.fleet-card__body p { color: var(--text-soft); font-size: 15px; }
.fleet-card__caps { display: flex; gap: 20px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); }
.fleet-card__caps strong { color: var(--gold); font-size: 16px; margin-right: 4px; }

/* ---------- 9. Forms (contact) ---------- */
.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: clamp(22px, 4vw, 40px);
}
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fgrid > .span-2 { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; min-width: 0; }
.field label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft);
}
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-2);
  color: var(--text);
  font: inherit; font-size: 16px;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #6b675f; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); background: var(--danger-bg); }
.field__error { display: none; font-size: 13.5px; color: var(--danger); }
.field.is-invalid .field__error { display: block; }
.form-note { font-size: 13px; color: var(--text-faint); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 8px; }
.form-alert {
  padding: 14px 16px; border: 1px solid; border-radius: var(--r-sm); font-size: 14.5px;
}
.form-alert[hidden] { display: none; }
.form-alert--error { color: var(--danger); border-color: rgba(239,138,128,.4); background: var(--danger-bg); }
.form-success { display: grid; gap: 14px; justify-items: start; }
.form-success[hidden] { display: none; }
.form-success__mark {
  width: 54px; height: 54px; padding: 14px; border-radius: 50%;
  background: var(--gold); color: #14120d;
}
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-card { display: grid; gap: 26px; padding: clamp(24px, 4vw, 36px); background: var(--surface); border: 1px solid var(--line); }
.contact-card__item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.contact-card__icon { width: 40px; height: 40px; padding: 10px; border: 1px solid rgba(201,164,92,.45); border-radius: 50%; color: var(--gold); }
.contact-card__icon svg { width: 100%; height: 100%; display: block; }
.contact-card__k { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }
.contact-card__v { font-size: 17px; color: var(--text); font-style: normal; }
.contact-card__v a { color: var(--text); text-decoration: none; }
.contact-card__v a:hover { color: var(--gold-hi); }

/* ---------- 10. Footer ---------- */
.site-footer { background: #08090a; border-top: 1px solid var(--line-soft); padding: 64px 0 28px; font-size: 14.5px; color: var(--text-soft); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h2 { font-size: 12px; font-family: var(--sans); font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: var(--text-soft); text-decoration: none; }
.site-footer a:hover { color: var(--gold-hi); }
.site-footer address { font-style: normal; display: grid; gap: 6px; }
.site-footer__about { display: grid; gap: 16px; max-width: 34ch; }
.site-footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--text-faint);
}

/* ---------- 11. Utilities ---------- */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- 12. Responsive ---------- */
.brand__name, .button { white-space: nowrap; }

@media (max-width: 1240px) {
  .header-phone span { display: none; }
}

@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Collapse the main nav into the menu button before it gets crowded. */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .site-header__cta { display: none; }
  .nav-main {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 22px;
  }
  .nav-main.is-open { display: block; }
  .nav-main ul { flex-direction: column; gap: 0; }
  .nav-main a { padding: 15px 4px; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
  .nav-main__cta { display: block !important; margin-top: 18px; }
  .nav-main__cta .button { width: 100%; }
}

@media (max-width: 920px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split__media::after { display: none; }
}

@media (max-width: 640px) {
  .site-header__bar { height: 66px; }
  .brand__name { font-size: 20px; }
  .brand__mark { width: 32px; height: 32px; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 64px 0 80px; }
  .hero::before { background: linear-gradient(180deg, rgba(11,12,14,.72), rgba(11,12,14,.94) 60%, var(--bg)); }
  .hero__actions .button { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .form-actions .button { width: 100%; }
}
.nav-main__cta { display: none; }

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

/* ---------- 13. Image heroes (inner pages) ---------- */
.page-hero--img { isolation: isolate; overflow: hidden; min-height: clamp(360px, 52vh, 540px); display: flex; align-items: flex-end; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 50%; }
.page-hero--img::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,12,14,.94) 0%, rgba(11,12,14,.72) 45%, rgba(11,12,14,.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 45%);
}
@media (max-width: 640px) {
  .page-hero--img::before { background: linear-gradient(180deg, rgba(11,12,14,.55), rgba(11,12,14,.92) 70%, var(--bg)); }
}

/* Fleet page uses studio photographs rather than the form's cutouts */
.fleet-card__photo { aspect-ratio: 3 / 2; overflow: hidden; background: #000; }
.fleet-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.fleet-card:hover .fleet-card__photo img { transform: scale(1.04); }

/* ---------- 14. Rates ---------- */
.rates { display: grid; gap: 22px; max-width: 900px; }
.rates > .h2 { margin-top: 40px; font-size: clamp(28px, 3.4vw, 40px); }
.rates > .h2:first-child { margin-top: 0; }
.rate-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-top: 2px solid var(--gold); }
.rate-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.rate-table thead th {
  background: var(--surface-2); color: var(--gold);
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  text-align: left; padding: 14px 18px;
}
.rate-table th[scope="row"] { font-weight: 500; color: var(--text); text-align: left; }
.rate-table th, .rate-table td { padding: 12px 18px; border-bottom: 1px solid var(--line-soft); }
.rate-table td { color: var(--text-soft); font-variant-numeric: tabular-nums; white-space: nowrap; width: 22%; }
.rate-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.rate-table tbody tr:hover { background: var(--gold-glow); }
.rate-table tbody tr:last-child > * { border-bottom: 0; }
.rates__note { color: var(--text-soft); }
.rates__note--strong { color: var(--text); font-weight: 700; }
.rates__list { gap: 10px; }

.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); background: var(--surface); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 22px 18px 52px; position: relative;
  font-family: var(--serif); font-size: 21px; color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "+"; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-family: var(--sans); font-size: 22px; line-height: 1;
}
.faq__item[open] summary::before { content: "–"; }
.faq__item p { padding: 0 22px 20px 52px; color: var(--text-soft); }
@media (max-width: 640px) {
  .rate-table th, .rate-table td { padding: 11px 12px; font-size: 14.5px; }
  .faq__item summary { font-size: 19px; }
}

/* Inner-page heroes fill the screen like the home hero. */
.page-hero--img { min-height: min(88vh, 820px); align-items: center; padding: 90px 0 110px; }
@media (max-width: 640px) { .page-hero--img { min-height: 0; padding: 64px 0 80px; } }
.rates__intro { color: var(--text-soft); font-size: 17px; max-width: 75ch; }

/* ---------- 15. Fleet carousel ----------
   Two identical groups side by side; the track slides left by exactly one
   group's width, then loops, so the motion never visibly restarts. */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.marquee__track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee__group { display: flex; gap: 22px; padding-right: 22px; }
.marquee .fleet-card { width: 340px; flex: none; }
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 640px) {
  .marquee .fleet-card { width: 280px; }
  .marquee__track { animation-duration: 35s; }
}
/* No motion requested: a plain swipeable row, without the duplicate set. */
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; padding: 0 var(--gutter); }
  .marquee__track { animation: none !important; }
  .marquee__group[aria-hidden="true"] { display: none; }
}
