/* ==========================================================================
   EC BIKEFIX — Design System
   Marke: Navy / Signalblau / Cyan  ·  Claim: "Dein Rad. Unser Einsatz."
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #071A33;
  --navy-800: #0A2247;
  --navy-700: #0B2A5B;
  --navy-600: #123A76;
  --blue-600: #1A56C4;
  --blue-500: #2E6BE0;
  --cyan-500: #29B6E8;
  --cyan-400: #4FC9F2;

  /* Semantic — Light */
  --bg: #F4F7FB;
  --bg-elevated: #FFFFFF;
  --surface: #FFFFFF;
  --surface-muted: #EDF2F9;
  --ink: #0A1B33;
  --ink-soft: #40536E;
  --ink-faint: #6C7E97;
  --on-dark: #FFFFFF;
  --on-dark-soft: #B9C9DF;
  --border: #DCE5F0;
  --border-strong: #C3D2E4;
  --primary: var(--navy-700);
  --accent: var(--blue-600);
  --accent-ink: #FFFFFF;
  --highlight: var(--cyan-500);
  --success: #128A5B;
  --danger: #C0392B;
  --ring: var(--cyan-500);

  /* Typo */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.90rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.09rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.44rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.80rem, 1.50rem + 1.45vw, 2.85rem);
  --step-4:  clamp(2.10rem, 1.60rem + 2.30vw, 3.55rem);
  --step-5:  clamp(2.70rem, 1.75rem + 4.40vw, 5.40rem);

  /* Space (Density 5 / Standard) */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Shape & Motion */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(7, 26, 51, .06), 0 2px 8px rgba(7, 26, 51, .05);
  --shadow-md: 0 8px 28px rgba(7, 26, 51, .10);
  --shadow-lg: 0 22px 60px rgba(7, 26, 51, .16);
  --dur-fast: 150ms;
  --dur: 220ms;
  --dur-slow: 380ms;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --container: 1200px;
  --header-h: 76px;

  /* Layer scale */
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 40;
  --z-header: 100;
  --z-overlay: 900;
  --z-modal: 1000;

  --logo-ink: var(--navy-700);
  --logo-accent: var(--cyan-500);
}

[data-theme="dark"] {
  --bg: #060F1E;
  --bg-elevated: #0C1B31;
  --surface: #0E2039;
  --surface-muted: #132844;
  --ink: #EAF2FC;
  --ink-soft: #A9BDD6;
  --ink-faint: #8399B5;
  --border: #1E3557;
  --border-strong: #2B4770;
  --primary: #EAF2FC;
  --accent: #3D7BF0;
  --accent-ink: #041022;
  --highlight: var(--cyan-400);
  --success: #34C48A;
  --danger: #F0766A;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, .55);
  --logo-ink: #EAF2FC;
  --logo-accent: var(--cyan-400);
  color-scheme: dark;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 var(--space-sm);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); letter-spacing: -0.012em; }
p  { margin: 0 0 var(--space-sm); max-width: 68ch; }

a { color: inherit; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--cyan-500); color: var(--navy-900); }

/* ---------- 3. Layout utilities ---------- */
.container {
  width: min(100% - 2 * var(--space-md), var(--container));
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .container { width: min(100% - 2 * var(--space-lg), var(--container)); }
}

.section { padding-block: var(--space-2xl); position: relative; }
.section--tight { padding-block: var(--space-xl); }
.section--dark {
  background: var(--navy-800);
  color: var(--on-dark);
  --ink: var(--on-dark);
  --ink-soft: var(--on-dark-soft);
  --border: rgba(255, 255, 255, .14);
  --border-strong: rgba(255, 255, 255, .24);
  --surface: rgba(255, 255, 255, .05);
  --surface-muted: rgba(255, 255, 255, .07);
}

.stack > * + * { margin-top: var(--space-sm); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-sm);
}
.section--dark .eyebrow { color: var(--cyan-400); }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }
.section-head { max-width: 62ch; margin-bottom: var(--space-lg); }

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -100px;
  z-index: var(--z-modal);
  background: var(--navy-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-sm); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-ink: var(--accent-ink);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 2px solid var(--btn-border);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(.985); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { --btn-bg: var(--accent); --btn-ink: #fff; }
.btn--primary:hover { --btn-bg: var(--blue-500); }
.btn--dark { --btn-bg: var(--navy-700); --btn-ink: #fff; }
.btn--dark:hover { --btn-bg: var(--navy-600); }
.btn--whatsapp { --btn-bg: #1FAE54; --btn-ink: #fff; }
.btn--whatsapp:hover { --btn-bg: #17994a; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);
  --btn-border: var(--border-strong);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--surface-muted); --btn-border: var(--accent); }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: var(--step--1); }
.btn--block { width: 100%; }

/* ---------- 4b. Hinweisleiste ---------- */
.noticebar {
  background: var(--navy-700);
  color: #fff;
  font-size: .92rem;
  line-height: 1.45;
}
[data-theme="dark"] .noticebar { background: var(--blue-600); }
.noticebar__inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 10px;
}
.noticebar svg { flex: none; width: 19px; height: 19px; color: var(--cyan-400); margin-top: 2px; }
[data-theme="dark"] .noticebar svg { color: #fff; }

/* ---------- 5. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand__mark { width: 48px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand__claim {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.section--dark .brand__claim, .footer .brand__claim { color: var(--cyan-400); }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--surface-muted); }
.nav__link[aria-current="true"] { color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.icon-btn:hover { background: var(--surface-muted); border-color: var(--border-strong); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn .icon-moon { display: none; }
[data-theme="dark"] .icon-btn .icon-moon { display: block; }
[data-theme="dark"] .icon-btn .icon-sun { display: none; }

.nav-toggle { display: none; }

@media (max-width: 1149px) {
  .nav-toggle { display: inline-flex; }
  .header__actions .btn { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) var(--space-md) var(--space-md);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { min-height: 52px; font-size: 1.05rem; padding: 0 12px; }
  .nav__cta { margin-top: var(--space-sm); display: grid; gap: 10px; }
}
@media (min-width: 1150px) {
  .nav__cta { display: none; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding-block: var(--space-xl) var(--space-2xl);
  overflow: hidden;
}
.hero__stripes {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
  overflow: hidden;
}
.hero__stripe {
  position: absolute;
  left: -12%;
  width: 124%;
  transform: rotate(-6deg);
  border-radius: 4px;
}
.hero__stripe--faint { top: 66%; height: 12px; background: var(--cyan-400); opacity: .5; }
.hero__stripe--blue  { top: 72%; height: 86px; background: var(--blue-600); opacity: .95; }
.hero__stripe--cyan  { top: 88%; height: 22px; background: var(--cyan-500); }
@media (min-width: 900px) {
  .hero__stripe--faint { top: 70%; }
  .hero__stripe--blue  { top: 76%; height: 100px; }
  .hero__stripe--cyan  { top: 93%; height: 26px; }
}

.hero__inner { position: relative; z-index: var(--z-raised); }

.hero__title { margin-bottom: var(--space-md); }
.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
}
.hero__title .u-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--navy-700);
}
[data-theme="dark"] .hero__title .u-outline { -webkit-text-stroke-color: var(--on-dark-soft); }

.hero__lead { max-width: 46ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-md);
}

.hero__media {
  position: relative;
  margin-top: var(--space-lg);
}
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  background: var(--surface-muted);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

.hero__badge {
  position: absolute;
  right: -8px;
  bottom: -18px;
  z-index: var(--z-raised);
  display: grid;
  place-content: center;
  text-align: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  font-size: .78rem;
  letter-spacing: .02em;
  padding: 8px;
}
.hero__badge span { color: var(--cyan-400); display: block; font-weight: 700; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }

@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: var(--space-xl);
    align-items: center;
  }
  .hero__media { margin-top: 0; }
  .hero__photo { aspect-ratio: 4 / 4.4; }
  .hero__badge { right: -26px; bottom: -26px; width: 158px; height: 158px; font-size: .98rem; padding: 12px; }
  .hero__badge span { font-size: .78rem; margin-top: 6px; }
}

/* Trust bar */
.trustbar {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: var(--z-raised);
}
@media (min-width: 640px) { .trustbar { grid-template-columns: repeat(3, 1fr); } }
.trustbar__item { display: flex; gap: 12px; align-items: flex-start; }
.trustbar__item + .trustbar__item { border-top: 1px solid var(--border); padding-top: var(--space-sm); }
@media (min-width: 640px) {
  .trustbar__item + .trustbar__item { border-top: 0; border-left: 1px solid var(--border); padding-top: 0; padding-left: var(--space-md); }
}
.trustbar__icon { flex: none; width: 30px; height: 30px; color: var(--accent); }
.trustbar__title { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; }
.trustbar__text { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.45; }

/* ---------- 7. Marquee ---------- */
.marquee {
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
  padding-block: 14px;
  border-block: 1px solid rgba(255, 255, 255, .1);
}
.marquee__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .82);
}
.marquee__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 8. Tabs & Service cards ---------- */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-sm); }
.tab svg { width: 19px; height: 19px; }

.tabpanel[hidden] { display: none; }

.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon {
  display: grid;
  place-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 4px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--step-1); margin: 0; }
.card p { margin: 0; font-size: .97rem; color: var(--ink-soft); }
.card__price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.card__price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .78rem; color: var(--ink-faint); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- 9. Steps ---------- */
.steps {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.section--dark .step { background: rgba(255, 255, 255, .05); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1;
  color: var(--cyan-500);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--step-1); }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- 10. Split (Pickup / About) ---------- */
.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-xl); }
  .split--reverse .split__media { order: -1; }
}

.framed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background-color: var(--navy-800);
  background-repeat: no-repeat;
}
/* Zeigt gezielt den Foto-Bereich der Flyer-Grafik (rechte Bildhälfte) */
.framed--bike {
  background-image: url("../img/flyer-bike.jpg");
  background-size: 258% auto;
  background-position: 100% 26%;
}
.framed--scooter {
  background-image: url("../img/flyer-scooter.jpg");
  background-size: 250% auto;
  background-position: 100% 30%;
}
.framed--portrait { aspect-ratio: 4 / 4.3; }
.framed--portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

/* Querformat: Transporter vollständig zeigen, nicht beschneiden */
.framed--van { aspect-ratio: 4 / 3; }
.framed--van img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.tickline { list-style: none; margin: 0 0 var(--space-md); padding: 0; display: grid; gap: 12px; }
.tickline li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.tickline svg { flex: none; width: 22px; height: 22px; color: var(--cyan-500); margin-top: 2px; }

/* PLZ-Check */
.zipcheck {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.section--dark .zipcheck { background: rgba(255, 255, 255, .06); }
.zipcheck__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 180px; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink); }
.field input {
  min-height: 52px;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--bg-elevated);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease);
}
.field input:focus { border-color: var(--accent); }
.field__hint { font-size: .82rem; color: var(--ink-faint); }
.zipcheck__result {
  margin-top: 12px;
  display: none;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  line-height: 1.45;
}
.zipcheck__result.is-visible { display: flex; }
.zipcheck__result svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.zipcheck__result.is-ok { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.zipcheck__result.is-warn { background: color-mix(in srgb, #C77700 16%, transparent); color: #A96000; }
[data-theme="dark"] .zipcheck__result.is-warn { color: #FFC46B; }
.zipcheck__result.is-error { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }

/* ---------- 11. Preise ---------- */
.pricelist {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.pricecard {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricecard__head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-sm); }
.pricecard__head svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.pricecard__head h3 { margin: 0; font-size: var(--step-1); }
.pricetable { width: 100%; border-collapse: collapse; }
.pricetable caption { text-align: left; font-size: .84rem; color: var(--ink-faint); padding-bottom: 8px; }
.pricetable th, .pricetable td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .97rem; }
.pricetable tr:last-child th, .pricetable tr:last-child td { border-bottom: 0; }
.pricetable th { font-weight: 600; color: var(--ink-soft); }
.pricetable td { text-align: right; font-family: var(--font-display); font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pricetable--facts td {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  white-space: normal;
  padding-left: var(--space-md);
}
.price-note {
  margin-top: var(--space-md);
  font-size: .9rem;
  color: var(--ink-faint);
  max-width: 80ch;
}

/* ---------- 12. Reviews ---------- */
.google-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.google-badge[hidden] { display: none; }
.google-badge__score { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.google-badge__score strong {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.google-badge__score span { font-size: .95rem; color: var(--ink-soft); }
.google-badge__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.google-badge__actions .btn[hidden] { display: none; }

.reviews:empty { display: none; }
.reviews { display: grid; gap: var(--space-md); grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.review {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.review__stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 10px; }
.review__stars svg { width: 18px; height: 18px; }
.review p { font-size: 1rem; margin-bottom: 12px; }
.review__author { font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.review__author span { display: block; font-family: var(--font-body); font-weight: 500; color: var(--ink-faint); font-size: .82rem; }

/* ---------- 13. FAQ ---------- */
.faq { max-width: 860px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 60px;
  padding: 14px var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: 13px;
  height: 13px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translateY(-3px); }
.faq__a { padding: 0 var(--space-sm) var(--space-sm); color: var(--ink-soft); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- 14. Kontakt ---------- */
.contact-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}
@media (min-width: 1100px) {
  .contact-card--wide { grid-column: span 2; }
  .contact-card--wide .hours { columns: 2; column-gap: var(--space-lg); }
}
.contact-card svg { width: 26px; height: 26px; color: var(--cyan-400); }
.contact-card h3 { font-size: var(--step-1); margin: 0; }
.contact-card a { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--cyan-500); align-self: flex-start; }
.contact-card a:hover { border-bottom-color: #fff; }
.contact-card p { margin: 0; color: var(--on-dark-soft); font-size: .97rem; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li { break-inside: avoid; display: flex; justify-content: space-between; gap: var(--space-sm); padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: .95rem; }
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--on-dark-soft); font-variant-numeric: tabular-nums; }
.hours li.is-today { color: var(--cyan-400); font-weight: 700; }
.hours li.is-today span { color: var(--cyan-400); }

.cta-panel {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, var(--blue-600), var(--navy-700));
  display: grid;
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 800px) { .cta-panel { grid-template-columns: 1fr auto; } }
.cta-panel h2 { margin: 0 0 6px; font-size: var(--step-3); color: #fff; }
.cta-panel p { margin: 0; color: rgba(255, 255, 255, .86); }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 15. Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--on-dark-soft);
  padding-block: var(--space-xl) var(--space-md);
  --logo-ink: #FFFFFF;
  --logo-accent: var(--cyan-400);
}
.footer .brand__name { color: #fff; }
.footer__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer h4 { color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: var(--on-dark-soft); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer p { color: var(--on-dark-soft); font-size: .95rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: .87rem;
}

/* Sticky mobile action bar */
.actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: 10px;
  padding: 10px var(--space-sm) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg-elevated) 94%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
@media (max-width: 767px) {
  .actionbar { display: flex; }
  body { padding-bottom: 84px; }
}
.actionbar .btn { flex: 1; min-height: 50px; padding: 12px 14px; font-size: .95rem; }

/* ---------- 15b. Galerie ---------- */
.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;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* dense: schmale Kacheln füllen die Lücken, die breite Kacheln sonst hinterlassen */
  grid-auto-flow: row dense;
  gap: 10px;
}
.tile--wide { grid-column: span 2; }
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1200px) { .gallery { grid-template-columns: repeat(5, 1fr); } }

.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile--wide { aspect-ratio: 8 / 5; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile:active { transform: translateY(0) scale(.99); }
.tile[hidden] { display: none; }
.tile img, .tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.tile:hover img { transform: scale(1.04); }

/* Grafiken mit eingebranntem Text: vollständig zeigen, nicht beschneiden */
.tile--doc { background: var(--navy-900); }
.tile--doc img { object-fit: contain; }
.tile--doc:hover img { transform: none; }

.tile__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background: linear-gradient(180deg, rgba(7,26,51,.15), rgba(7,26,51,.45));
  color: #fff;
  pointer-events: none;
}
.tile__play svg {
  width: 26px; height: 26px;
  margin-left: 3px;
}
.tile__play::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(3px);
}

/* ---------- 15c. Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  grid-template-rows: 1fr;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
  background: rgba(4, 12, 26, .93);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }

.lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: min(100%, 1100px);
  max-height: 100%;
  align-items: center;
}
.lightbox__media {
  display: flex;
  min-height: 0;
  justify-content: center;
}
.lightbox__media img,
.lightbox__media video {
  max-width: 100%;
  max-height: calc(100dvh - 170px);
  width: auto; height: auto;
  border-radius: var(--radius-md);
  background: #000;
}
.lightbox__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  color: #E7EFFA;
  font-size: .95rem;
  max-width: 62ch;
}
.lightbox__counter {
  color: var(--cyan-400);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: .85rem;
}

.lightbox .icon-btn {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  width: 48px; height: 48px;
}
.lightbox .icon-btn:hover { background: rgba(255, 255, 255, .2); }
.lightbox__close { top: 14px; right: 14px; }
.lightbox__nav { top: 50%; translate: 0 -50%; }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }
@media (max-width: 640px) {
  .lightbox__nav { top: auto; bottom: 14px; translate: none; }
  .lightbox__nav--prev { left: 20%; }
  .lightbox__nav--next { right: 20%; }
  .lightbox__stage { padding-bottom: 60px; }
}

/* Galerie-Teaser auf der Startseite */
.teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: var(--space-md);
}
.teaser-strip .tile { aspect-ratio: 1; }
@media (min-width: 900px) {
  .teaser-strip { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}

/* ---------- 16. Legal pages ---------- */
.legal { padding-block: var(--space-xl); }
.legal .container { max-width: 820px; }
.legal h2 { font-size: var(--step-2); margin-top: var(--space-lg); }
.legal h3 { font-size: var(--step-1); margin-top: var(--space-md); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.2em; display: grid; gap: 6px; margin-bottom: var(--space-sm); }
.legal address { font-style: normal; }
.notice {
  padding: var(--space-sm) var(--space-md);
  border-left: 4px solid var(--cyan-500);
  background: var(--surface-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-md);
}
.notice p { margin: 0; color: var(--ink); font-size: .95rem; }

/* ---------- 17. Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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