:root {
  color-scheme: dark light;
  --bg: #111411;
  --bg-elevated: #191d19;
  --bg-soft: #232823;
  --surface: #e9ede8;
  --surface-strong: #dfe4de;
  --text: #f1f4ef;
  --text-muted: #acb4aa;
  --ink: #151815;
  --ink-muted: #596158;
  --line: rgba(241, 244, 239, 0.16);
  --line-dark: rgba(21, 24, 21, 0.16);
  --accent: #b8d55b;
  --accent-ink: #151a0b;
  --danger: #ef8b7d;
  --radius: 14px;
  --header-height: 72px;
  --page-pad: clamp(20px, 4vw, 64px);
  --max-width: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-synthesis: none;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #e6eae5;
    --bg-elevated: #f2f4f1;
    --bg-soft: #d9ded8;
    --surface: #f7f8f6;
    --surface-strong: #ecefeb;
    --text: #161916;
    --text-muted: #5d655c;
    --ink: #151815;
    --ink-muted: #596158;
    --line: rgba(21, 24, 21, 0.15);
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  color: #f3f5f1;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease);
}
.warning-page .site-header { grid-template-columns: 1fr auto; }
.warning-page .header-actions { grid-column: 2; justify-self: end; }
.site-header.is-scrolled, .solid-header {
  color: var(--text);
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  width: 26px;
  height: 18px;
  display: block;
}
.brand-mark i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.brand-mark i:nth-child(1) { left: 0; top: 0; }
.brand-mark i:nth-child(2) { right: 0; top: 0; }
.brand-mark i:nth-child(3) { left: 0; bottom: 0; }
.brand-mark i:nth-child(4) { right: 0; bottom: 0; }
.desktop-nav { display: flex; gap: clamp(24px, 3vw, 46px); font-size: 13px; }
.desktop-nav a, .footer-links a { position: relative; }
.desktop-nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 250ms var(--ease);
}
.desktop-nav a:hover::after, .footer-links a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.language-switch {
  min-width: 62px;
  min-height: 44px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.language-switch:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.language-switch option { background: var(--bg); color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(0.98); }
.button:disabled { cursor: wait; opacity: 0.7; transform: none; }
.button-small { min-height: 42px; padding-inline: 19px; font-size: 13px; }
.button-light { background: #f2f4f0; color: #191c19; }
.button-accent { background: var(--accent); color: var(--accent-ink); }
.button-dark { background: var(--ink); color: #f2f4ef; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; }
.light-link { color: #f2f4ef; }

.hero {
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #f3f5f1;
}
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 9, 0.82) 0%, rgba(9, 12, 9, 0.42) 43%, rgba(9, 12, 9, 0.04) 75%), linear-gradient(0deg, rgba(9, 12, 9, 0.68) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(820px, 60vw);
  margin-top: var(--header-height);
  padding-left: var(--page-pad);
  animation: hero-in 900ms var(--ease) both;
}
.eyebrow {
  margin: 0 0 22px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dark-eyebrow { color: var(--ink-muted); }
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.058em;
  font-weight: 850;
}
.warning-hero h1 {
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 850;
}
.hero-copy {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(243, 245, 241, 0.86);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  justify-self: end;
  width: min(540px, 42vw);
  margin: 0 var(--page-pad) 36px 0;
  border-top: 1px solid rgba(243, 245, 241, 0.28);
}
.hero-facts div { padding: 18px 18px 0 0; }
.hero-facts dt { color: rgba(243, 245, 241, 0.65); font-size: 11px; text-transform: uppercase; letter-spacing: 0.11em; }
.hero-facts dd { margin: 4px 0 0; font-size: 20px; font-weight: 750; }

.section-shell { width: min(100%, var(--max-width)); margin-inline: auto; padding-inline: var(--page-pad); }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 10vw, 150px);
  padding-block: clamp(110px, 14vw, 200px);
}
.intro h2, .section-heading h2, .process h2, .booking-intro h2, .safety-banner h2, .liability-note h2 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.intro-body { align-self: end; padding-bottom: 6px; }
.intro-body p { margin: 0 0 26px; color: var(--text-muted); max-width: 52ch; font-size: 17px; line-height: 1.7; }

.fleet { padding-bottom: clamp(110px, 14vw, 190px); }
.section-heading { max-width: 720px; margin-bottom: clamp(48px, 7vw, 90px); }
.section-heading p { max-width: 56ch; margin: 22px 0 0; color: var(--text-muted); font-size: 17px; }
.fleet-horizontal-sticky { padding-block: clamp(90px, 10vw, 140px); overflow: hidden; background: var(--bg); }
.fleet .section-heading { max-width: var(--max-width); }
.showroom-track { display: grid; gap: clamp(54px, 8vw, 100px); width: min(100%, var(--max-width)); margin-inline: auto; padding-inline: var(--page-pad); }
.showroom-slide { min-width: 0; }
.showroom-media { overflow: hidden; aspect-ratio: 16 / 8.4; border-radius: var(--radius); background: var(--bg-soft); }
.showroom-media img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); transition: transform 700ms var(--ease), filter 700ms var(--ease); }
.showroom-slide:hover img { transform: scale(1.018); filter: saturate(.88) contrast(1.02); }
.showroom-info h4 { margin: 0; font-size: clamp(32px, 3.6vw, 54px); line-height: 1; letter-spacing: -.05em; }
.showroom-info p { max-width: 35ch; margin: 14px 0 0; color: var(--text-muted); line-height: 1.6; }
.showroom-specs { display: grid; grid-template-columns: repeat(4, minmax(80px, 1fr)); gap: 22px 30px; margin: 0; }
.showroom-specs dt { color: var(--text-muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.showroom-specs dd { margin: 4px 0 0; font-size: 18px; font-weight: 750; }
.showroom-info { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(420px, 1.25fr); gap: clamp(40px, 7vw, 110px); align-items: end; padding: 30px 4px 0; }
.fleet-horizontal-stage.is-scroll-driven .fleet-horizontal-sticky { position: sticky; top: 0; display: flex; height: 100dvh; flex-direction: column; justify-content: center; padding: calc(var(--header-height) + 18px) 0 28px; }
.fleet-horizontal-stage.is-scroll-driven .section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr); gap: clamp(42px, 8vw, 120px); align-items: end; flex: 0 0 auto; margin-bottom: clamp(24px, 4vh, 46px); }
.fleet-horizontal-stage.is-scroll-driven .section-heading p { margin: 0; }
.fleet-horizontal-stage.is-scroll-driven .showroom-track { --showroom-gutter: max(var(--page-pad), calc((100vw - var(--max-width)) / 2 + var(--page-pad))); display: flex; gap: 20px; width: max-content; max-width: none; margin: 0; padding: 0 var(--showroom-gutter); will-change: transform; }
.fleet-horizontal-stage.is-scroll-driven .showroom-slide { flex: 0 0 min(70vw, 980px); }
.process { padding-block: clamp(100px, 12vw, 170px); background: var(--bg-elevated); }
.process .section-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 10vw, 160px); }
.process-title-wrap { position: sticky; top: 120px; align-self: start; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 0 0 58px; }
.process-list li:not(:last-child) { margin-bottom: 58px; border-bottom: 1px solid var(--line); }
.process-number { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; }
.process-list h3 { margin: -5px 0 10px; font-size: clamp(27px, 2.5vw, 38px); letter-spacing: -0.04em; }
.process-list p { margin: 0; color: var(--text-muted); max-width: 42ch; }

.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(44px, 8vw, 120px);
  padding-block: clamp(110px, 14vw, 190px);
}
.booking-intro { align-self: start; position: sticky; top: 120px; }
.booking-intro > p:not(.eyebrow) { color: var(--text-muted); max-width: 48ch; margin: 24px 0 0; }
.booking-workspace { min-width: 0; }
.booking-view-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}
.booking-view-tabs button {
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: background-color 180ms ease, color 180ms ease;
}
.booking-view-tabs button.active { background: var(--text); color: var(--bg); }
.booking-view-panel[hidden] { display: none; }
.price-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 38px; }
.price-summary div { padding-top: 14px; border-top: 1px solid var(--line); }
.price-summary span { display: block; color: var(--text-muted); font-size: 12px; }
.price-summary strong { font-size: 22px; }
.booking-form {
  padding: clamp(24px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(4, 10, 4, 0.16);
}
.bot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-form fieldset { margin: 0 0 30px; padding: 0; border: 0; }
.booking-form legend { margin-bottom: 13px; font-size: 14px; font-weight: 750; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.choice-card input:checked + span { background: var(--ink); color: #f2f4ef; border-color: var(--ink); }
.choice-card input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
.choice-card:active span { transform: scale(0.98); }
.choice-card small { color: currentColor; opacity: 0.72; }
.form-row, .customer-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.customer-fields { margin-top: 28px; }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.full-field { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 750; }
.field small { color: var(--ink-muted); font-size: 11px; line-height: 1.4; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(21, 24, 21, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  padding: 0 14px;
}
.field textarea { min-height: 96px; padding-block: 12px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6c746b; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: 3px solid color-mix(in srgb, var(--accent) 48%, transparent); }
.field-error { min-height: 0; color: #9e2f25; font-size: 12px; }
.availability {
  min-height: 48px;
  display: flex;
  align-items: center;
  margin: 4px 0 8px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--ink-muted);
  font-size: 13px;
}
.availability[data-state="available"] { background: color-mix(in srgb, var(--accent) 30%, var(--surface)); color: #26300c; }
.availability[data-state="unavailable"], .availability[data-state="error"] { background: #f3d7d2; color: #74251d; }
.availability[data-state="loading"] .availability-label { animation: pulse 1s ease-in-out infinite alternate; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; margin-top: 15px; color: #383e38; font-size: 13px; line-height: 1.5; cursor: pointer; }
.check-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); }
.check-row a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.booking-total { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.booking-total > div span { display: block; color: var(--ink-muted); font-size: 11px; }
.booking-total > div strong { display: block; margin-top: 2px; font-size: 30px; }
.form-status { display: none; margin-bottom: 20px; padding: 13px 15px; border-radius: 10px; font-size: 13px; }
.form-status.is-error { display: block; background: #f3d7d2; color: #74251d; }

.booking-calendar-panel {
  min-height: 690px;
  padding: clamp(22px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(4, 10, 4, 0.16);
}
.calendar-controls { display: grid; grid-template-columns: repeat(2, minmax(0, 180px)) minmax(150px, 190px); gap: 12px; margin-bottom: 16px; }
.calendar-controls label { display: grid; gap: 7px; color: var(--ink-muted); font-size: 11px; font-weight: 750; }
.calendar-controls select { min-height: 44px; padding: 0 12px; border: 1px solid var(--line-dark); border-radius: 10px; background: rgba(255,255,255,.48); color: var(--ink); }
.calendar-selection-price { display: flex; align-items: center; justify-content: space-between; gap: 12px; align-self: end; min-height: 44px; padding: 7px 13px; border: 1px solid var(--line-dark); border-radius: 10px; background: rgba(255,255,255,.48); color: var(--ink); }
.calendar-selection-price span { color: var(--ink-muted); font-size: 11px; font-weight: 750; line-height: 1.2; }
.calendar-selection-price strong { color: var(--ink); font-size: 20px; letter-spacing: -.03em; }
.arrival-note { display: grid; grid-template-columns: minmax(120px, .35fr) minmax(0, 1fr); gap: 18px; margin: 22px 0 0; padding: 16px 18px; border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; background: color-mix(in srgb, var(--accent) 15%, transparent); }
.arrival-note strong { font-size: 12px; }.arrival-note span { color: var(--ink-muted); font-size: 12px; line-height: 1.55; }
.calendar-heading { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 12px; margin-bottom: 18px; }
.calendar-heading h3 { margin: 0; text-align: center; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.04em; text-transform: capitalize; }
.calendar-heading button { width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.calendar-heading button:disabled { opacity: .3; cursor: default; }
.calendar-weekdays, .booking-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { margin-bottom: 7px; color: var(--ink-muted); font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-day {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.calendar-day::after { content: ""; position: absolute; left: 50%; bottom: 8px; width: 5px; height: 5px; border-radius: 50%; transform: translateX(-50%); background: var(--accent); }
.calendar-day.status-limited::after { background: #a77b24; }
.calendar-day.status-unavailable::after, .calendar-day.status-past::after { background: #8d948c; }
.calendar-day.status-unavailable, .calendar-day.status-past { color: #8d948c; cursor: not-allowed; }
.calendar-day.status-past { opacity: .55; }
.calendar-day:hover:not(:disabled), .calendar-day.selected { border-color: var(--ink); background: color-mix(in srgb, var(--accent) 32%, var(--surface)); }
.calendar-day-blank { aspect-ratio: 1; }
.calendar-loading { grid-column: 1 / -1; min-height: 280px; display: grid; place-items: center; color: var(--ink-muted); font-size: 13px; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--ink-muted); font-size: 11px; }
.calendar-legend > span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.calendar-legend .legend-limited { background: #a77b24; }.calendar-legend .legend-full { background: #8d948c; }
.calendar-day-choice { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.calendar-day-choice h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; text-transform: capitalize; }
.calendar-day-choice > p { margin: 5px 0 16px; color: var(--ink-muted); font-size: 12px; }
.calendar-time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.calendar-time-slot { display: grid; place-items: center; place-content: center; gap: 1px; min-width: 82px; min-height: 48px; padding: 7px 13px; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; text-align: center; }
.calendar-time-slot strong { line-height: 1; font-size: 12px; }.calendar-time-slot small { color: currentColor; font-size: 9px; font-weight: 650; opacity: .66; }
.calendar-time-slot:hover, .calendar-time-slot.selected { border-color: var(--ink); background: var(--ink); color: #f2f4ef; }
.calendar-ride-options { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line-dark); animation: option-in 240ms var(--ease); }
.calendar-ride-options[hidden] { display: none; }
.calendar-ride-options h4 { margin: 0 0 16px; font-size: 15px; letter-spacing: -.01em; }
.selection-availability { max-width: 640px; margin: 0 0 14px; padding: 11px 13px; border-radius: 10px; background: var(--surface-strong); color: var(--ink-muted); font-size: 12px; line-height: 1.45; }
.selection-availability:empty { display: none; }.selection-availability.is-loading { animation: pulse 1s ease-in-out infinite alternate; }.selection-availability.is-available { background: color-mix(in srgb, var(--accent) 24%, var(--surface)); color: #26300c; }.selection-availability.is-error { background: #f3d7d2; color: #74251d; }
.slot-timing-notice { display: grid; gap: 4px; max-width: 640px; margin: -4px 0 22px; padding: 15px 17px; border-radius: 10px; background: var(--surface-strong); color: var(--ink-muted); font-size: 12px; line-height: 1.5; }
.slot-timing-notice[hidden] { display: none; }.slot-timing-notice strong { color: var(--ink); font-size: 13px; }.slot-timing-notice.is-shortened { border-left: 3px solid #a77b24; background: #f3ead8; color: #604817; }
.calendar-day-choice .button:disabled { opacity: .45; cursor: not-allowed; }
.booking-details { margin-top: 38px; padding: 36px 0 0; border-top: 1px solid var(--line-dark); border-radius: 0; background: transparent; box-shadow: none; scroll-margin-top: 94px; }
.booking-details-header { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr); gap: 36px; align-items: start; }
.booking-details-header h3, .inquiry-heading h3 { margin: 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.04em; }
.booking-details-header p, .inquiry-heading p { max-width: 48ch; margin: 9px 0 0; color: var(--ink-muted); font-size: 13px; }
.selected-ride-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin: 0; }
.selected-ride-summary div { min-width: 0; padding-bottom: 10px; border-bottom: 1px solid var(--line-dark); }
.selected-ride-summary dt { color: var(--ink-muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }.selected-ride-summary dd { margin: 3px 0 0; overflow-wrap: anywhere; font-size: 12px; font-weight: 750; }
.shortened-confirmation { margin-top: 24px; padding: 16px; border: 1px solid #d8bd82; border-radius: 10px; background: #f3ead8; color: #604817; }
.shortened-confirmation[hidden] { display: none; }
.inquiry-heading { margin-bottom: 30px; }
.inquiry-form .customer-fields { margin-top: 0; }
.inquiry-submit { width: 100%; margin-top: 8px; }

.safety-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(100px, 12vw, 160px);
  padding-block: clamp(48px, 6vw, 86px);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
}
.safety-banner > div { max-width: 820px; }
.safety-banner p { max-width: 60ch; margin: 22px 0 0; color: #394312; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
  min-height: 250px;
  padding: 70px var(--page-pad) 35px;
  border-top: 1px solid var(--line);
}
.footer-brand span { font-size: clamp(26px, 3vw, 42px); font-weight: 850; letter-spacing: -0.04em; }
.footer-brand p, .copyright { color: var(--text-muted); font-size: 13px; }
.footer-links { display: flex; gap: 28px; font-size: 13px; }
.copyright { margin: 0; }

.confirmation-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: clamp(28px, 5vw, 52px);
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.4);
}
.confirmation-dialog::backdrop { background: rgba(6, 9, 6, 0.74); backdrop-filter: blur(6px); }
.confirmation-dialog h2 { margin: 0; font-size: clamp(34px, 6vw, 52px); line-height: 1; letter-spacing: -0.05em; }
.confirmation-dialog > p:not(.eyebrow) { color: var(--ink-muted); }
.dialog-close { position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 26px; }
.confirmation-details { margin: 28px 0; border-top: 1px solid var(--line-dark); }
.confirmation-details div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
.confirmation-details dt { color: var(--ink-muted); }
.confirmation-details dd { margin: 0; font-weight: 750; text-align: right; }

.warning-page { background: var(--bg); }
.warning-main { padding-top: var(--header-height); }
.warning-hero { min-height: 76dvh; display: flex; flex-direction: column; justify-content: end; padding-top: 100px; padding-bottom: clamp(70px, 10vw, 130px); }
.warning-hero h1 { max-width: 1040px; font-size: clamp(54px, 8vw, 112px); }
.warning-hero > p:last-child { max-width: 62ch; margin: 30px 0 0; color: var(--text-muted); font-size: 18px; }
.rules { padding-bottom: clamp(100px, 12vw, 160px); }
.rules article { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 30px; padding: 44px 0; border-top: 1px solid var(--line); }
.rules article > span { color: var(--accent); font-size: 13px; font-weight: 800; }
.rules article > div { display: grid; grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1.25fr); gap: 70px; }
.rules h2 { margin: -8px 0 0; font-size: clamp(27px, 3vw, 42px); letter-spacing: -0.04em; }
.rules p { max-width: 58ch; margin: 0; color: var(--text-muted); line-height: 1.7; }
.liability-note { margin-bottom: clamp(100px, 12vw, 160px); padding-block: clamp(48px, 8vw, 100px); border-radius: var(--radius); background: var(--surface); color: var(--ink); }
.liability-note p { max-width: 72ch; margin: 28px 0 34px; color: var(--ink-muted); font-size: 17px; line-height: 1.7; }
.terms-actions > div { display: flex; flex-wrap: wrap; gap: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes pulse { from { opacity: 0.45; } to { opacity: 1; } }
@keyframes option-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-content { width: min(760px, 76vw); }
  .hero-facts { width: min(520px, 52vw); }
  .fleet-horizontal-stage.is-scroll-driven .showroom-slide { flex-basis: 82vw; }
  .showroom-info { grid-template-columns: 1fr; gap: 28px; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-intro { position: static; max-width: 760px; }
}

@media (max-width: 767px) {
  :root { --page-pad: 18px; --header-height: 64px; }
  .site-header { padding-inline: 18px; }
  .brand { font-size: 11px; gap: 8px; }
  .brand-mark { transform: scale(0.85); transform-origin: left center; }
  .header-actions { gap: 8px; }
  .button-small { min-height: 44px; padding-inline: 14px; }
  .language-switch { width: 74px; min-width: 74px; height: 50px; min-height: 50px; padding: 12px 10px; line-height: 1.2; }
  .hero { min-height: 100dvh; height: auto; align-items: end; }
  .hero-image { object-position: 66% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(8, 11, 8, 0.9) 0%, rgba(8, 11, 8, 0.35) 70%, rgba(8, 11, 8, 0.2) 100%); }
  .hero-content { width: 100%; align-self: end; margin: 0; padding: 120px 18px 160px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 64px); max-width: 11ch; }
  .hero-copy { max-width: 34ch; margin-top: 22px; font-size: 16px; }
  .hero-actions { align-items: center; gap: 17px; margin-top: 26px; }
  .hero-actions .button { min-height: 48px; padding-inline: 18px; }
  .hero-actions .text-link { min-height: 48px; }
  .hero-facts { position: absolute; left: 18px; right: 18px; bottom: 22px; width: auto; margin: 0; }
  .hero-facts div { padding-right: 8px; }
  .hero-facts dd { font-size: 16px; }
  .intro { grid-template-columns: 1fr; gap: 38px; padding-block: 90px; }
  .intro h2, .section-heading h2, .process h2, .booking-intro h2, .safety-banner h2, .liability-note h2 { font-size: clamp(38px, 11vw, 54px); }
  .fleet { padding-bottom: 28px; }
  .section-heading { margin-bottom: 38px; }
  .fleet-horizontal-sticky { padding-block: 76px; }
  .fleet-horizontal-stage.is-scroll-driven .fleet-horizontal-sticky { height: 100svh; padding: calc(var(--header-height) + 14px) 0 22px; }
  .fleet-horizontal-stage.is-scroll-driven .section-heading { display: block; margin-bottom: 22px; }
  .fleet-horizontal-stage.is-scroll-driven .section-heading p { margin-top: 14px; font-size: 15px; line-height: 1.55; }
  .fleet-horizontal-stage.is-scroll-driven .showroom-track { --showroom-gutter: 18px; gap: 12px; }
  .fleet-horizontal-stage.is-scroll-driven .showroom-slide { flex-basis: 86vw; }
  .showroom-media { aspect-ratio: 16 / 10; }
  .showroom-info h4 { font-size: 34px; }
  .showroom-info { gap: 24px; padding-top: 22px; }
  .showroom-specs { grid-template-columns: repeat(2, minmax(80px, 1fr)); gap: 18px 24px; }
  .process { padding-block: 88px; }
  .process .section-shell { grid-template-columns: 1fr; gap: 55px; }
  .process-title-wrap { position: static; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 12px; }
  .booking-section { padding-block: 90px; gap: 46px; }
  .price-summary { margin-top: 30px; }
  .booking-form { padding: 22px 16px; }
  .booking-view-tabs { width: 100%; }.booking-view-tabs button { width: 100%; }
  .booking-calendar-panel { min-height: 620px; padding: 22px 14px; }
  .calendar-controls { grid-template-columns: repeat(2, 1fr); }
  .calendar-selection-price { grid-column: 1 / -1; }
  .arrival-note { grid-template-columns: 1fr; gap: 5px; }
  .calendar-day { border-radius: 8px; font-size: 12px; }.calendar-day::after { bottom: 5px; }
  .booking-details-header { grid-template-columns: 1fr; gap: 24px; }
  .selected-ride-summary { gap: 10px 14px; }
  .form-row, .customer-fields { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { gap: 6px; }
  .choice-card span { min-height: 58px; padding-inline: 10px; }
  .booking-total { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .safety-banner { align-items: flex-start; flex-direction: column; margin-inline: 12px; width: calc(100% - 24px); padding-inline: 24px; }
  .site-footer { grid-template-columns: 1fr; min-height: 0; padding-block: 56px 28px; gap: 30px; }
  .footer-links { flex-wrap: wrap; }
  .warning-hero { min-height: 66dvh; padding-top: 80px; }
  .warning-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .rules article { grid-template-columns: 42px 1fr; gap: 10px; padding: 34px 0; }
  .rules article > div { grid-template-columns: 1fr; gap: 15px; }
  .rules h2 { margin: -6px 0 0; }
  .liability-note { margin-inline: 12px; width: calc(100% - 24px); padding-inline: 24px; }
}

@media (max-height: 820px) and (min-width: 768px) {
  .fleet-horizontal-stage.is-scroll-driven .section-heading { margin-bottom: 22px; }
  .fleet-horizontal-stage.is-scroll-driven .section-heading h2 { font-size: clamp(40px, 4.6vw, 62px); }
  .fleet-horizontal-stage.is-scroll-driven .showroom-media { aspect-ratio: 16 / 7; }
  .fleet-horizontal-stage.is-scroll-driven .showroom-info { padding-top: 18px; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
  .fleet-horizontal-stage { height: auto !important; }
  .fleet-horizontal-stage .fleet-horizontal-sticky { position: relative; height: auto; overflow: visible; }
  .fleet-horizontal-stage .showroom-track { display: grid; width: min(100%, var(--max-width)); margin-inline: auto; transform: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled, .solid-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
