/* ==========================================================================
   MERIDIAN — Private Fleet
   Author stylesheet · HTML5 / CSS3 · no framework, no JavaScript
   --------------------------------------------------------------------------
   00. Design tokens          08. Fleet
   01. Reset & base           09. Why choose us
   02. Typography             10. Luxury experience
   03. Buttons                11. How it works
   04. Layout primitives      12. Testimonials
   05. Header & nav           13. Final CTA
   06. Hero                   14. Footer
   07. Booking bar & stats    15. Responsive
                              16. Motion & print
   ========================================================================== */


/* ==========================================================================
   00. DESIGN TOKENS — change these, the whole site follows
   ========================================================================== */

:root {

  /* --- Core palette (the six the brief asked for) ----------------------- */
  --primary-color:   #0a0b0d;   /* charcoal / near-black          */
  --secondary-color: #f5f6f8;   /* light surface                  */
  --accent-color:    #d8b46a;   /* champagne gold                 */
  --text-color:      #14161a;   /* body copy on light             */
  --light-text:      #ffffff;   /* copy on dark                   */
  --border-color:    #e4e6ea;   /* hairlines on light             */

  /* --- Extended ramp ---------------------------------------------------- */
  --primary-700: #101216;
  --primary-600: #171a20;
  --primary-500: #21252d;

  --surface:     #ffffff;
  --surface-alt: var(--secondary-color);

  --accent-light:  #e8ca8d;
  --accent-strong: #b8924a;
  --accent-soft:   rgba(216, 180, 106, 0.14);

  --silver:      #9aa1ab;
  --text-muted:  #5d6570;
  --text-faint:  #8d949e;
  --light-muted: rgba(255, 255, 255, 0.62);
  --light-faint: rgba(255, 255, 255, 0.38);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* --- Type ------------------------------------------------------------- */
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-accent:  "Instrument Serif", Georgia, "Times New Roman", serif;

  --fs-hero:  clamp(2.9rem, 6.6vw, 6rem);
  --fs-h2:    clamp(2.05rem, 4.3vw, 3.5rem);
  --fs-h3:    clamp(1.2rem, 1.1vw + 0.95rem, 1.5rem);
  --fs-lede:  clamp(1rem, 0.3vw + 0.95rem, 1.15rem);
  --fs-body:  clamp(0.9375rem, 0.2vw + 0.9rem, 1rem);
  --fs-sm:    0.875rem;
  --fs-xs:    0.8125rem;
  --fs-label: 0.6875rem;

  /* --- Spacing system (4px base) ---------------------------------------- */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.5rem;   --sp-8: 3rem;
  --sp-9: 4rem;     --sp-10: 5rem;    --sp-11: 6rem;    --sp-12: 8rem;

  --section-y: clamp(4.5rem, 7.5vw, 7.5rem);
  --gutter:    clamp(1.15rem, 3.6vw, 3rem);
  --maxw:      1280px;
  --header-h:  clamp(66px, 6.5vw, 80px);

  /* --- Radius ----------------------------------------------------------- */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   34px;
  --radius-pill: 999px;

  /* --- Elevation -------------------------------------------------------- */
  --shadow-sm:     0 1px 2px rgba(10, 11, 13, 0.05), 0 4px 12px -4px rgba(10, 11, 13, 0.08);
  --shadow-md:     0 12px 30px -12px rgba(10, 11, 13, 0.22), 0 2px 8px -2px rgba(10, 11, 13, 0.08);
  --shadow-lg:     0 34px 70px -28px rgba(10, 11, 13, 0.45), 0 6px 18px -8px rgba(10, 11, 13, 0.16);
  --shadow-accent: 0 16px 34px -14px rgba(216, 180, 106, 0.6);

  /* --- Motion ----------------------------------------------------------- */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  0.2s;
  --dur:       0.38s;
  --dur-slow:  0.75s;
}


/* ==========================================================================
   01. RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  background: var(--surface);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }

:where(section, footer) { scroll-margin-top: calc(var(--header-h) + 16px); }

::selection { background: var(--accent-color); color: var(--primary-color); }

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 50%; top: 0;
  z-index: 999;
  transform: translate(-50%, -130%);
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.8rem 1.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }


/* ==========================================================================
   02. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 108%;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  letter-spacing: -0.01em;
  color: var(--accent-color);
}

.h2 { font-size: var(--fs-h2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-color);
}

.stars {
  color: var(--accent-color);
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--light-muted);
  margin-bottom: var(--sp-5);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 0 rgba(216, 180, 106, 0.6);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  70%  { box-shadow: 0 0 0 8px rgba(216, 180, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 180, 106, 0); }
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.price__cur {
  font-size: 0.5em;
  vertical-align: 0.55em;
  color: var(--accent-color);
  margin-right: 0.08em;
}
.price__per {
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-left: 0.25em;
}
.price--sm { font-size: clamp(1.5rem, 2vw, 1.75rem); }


/* ==========================================================================
   03. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--accent  { background: var(--accent-color); color: var(--primary-color); }
.btn--accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--outline { border-color: var(--border-dark); color: var(--light-text); }
.btn--outline:hover {
  border-color: var(--accent-color);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn--ghost   { border-color: var(--border-color); color: var(--text-color); }
.btn--ghost:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
}

.btn--dark    { background: var(--primary-color); color: var(--light-text); }
.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm    { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.btn--lg    { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }


/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: end;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}
.section-head__aside {
  justify-self: end;
  max-width: 42ch;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.section-head--center {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: var(--sp-4);
}
.chips li {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-color);
}

/* Image plate — a photo that is slow or missing degrades into this
   rather than into a broken box. */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--primary-600);
  background-image:
    radial-gradient(110% 85% at 24% 14%, rgba(216, 180, 106, 0.22), transparent 62%),
    linear-gradient(150deg, #23262e 0%, #0f1115 58%, #1b1e25 100%);
}
.media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}


/* ==========================================================================
   05. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(0.6rem, 1.4vw, 1.1rem) var(--gutter);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.5rem 0.55rem 0.5rem 0.75rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  background: rgba(12, 14, 18, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: var(--shadow-lg);
}

/* Brand ------------------------------------------------------------------ */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  display: grid;
  place-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, var(--accent-light), var(--accent-strong));
  color: var(--primary-color);
  flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  font-stretch: 105%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--light-text);
}
.brand__sub {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* Nav -------------------------------------------------------------------- */
.nav { display: flex; justify-self: center; gap: 0.15rem; }
.nav__link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-muted);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav__link:hover {
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.07);
}

.header__actions { display: flex; align-items: center; gap: 0.6rem; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-muted);
  transition: color var(--dur) var(--ease);
}
.header__phone svg { width: 16px; height: 16px; color: var(--accent-color); }
.header__phone:hover { color: var(--light-text); }

.burger {
  display: none;
  place-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.burger span {
  display: block;
  width: 16px; height: 1.5px;
  border-radius: 2px;
  background: var(--light-text);
  transition: background-color var(--dur) var(--ease);
}
.burger span:nth-child(2) { width: 11px; }
.burger:hover { border-color: var(--accent-color); background: var(--accent-soft); }
.burger:hover span { background: var(--accent-color); }

/* Scroll-driven condense — enhancement only. */
@supports (animation-timeline: scroll()) {
  .site-header__inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    animation: capsule linear both;
    animation-timeline: scroll(root block);
    animation-range: 20px 220px;
  }
  @keyframes capsule {
    to {
      background: rgba(12, 14, 18, 0.86);
      border-color: var(--border-dark);
      box-shadow: var(--shadow-lg);
    }
  }
}


/* ==========================================================================
   05b. MOBILE NAVIGATION — pure CSS, :target driven
   ========================================================================== */

.mobile-nav { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.mobile-nav:target { visibility: visible; pointer-events: auto; }

.mobile-nav__scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 9, 0.68);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.mobile-nav:target .mobile-nav__scrim { opacity: 1; }

.mobile-nav__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: clamp(1.25rem, 5vw, 1.9rem);
  background: var(--primary-700);
  border-left: 1px solid var(--border-dark);
  color: var(--light-text);
  transform: translateX(102%);
  transition: transform 0.5s var(--ease-expo);
  overflow-y: auto;
}
.mobile-nav:target .mobile-nav__panel { transform: none; }

.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }

.mobile-nav__close {
  display: grid;
  place-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mobile-nav__close span {
  grid-area: 1 / 1;
  width: 15px; height: 1.5px;
  background: var(--light-text);
}
.mobile-nav__close span:first-child { transform: rotate(45deg); }
.mobile-nav__close span:last-child  { transform: rotate(-45deg); }
.mobile-nav__close:hover { border-color: var(--accent-color); transform: rotate(90deg); }

.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__links a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--border-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mobile-nav__links a span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-color);
}
.mobile-nav__links a:hover { color: var(--accent-color); padding-left: 0.5rem; }

.mobile-nav__foot { margin-top: auto; display: grid; gap: var(--sp-4); }
.mobile-nav__phone {
  text-align: center;
  font-weight: 600;
  color: var(--light-muted);
}


/* ==========================================================================
   06. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  color: var(--light-text);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5.5vw, 5rem));
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 46% at 78% 26%, rgba(216, 180, 106, 0.22), transparent 68%),
    radial-gradient(58% 52% at 8% 88%, rgba(216, 180, 106, 0.07), transparent 70%),
    linear-gradient(180deg, #0f1116 0%, var(--primary-color) 58%);
}
.hero__rules { position: absolute; inset: 0; display: flex; justify-content: space-around; }
.hero__rules i {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06) 30%, transparent);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4.5rem);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.hero__title em {
  display: inline-block;
  font-size: 1.08em;
  line-height: 0.9;
}

.hero__lede {
  max-width: 44ch;
  margin-top: var(--sp-5);
  font-size: var(--fs-lede);
  color: var(--light-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.hero__mini {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--border-dark);
}
.hero__mini dt {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-faint);
}
.hero__mini dd {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.hero__mini dd span {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--accent-color);
  margin-left: 0.15em;
}

/* Visual ----------------------------------------------------------------- */
.hero__visual { position: relative; }

.hero__index {
  position: absolute;
  top: 0; right: -0.35rem;
  writing-mode: vertical-rl;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-faint);
}

.hero__stage {
  position: relative;
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
  animation: float 7s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(-6px); }
  to   { transform: translateY(10px); }
}
.hero__stage::before {
  content: "";
  position: absolute;
  left: 6%; right: 12%; bottom: -6%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216, 180, 106, 0.4), transparent 72%);
  filter: blur(28px);
}

.hero__car {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}
.hero__car::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(255, 255, 255, 0.14), transparent 42%);
  pointer-events: none;
}

.spec-chip {
  position: absolute;
  left: clamp(-1.75rem, -1.2vw, -0.5rem); bottom: clamp(-1.25rem, -0.6vw, 0.25rem);
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(16, 18, 22, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.spec-chip__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
}
.spec-chip__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.spec-chip__meta { font-size: var(--fs-xs); color: var(--light-muted); }


/* ==========================================================================
   07. BOOKING BAR  (overlaps the hero) + MARQUEE + STATS
   ========================================================================== */

.booking {
  position: relative;
  z-index: 10;
  margin-top: calc(-1 * clamp(3.5rem, 6.5vw, 6rem));
  background: var(--primary-color);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.book {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 0.25rem;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border-left: 1px solid var(--border-color);
  transition: background-color var(--dur) var(--ease);
}
.field:first-of-type { border-left: 0; }
.field:hover,
.field:focus-within { background: var(--secondary-color); }

.field__label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field__control { display: flex; align-items: center; gap: 0.55rem; }
.field__control svg { width: 17px; height: 17px; flex: none; color: var(--accent-strong); }

.field select,
.field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  padding-right: 1.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%235d6570' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.45;
  cursor: pointer;
}

.book__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.9rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--primary-color);
  color: var(--light-text);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.book__submit svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.book__submit:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-accent);
}
.book__submit:hover svg { transform: scale(1.12) rotate(-8deg); }

.booking__note {
  margin-top: var(--sp-4);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--light-faint);
}

/* Marquee ---------------------------------------------------------------- */
.marquee {
  display: flex;
  overflow: hidden;
  padding-block: 0.9rem;
  background: var(--primary-color);
  border-block: 1px solid var(--border-dark);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; flex: none; animation: marquee 32s linear infinite; }
.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
  gap: 2.25rem;
  padding-right: 2.25rem;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--light-faint);
  white-space: nowrap;
}
.marquee__group i { font-style: normal; font-size: 0.5rem; color: var(--accent-color); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Stats — a descending staircase, not four cards ------------------------- */
.stats {
  background: var(--primary-color);
  color: var(--light-text);
  padding-block: var(--section-y) clamp(2.5rem, 5vw, 4.5rem);
}
.stats__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.stats__head .h2 { max-width: 18ch; }

.stats__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
  position: relative;
  padding: clamp(1.5rem, 2.4vw, 2rem) clamp(0.85rem, 1.8vw, 1.75rem) 0;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat:nth-child(2) { margin-top: clamp(0.75rem, 2.2vw, 2rem); }
.stat:nth-child(3) { margin-top: clamp(1.5rem, 4.4vw, 4rem); }
.stat:nth-child(4) { margin-top: clamp(2.25rem, 6.6vw, 6rem); }

.stat::after {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0; height: 2px;
  background: var(--accent-color);
  transition: width var(--dur-slow) var(--ease-expo);
}
.stat:hover::after { width: 100%; }

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(175deg, #ffffff 18%, #8f97a2 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background var(--dur) var(--ease);
}
.stat:hover .stat__num {
  background: linear-gradient(175deg, var(--accent-light) 18%, var(--accent-strong) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.stat__text {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--light-faint);
}


/* ==========================================================================
   08. FLEET
   ========================================================================== */

.fleet {
  background: var(--secondary-color);
  padding-block: var(--section-y);
}

/* Featured car ----------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  padding: clamp(1rem, 1.8vw, 1.6rem);
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
  background: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  color: var(--light-text);
  box-shadow: var(--shadow-lg);
}

.feature__visual { position: relative; }
.feature__badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.feature__media {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
}
.feature:hover .feature__media > img { transform: scale(1.05); }

.feature__body { padding: clamp(0.5rem, 1.5vw, 1.5rem) clamp(0.5rem, 1.5vw, 1.25rem); }
.feature__cat {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-color);
}
.feature__name {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-top: 0.35rem;
}
.feature__desc {
  margin-top: 0.75rem;
  max-width: 42ch;
  font-size: var(--fs-sm);
  color: var(--light-muted);
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: var(--sp-5);
}
.specs li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.specs li:hover { border-color: rgba(216, 180, 106, 0.4); background: var(--accent-soft); }
.specs li svg { grid-row: 1 / 3; width: 22px; height: 22px; color: var(--accent-color); }
.specs__k {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-faint);
}
.specs__v { font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em; }

.feature__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-dark);
}
.feature__foot .price__per { color: var(--light-faint); }

/* Catalogue rows --------------------------------------------------------- */
.cars { display: grid; }

.car {
  position: relative;
  display: grid;
  grid-template-columns: auto clamp(140px, 15vw, 200px) minmax(0, 1.05fr) minmax(0, 1.35fr) auto auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2rem);
  padding: clamp(0.85rem, 1.5vw, 1.25rem);
  border-top: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.car:last-child { border-bottom: 1px solid var(--border-color); }
.car::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 3px;
  border-radius: 3px;
  background: var(--accent-color);
  transform: scaleY(0);
  transition: transform var(--dur) var(--ease);
}
.car:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.car:hover::before { transform: scaleY(1); }
.car:hover .car__media > img { transform: scale(1.07); }

.car__idx {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.car__media { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); }
.car__cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.car__name { font-size: clamp(1.15rem, 1.7vw, 1.45rem); margin-top: 0.2rem; }

.car__specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.car__specs li { display: grid; gap: 0.1rem; }
.car__specs span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.car__specs strong { font-size: var(--fs-sm); font-weight: 600; letter-spacing: -0.01em; }


/* ==========================================================================
   09. WHY CHOOSE US — a quadrant, not four cards
   ========================================================================== */

.why { background: var(--surface); padding-block: var(--section-y); }

.quad {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--secondary-color);
}
/* accent crosshair at the intersection */
.quad::before,
.quad::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  z-index: 3;
  background: var(--accent-color);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.quad::before { width: 22px; height: 2px; }
.quad::after  { width: 2px;  height: 22px; }

.quad__cell {
  position: relative;
  padding: clamp(1.75rem, 3.4vw, 3.25rem);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--dur) var(--ease);
}
.quad__cell:nth-child(2n)   { border-right: 0; }
.quad__cell:nth-child(n+3)  { border-bottom: 0; }
.quad__cell:hover { background: var(--surface); }

.quad__ghost {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(1rem, 2.4vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(20, 22, 26, 0.05);
  pointer-events: none;
}

.quad__icon {
  display: grid;
  place-content: center;
  width: 62px; height: 62px;
  margin-bottom: var(--sp-5);
  border-radius: var(--radius-md);
  background: var(--primary-color);
  color: var(--accent-color);
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.quad__icon svg { width: 30px; height: 30px; }
.quad__cell:hover .quad__icon {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-4px) rotate(-6deg);
}

.quad__title { font-size: var(--fs-h3); }
.quad__text {
  margin-top: 0.5rem;
  max-width: 40ch;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}


/* ==========================================================================
   10. LUXURY EXPERIENCE
   ========================================================================== */

.exp {
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  color: var(--light-text);
  padding-block: var(--section-y);
}
.exp__ghost {
  position: absolute;
  left: 50%; top: clamp(0.5rem, 3vw, 2.5rem);
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 15vw, 13rem);
  font-weight: 800;
  font-stretch: 118%;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
}

.exp__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 5rem);
}

.exp__title {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1;
}
.exp__title em { font-size: 1.08em; }
.exp__text {
  margin-top: var(--sp-5);
  max-width: 46ch;
  color: var(--light-muted);
}

.exp__list { margin-top: var(--sp-6); margin-bottom: var(--sp-7); }
.exp__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--border-dark);
  font-size: var(--fs-sm);
  color: var(--light-muted);
}
.exp__list li::before {
  content: "✓";
  flex: none;
  display: grid;
  place-content: center;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 106, 0.42);
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 700;
}

.exp__visual { position: relative; }
.exp__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
.exp__visual:hover .exp__media > img { transform: scale(1.05); }

.spin {
  position: absolute;
  left: clamp(-1.5rem, -2vw, -0.5rem);
  bottom: clamp(-1.5rem, -2vw, -0.75rem);
  display: grid;
  place-content: center;
  width: clamp(108px, 13vw, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}
.spin__ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.spin__ring text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: var(--primary-color);
}
.spin__arrow { width: 30%; height: 30%; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ==========================================================================
   11. HOW IT WORKS
   ========================================================================== */

.how { background: var(--secondary-color); padding-block: var(--section-y); }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  padding-top: var(--sp-7);
}
.steps::before {
  content: "";
  position: absolute;
  top: 0; left: 6px; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent-color) 0%, var(--border-color) 18%, var(--border-color) 92%, transparent);
}

.step { position: relative; }
.step__node {
  position: absolute;
  top: calc(-1 * var(--sp-7) - 6px);
  left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(216, 180, 106, 0.18);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step:hover .step__node {
  transform: scale(1.25);
  box-shadow: 0 0 0 10px rgba(216, 180, 106, 0.22);
}

.step__num {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.step__icon {
  display: grid;
  place-content: center;
  width: 64px; height: 64px;
  margin: var(--sp-5) 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--primary-color);
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.step__icon svg { width: 32px; height: 32px; }
.step:hover .step__icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}
.step__title { font-size: var(--fs-h3); }
.step__text {
  margin-top: 0.5rem;
  max-width: 38ch;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}


/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */

.voices { background: var(--surface); padding-block: var(--section-y); }

.rating { display: flex; flex-direction: column; gap: 0.4rem; }
.rating strong { color: var(--text-color); }

.voices__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas: "lead a" "lead b";
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}
.voice--lead { grid-area: lead; }

.voice {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: clamp(1.5rem, 2.6vw, 2.35rem);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--secondary-color);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.voice:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 106, 0.5);
  box-shadow: var(--shadow-md);
}

.voice--lead {
  background: var(--primary-700);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--light-text);
  justify-content: center;
}
.voice--lead .voice__text { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.voice--lead .voice__role { color: var(--light-faint); }

.voice__mark {
  position: absolute;
  top: 0.75rem; right: 1.5rem;
  font-family: var(--font-accent);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.22;
  pointer-events: none;
}

.voice__text { font-size: var(--fs-sm); line-height: 1.65; }

.voice__by {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-color);
}
.voice--lead .voice__by { border-top-color: var(--border-dark); }

.avatar {
  position: relative;
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
}
.avatar::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background: linear-gradient(140deg, var(--accent-light), var(--accent-strong));
  color: var(--primary-color);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.avatar img { position: relative; width: 100%; height: 100%; object-fit: cover; }

.voice__name { display: block; font-weight: 700; letter-spacing: -0.01em; }
.voice__role { display: block; font-size: var(--fs-xs); color: var(--text-muted); }


/* ==========================================================================
   13. FINAL CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--accent-color);
  color: var(--primary-color);
  padding-block: clamp(3.25rem, 6.5vw, 5.5rem);
}
.cta::before {
  content: "";
  position: absolute;
  right: -12%; top: -55%;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.34), transparent 70%);
  pointer-events: none;
}

.cta__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}
.cta__title {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.98;
}
.cta__title em { color: var(--light-text); font-size: 1.06em; }
.cta__text {
  margin-top: var(--sp-4);
  max-width: 44ch;
  color: rgba(10, 11, 13, 0.72);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: var(--sp-6);
}
.cta__phone-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 11, 13, 0.6);
}
.cta__phone-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  border-bottom: 2px solid rgba(10, 11, 13, 0.28);
  transition: border-color var(--dur) var(--ease);
}
.cta__phone:hover .cta__phone-num { border-bottom-color: var(--primary-color); }

.cta__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cta__visual:hover .cta__media > img { transform: scale(1.05); }


/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--primary-color);
  color: var(--light-text);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.25rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.footer__blurb {
  margin-top: var(--sp-4);
  max-width: 34ch;
  font-size: var(--fs-sm);
  color: var(--light-muted);
}

.footer__title {
  font-size: var(--fs-label);
  font-weight: 700;
  font-stretch: 100%;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: var(--sp-4);
}

.footer__links li + li { margin-top: 0.5rem; }
.footer__links a,
.footer__contact a {
  font-size: var(--fs-sm);
  color: var(--light-muted);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--accent-color); padding-left: 0.3rem; }
.footer__contact a:hover { color: var(--accent-color); }

.footer__contact {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--light-muted);
  line-height: 1.7;
}
.footer__contact p + p { margin-top: 0.6rem; }
.footer__hours { color: var(--accent-color); font-weight: 600; }

.socials { display: flex; gap: 0.5rem; margin-top: var(--sp-5); }
.socials a {
  display: grid;
  place-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: var(--light-muted);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  margin-top: clamp(2.5rem, 4.5vw, 4rem);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-dark);
  font-size: var(--fs-xs);
  color: var(--light-faint);
}
.footer__bar-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bar-links a { transition: color var(--dur) var(--ease); }
.footer__bar-links a:hover { color: var(--accent-color); }


/* ==========================================================================
   15. RESPONSIVE
   Each step re-thinks the layout rather than shrinking it.
   ========================================================================== */

/* --- Large desktop -------------------------------------------------------- */
@media (min-width: 1600px) {
  :root { --maxw: 1400px; }
}

/* --- Laptop --------------------------------------------------------------- */
@media (max-width: 1180px) {
  .header__phone { display: none; }
  .nav { gap: 0; }
  .nav__link { padding-inline: 0.7rem; font-size: 0.85rem; }

  .car {
    grid-template-columns: auto clamp(130px, 14vw, 170px) minmax(0, 1fr) minmax(0, 1.15fr) auto;
  }
  .car__cta { grid-column: 1 / -1; justify-self: end; }
}

/* --- Tablet landscape: collapse the nav ----------------------------------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: grid; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .header__actions { justify-self: end; }

  .hero__layout { grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 6vw, 3rem); }
  .hero__lede { max-width: 52ch; }
  .hero__index { display: none; }
  .hero__stage { padding-right: 0; animation: none; }
  .spec-chip { left: auto; right: 0; bottom: -1rem; }

  .feature { grid-template-columns: minmax(0, 1fr); }
  .feature__body { padding: 0 0.5rem 0.5rem; }

  .exp__layout { grid-template-columns: minmax(0, 1fr); }
  .exp__visual { order: -1; }
  .spin { left: auto; right: -0.5rem; bottom: -1.25rem; }

  .voices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "lead lead" "a b";
  }

  .cta__layout { grid-template-columns: minmax(0, 1fr); }
  .cta__visual { order: -1; }

  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Tablet --------------------------------------------------------------- */
@media (max-width: 900px) {

  /* Booking form becomes a 2 x 2 block with a full-width action */
  .book { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field { border-left: 0; border-top: 1px solid var(--border-color); }
  .field:nth-of-type(1),
  .field:nth-of-type(2) { border-top: 0; }
  .field:nth-of-type(2n) { border-left: 1px solid var(--border-color); }
  .book__submit { grid-column: 1 / -1; padding: 1rem; margin-top: 0.25rem; }

  /* Stats: 2 x 2, staircase off */
  .stats__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 0; }
  .stat { margin-top: 0 !important; padding-left: clamp(0.85rem, 1.8vw, 1.75rem); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }

  /* Fleet rows become proper cards */
  .cars { gap: 0.85rem; }
  .car {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "media media"
      "id    price"
      "specs specs"
      "cta   cta";
    gap: var(--sp-4);
    padding: var(--sp-4);
    border: 1px solid var(--border-color);
    background: var(--surface);
  }
  .car:last-child { border-bottom: 1px solid var(--border-color); }
  .car__media { grid-area: media; aspect-ratio: 16 / 8; }
  .car__id    { grid-area: id; }
  .car__specs { grid-area: specs; padding-top: var(--sp-4); border-top: 1px solid var(--border-color); }
  .car .price { grid-area: price; justify-self: end; align-self: end; }
  .car__cta   { grid-area: cta; grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .car__idx {
    position: absolute;
    top: calc(var(--sp-4) + 0.6rem);
    left: calc(var(--sp-4) + 0.6rem);
    z-index: 2;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(10, 11, 13, 0.72);
    color: var(--light-text);
  }

  /* Timeline goes vertical */
  .steps { grid-template-columns: minmax(0, 1fr); gap: var(--sp-6); padding-top: 0; padding-left: 2.25rem; }
  .steps::before { top: 6px; bottom: 0; left: 6px; right: auto; width: 1px; height: auto;
                   background: linear-gradient(to bottom, var(--accent-color) 0%, var(--border-color) 14%, var(--border-color) 90%, transparent); }
  .step__node { top: 4px; left: -2.25rem; }
  .step__icon { margin-top: var(--sp-4); }

  .section-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .section-head__aside { justify-self: start; }
}

/* --- Large phone ---------------------------------------------------------- */
@media (max-width: 680px) {
  .hero { padding-bottom: clamp(5.5rem, 18vw, 8rem); }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__mini { gap: var(--sp-5); }
  .hero__car { aspect-ratio: 16 / 12; }
  .spec-chip { right: 0.5rem; bottom: -0.75rem; padding: 0.7rem 1rem; }

  .book { grid-template-columns: minmax(0, 1fr); }
  .field { border-left: 0 !important; border-top: 1px solid var(--border-color); }
  .field:first-of-type { border-top: 0; }

  .quad { grid-template-columns: minmax(0, 1fr); }
  .quad::before, .quad::after { display: none; }
  .quad__cell { border-right: 0; }
  .quad__cell:nth-child(n+3) { border-bottom: 1px solid var(--border-color); }
  .quad__cell:last-child { border-bottom: 0; }

  .voices__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "lead" "a" "b"; }

  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* --- Small phone ---------------------------------------------------------- */
@media (max-width: 480px) {
  .stats__rail { grid-template-columns: minmax(0, 1fr); }
  .stat { border-left: 0; padding-left: 0; }

  .specs { grid-template-columns: minmax(0, 1fr); }
  .car__specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .car { grid-template-areas: "media media" "id id" "specs specs" "price price" "cta cta"; }
  .car .price { justify-self: start; }

  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { width: 100%; }

  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .voice__mark { font-size: 5rem; }
}


/* ==========================================================================
   16. MOTION & PRINT PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__stage, .marquee__track, .spin__ring, .pill__dot { animation: none !important; }
}

@media print {
  .site-header, .mobile-nav, .marquee, .burger { display: none !important; }
  body, .hero, .stats, .exp, .cta, .site-footer {
    background: #fff !important;
    color: #000 !important;
  }
  .feature, .voice--lead { background: #fff !important; color: #000 !important; }
}
