/* ═══════════════════════════════════════════════════════════════
   SCHRIFT
   Inter stand bisher nur in font-family, wurde aber nie geladen – die
   Seite rendete in der Systemschrift und alle 11 deklarierten Schnitte
   rasteten auf die vier vorhandenen ein. Selbst gehostet statt über
   Google Fonts: für eine deutsche Seite ist das auch datenschutzrechtlich
   die saubere Wahl (keine Drittanbieter-Verbindung, keine IP-Übermittlung).
   ═══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
}

:root {
  --yellow: #ffbd00;
  --yellow-dark: #f4ad00;
  --teal: #0d8f88;
  --blue: #2f5bd3;
  --violet: #7257c7;
  --ink: #111216;
  --muted: #656975;
  --line: rgba(17, 18, 22, 0.09);
  --soft: #f7f7f8;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(22, 24, 31, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --page: min(1420px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Absicherung gegen horizontales Verschieben beim mobilen Scrollen (Safari-
   Elastic-Overscroll bzw. Sub-Pixel-Rundung von vw-Werten auf echten Geräten,
   nicht über automatisierte Tests reproduzierbar). overflow-x: clip bricht
   position: sticky nicht, im Gegensatz zu overflow: hidden auf html/body. */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter var", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  /* Vorher position:absolute – der Header war nach 78px von 6717px Seitenhöhe
     endgültig verschwunden, also 98,8 % des Scrollwegs ohne Navigation, Marke
     und Anrufbutton. Jetzt bleibt er stehen und wird beim Scrollen kompakt. */
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--page);
  transition: height .22s ease, background .22s ease, box-shadow .22s ease;
  height: 104px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
/* Zustand ab dem ersten Scrollen: kompakter, mit Glasfläche und feiner Kante. */
.site-header.is-stuck {
  height: 72px;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(17,18,22,.08), 0 10px 30px rgba(17,18,22,.05);
}
.site-header.is-stuck .brand { font-size: 24px; }
/* Ankersprünge dürfen nicht bündig unter dem Header landen. Bewusst nur auf
   die Abschnitte gemünzt – [id] träfe jedes Element mit einer id. */
main > section[id] { scroll-margin-top: 96px; }
.brand, .footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 29px;
}
.brand strong, .footer-brand strong { color: var(--yellow); font-weight: 600; }
/* Kundenlogo: ersetzt den Textschriftzug, ohne den Brand-Container zu verändern. */
.brand img {
  height: 52px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  transition: height .22s ease;
}
.site-header.is-stuck .brand img { height: 40px; }
.footer-brand img { height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.brand small, .footer-brand small {
  align-self: center;
  margin-left: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.desktop-nav { display: flex; gap: 32px; font-weight: 520; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--yellow);
  transition: right .25s ease;
}
@media (hover: hover) and (pointer: fine) { .desktop-nav a:hover::after { right: 0; } }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 15px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
}
.phone-chip svg, .button svg { width: 20px; height: 20px; fill: currentColor; }

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 620;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
@media (hover: hover) and (pointer: fine) { .button:hover { transform: translateY(-2px); } }
.button-primary {
  background: linear-gradient(135deg, #ffc400, #ffb500);
  box-shadow: 0 10px 30px rgba(255, 184, 0, .20);
}
@media (hover: hover) and (pointer: fine) { .button-primary:hover { box-shadow: 0 14px 38px rgba(255, 184, 0, .32); } }
.button-light {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,18,22,.06);
  box-shadow: 0 12px 35px rgba(18,20,28,.08);
}
.header-book { min-height: 52px; padding-inline: 24px; }
.menu-button { display: none; width: 48px; height: 48px; border: 0; background: transparent; }
.menu-button span { display:block; width:24px; height:2px; background:var(--ink); margin:6px auto; }
.mobile-menu { position:absolute; top:88px; right:0; background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); padding:12px; min-width:220px; }
.mobile-menu a { display:block; padding:14px 16px; border-radius:10px; }
@media (hover: hover) and (pointer: fine) { .mobile-menu a:hover { background:var(--soft); } }

/* ═══════════════════════════════════════════════════════════════
   HERO
   Wand/Boden und Fahrzeug sind getrennte Ebenen. Vorher lagen beide in
   EINEM Bild, das per background-size: cover skaliert wurde – dabei
   schnitt der Browser bei 1440 px rund 316 px weg, auf Mobil noch mehr.
   Jetzt: Kulisse darf beschnitten werden, das Fahrzeug nie.
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: #f2f3f5;
  padding-bottom: 96px;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url("assets/hero-backdrop.webp") right center / cover no-repeat;
}
/* Leuchtschriftzug an der Wand. Steht im Fluss über dem Fahrzeug. */
.hero-sign {
  text-align: right;
  line-height: .9;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 54px);
  margin-bottom: 10px;
  padding-right: 4%;
  pointer-events: none;
  user-select: none;
}
.hero-sign span {
  display: block;
  color: #fff;
  text-shadow: 0 0 22px rgba(255,255,255,.75), 0 0 54px rgba(255,255,255,.4);
}
.hero-sign em {
  display: block;
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255,189,0,.85), 0 0 62px rgba(255,189,0,.45);
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 30%, rgba(255,255,255,.72) 45%, rgba(255,255,255,.18) 60%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.5), transparent 34%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin-inline: auto;
  /* 178px galten, solange der Header absolut über dem Hero lag. Jetzt steht er
     im Fluss und belegt seine Höhe selbst. */
  padding-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: end;
  gap: 26px;
}
/* Der Text sitzt optisch mittig, das Fahrzeug steht unten auf dem Boden. */
.hero-copy { padding-bottom: 30px; }
.hero-visual { min-width: 0; }
/* Kein object-fit, kein cover: Breite vorgeben, Höhe automatisch – damit
   bleibt das Seitenverhältnis erhalten und es wird nichts abgeschnitten. */
.hero-car {
  display: block;
  width: 100%;
  height: auto;
  max-width: 940px;
  margin-left: auto;
  filter: drop-shadow(0 34px 40px rgba(24,26,32,.26));
}
.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}
.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff6d8;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 620;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); }
.hero h1 {
  margin: 28px 0 16px;
  max-width: 620px;
  font-size: clamp(46px, 4.4vw, 76px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 690;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 430;
}
.hero-copy > p strong { font-weight: 500; }
.hero-buttons { display: flex; gap: 22px; margin-top: 30px; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  font-size: 15px;
  font-weight: 500;
}
.trust-row span { display: inline-flex; gap: 10px; align-items: center; }
.icon-circle {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.ride-search {
  position: relative;
  z-index: 10;
  width: min(1355px, calc(100% - 92px));
  margin: -77px auto 0;
  min-height: 130px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 1.15fr 58px 1.15fr 1fr 220px;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 25px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.ride-field {
  position: relative;
  min-width: 0;
  padding: 4px 28px 4px 64px;
  border-right: 1px solid var(--line);
}
.ride-date-field { border-right: 0; }
.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #ffefcc;
  border-radius: 50%;
  color: #111;
}
.field-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ride-field label { display: block; color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.ride-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}
.ride-field input::placeholder { color: #4f535d; opacity: 1; }
.ride-field input[type="datetime-local"] { font-size: 17px; }
.swap-button {
  width: 48px;
  height: 48px;
  margin: auto;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20,22,28,.10);
  font-size: 26px;
  cursor: pointer;
  transition: transform .25s ease;
}
@media (hover: hover) and (pointer: fine) { .swap-button:hover { transform: rotate(180deg); } }
.search-button {
  min-height: 62px;
  margin-left: 18px;
  background: linear-gradient(135deg, #202126, #111216);
  color: #fff;
  border-radius: 15px;
}
.search-button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-status { position:absolute; left:30px; right:30px; bottom:7px; text-align:center; color:#b00020; font-size:13px; }

.service-cards {
  width: min(1355px, calc(100% - 92px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 228px;
  padding: 16px 22px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 130px auto;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(24,26,33,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(24,26,33,.12); }
.service-card img { grid-column: 1 / -1; width: 100%; height: 110px; margin-bottom: 15px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.service-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: 0; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card a { color: var(--yellow-dark); font-size: 28px; align-self: end; }

.content-section {
  width: var(--page);
  margin: 130px auto;
}
.price-section {
  padding: 70px;
  border-radius: 36px;
  background: linear-gradient(135deg, #111216, #262831);
  color: #fff;
}
.section-heading { display:grid; grid-template-columns: .7fr 1.4fr 1fr; gap:50px; align-items:start; }
.section-heading > span, .contact-copy > span { color: var(--yellow); font-size: 13px; font-weight: 750; letter-spacing: 0; }
.section-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 60px); line-height: 1.05; letter-spacing: 0; }
.section-heading p { color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; margin: 0; }
.steps-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:70px; }
.step { padding:28px; border:1px solid rgba(255,255,255,.12); border-radius:20px; background:rgba(255,255,255,.04); }
.step strong { color:var(--yellow); font-size:14px; }
.step h3 { margin:28px 0 10px; font-size:22px; }
.step p { margin:0; color:rgba(255,255,255,.64); }
.legal-hint { margin:32px 0 0; color:rgba(255,255,255,.48); font-size:13px; }

.contact-section {
  width: var(--page);
  margin: 0 auto 100px;
  padding: 70px;
  border-radius: 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  background: #fff7dc;
}
.contact-copy p { color:var(--muted); font-size:17px; max-width:630px; }
.contact-actions { display:flex; gap:16px; flex-wrap:wrap; }

footer {
  width: var(--page);
  margin: 0 auto;
  padding: 42px 0 55px;
  border-top: 1px solid var(--line);
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:40px;
  align-items:start;
  color:var(--muted);
  font-size:14px;
}
.footer-brand { color:var(--ink); font-size:24px; }
footer p { margin:0 0 8px; }
.footer-links { display:flex; gap:20px; }
.map-credit { grid-column:1 / -1; font-size:12px; opacity:.75; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(13,14,18,.48);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.modal-backdrop[hidden] { display:none; }
.estimate-modal {
  position: relative;
  width: min(530px, 100%);
  max-height: calc(100vh - 48px);
  overflow:auto;
  padding: 38px;
  background:#fff;
  border-radius:28px;
  box-shadow:0 35px 100px rgba(0,0,0,.25);
  animation: modal-in .28s ease both;
}
@keyframes modal-in { from { opacity:0; transform:translateY(18px) scale(.98); } }
.modal-close { position:absolute; right:20px; top:18px; width:38px; height:38px; border:0; background:#f3f3f4; border-radius:50%; font-size:25px; cursor:pointer; }
.modal-icon { width:58px; height:58px; border-radius:18px; display:grid; place-items:center; background:#fff4cc; color:#111; font-size:27px; }
.modal-kicker { margin:25px 0 8px; color:#a67400; font-size:12px; font-weight:750; letter-spacing:0; }
.estimate-modal h2 { margin:0; font-size:36px; letter-spacing:0; }
.route-summary { color:var(--muted); line-height:1.5; }
.estimate-metrics { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0 12px; }
.estimate-metrics div { padding:18px; background:#f6f6f7; border-radius:16px; }
.estimate-metrics span, .price-result span { display:block; color:var(--muted); font-size:13px; margin-bottom:7px; }
.estimate-metrics strong { font-size:21px; }
.price-result { padding:22px; background:#111216; color:#fff; border-radius:18px; }
.price-result span { color:rgba(255,255,255,.62); }
.price-result strong { display:block; font-size:32px; color:var(--yellow); letter-spacing:0; }
.estimate-note { color:var(--muted); font-size:12px; line-height:1.5; }
.modal-actions { display:grid; gap:10px; margin-top:24px; }
.legal-modal p { color:var(--muted); line-height:1.65; }
.legal-modal h3 { margin-top:24px; }

.mobile-quickbar { display:none; }
.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  :root { --page: min(100% - 40px, 1080px); }
  .site-header { grid-template-columns:1fr auto; }
  .desktop-nav { display:none; }
  /* Ab hier untereinander: der Text braucht die volle Breite, das Fahrzeug
     bekommt darunter seine eigene Zeile und bleibt vollständig sichtbar. */
  .hero-inner { grid-template-columns:1fr; gap:30px; padding-top:48px; }
  .hero-car { max-width:760px; margin-inline:auto; }
  /* Der Wandschriftzug ist ein Desktop-Gestaltungsmittel. Unter 1181 px steht
     die Marke schon im Header direkt darüber – doppelt wäre es Ballast und
     kostet auf dem Handy wertvolle Höhe. */
  .hero-sign { display:none; }
  .hero-fade { background:linear-gradient(180deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.72) 34%,rgba(255,255,255,.25) 62%,transparent 80%); }
  .ride-search { width:calc(100% - 40px); grid-template-columns:1fr 52px 1fr 1fr 190px; }
  .service-cards { width:calc(100% - 40px); grid-template-columns:repeat(3,1fr); }
  .section-heading { grid-template-columns:1fr; gap:24px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 28px); }
  .site-header { height:78px; }
  .brand { font-size:23px; }
  .phone-chip, .header-book { display:none; }
  .menu-button { display:block; }
  .hero { padding-bottom:56px; }
  .hero-backdrop { background-image:url("assets/hero-backdrop-small.webp"); background-position:center; }
  .hero-fade { background:linear-gradient(180deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.8) 30%,rgba(255,255,255,.3) 60%,transparent 82%); }
  /* Kompakter, damit das Fahrzeug im ersten Bildschirm vollständig ÜBER der
     festen unteren Leiste endet und nicht dahinter verschwindet. */
  .hero-inner { padding-top:32px; gap:14px; }
  .hero-copy { padding-bottom:8px; }
  .hero h1 { font-size:clamp(32px,9.2vw,46px); margin:20px 0 12px; max-width:100%; }
  /* Volle Breite, Seitenverhältnis bleibt – kein Beschnitt. */
  .hero-car { width:100%; max-width:none; }
  .hero-copy > p { font-size:17px; }
  .trust-row { gap:10px 16px; flex-wrap:wrap; margin-top:18px; font-size:14px; }
  .ride-search { margin:-34px auto 0; padding:18px; grid-template-columns:1fr; gap:12px; border-radius:22px; }
  .ride-field { padding:14px 15px 14px 62px; border:1px solid var(--line); border-radius:15px; }
  .ride-date-field { border:1px solid var(--line); }
  .swap-button { position:absolute; right:28px; top:92px; z-index:2; }
  .search-button { margin:0; width:100%; }
  .form-status { position:static; grid-column:1; }
  .service-cards { width:calc(100% - 28px); grid-template-columns:repeat(2,1fr); }
  .content-section { margin:90px auto; }
  .price-section { padding:34px 22px; border-radius:26px; }
  .steps-grid { grid-template-columns:1fr; margin-top:42px; }
  .contact-section { padding:38px 24px; flex-direction:column; align-items:flex-start; margin-bottom:70px; }
  footer { grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
  /* Die Leiste lag 12px über dem Displayrand – beim iPhone liegen davon 34px
     im Home-Indicator-Bereich, wodurch die Tap-Ziele teils unerreichbar waren
     und beim Seitenstart das erste Eingabefeld verdeckt wurde. */
  .mobile-quickbar {
    position:fixed;
    left:12px;
    right:12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index:50;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    padding:7px;
    background:rgba(20,21,25,.92);
    border-radius:16px;
    backdrop-filter:blur(14px);
    box-shadow:0 18px 50px rgba(0,0,0,.25);
  }
  .mobile-quickbar a { padding:14px; border-radius:11px; color:#fff; text-align:center; font-weight:650; }
  .mobile-quickbar a:last-child { background:var(--yellow); color:#111; }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 560px) {
  .hero-buttons { flex-direction:column; align-items:stretch; max-width:290px; }
  .hero-buttons .button { width:100%; }
  .trust-row span { font-size:13px; }
  .service-cards { grid-template-columns:1fr; }
  .service-card { min-height:210px; grid-template-rows:120px auto; }
  .contact-actions { width:100%; }
  .contact-actions .button { width:100%; }
  .estimate-modal { padding:28px 20px; border-radius:22px; }
  .estimate-modal h2 { font-size:30px; }
}

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

/* ═══════════════════════════════════════════════════════════════
   NEUE ABSCHNITTE
   "Für Unternehmen" und "Über uns" waren in der Navigation verlinkt,
   existierten aber nicht – beide Links liefen ins Leere. Dazu häufige
   Fragen, die Rückfragen vor dem Anruf abnehmen.
   ═══════════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}
.content-section h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}
.content-section h2 + p {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

/* ── Für Unternehmen ── */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #fbfbfc, #f4f5f8);
}
.split-copy .button { margin-top: 28px; }
.split-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.split-list li {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.split-list li:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(22,24,31,.08); }
.split-list strong { font-size: 17px; }
.split-list span { color: var(--muted); font-size: 15px; }

/* ── Inhaber-Bereich: nutzt die split-section-Grid-Struktur, nur Bild + Meta sind neu ── */
.owner-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(22,24,31,.08);
}
.owner-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.owner-copy .owner-meta { display: grid; gap: 2px; margin: 22px 0 26px; }
.owner-copy .owner-meta strong { font-size: 19px; }
.owner-copy .owner-meta span { color: var(--muted); font-size: 15px; }

/* ── Über uns ── */
.about-section { display: grid; gap: clamp(26px, 3.4vw, 44px); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  padding: 26px 24px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 8px;
  align-content: start;
}
.stat:nth-child(2) { background: var(--yellow); color: var(--ink); }
.stat strong { font-size: clamp(26px, 2.6vw, 38px); letter-spacing: 0; line-height: 1; }
.stat span { font-size: 15px; opacity: .78; }
.stat:nth-child(2) span { opacity: .72; }

/* ── Häufige Fragen ── */
.faq-section .section-heading { display: block; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.faq {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq:hover { border-color: rgba(255,189,0,.5); box-shadow: 0 12px 30px rgba(22,24,31,.07); }
.faq summary {
  cursor: pointer;
  font-weight: 620;
  font-size: 17px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff6d8;
  color: var(--ink);
  font-weight: 700;
  transition: transform .25s ease;
}
/* Nur den Glyph tauschen: eine Drehung des Minus wirkt schräg statt animiert. */
.faq[open] summary::after { content: "–"; }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BEDIENBARKEIT
   Gemessen fehlten: jede Druck-Rückmeldung (0 :active), jeder sichtbare
   Tastaturfokus (0 :focus-visible, outline:0 am Eingabefeld) und 17 Tap-Ziele
   lagen unter 44x44 px.
   ═══════════════════════════════════════════════════════════════ */
body { -webkit-tap-highlight-color: transparent; }

.button:active,
.service-card:active,
.split-list li:active,
.faq summary:active,
.mobile-quickbar a:active { transform: scale(.975); transition-duration: .08s; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 10px;
}
.ride-field:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,189,0,.22);
}

/* Ganze Leistungskarte klickbar – vorher war nur ein 26x33-Pfeil das Ziel. */
.service-card { position: relative; }
.service-card > a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.service-card > a { min-width: 44px; min-height: 44px; display: grid; place-items: center; }

.faq summary { min-height: 56px; }
.footer-links { gap: 24px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
.brand { min-height: 44px; }

/* Ergebnisfenster: 100vh springt auf iOS mit der Adressleiste. */
.estimate-modal { max-height: calc(100svh - 48px); }
.modal-backdrop { padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0px)); }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL-STORY
   Der Hero ist die Bühne. Gepinnt wird über CSS `position: sticky` –
   ScrollTrigger übernimmt ausschliesslich das Scrubbing. Das vermeidet
   die Sprünge, die GSAPs eigener Pin-Spacer beim Ein- und Austritt
   erzeugt, und hält die Höhe der Seite stabil (kein Layout Shift).
   Animiert werden nur transform, opacity und clip-path.
   ═══════════════════════════════════════════════════════════════════ */
.hero.story {
  height: 540vh;
  padding-bottom: 0;
  overflow: clip;              /* clip statt hidden: bricht sticky nicht */
  background: #eef0f3;
}
.story-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
@supports (height: 100svh) { .story-stage { height: 100svh; } }

/* Alle Bühnenebenen liegen deckungsgleich übereinander. */
.story-wide,
.story-shot,
.story-outro { position: absolute; inset: 0; }
.story-wide { z-index: 3; }
.story-shot { z-index: 4; opacity: 0; display: grid; place-items: center; }
.story-outro { z-index: 7; opacity: 0; display: grid; place-content: center; text-align: center; padding-inline: 6vw; }

.story .hero-inner {
  position: absolute;
  inset: 0;
  /* Der Header ist sticky und liegt darüber – hier Platz lassen. */
  padding-top: 104px;
  align-items: center;
}
.story .hero-copy { padding-bottom: 0; }

/* ── Bildsequenz-Bühne ──
   Das Seitenverhältnis entspricht exakt dem der vorgerenderten Frames
   (1200:820). Nur so liegt Frame 12 pixelgenau auf dem Türpaar, und die
   Übergabe von der Sequenz auf die Maskenebenen ist unsichtbar. */
.car-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 820;
}
.car-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* Werte aus dem Frame-Generator: Breite 95,5 %, Mitte bei 50,5 %,
   Standfläche bei 99,5 %, Eindrehung -0,5°. */
.car-frame .car-stack {
  position: absolute;
  left: 50.5%;
  bottom: 0.5%;
  width: 95.5%;
  transform: translateX(-50%) rotate(-.5deg);
  transform-origin: 50% 100%;
  opacity: 0;
}
.car-stack picture,
.car-stack img { display: block; width: 100%; height: auto; }
.car-stack .car-open {
  position: absolute;
  inset: 0;
  /* Startzustand: die offene Fassung ist vollständig weggeschnitten. Nur der
     Türbereich wird später freigelegt, deshalb bleibt Karosserie, Rad,
     Dachschild und Schatten durchgehend die geschlossene Basis. */
  clip-path: inset(0 100% 0 0);
}
.car-stack .car-open img { width: 100%; height: auto; }

/* ── Clickro-Figur ── */
/* Die Figur wird über die HÖHE bemessen, nicht über die Breite: das Bild ist
   468x1363, eine Breitenangabe von 300px ergibt 874px Höhe und füllt damit
   fast die ganze Bühne. Position rechts der Textspalte, damit sie die
   Überschrift nie verdeckt. */
.story-mascot {
  position: absolute;
  left: 48%;
  bottom: 0;
  z-index: 5;
  height: min(52vh, 470px);
  width: auto;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 22px 26px rgba(24,26,32,.22));
}
@supports (height: 100svh) { .story-mascot { height: min(52svh, 470px); } }

/* ── Leistungen, treten aus dem Türbereich hervor ── */
/* Bewusst LINKS, in der Spalte des Hero-Textes: rechts lagen die Karten über
   Fahrzeug, Dachschild und Wandschriftzug. Der Text tritt für diesen Moment
   zurück, die Figur zeigt auf die Karten. */
.story-services {
  position: absolute;
  z-index: 6;
  left: 5%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: min(390px, 32vw);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.story-services li,
.story-benefits li {
  opacity: 0;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,18,22,.06);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(22,24,31,.10);
  font-weight: 620;
  font-size: 16px;
}
.story-services li span { color: var(--muted); font-weight: 430; font-size: 14px; }

/* ── Vorteile im Fahrgastraum ── */
.story-benefits {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  width: min(560px, 88vw);
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.story-benefits li { justify-items: start; font-size: 17px; }

/* ── Kamerawechsel-Aufnahmen ── */
.story-shot img { display: block; }
.story-shot[data-shot="front-open"] img,
.story-shot[data-shot="rear-open"] img,
.story-shot[data-shot="rear-3q"] img {
  width: min(78vw, 1180px);
  height: auto;
  filter: drop-shadow(0 34px 40px rgba(24,26,32,.26));
}
.story-shot-cabin { place-items: stretch; }
.story-shot-cabin picture,
.story-shot-cabin img { width: 100%; height: 100%; object-fit: cover; object-position: 46% 50%; }
/* Abdunklung, damit Text auf der Innenraumaufnahme trägt. */
.story-shot-cabin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,.34), rgba(10,11,14,.12) 42%, rgba(10,11,14,.62));
}

/* ── Abschluss ── */
.story-outro { background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.96)); }
.story-outro-kicker { margin: 0; color: var(--yellow-dark); font-size: 13px; font-weight: 750; letter-spacing: 0; }
.story-outro-title { margin: 12px 0 22px; font-size: clamp(34px, 4.4vw, 64px); line-height: 1.04; letter-spacing: 0; }
.story-outro .hero-buttons { justify-content: center; }

/* ── Tablet ── */
@media (max-width: 1180px) {
  .hero.story { height: 480vh; }
  .story .hero-inner { grid-template-columns: 1fr; align-content: center; gap: 18px; padding-top: 92px; }
  .story-mascot { height: min(40svh, 330px); left: 40%; }
  .story-services { left: 4%; right: auto; width: min(340px, 52vw); }
}

/* ── Mobile: kürzere Story, kleinere Figur, Texte nacheinander ── */
@media (max-width: 767px) {
  .hero.story { height: 420vh; }
  /* Inhalt oben ausrichten und unten Platz für die feste Leiste lassen –
     zentriert schob es Fahrzeug und Figur hinter die Leiste. */
  .story .hero-inner {
    padding-top: 74px;
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    align-content: start;
    gap: 10px;
  }
  .story-mascot {
    height: min(26svh, 210px);
    left: 30%;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }
  /* Die Leistungen belegen den oberen Bereich, in dem zuvor der Text stand.
     Unten ist kein Platz: dort stehen Fahrzeug, Figur und die feste Leiste. */
  .story-services {
    left: 50%; right: auto; top: 12svh; bottom: auto;
    transform: translateX(-50%);
    width: min(340px, 92vw);
    gap: 7px;
  }
  .story-services li, .story-benefits li { padding: 10px 14px; font-size: 13.5px; border-radius: 13px; }
  .story-services li span { font-size: 12px; }
  .story-benefits {
    top: auto; bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    width: min(340px, 92vw);
  }
  .story-shot[data-shot="front-open"] img,
  .story-shot[data-shot="rear-open"] img,
  .story-shot[data-shot="rear-3q"] img { width: 96vw; }
  .story-outro-title { font-size: clamp(28px, 8.4vw, 40px); }
  .story-outro .hero-buttons { flex-direction: column; }
}

/* ── Reduzierte Bewegung: kein Pinning, alles statisch untereinander ── */
@media (prefers-reduced-motion: reduce) {
  .hero.story { height: auto; padding-bottom: 64px; overflow: visible; }
  .story-stage { position: static; height: auto; overflow: visible; display: grid; gap: 32px; }
  .story-wide { position: static; inset: auto; }
  .story .hero-inner { position: static; inset: auto; padding-top: 40px; }
  .story-mascot { position: static; opacity: 1 !important; transform: none !important; height: 300px; width: auto; margin-inline: auto; }
  .story-services, .story-benefits {
    position: static; transform: none !important; left: auto; right: auto; bottom: auto; top: auto;
    width: var(--page); margin-inline: auto;
  }
  .story-services li, .story-benefits li { opacity: 1 !important; transform: none !important; }
  /* Kamerawechsel entfallen – im statischen Aufbau nur der Innenraum als Beleg. */
  .story-shot[data-shot="front-open"], .story-shot[data-shot="rear-open"],
  .story-shot[data-shot="rear-3q"], .story-outro { display: none; }
  /* WICHTIG position: relative, nicht static. Die Abdunklung ist ein ::after
     mit position:absolute; inset:0 – bei einem statischen Elternelement bezieht
     sich das auf den nächsten positionierten Vorfahren, also den gesamten
     Story-Abschnitt. Die Fläche legte sich dadurch über den ganzen Hero und
     fing jeden Klick auf den Haupt-CTA ab. */
  .story-shot-cabin {
    position: relative; inset: auto; opacity: 1 !important; transform: none !important;
    height: 260px; border-radius: 22px; overflow: hidden; width: var(--page); margin-inline: auto;
  }
  .car-stack .car-open { display: none; }
  /* Ohne Timeline wird das Canvas nie gezeichnet und .car-stack nie
     eingeblendet – ohne diese Regeln wäre hier überhaupt kein Fahrzeug zu
     sehen. Statt der Sequenz steht das Fahrzeug einfach da. */
  .car-canvas { display: none; }
  .car-frame { aspect-ratio: auto; }
  .car-frame .car-stack {
    position: static;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Ab 820 px zeigt die Seite die feste untere Leiste: Figur und Bühneninhalt
   müssen darüber enden, sonst stehen sie hinter der Leiste. */
@media (max-width: 820px) {
  .story-mascot { bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
  .story .hero-inner { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
}

/* ═══════════════════════════════════════════════════════════════
   STORY V2
   One high-resolution taxi layer creates the approach. The supplied door
   stages then form a deliberate cinematic cut instead of a visible morph.
   ═══════════════════════════════════════════════════════════════ */
.hero.story {
  height: 680vh;
  background: #eef1f4;
}
.story-stage {
  height: 100svh;
  min-height: 620px;
}
.story .hero-backdrop {
  background-position: center;
  transform: scale(1.02);
}
.story .hero-fade {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 31%, rgba(255,255,255,.48) 53%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.46), transparent 32%, rgba(10,14,22,.08));
}
.story .hero-inner {
  padding-top: 108px;
  padding-bottom: 34px;
  grid-template-columns: minmax(390px, .82fr) minmax(540px, 1.18fr);
  align-items: center;
}
.story .hero-visual {
  min-width: 0;
  align-self: end;
}
.story .car-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
}
.story .car-frame .car-stack {
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 30px 32px rgba(22,27,36,.24));
}
.story .car-stack picture,
.story .car-stack img {
  width: 100%;
}

.story-progress {
  position: absolute;
  z-index: 12;
  left: max(28px, calc((100vw - 1420px) / 2));
  bottom: 30px;
  display: grid;
  grid-template-columns: auto minmax(96px, 11vw) 28px;
  align-items: center;
  gap: 12px;
  color: #20232a;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.story-progress span { white-space: nowrap; }
.story-progress i {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(17,18,22,.18);
}
.story-progress b {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--yellow));
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.story-progress em {
  font-style: normal;
  text-align: right;
  color: var(--muted);
}

.story-mascot {
  z-index: 8;
  left: 46%;
  bottom: 2vh;
  height: min(49svh, 450px);
}
.story-services {
  z-index: 9;
  left: max(28px, calc((100vw - 1420px) / 2));
  top: 51%;
  width: min(390px, 31vw);
}
.story-services li,
.story-benefits li {
  border-radius: 8px;
  border-color: rgba(17,18,22,.09);
  box-shadow: 0 14px 36px rgba(24,29,39,.12);
}
.story-services li:nth-child(2) { border-left: 3px solid var(--blue); }
.story-services li:nth-child(3) { border-left: 3px solid var(--teal); }
.story-services li:nth-child(4) { border-left: 3px solid var(--violet); }

.story-shot {
  visibility: hidden;
  overflow: hidden;
}
.story-shot-door {
  background:
    radial-gradient(circle at 64% 64%, rgba(255,255,255,.86), rgba(255,255,255,0) 38%),
    rgba(238,241,244,.26);
}
.story-shot-door::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.90));
  pointer-events: none;
}
.door-sequence {
  position: relative;
  z-index: 2;
  width: min(92vw, 1400px);
  aspect-ratio: 3 / 2;
}
.door-sequence picture {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
}
.door-sequence picture:first-child {
  opacity: 1;
  visibility: visible;
}
.door-sequence img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(22,27,36,.22));
}

.story-scene-copy,
.story-route {
  position: absolute;
  z-index: 5;
  left: max(28px, calc((100vw - 1420px) / 2));
  bottom: 13vh;
  max-width: min(520px, 38vw);
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--yellow);
}
.story-scene-copy span,
.story-route span {
  display: block;
  margin-bottom: 9px;
  color: #9b6b00;
  font-size: 12px;
  font-weight: 760;
}
.story-scene-copy strong,
.story-route strong {
  display: block;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 690;
}
.story-scene-copy-light {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,.25);
}
.story-scene-copy-light span { color: #ffd65d; }
.story-shot-cabin::after {
  background:
    linear-gradient(90deg, rgba(8,12,18,.62), rgba(8,12,18,.06) 58%),
    linear-gradient(180deg, rgba(8,12,18,.08), rgba(8,12,18,.54));
}
.story-shot-cabin .story-scene-copy { z-index: 3; }
.story-benefits {
  z-index: 7;
  left: auto;
  right: max(28px, calc((100vw - 1420px) / 2));
  bottom: 11vh;
  transform: none;
  width: min(410px, 34vw);
}
.story-benefits li {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}

.story-shot-route picture,
.story-shot-depart picture {
  display: grid;
  place-items: center;
  width: min(92vw, 1400px);
  height: min(78svh, 820px);
}
.story-shot-route img,
.story-shot-depart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(22,27,36,.20));
}
.story-shot-route {
  background:
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(238,241,244,.8)),
    url("assets/hero-backdrop.webp") center / cover;
}
.story-route {
  bottom: 12vh;
}
.story-route i {
  position: relative;
  display: block;
  width: min(360px, 32vw);
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.story-route i b {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(17,18,22,.1);
}
.story-route i b:first-child { left: 0; }
.story-route i b:last-child { right: 0; background: var(--blue); }
.story-shot-depart { background: #eef1f4; }
.story-outro {
  visibility: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.97)),
    url("assets/hero-backdrop.webp") center / cover;
}
.story-outro .hero-buttons { margin-inline: auto; }

/* Cleaner service grid: the weak low-resolution clipart is replaced by type. */
.service-cards {
  gap: 10px;
  margin-top: 42px;
}
.service-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24,26,33,.055);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--yellow);
}
.service-card:nth-of-type(2)::before { background: var(--blue); }
.service-card:nth-of-type(3)::before { background: var(--teal); }
.service-card:nth-of-type(4)::before { background: var(--violet); }
.service-number {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  color: #d7dbe3;
  font-size: 40px;
  line-height: 1;
  font-weight: 720;
}
.service-card > div { grid-column: 1; grid-row: 2; align-self: end; }
.service-card a { grid-column: 2; grid-row: 2; align-self: end; }
.step,
.faq,
.split-list li { border-radius: 8px; }
.price-section {
  width: 100%;
  padding: 90px max(32px, calc((100vw - 1420px) / 2));
  border-radius: 0;
}
.contact-section {
  width: 100%;
  padding: 72px max(32px, calc((100vw - 1420px) / 2));
  border-radius: 0;
}

@media (max-width: 1180px) {
  .hero.story { height: 620vh; }
  .story .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding-top: 96px;
  }
  .story .hero-visual { width: min(700px, 68vw); margin-left: auto; }
  .story-mascot { left: 38%; height: min(38svh, 330px); }
  .story-services { width: min(360px, 44vw); }
}

@media (min-width: 768px) and (max-width: 820px) {
  .story .hero-visual { transform: translateY(-58px); }
}

@media (max-width: 767px) {
  .hero.story { height: 560vh; }
  .story-stage { min-height: 560px; }
  .story .hero-backdrop {
    background-image: url("assets/hero-backdrop-small.webp");
    background-position: center;
  }
  .story .hero-fade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.24) 69%, rgba(238,241,244,.08));
  }
  .story .hero-inner {
    width: calc(100% - 28px);
    padding: 82px 0 calc(86px + env(safe-area-inset-bottom, 0px));
    grid-template-rows: auto minmax(190px, 1fr);
    align-content: stretch;
    gap: 0;
  }
  .story .hero-copy { padding: 8px 0 0; }
  .story .eyebrow { padding: 6px 11px; font-size: 11px; }
  .story .hero h1 {
    margin: 14px 0 9px;
    font-size: clamp(36px, 10.4vw, 43px);
    line-height: .98;
  }
  .story .hero-copy > p { font-size: 16px; }
  .story .hero-buttons {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 9px;
    max-width: none;
    margin-top: 17px;
  }
  .story .hero-buttons .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 14px;
    gap: 10px;
  }
  .story .trust-row { margin-top: 15px; }
  .story .trust-row span:nth-child(3) { display: none; }
  .story .hero-visual {
    width: calc(100% + 20px);
    margin: -4px 0 0 -10px;
    align-self: end;
    transform: translateY(-68px);
  }
  .story .car-frame { aspect-ratio: 16 / 9; }
  .story-mascot {
    left: 27%;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    height: min(29svh, 238px);
  }
  .story-progress {
    left: 16px;
    right: 16px;
    top: 82px;
    bottom: auto;
    grid-template-columns: auto 1fr 26px;
    opacity: .86;
  }
  .story-shot-door .story-scene-copy,
  .story-shot[data-shot="rear-cabin"] .story-scene-copy { display: none; }
  .story-services {
    left: 50%;
    top: 15svh;
    width: min(350px, calc(100% - 28px));
  }
  .story-services li:nth-child(n+4) { display: none; }
  .story-services li,
  .story-benefits li {
    padding: 11px 13px;
    border-radius: 8px;
  }
  .door-sequence {
    width: 112vw;
    margin-left: -6vw;
  }
  .story-scene-copy,
  .story-route {
    left: 18px;
    right: 18px;
    bottom: calc(112px + env(safe-area-inset-bottom, 0px));
    max-width: none;
    padding-left: 15px;
  }
  .story-scene-copy strong,
  .story-route strong { font-size: clamp(26px, 8vw, 34px); }
  .story-benefits {
    left: 18px;
    right: 18px;
    bottom: calc(102px + env(safe-area-inset-bottom, 0px));
    width: auto;
  }
  .story-shot-route picture,
  .story-shot-depart picture {
    width: 118vw;
    height: 70svh;
  }
  .story-route i { width: 100%; }
  .story-outro {
    padding: 92px 18px calc(100px + env(safe-area-inset-bottom, 0px));
  }
  .story-outro .hero-buttons {
    grid-template-columns: 1fr;
    width: min(320px, 100%);
  }
  .service-cards { margin-top: 26px; }
  .service-card {
    min-height: 150px;
    grid-template-rows: auto 1fr;
  }
  .service-number { font-size: 32px; }
  .price-section { padding: 58px 20px; }
  .contact-section { padding: 52px 20px; }
}

@media (max-width: 767px) and (max-height: 700px) {
  .story .trust-row { display: none; }
  .story .hero h1 { font-size: 34px; }
  .story .hero-buttons { margin-top: 12px; }
  .story-mascot { height: min(25svh, 180px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero.story { height: auto; }
  .story-progress,
  .story-benefits,
  .story-shot { display: none; }
  .story-stage { height: auto; min-height: 0; }
  .story .hero-inner {
    position: relative;
    min-height: min(760px, 100svh);
    padding-block: 52px 80px;
  }
  .story-mascot {
    position: static;
    display: block;
    height: 300px;
    width: auto;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
  }
  .story-services {
    position: static;
    width: var(--page);
    margin: 0 auto;
    transform: none !important;
  }
  .story-services li {
    display: grid;
    opacity: 1 !important;
    transform: none !important;
  }
  .story .car-frame .car-stack {
    position: static;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   STORY V3
   The complete booking flow belongs to the first viewport. The story starts
   only after the visitor scrolls and keeps one coherent taxi through the turn.
   ═══════════════════════════════════════════════════════════════ */
.story-booking {
  position: absolute;
  z-index: 14;
  left: 0;
  right: 0;
  bottom: 22px;
  pointer-events: auto;
}
.story-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}
.booking-anchor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
}
.story-booking .ride-search {
  width: min(1400px, calc(100% - 48px));
  min-height: 116px;
  margin: 0 auto;
  padding: 21px 24px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(18,22,30,.18);
}
.story .hero-inner {
  padding-bottom: 164px;
}
.story .hero-buttons,
.story .trust-row {
  display: none;
}
.story .car-frame {
  aspect-ratio: 9 / 5;
}
.story .car-frame .car-stack {
  width: 94%;
  bottom: -2%;
}
.story-progress {
  left: auto;
  right: max(28px, calc((100vw - 1420px) / 2));
  top: 94px;
  bottom: auto;
}
.story-shot-turn {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(238,241,244,.92)),
    url("assets/hero-backdrop.webp") center / cover;
}
.turn-sequence {
  position: relative;
  width: min(1050px, 92vw);
  aspect-ratio: 9 / 5;
  transform: translateY(-2vh);
}
.turn-sequence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 30px 28px rgba(22,27,36,.22));
}
.turn-sequence img:first-child {
  opacity: 1;
  visibility: visible;
}
.story-shot-turn .story-route {
  bottom: 9vh;
}
body.story-booking-visible .mobile-quickbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}
.mobile-quickbar {
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

/* The original illustrated service assets are a strong part of the page. */
.service-cards {
  gap: 14px;
  margin-top: 42px;
}
.service-card {
  min-height: 230px;
  padding: 14px 18px 18px;
  grid-template-columns: 1fr auto;
  grid-template-rows: 132px 1fr;
  border: 1px solid rgba(25,29,38,.08);
  background: linear-gradient(180deg, #f5f7fa 0 136px, #fff 136px);
}
.service-card::before {
  height: 3px;
  width: 100%;
  inset: 0 0 auto;
}
.service-card img {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  height: 116px;
  margin: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.service-card > div {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}
.service-card a {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 1180px) {
  .story-booking .ride-search {
    width: calc(100% - 32px);
    grid-template-columns: 1fr 48px 1fr .92fr 170px;
    padding-inline: 18px;
  }
  .story-booking .ride-field {
    padding-right: 14px;
    padding-left: 54px;
  }
  .story-booking .field-icon {
    left: 8px;
    width: 42px;
    height: 42px;
  }
  .story-booking .search-button {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .story-stage {
    min-height: 600px;
  }
  .story .hero-inner {
    width: calc(100% - 24px);
    padding: 70px 0 calc(274px + env(safe-area-inset-bottom, 0px));
    grid-template-rows: auto minmax(130px, 1fr);
  }
  .story .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 0;
  }
  .story .eyebrow {
    padding: 5px 9px;
    font-size: 10px;
  }
  .story .hero h1 {
    margin: 10px 0 5px;
    font-size: clamp(34px, 9.7vw, 41px);
  }
  .story .hero-copy > p {
    font-size: 14px;
  }
  .story .hero-visual {
    width: calc(100% + 8px);
    margin: -12px 0 0 -4px;
    transform: none;
  }
  .story .hero-sign {
    display: none;
  }
  .story .car-frame .car-stack {
    width: 99%;
    left: 1%;
    bottom: -2%;
  }
  .story-booking {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .story-booking .ride-search {
    width: calc(100% - 16px);
    min-height: 0;
    padding: 10px;
    grid-template-columns: 1fr;
    gap: 7px;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(18,22,30,.20);
  }
  .story-booking .ride-field {
    min-height: 47px;
    padding: 5px 10px 5px 48px;
    border: 1px solid rgba(25,29,38,.07);
    border-radius: 7px;
    background: #f5f6f8;
  }
  .story-booking .field-icon {
    left: 7px;
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }
  .story-booking .field-icon svg {
    width: 18px;
    height: 18px;
  }
  .story-booking .ride-field label {
    margin-bottom: 1px;
    font-size: 10px;
  }
  .story-booking .ride-field input,
  .story-booking .ride-field input[type="datetime-local"] {
    font-size: 14px;
  }
  .story-booking .swap-button {
    display: none;
  }
  .story-booking .search-button {
    min-height: 46px;
    margin: 0;
    border-radius: 7px;
  }
  .story-booking .form-status {
    left: 12px;
    right: 12px;
    bottom: 3px;
    font-size: 10px;
  }
  .story-progress {
    left: 14px;
    right: 14px;
    top: 74px;
  }
  .turn-sequence {
    width: 118vw;
    transform: translate(-9vw, -4vh);
  }
  .story-shot-turn .story-route {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .service-cards {
    margin-top: 24px;
  }
  .service-card {
    min-height: 222px;
    grid-template-rows: 128px 1fr;
  }
  .service-card img {
    height: 112px;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  .story .hero-inner {
    padding-top: 66px;
    padding-bottom: calc(250px + env(safe-area-inset-bottom, 0px));
  }
  .story .hero h1 {
    margin-top: 7px;
    font-size: 32px;
  }
  .story .hero-copy > p {
    display: none;
  }
  .story-booking .ride-search {
    gap: 5px;
    padding: 8px;
  }
  .story-booking .ride-field,
  .story-booking .search-button {
    min-height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story .hero-buttons {
    display: flex;
  }
  .story-booking {
    position: static;
    order: 2;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .story-booking .ride-search {
    margin: 0 auto;
  }
  .story-shot-turn {
    display: none;
  }
}

/* Compact customer journey: booking, opening door, interior. */
.hero.story {
  height: 300vh;
}
.story-benefits {
  left: auto;
  right: max(28px, calc((100vw - 1420px) / 2));
  bottom: 10vh;
  width: min(470px, 38vw);
  transform: none;
  gap: 9px;
}
.story-benefits li {
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.story-benefits strong {
  color: #9b6b00;
  font-size: 14px;
}
.story-benefits span {
  color: #31343c;
  font-size: 14px;
}

@media (max-width: 767px) {
  .hero.story {
    height: 260vh;
  }
  .story-shot-cabin .story-scene-copy {
    top: 116px;
    bottom: auto;
  }
  .story-shot-cabin .story-scene-copy strong {
    font-size: 25px;
  }
  .story-benefits {
    left: 14px;
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    width: auto;
    gap: 6px;
  }
  .story-benefits li {
    grid-template-columns: 96px 1fr;
    min-height: 50px;
    padding: 9px 12px;
  }
  .story-benefits strong,
  .story-benefits span {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.story {
    height: auto;
  }
}

/* Mobile booking works like a focused app view instead of remaining inside
   the scroll-driven scene while the on-screen keyboard changes the viewport. */
.booking-panel-head {
  display: none;
}
.ride-field.has-error {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 3px rgba(180,35,24,.12);
}
body.booking-jump .story-booking {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.ride-field input {
  touch-action: manipulation;
}

@media (max-width: 767px) {
  .story-booking .ride-field input,
  .story-booking .ride-field input[type="datetime-local"] {
    font-size: 16px;
  }

  body.booking-mode {
    overflow: hidden;
    padding-bottom: 0;
  }
  body.booking-mode .site-header,
  body.booking-mode .mobile-quickbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  body.booking-mode .story-booking {
    position: fixed;
    z-index: 95;
    inset: 0;
    height: 100dvh;
    padding:
      max(18px, env(safe-area-inset-top, 0px))
      12px
      max(18px, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #f5f6f8;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  body.booking-mode .booking-panel-head {
    width: min(560px, 100%);
    min-height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .booking-panel-head span {
    display: block;
    margin-bottom: 4px;
    color: #8c6200;
    font-size: 11px;
    font-weight: 750;
  }
  .booking-panel-head strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
  }
  .booking-close {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  body.booking-mode .story-booking .ride-search {
    width: min(560px, 100%);
    min-height: 0;
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border: 1px solid rgba(17,18,22,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20,22,28,.12);
  }
  body.booking-mode .story-booking .ride-field {
    min-height: 64px;
    padding: 9px 12px 8px 54px;
    border: 1px solid rgba(25,29,38,.10);
    border-radius: 8px;
    background: #f7f7f8;
    scroll-margin: 24px;
  }
  body.booking-mode .story-booking .field-icon {
    left: 9px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  body.booking-mode .story-booking .ride-field label {
    margin-bottom: 3px;
    font-size: 12px;
  }
  body.booking-mode .story-booking .ride-field input,
  body.booking-mode .story-booking .ride-field input[type="datetime-local"] {
    font-size: 16px;
    line-height: 1.3;
  }
  body.booking-mode .story-booking .search-button {
    min-height: 54px;
    margin: 0;
    border-radius: 8px;
  }
  body.booking-mode .story-booking .form-status {
    position: static;
    min-height: 18px;
    padding-inline: 4px;
    text-align: left;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Supplied 51-frame sequence: one continuous, compact scroll movement. */
.hero.story {
  height: 240vh;
}
.story-frame-sequence {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: #e5e6e8;
}
.story-sequence-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.sequence-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(229,230,232,.48), transparent 42%),
    linear-gradient(180deg, rgba(229,230,232,.12), transparent 55%, rgba(229,230,232,.36));
  pointer-events: none;
}
.sequence-copy {
  position: absolute;
  z-index: 7;
  left: max(30px, calc((100vw - 1420px) / 2));
  bottom: 12vh;
  max-width: 560px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  opacity: 0;
  visibility: hidden;
}
.sequence-copy span {
  display: block;
  margin-bottom: 8px;
  color: #8c6200;
  font-size: 12px;
  font-weight: 760;
}
.sequence-copy strong {
  display: block;
  color: #17191e;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.04;
  font-weight: 690;
}
.story-frame-sequence + .sequence-copy {
  pointer-events: none;
}
.story-benefits {
  z-index: 8;
}

@media (max-width: 767px) {
  .hero.story {
    height: 230vh;
  }
  .sequence-shade {
    background:
      linear-gradient(180deg, rgba(229,230,232,.40), transparent 35%, rgba(229,230,232,.22)),
      linear-gradient(90deg, rgba(229,230,232,.20), transparent);
  }
  .sequence-copy {
    left: 16px;
    right: 16px;
    top: 116px;
    bottom: auto;
    max-width: none;
    padding-left: 14px;
  }
  .sequence-copy span {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .sequence-copy strong {
    font-size: clamp(26px, 8.2vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-frame-sequence,
  .sequence-copy,
  .story-benefits {
    display: none;
  }
}

/* Studio sequence is the hero itself, not a second scene after it. */
.hero.story {
  height: 220vh;
  background: #e5e6e8;
}
.story-frame-sequence {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.story-wide {
  z-index: 5;
  pointer-events: none;
}
.story-wide .hero-copy {
  pointer-events: auto;
}
.sequence-shade {
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.64) 26%, rgba(229,230,232,.10) 54%, transparent 72%),
    linear-gradient(180deg, rgba(229,230,232,.08), transparent 54%, rgba(229,230,232,.34));
}
.story-benefits {
  left: 50%;
  right: auto;
  bottom: 30px;
  width: min(1120px, calc(100% - 64px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateX(-50%);
}
.story-benefits li {
  grid-template-columns: auto 1fr;
  min-width: 0;
}

@media (max-width: 767px) {
  .hero.story {
    height: 205vh;
  }
  .story .hero-inner {
    padding-bottom: calc(274px + env(safe-area-inset-bottom, 0px));
  }
  .sequence-shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(255,255,255,.30) 28%, transparent 48%, rgba(229,230,232,.16)),
      linear-gradient(90deg, rgba(229,230,232,.12), transparent);
  }
  .story-benefits {
    left: 14px;
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    width: auto;
    grid-template-columns: 1fr;
    transform: none;
  }
  body.story-booking-visible .story-progress {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-frame-sequence {
    position: absolute;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .story-frame-sequence .sequence-shade {
    display: block;
  }
}

/* V2 studio sequence: the supplied 21 frames are the complete hero story. */
.hero.story {
  height: 210vh;
  background: #e5e6e8;
}
.story-header {
  height: 80px;
  padding-inline: max(24px, calc((100vw - 1420px) / 2));
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(17,18,22,.07);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
}
.story-header.is-stuck {
  height: 68px;
}
.story .hero-inner {
  padding-top: 104px;
}
.story-frame-sequence {
  background: #d7d8da;
}
.sequence-shade {
  background:
    linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.48) 27%, rgba(229,230,232,.08) 52%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.12), transparent 55%, rgba(213,214,216,.18));
}
.hero.story[data-scene="start"] .sequence-shade {
  background:
    linear-gradient(270deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.52) 28%, rgba(229,230,232,.08) 54%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 55%, rgba(213,214,216,.16));
}
.story .hero-copy {
  grid-column: 2;
  width: min(540px, 42vw);
  margin-left: auto;
}
.sequence-copy {
  top: 122px;
  bottom: auto;
  max-width: min(560px, 42vw);
}
.sequence-copy strong {
  text-wrap: balance;
}
.story-benefits {
  bottom: 24px;
  width: min(1160px, calc(100% - 64px));
  gap: 10px;
}
.story-benefits li {
  min-height: 58px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(25,29,36,.10);
}

@media (max-width: 767px) {
  .hero.story {
    height: 195vh;
  }
  .story-header {
    height: 70px;
    padding-inline: 14px;
  }
  .story-header.is-stuck {
    height: 64px;
  }
  .story .hero-inner {
    padding-top: 78px;
  }
  .sequence-shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.34) 25%, transparent 46%, rgba(213,214,216,.12)),
      linear-gradient(90deg, rgba(255,255,255,.16), transparent 70%);
  }
  .hero.story[data-scene="start"] .sequence-shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.34) 25%, transparent 46%, rgba(213,214,216,.12)),
      linear-gradient(90deg, rgba(255,255,255,.16), transparent 70%);
  }
  .story .hero-copy {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
  }
  .sequence-copy {
    top: 116px;
    right: 16px;
    max-width: none;
  }
  .story-benefits {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.story {
    height: auto;
  }
}
