/* =========================================================
   Taxi 305000 – Stylesheet  (mobil zuerst)
   Palette: sattes Gelb + Rot + Schwarz. Tokens unten anpassbar.
   ========================================================= */
:root {
  --gelb:        #ffd400;
  --gelb-dunkel: #e6bd00;
  --rot:         #e2231a;
  --rot-dunkel:  #b81b14;
  --schwarz:     #16181c;
  --nacht:       #0f1115;
  --text:        #191c21;
  --leise:       #5e6671;
  --weiss:       #ffffff;
  --grau:        #f5f6f8;
  --grau-2:      #eef0f3;
  --rand:        #e2e6ec;

  --radius:   16px;
  --radius-s: 11px;
  --schatten:    0 6px 22px rgba(15,17,21,.10);
  --schatten-lg: 0 16px 44px rgba(15,17,21,.18);
  --max: 1160px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

body {
  margin: 0; font-family: var(--font); color: var(--text); background: var(--weiss);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* Platz für die fixe Bottom-Bar (mobil) */
}
h1, h2, h3 { line-height: 1.16; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.3rem); }
h2 { font-size: clamp(1.55rem, 4.5vw, 2.3rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
:focus-visible { outline: 3px solid var(--rot); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--schwarz); color: #fff; padding: .7rem 1.1rem; }
.skip-link:focus { left: 0; }
.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; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--schwarz); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--bg); color: var(--fg); font: inherit; font-weight: 800;
  padding: .72em 1.25em; border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--schatten); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--gelb); --fg: var(--schwarz); }
.btn--primary:hover { --bg: var(--gelb-dunkel); }
.btn--red { --bg: var(--rot); --fg: #fff; }
.btn--red:hover { --bg: var(--rot-dunkel); }
.btn--wa { --bg: #25d366; --fg: #08311c; }
.btn--wa:hover { --bg: #1ebe5d; }
.btn--ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { --bg: rgba(0,0,0,.06); }
.btn--lg { padding: .9em 1.6em; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Topbar ---------- */
.topbar { position: sticky; top: 0; z-index: 100; background: var(--schwarz); color: #fff; border-bottom: 3px solid var(--gelb); }
.topbar__inner { display: flex; align-items: center; gap: .6rem; min-height: 60px; }
.brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 900; font-size: 1.15rem; color: #fff; }
.brand:hover { text-decoration: none; }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--gelb); color: var(--schwarz); border-radius: 9px; font-weight: 900; }
.brand__name { letter-spacing: -.02em; }

.topbar__nav { display: none; margin-left: auto; gap: 1.1rem; }
.topbar__nav a { color: #d7dbe2; font-weight: 700; }
.topbar__nav a:hover { color: var(--gelb); text-decoration: none; }

.topbar__actions { display: flex; align-items: center; gap: .4rem; margin-left: auto; }
.iconbtn { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem; border-radius: 999px; color: #fff; font-weight: 800; font-size: .95rem; }
.iconbtn .icon { width: 1.3rem; height: 1.3rem; }
.iconbtn__txt { display: none; }
.iconbtn--call { background: var(--gelb); color: var(--schwarz); padding: .5rem .9rem; }
.iconbtn--call:hover { background: var(--gelb-dunkel); text-decoration: none; }
.iconbtn--wa { color: #25d366; }
.iconbtn--mail { color: #fff; }
.iconbtn--wa:hover, .iconbtn--mail:hover { text-decoration: none; transform: translateY(-1px); }

.topbar__burger { display: inline-flex; margin-left: .2rem; background: transparent; border: 0; color: #fff; cursor: pointer; padding: .4rem; }
.topbar__burger .icon { width: 26px; height: 26px; }

/* ---------- Hero (echtes Foto: Maria-Theresien-Straße mit Nordkette, Bildnachweis im Footer) ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #f4f6fa;
  background:
    linear-gradient(102deg, rgba(11,13,18,.92) 0%, rgba(11,13,18,.78) 34%, rgba(11,13,18,.38) 66%, rgba(11,13,18,.5) 100%),
    url("../img/foto-hero-innsbruck.jpg") center 32% / cover no-repeat,
    linear-gradient(160deg, var(--nacht) 0%, #1b1f27 60%, #121419 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3rem, 9vw, 6.5rem); max-width: 760px; }
.hero__title, .hero__sub { text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem 1.4rem; margin: 1.5rem 0 0; padding: 0; font-size: .93rem; font-weight: 650; color: #c8cdd6; }
.hero__facts li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__facts .icon { width: 1em; height: 1em; color: var(--gelb); }
.hero__eyebrow { display: inline-block; margin: 0 0 1rem; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gelb); border: 1px solid rgba(255,212,0,.45); border-radius: 999px; padding: .3rem .8rem; }
.hero__title { margin-bottom: .35em; }
.hl { color: var(--gelb); }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.28rem); color: #c8cdd6; max-width: 58ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__services { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .95rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #eef1f5; font-weight: 700; font-size: .95rem; backdrop-filter: blur(3px); }
.chip:hover { background: rgba(255,212,0,.16); border-color: var(--gelb); color: #fff; text-decoration: none; }
.chip .icon { width: 1.05em; height: 1.05em; color: var(--gelb); }

/* ---------- Start-Seiten (Google-artig kompakt, aber mit Innsbruck-Stimmung:
              Foto-Hintergrund + dunkles Glas; Bildnachweis siehe Footer/docs) ---------- */
body.start {
  padding-bottom: 0; color: #f2f4f8;
  background:
    linear-gradient(180deg, rgba(11,13,18,.62) 0%, rgba(11,13,18,.76) 55%, rgba(11,13,18,.9) 100%),
    url("../img/foto-hero-innsbruck.jpg") center 30% / cover no-repeat,
    var(--nacht);
}
.start__main { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.start__mitte { flex: 1; width: 100%; max-width: 680px; margin-inline: auto; padding: 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.05rem; text-align: center; }
.start__logo { width: 88px; height: 88px; border-radius: 24px; background: var(--gelb); color: var(--schwarz); display: grid; place-items: center; font-size: 3.1rem; font-weight: 900; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.start__mitte h1 { margin: 0; font-size: clamp(2rem, 6.5vw, 2.8rem); color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.start__claim { margin: 0; color: #d2d8e2; font-weight: 650; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.start__wahl { display: grid; grid-template-columns: 1fr; gap: .85rem; width: 100%; margin-top: .3rem; }
.startkachel { display: flex; align-items: center; gap: .9rem; padding: 1.05rem 1.15rem; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(20,23,29,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-weight: 800; font-size: 1.1rem; box-shadow: 0 8px 26px rgba(0,0,0,.35); transition: transform .12s ease, border-color .12s ease, background .12s ease; text-align: left; }
.startkachel:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--gelb); background: rgba(26,29,36,.75); }
.startkachel__icon { flex: none; display: grid; place-items: center; width: 2.9rem; height: 2.9rem; background: var(--gelb); color: var(--schwarz); border-radius: 12px; }
.startkachel__icon .icon { width: 1.5rem; height: 1.5rem; }
.startkachel small { display: block; font-weight: 600; color: #bcc4d0; font-size: .85rem; }
.startkachel--bild { position: relative; min-height: 150px; align-items: flex-end; border: 1px solid rgba(255,255,255,.18); overflow: hidden; background-size: cover; background-position: center; backdrop-filter: none; -webkit-backdrop-filter: none; }
.startkachel--bild::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.66)); }
.startkachel--bild > * { position: relative; z-index: 1; }
.startkachel--bild small { color: #e6eaf0; }
.start__zurueck { font-size: .88rem; font-weight: 700; color: #cdd3dd; }
.start__zurueck:hover { color: #fff; }
.start__fuss { padding: .9rem 1.2rem calc(.9rem + env(safe-area-inset-bottom)); font-size: .78rem; color: #98a2b0; text-align: center; }
.start__fuss a:hover { color: var(--gelb); }
@media (min-width: 560px) { .start__wahl { grid-template-columns: 1fr 1fr; } }

/* ---------- Preisrechner (Google-Maps-Flow: Felder gestapelt, Karte, Aktionen unten) ---------- */
.pr { max-width: 720px; margin-inline: auto; text-align: left; display: flex; flex-direction: column; }
.pr__felder { position: relative; }
.pr__zeilen { display: flex; flex-direction: column; gap: .5rem; }
.pr__pin { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); width: .82rem; height: .82rem; border-radius: 50%; z-index: 1; pointer-events: none; }
.pr__pin--von  { background: var(--gelb); border: 2px solid var(--schwarz); }
.pr__pin--nach { background: var(--rot);  border: 2px solid var(--schwarz); }
.pr .pr__input { padding-left: 2.2rem; padding-right: 3.1rem; }
.pr .pr__input--vorschlag { color: var(--leise); }
.pr__tausch { position: absolute; right: .45rem; top: 50%; transform: translateY(-50%); width: 2.1rem; height: 2.1rem; border-radius: 50%; border: 1px solid var(--rand); background: var(--weiss); color: var(--text); font-size: 1.15rem; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 3; box-shadow: var(--schatten); }
.pr__tausch:hover { background: var(--grau); }
.pr__map { height: 300px; margin-top: .7rem; border-radius: var(--radius-s); border: 1px solid var(--rand); background: #e9ecef; position: relative; z-index: 0; }
/* z-index 31 > .ac__list (30): bleibt auch bei offenem Autocomplete-Dropdown klickbar */
.pr__suchen { position: relative; z-index: 31; align-self: flex-end; margin-top: .45rem; padding: .38rem .9rem; border: 1px solid var(--rand); border-radius: 999px; background: var(--grau); color: var(--text); font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer; box-shadow: var(--schatten); }
.pr__suchen:hover { background: var(--grau-2); }
.pr__unten { margin-top: .7rem; }
.pr__ergebnis { display: flex; align-items: baseline; flex-wrap: wrap; gap: .05rem .7rem; margin: 0 0 .6rem; }
.pr__ergebnis[hidden] { display: none; }
.pr__preis { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.pr__weg { font-size: .95rem; font-weight: 700; color: var(--leise); }
.pr__ergebnis.is-error .pr__preis { font-size: 1rem; color: var(--rot); }
.pr__aktionen { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
.pr__akt { display: inline-flex; align-items: center; justify-content: center; gap: .28rem; padding: .72rem .25rem; border-radius: 999px; font: inherit; font-weight: 800; font-size: clamp(.72rem, 2.6vw, .9rem); border: 0; cursor: pointer; text-decoration: none; white-space: nowrap; min-width: 0; transition: transform .12s ease; }
.pr__akt-ic { font-size: .98em; }
.pr__akt:hover { transform: translateY(-1px); text-decoration: none; }
.pr__akt--call { background: var(--gelb); color: var(--schwarz); }
.pr__akt--wa   { background: #25d366; color: #08311c; }
.pr__akt--best { background: var(--schwarz); color: #fff; }
.ac__item--loc .ac__label { font-weight: 800; color: var(--rot); }

/* ---------- Taxi-Seite als App-Screen (kein Scroll: Felder + Karte füllen, Aktionen unten) ---------- */
body.app { padding-bottom: 0; overflow-x: hidden; }
/* Startseiten-Rechner im App-Modus (data-karte="viewport"): preisrechner.js setzt
   die Formhöhe passend zum Viewport, die Karte füllt den Rest zwischen Feldern
   und Aktionsknöpfen (analog .taxiapp, nur mitten im One-Pager). */
.pr--app .pr__map { flex: 1; height: auto; min-height: 140px; }

/* ---------- Vorbestellung/Anfrage (buchung.js) – gleicher pr__-Stil ---------- */
.pr--buchung { gap: .65rem; }
.pr--buchung .bu__titel { margin: 0; font-size: 1.12rem; }
.bu__dz { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.bu__feldgrp { display: flex; flex-direction: column; min-width: 0; }
.bu__feldgrp .form__label { margin-bottom: .25rem; }
.pr--buchung .form__textarea { min-height: 60px; }
.bu__hinweis { margin: 0; font-size: .85rem; color: var(--leise); }
.bu__senden { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.bu__fehler { margin: 0; }
.bu__fehler:empty { display: none; }
.pr--buchung .is-fehlt { border-color: var(--rot); }
.pr--buchung .notice { margin-top: 0; }

.taxiapp { height: calc(100vh - 63px); height: calc(100dvh - 63px); display: flex; flex-direction: column; width: 100%; max-width: 1000px; margin-inline: auto; overflow-x: clip; }
.taxiapp .rechner { flex: 1; display: flex; flex-direction: column; min-height: 0; max-width: none; }
.taxiapp .lazy-mount { flex: 1; display: flex; flex-direction: column; min-height: 0; text-align: left; }
.taxiapp .pr { flex: 1; display: flex; flex-direction: column; min-height: 0; max-width: 640px; padding: .25rem clamp(.8rem, 3vw, 1.2rem) 0; }
.taxiapp .pr__map { flex: 1; min-height: 140px; height: auto; margin: .55rem 0; }
.taxiapp .pr__unten { margin-top: 0; }
.taxiapp__fuss { padding: .3rem .6rem calc(.4rem + env(safe-area-inset-bottom)); text-align: center; font-size: .72rem; color: var(--leise); }
.taxiapp__fuss a:hover { color: var(--text); }

/* ---------- Subpage-Kopf (kompakter dunkler Balken statt Vollbild-Hero) ---------- */
.subhero { color: #f4f6fa; background: linear-gradient(150deg, var(--nacht) 0%, #1c212b 65%, #14171d 100%); border-bottom: 3px solid var(--gelb); }
.subhero__inner { padding-block: clamp(1.8rem, 5vw, 3rem); }
.subhero h1 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin-bottom: .25em; }
.subhero p { color: #c8cdd6; max-width: 62ch; margin: 0; }
.subhero .zurueck { display: inline-block; margin-bottom: .8rem; font-size: .85rem; font-weight: 700; color: var(--gelb); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(2.6rem, 7vw, 5rem); }
.section--alt { background: var(--grau); }
.section--dark { background: var(--schwarz); color: #eef1f5; }
.section__head { max-width: 680px; margin: 0 auto clamp(1.6rem, 4vw, 2.6rem); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head--light h2 { color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--rot); margin: 0 0 .5rem; }
.svc__num { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; background: var(--rot); color: #fff; border-radius: 50%; font-size: .85rem; }
.lead { color: var(--leise); font-size: 1.06rem; }
.section--dark .lead { color: #aeb6c2; }
.section__cta { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.6rem; }
.section__cta--left { justify-content: flex-start; }

/* ---------- Lazy-Mounts / Rechner ---------- */
.rechner { max-width: 720px; margin-inline: auto; }
.lazy-mount { text-align: center; min-height: 70px; }
.lazy-hint { margin: .8rem 0 0; font-size: .9rem; color: var(--leise); }
.section--dark .lazy-hint { color: #99a2b0; }
.lazy-mount.is-loading::after { content: ""; display: block; width: 32px; height: 32px; margin: 1.1rem auto 0; border: 3px solid rgba(125,125,125,.3); border-top-color: var(--gelb); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Transfer-Karten ---------- */
.transfer-cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.tcard { background: var(--weiss); border: 1px solid var(--rand); border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; color: var(--text); text-decoration: none; font: inherit; text-align: left; padding: 0; cursor: pointer; }
.tcard:hover { text-decoration: none; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--schatten-lg); }
.tcard__img { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; color: #fff; font-weight: 800; letter-spacing: .02em; background: linear-gradient(135deg, #2a2f3a, #454d5e); background-size: cover; background-position: center; }
.tcard__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55)); }
.tcard__imgtext { position: relative; z-index: 1; font-size: 1.25rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.tcard__ph { position: absolute; top: .6rem; left: .6rem; z-index: 1; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; background: rgba(0,0,0,.55); color: #ffd400; padding: .2rem .5rem; border-radius: 6px; }
.tcard__body { padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.tcard__name { font-weight: 800; font-size: 1.05rem; }
.tcard__price { text-align: right; line-height: 1.1; }
.tcard__price b { font-size: 1.35rem; color: var(--rot); }
.tcard__price small { display: block; font-size: .72rem; color: var(--leise); font-weight: 700; }

/* ---------- Transfer-Schnellrechner ---------- */
.transfer-rechner { margin-top: 1.6rem; }
.trr__titel { margin: 0 0 .9rem; font-size: 1.15rem; }
.trr__titel small { font-size: .8rem; font-weight: 700; color: var(--leise); }

/* Sprachumschalter (DE|EN) in der Topbar */
.sprachlink { display: inline-flex; align-items: center; font-weight: 800; font-size: .78rem; letter-spacing: .04em; padding: .35rem .55rem; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; color: #fff; }
.sprachlink:hover { border-color: var(--gelb); color: var(--gelb); text-decoration: none; }

/* Service-Chips im dunklen Seitenkopf (Flughafenabholung, Bus, Ski …) */
.subhero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; padding: 0; list-style: none; }
.subhero__chips .chip { font-size: .82rem; padding: .35rem .75rem; }

/* Foto auf den Destination-Seiten (Wikimedia, Credit in der figcaption) */
.destfoto { margin: 0 0 1.2rem; }
.destfoto img { display: block; width: 100%; height: auto; border-radius: var(--radius-s); border: 1px solid var(--rand); }
.destfoto figcaption { font-size: .75rem; color: var(--leise); margin-top: .35rem; }

/* Fakten-Box der Destination-Seiten (/transfer/<ort>/, Werte via transfers.js) */
.destfakten { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; max-width: 760px; margin-inline: auto; }
.destfakt { background: var(--weiss); border: 1px solid var(--rand); border-radius: var(--radius-s); padding: .9rem 1rem; box-shadow: var(--schatten); display: flex; flex-direction: column; gap: .15rem; }
.destfakt__wert { font-size: 1.25rem; font-weight: 900; color: var(--rot); }
.destfakt__label { font-size: .8rem; font-weight: 700; color: var(--leise); }
@media (min-width: 760px) { .destfakten { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Preistabelle ---------- */
.preistabelle-wrap { max-width: 760px; margin: 1.4rem auto 0; }
.preistabelle-wrap > summary { cursor: pointer; font-weight: 800; color: var(--rot); padding: .6rem 0; }
.preistabelle { width: 100%; border-collapse: collapse; margin-top: .6rem; font-size: .95rem; }
.preistabelle th, .preistabelle td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--rand); }
.preistabelle th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--leise); }
.preistabelle td.preis { text-align: right; font-weight: 800; color: var(--rot); white-space: nowrap; }
.preistabelle tr:hover td { background: var(--grau); }

/* ---------- Krankentransporte ---------- */
.kranken { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: center; }
.kranken__media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); display: grid; place-items: center; background: linear-gradient(135deg, var(--grau-2), #dde2ea); color: #aeb6c2; border: 1px dashed var(--rand); }
.kranken__media--bild { border: 0; overflow: hidden; box-shadow: var(--schatten); }
.kranken__media--bild img { width: 100%; height: 100%; object-fit: cover; }
.kranken__badge { position: absolute; top: .7rem; left: .7rem; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; background: rgba(22,24,28,.6); color: var(--gelb); padding: .2rem .55rem; border-radius: 6px; }
.kranken__plus { font-size: 3rem; color: var(--rot); opacity: .55; line-height: 1; }
.kranken__ph { position: absolute; bottom: .8rem; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.infolist { list-style: none; margin: 0 0 1rem; padding: 0; }
.infolist li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; }
.infolist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--rot); width: 1.2rem; height: 1.2rem; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 900; }

/* ---------- Vorteile ---------- */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 1.8rem); }
.feature { text-align: center; }
.feature__icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto .7rem; font-size: 1.55rem; background: var(--gelb); border-radius: 50%; color: var(--schwarz); }
.feature__icon .icon { width: 1.55rem; height: 1.55rem; }
.feature h3 { margin-bottom: .2em; }
.feature p { color: var(--leise); margin: 0; font-size: .95rem; }
.section--alt .feature__icon { background: var(--weiss); box-shadow: var(--schatten); }

/* ---------- Footer ---------- */
.footer { background: var(--schwarz); color: #c4cad4; padding-top: clamp(2.2rem, 6vw, 3.6rem); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: .6em; }
.footer__col p { margin: 0 0 .5rem; }
.footer__col a:hover { color: var(--gelb); }
.brand--footer { color: #fff; margin-bottom: .6rem; }
.footer__bottom { margin-top: 2rem; padding-block: 1.3rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .86rem; color: #99a2b0; }
.footer__bottom a:hover { color: var(--gelb); }
.footer__note { margin: 0; }
.footer__credits { width: 100%; font-size: .78rem; color: #7d8694; }
.footer__credits summary { cursor: pointer; }
.footer__credits p { margin: .4rem 0 0; }

/* ---------- Rechtstext (Impressum, Datenschutz) ---------- */
.rechtstext { max-width: 760px; margin-inline: auto; }
.rechtstext > h2 { margin-top: 2.2rem; font-size: 1.32rem; }
.rechtstext > h2:first-child { margin-top: 0; }
.rechtstext h3 { margin-top: 1.5rem; color: var(--rot); font-size: 1.02rem; }
.rechtstext p, .rechtstext li { color: var(--text); }
.rechtstext a { color: var(--rot); text-decoration: underline; }
.rechtstext a:hover { color: var(--rot-dunkel); }
.rechtstext ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.rechtstext li { margin-bottom: .4rem; }
.rechtstext dl { margin: 0 0 1.3rem; }
.rechtstext dt { font-weight: 800; margin-top: .9rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--leise); }
.rechtstext dd { margin: .1rem 0 0; font-weight: 600; }
.rechtstext .stand { margin-top: 2.6rem; padding-top: 1rem; border-top: 1px solid var(--rand); font-size: .85rem; color: var(--leise); }

/* ---------- Sticky Bottom-Bar (Hörer zentral) ---------- */
.bottombar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr auto 1fr; align-items: stretch; background: var(--schwarz); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 -6px 20px rgba(0,0,0,.25); }
.bottombar__side { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: .5rem; color: #e7eaef; font-size: .72rem; font-weight: 700; }
.bottombar__side .icon { width: 1.4rem; height: 1.4rem; }
.bottombar__side:first-child { color: #25d366; }
.bottombar__side--preis { color: var(--gelb); }
.bottombar__side:hover { text-decoration: none; background: rgba(255,255,255,.06); }
.bottombar__call { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; min-width: 130px; margin: -14px 12px 0; padding: .5rem 1.4rem .45rem; background: var(--gelb); color: var(--schwarz); border-radius: 16px 16px 0 0; font-weight: 900; box-shadow: 0 -4px 14px rgba(255,212,0,.4); }
.bottombar__call .icon { width: 1.5rem; height: 1.5rem; }
.bottombar__call span { font-size: .82rem; }
.bottombar__call:hover { text-decoration: none; background: var(--gelb-dunkel); }

/* =========================================================
   Formulare & Ergebnis (Preisrechner + Buchung)
   ========================================================= */
.panel { max-width: 720px; margin-inline: auto; text-align: left; background: var(--weiss); color: var(--text); border: 1px solid var(--rand); border-radius: var(--radius); padding: clamp(1.2rem, 4vw, 2.1rem); box-shadow: var(--schatten); }
.section--dark .panel { border-color: transparent; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.form__group { margin-bottom: 1.05rem; display: flex; flex-direction: column; }
.form__group--full { grid-column: 1 / -1; }
.form__label { font-weight: 700; font-size: .92rem; margin-bottom: .35rem; }
.form__req { color: var(--rot); }
.form__input, .form__select, .form__textarea { font: inherit; color: var(--text); padding: .7rem .85rem; border: 1.5px solid var(--rand); border-radius: var(--radius-s); background: var(--weiss); width: 100%; transition: border-color .12s ease, box-shadow .12s ease; }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--gelb); box-shadow: 0 0 0 3px rgba(255,212,0,.3); }
.form__textarea { resize: vertical; min-height: 84px; }
.form__hint { font-size: .82rem; color: var(--leise); margin: .3rem 0 0; }
.form__error { color: var(--rot); font-size: .82rem; margin: .3rem 0 0; min-height: 0; }
.form__group.has-error .form__input, .form__group.has-error .form__select { border-color: var(--rot); }
.form__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: .5rem; }
.form__check { display: flex; align-items: center; gap: .6rem; font-weight: 600; cursor: pointer; }
.form__check input { width: 1.15rem; height: 1.15rem; accent-color: var(--gelb); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } /* Honeypot */

.result { margin-top: 1.3rem; padding: 1.1rem 1.2rem; border-radius: var(--radius-s); background: var(--grau); border: 1px dashed var(--rand); }
.result__price { font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 900; color: var(--text); margin: 0; }
.result__price small { font-size: .9rem; font-weight: 600; color: var(--leise); }
.result__break { margin: .5rem 0 0; font-weight: 700; color: var(--text); }
.result__route { margin: .45rem 0 0; font-size: .9rem; color: var(--leise); }
.result__route em { font-style: normal; color: var(--text); font-weight: 600; }
.result[hidden] { display: none; }
.result.is-error { background: #fdeaea; border-color: #f3c0c0; }
.result.is-error .result__price { font-size: 1.1rem; color: var(--rot); font-weight: 800; }
.result.is-error .result__route a { color: var(--rot); font-weight: 800; text-decoration: underline; }

/* Karte unterm Ergebnis (Leaflet). Eigener Stacking-Context (z-index: 0),
   damit die Leaflet-Panes (intern z-index bis 800) nicht über Topbar/Bottombar ragen. */
.result__map { height: min(340px, 58vw); margin-top: .95rem; border-radius: var(--radius-s); border: 1px solid var(--rand); position: relative; z-index: 0; background: #e9ecef; }
.result__map[hidden] { display: none; }
.karte-preis { font-weight: 800; font-size: .95rem; }

/* Autocomplete */
.ac { position: relative; }
.ac__list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30; margin: 0; padding: .25rem; list-style: none; background: var(--weiss); color: var(--text); border: 1px solid var(--rand); border-radius: var(--radius-s); box-shadow: var(--schatten-lg); max-height: 260px; overflow-y: auto; }
.ac__list[hidden] { display: none; }
.ac__item { display: flex; align-items: flex-start; gap: .55rem; padding: .55rem .65rem; border-radius: 8px; cursor: pointer; font-size: .95rem; }
.ac__item:hover, .ac__item.is-active { background: var(--grau); }
.ac__badge { flex: none; font-size: .85rem; color: var(--leise); margin-top: .15rem; }
.ac__label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ac__sub { display: block; font-size: .78rem; color: var(--leise); margin-top: .05rem; overflow: hidden; text-overflow: ellipsis; }

/* Große Karte auf der Taxi-Seite (sofort sichtbar, Route erscheint darin) */
.result__map--gross { height: min(58vh, 520px); margin: .2rem 0 1.05rem; }

/* Standort-Knopf unterm Von-Feld */
.standort-btn { align-self: flex-start; margin-top: .4rem; padding: .3rem .7rem; border: 1px solid var(--rand); border-radius: 999px; background: var(--grau); color: var(--text); font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.standort-btn:hover { background: var(--grau-2); }
.standort-btn[disabled] { opacity: .7; cursor: wait; }
.standort-btn[hidden] { display: none; }

/* Lösch-X in den Adressfeldern */
.ac .form__input { padding-right: 2.5rem; }
.ac__clear { position: absolute; right: .5rem; top: 50%; transform: translateY(-50%); width: 1.65rem; height: 1.65rem; padding: 0; border: 0; border-radius: 50%; background: var(--rand); color: var(--text); font-size: 1.05rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ac__clear:hover { background: #d0d6de; }
.ac__clear[hidden] { display: none; }
.ac__empty { padding: .55rem .65rem; color: var(--leise); font-size: .9rem; }

/* Erfolgsmeldung */
.notice { margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: var(--radius-s); border: 1px solid; font-weight: 600; }
.notice--ok { background: #eafaf0; border-color: #bfe9cd; color: #166534; }
.notice[hidden] { display: none; }

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 560px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .transfer-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 760px) {
  .iconbtn__txt { display: inline; }
  .kranken { grid-template-columns: 1fr 1.1fr; }
  .features { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }            /* Bottom-Bar nur mobil */
  .bottombar { display: none; }
  .topbar__nav { display: flex; }
  .transfer-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 899px) {
  /* Mobile Navigation als Dropdown unter der Topbar */
  .topbar__nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; background: var(--schwarz); padding: .4rem; border-bottom: 3px solid var(--gelb); max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .25s ease, visibility .25s; }
  .topbar__nav.is-open { display: flex; max-height: 60vh; visibility: visible; }
  .topbar__nav a { padding: .8rem 1rem; border-radius: var(--radius-s); }
  .iconbtn--wa .iconbtn__txt, .iconbtn--mail .iconbtn__txt { display: none; }
}
@media (max-width: 559px) {
  .iconbtn--wa, .iconbtn--mail { display: none; }   /* mobil decken WhatsApp/Mail die Bottom-Bar ab */
  .iconbtn--call .iconbtn__txt { display: none; }
}
