/* ═══════════ MODERN CSS RESET ═══════════ */

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

* {
  margin: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

textarea {
  white-space: revert;
}

/* ═══════════ FONTS (self-hosted, DSGVO) ═══════════ */

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-var.woff2") format("woff2");
  font-weight: 400 700; /* Variable Font — deckt 400/500/600/700 ab */
  font-style: normal;
  font-display: swap;
}

/* ═══════════ CUSTOM PROPERTIES ═══════════ */
/* Marke Tim Haaf — Farben gemessen aus Logo + Mappe (briefing.md §5) */

:root {
  --color-primary: #0d6869;        /* Teal: Akzente, Buttons, Card-Koepfe */
  --color-primary-hover: #0a5254;
  --color-navy: #001e40;           /* Headlines, Wortmarke */
  --color-text: #001e40;
  --color-text-soft: #3b506b;      /* Fliesstext auf hellem Grund */
  --color-text-muted: #5c6e84;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f3f1;         /* Creme-Flaechen (Mappe-Grund) */
  --color-creme: #f4f3f1;          /* v5: Creme für Hintergruende */
  --color-tint: #e7edee;           /* Zitat-Boxen, helle Panels */
  --color-teal-soft: #e3eeee;      /* v5: Teal-soft Hintergrund */
  --color-border: #e4e1db;
  --color-line: #dde6e6;           /* v5: Linien-Farbe */
  --color-gold: #fbbc04;           /* v5: Google-Sterne gelb */
  --color-success: #107c41;
  --color-error: #b3261e;

  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --section-pad: clamp(5.75rem, 11.5vw, 10.75rem);

  --container-max: 76rem;
  --container-padding: 2rem;

  /* v5: weniger Rundungen */
  --radius: 12px;
  --radius-lg: 12px;
  --radius-pill: 999px;
}

/* ═══════════ BODY ═══════════ */

/* Basis-Schrift 19px: Zielgruppe 45-70 + Hanken wirkt bei gleicher Größe kleiner als Poppins (x-Höhe) */
html {
  font-size: 118.75%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-soft);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-navy);
  font-weight: 700; /* Hanken Grotesk Bold — 600 wirkt bei Hanken zu leicht (Alex) */
}

h2 {
  font-size: 2.2rem;
  line-height: 1.2;
}

/* ═══════════ CONTAINER ═══════════ */

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

/* ═══════════ PROSE ═══════════ */

/* Text-/Rechtsseiten (page.njk: Impressum, Datenschutz, …): konsistenter vertikaler
   Abstand zu Nav und Footer. .page hatte zuvor kein Padding → Inhalt klebte am Footer. */
.page { padding-block: clamp(3rem, 6vw, 5rem); }
.page > .prose > :first-child { margin-block-start: 0; }

.prose h1 { font-size: 2.25rem; line-height: 1.2; margin-block: var(--space-lg) var(--space-md); }
.prose h2 { font-size: 1.75rem; line-height: 1.25; margin-block: var(--space-lg) var(--space-sm); }
.prose h3 { font-size: 1.375rem; line-height: 1.3; margin-block: var(--space-lg) var(--space-sm); }
.prose p { margin-block-end: var(--space-md); }
.prose ul, .prose ol { margin-block-end: var(--space-md); padding-inline-start: var(--space-lg); }
.prose li { margin-block-end: var(--space-xs); }
.prose blockquote {
  border-inline-start: 3px solid var(--color-primary);
  padding-inline-start: var(--space-md);
  color: var(--color-text-muted);
  margin-block-end: var(--space-md);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-bg-alt);
  padding: 0.125em 0.25em;
  border-radius: var(--radius);
}
.prose pre {
  background: var(--color-bg-alt);
  padding: var(--space-md);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-block-end: var(--space-md);
}
.prose pre code {
  background: none;
  padding: 0;
}

/* ═══════════ HEADINGS ═══════════ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  text-wrap: balance;
  /* Deutsche Komposita mit Bindestrich trennen statt hart umbrechen (braucht
     lang="de" am html-Element). Ohne das bricht z.B. "Suchmaschinenoptimierung"
     in schmalen Containern mitten im Wort ohne Bindestrich. */
  hyphens: auto;
}

/* ═══════════ LINKS ═══════════ */

a {
  color: var(--color-primary);
  text-decoration-skip-ink: auto;
}

a:hover {
  color: var(--color-primary-hover);
}

/* ═══════════ SKIP LINK ═══════════ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  z-index: 100;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ═══════════ BUTTON ═══════════ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────
   Responsive Images — Base Styles
   Add these rules to your main stylesheet.
   Required for proper responsive behavior and CLS prevention.
   ───────────────────────────────────────────────────────── */

/* Core responsive image behavior + CLS prevention */
img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

/* Ensure <picture> wrapper doesn't break layout */
picture {
  display: block;
}

/* ─────────────────────────────────────────────────────────
   Hero Image — Optional utility class
   Apply to the hero <img> or wrapping <picture> element.
   Use with eleventy:pictureattr:class="hero-image" on the <img>.
   ───────────────────────────────────────────────────────── */
.hero-image {
  inline-size: 100%;
}

.hero-image img {
  inline-size: 100%;
  block-size: auto;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────
   Content Images — Optional styling
   Images within the main content column.
   ───────────────────────────────────────────────────────── */
.content img,
.prose img {
  border-radius: 4px;
  margin-block: 1.5rem;
}

/* ─────────────────────────────────────────────────────────
   Thumbnail / Card Images — Optional
   For card grid layouts with fixed aspect ratio.
   ───────────────────────────────────────────────────────── */
.card-image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ═══════════ SECTION SYSTEM v5 ═══════════ */

.section {
  padding-block: var(--section-pad);
}

/* Section backgrounds */
.section--hero {
  background-color: var(--color-teal-soft);
}

.section--ziel {
  background-color: var(--color-creme);
}

.section--zitat {
  background-color: var(--color-teal-soft);
}

.section--ablauf {
  background-color: var(--color-creme);
}

.section--ueber {
  background-color: var(--color-teal-soft);
}

/* Padding collapse rules (aus CLAUDE.md) */
.section + .section--ziel,
.section + .section--zitat,
.section + .section--ablauf,
.section + .section--ueber {
  padding-block-start: calc(var(--section-pad) / 2);
}

.section:has(+ .section--ziel),
.section:has(+ .section--zitat),
.section:has(+ .section--ablauf),
.section:has(+ .section--ueber) {
  padding-block-end: calc(var(--section-pad) / 2);
}

.section--ziel + .section,
.section--zitat + .section,
.section--ablauf + .section,
.section--ueber + .section {
  padding-block-start: calc(var(--section-pad) / 2);
}

.section--ziel:has(+ .section),
.section--zitat:has(+ .section),
.section--ablauf:has(+ .section),
.section--ueber:has(+ .section) {
  padding-block-end: calc(var(--section-pad) / 2);
}

/* Hero: oben grosszuegig, unten normales halbes Padding (Beine sind IM Bild geschnitten) */
.section--hero {
  padding-block: clamp(3.6rem, 5.5vw, 5rem) 0; /* Bild reicht bis zur Unterkante */
  overflow: hidden;
}

/* Erster Block nach dem Hero: gleiches (halbes) Top-Padding wie alle anderen
   Blöcke, damit es konsistent ist (vorher volles Padding = optisch groesser). */
.section--hero + .section {
  padding-block-start: calc(var(--section-pad) / 2);
}

/* Kontakt-Panel bringt eigene Farbfläche mit — Abstand zur weißen Vorgänger-Sektion teilen */
.section:has(+ .section--kontakt) {
  padding-block-end: calc(var(--section-pad) / 2);
}

.section--kontakt {
  padding-block: calc(var(--section-pad) / 2);
}

/* Section header */
.section__header {
  text-align: center;
  margin-block-end: 3.6rem;
}

/* Eyebrow */
.eyebrow {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
  font-weight: 600;
  margin-block-end: 0.7rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.02rem;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 104, 105, 0.3);
  background-color: var(--color-primary-hover);
  color: #ffffff;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Stars */
.stars {
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

/* ═══════════ HERO v5 ═══════════ */

.hero {
  display: grid;
  gap: 4rem;
  align-items: end;
}

.hero > * {
  min-width: 0; /* Grid-Blowout verhindern (min-width: auto) */
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__content {
  align-self: center;
  padding-block: 1rem 3.5rem;
}

@media (max-width: 899px) {
  .hero__content {
    padding-block: 1rem 2rem;
  }
}

/* Kicker = echte H1 (SEO), optisch klein wie Eyebrow */
.hero__kicker {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.9rem;
  max-width: 30rem;
}

/* Display = optischer Titel (Absatz, kein H-Tag) */
.hero__display {
  hyphens: manual; /* "Gesundheitsorientiertes" nicht mit Trennstrich brechen */
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.1;
  color: var(--color-navy);
  font-weight: 700;
  /* letzter Wert = optische Korrektur: rundes G buendig zur flachen Kicker-Kante */
  margin: 0 0 1.2rem -0.045em;
}

.hero__display em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__intro {
  font-size: 1.2rem;
  max-width: 31rem;
  margin-block-end: 2rem;
  color: #33475e;
}

/* CTA-Zone: zwei Wege (Button + Anruf) als Gruppe, EINE Mikro-Zeile, dann Luft */
.hero__buttons {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;
  margin-block-end: 1.1rem;
  flex-wrap: wrap;
}

/* Beide Hero-Buttons exakt gleich hoch: min-height ueber der natuerlichen Btn-Hoehe,
   damit sie auch beim Umbruch (schmaler Hero) identisch bleiben, Inhalt zentriert. */
.hero__buttons > a {
  min-height: 3.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.hero__buttons .btn {
  gap: 0.5rem;
}

.hero__phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  border: 1.5px solid rgba(13, 104, 105, 0.4);
  border-radius: 10px;
  padding: 0.45rem 2.4rem 0.45rem 1.7rem;
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s;
}

.hero__phone-chip:hover {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.5);
}

.hero__phone-chip svg {
  flex: none;
  color: var(--color-primary);
}

.hero__phone-chip b {
  display: block;
  color: var(--color-navy);
  font-size: 1.02rem;
  line-height: 1.15;
}

.hero__phone-chip small {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.1;
}

.hero__reassure {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-block-end: 0;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.7rem;
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.98rem;
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.hero__facts svg {
  flex: none;
}

.hero__stage {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
}

.hero__circle {
  position: absolute;
  inset: auto 0 -1px 50%;
  translate: -50% 0;
  z-index: 0;
  width: min(30rem, 100%);
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.4;
}

.hero__stage img {
  /* Bild groesser (--hero-scale), aber Kopf bleibt fix und die SEKTIONSHOEHE
     bleibt konstant bei `base` (950px = gutes Padding): der negative Bottom-Margin
     (= base * -(scale-1)) hebt die Mehrhoehe aus dem Layout, sie ragt unten raus
     und wird vom overflow:hidden der .section--hero geschnitten (Beinanschnitt).
     Getrimmtes Bild (schmale Bbox) → width:auto bleibt < Spalte → KEINE max-width-Klemme, keine Verzerrung. */
  --hero-base: clamp(34rem, 55vw, 50rem);
  --hero-scale: 1.4;
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: calc(var(--hero-base) * var(--hero-scale));
  max-width: 100%;
  margin: 0 auto calc(var(--hero-base) * (1 - var(--hero-scale)));
  filter: drop-shadow(0 18px 30px rgba(0, 30, 64, 0.16));
}

.hero__trust {
  position: absolute;
  left: 0;
  bottom: 7.5rem;
  z-index: 3; /* immer VOR dem Bild */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(0, 30, 64, 0.14);
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-navy);
}

.hero__trust b {
  display: block;
  color: var(--color-navy);
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero__trust small {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

@media (max-width: 899px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    max-width: 24rem;
    margin-inline: auto;
  }

  .hero__stage img {
    /* Mobile: volles Bild, kein Anschnitt, kein negativer Margin */
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .hero__circle {
    width: min(20rem, 92%);
  }
}

/* ═══════════ WARUM (Magazin-Kacheln) ═══════════ */

.warum-kopf {
  max-width: 40rem;
  margin-block-end: 3rem;
}

.warum-kopf p {
  margin-block-start: 1rem;
}

.kacheln-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1000px) {
  .kacheln-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════ VORTEILE-CARDS (Mappe-Stil S.3) ═══════════ */
.vorteile-kopf {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.vorteile-kopf .eyebrow {
  justify-content: center;
}
.vorteile-intro {
  margin-top: 1.1rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  max-width: 44rem;
  margin-inline: auto;
}
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  max-width: 62rem;
  margin-inline: auto;
  align-items: stretch; /* gleiche Kartenhoehe -> Header buendig */
}
@media (max-width: 900px) {
  .vorteile-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-inline: auto;
  }
}
.vorteile-card {
  background: var(--color-creme);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 30, 64, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vorteile-card__head {
  background: var(--color-primary);
  color: #ffffff;
  padding: 1.6rem 1.25rem 1.35rem;
  min-height: 9.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}
.vorteile-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  color: #ffffff;
}
.vorteile-card__icon svg {
  width: 100%;
  height: 100%;
}
.vorteile-card__titles b {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.vorteile-card__titles span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  opacity: 0.85;
}
.vorteile-card__list {
  list-style: none;
  margin: 0;
  padding: 1.4rem 1.5rem 1.6rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  flex: 1; /* fuellt die Karte -> gleiche Hoehe */
}
.vorteile-card__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-navy);
  font-weight: 600;
}
.vorteile-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
}

@media (max-width: 640px) {
  .kacheln-grid {
    grid-template-columns: 1fr;
  }
}

.kachel img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-block-end: 1.1rem;
}

.kachel h3 {
  margin-block-end: 0.4rem;
  font-size: 1.2rem;
  color: var(--color-navy);
  font-weight: 600;
}

.kachel p {
  font-size: 0.98rem;
  color: var(--color-text-soft);
}

/* ═══════════ ZIELGRUPPE ═══════════ */

.ziel-split {
  display: grid;
  grid-template-columns: minmax(0, 540px) 1fr;
  gap: 6rem;
  align-items: center;
  padding-inline-start: clamp(0rem, 4vw, 3.5rem);
}

@media (max-width: 1000px) {
  .ziel-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-inline-start: 0;
  }
}

.ziel__foto {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.ziel__foto img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0, 30, 64, 0.16);
  display: block;
}

.stat-card {
  position: absolute;
  right: -1rem;
  bottom: 1.6rem;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 0.95rem 1.3rem;
  box-shadow: 0 16px 32px rgba(0, 30, 64, 0.16);
}

.stat-card b {
  display: block;
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1.1;
}

.stat-card span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.ziel__content h2 {
  margin-block-end: 1.2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-navy);
}

.ziel__content p {
  margin-block-end: 1rem;
  color: var(--color-text-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  color: var(--color-navy);
  font-weight: 500;
}

.check-list svg {
  flex: none;
  margin-top: 4px;
}

/* ═══════════ LEISTUNGEN SELECTOR ═══════════ */

.leist-kopf {
  max-width: 40rem;
  margin-block-end: 3rem;
}

.selector {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .selector {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.selector__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.selector__item {
  display: block;
  width: 100%;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text-muted);
  transition: background 0.15s;
  text-align: left;
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
}

.selector__item h3 {
  font-size: 1.4rem;
  color: inherit;
  font-weight: 600;
  margin: 0;
}

/* Kurzbeschreibung unter JEDER Headline (nicht nur aktiv) -> fuellt die Luecken */
.selector__item small {
  display: block;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.35;
  margin-top: 0.3rem;
}

.selector__item:hover {
  background: var(--color-creme);
}

.selector__item--active {
  background: var(--color-teal-soft);
  color: var(--color-navy);
}

.selector__item--active small {
  color: var(--color-primary);
  font-weight: 600;
}

.selector__display {
  position: relative;
}

.selector__slide {
  display: none;
  position: relative;
}

.selector__slide--active {
  display: block;
}

.selector__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  min-height: 27rem;
  box-shadow: 0 24px 48px rgba(0, 30, 64, 0.16);
}

.selector__info {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 30, 64, 0.16);
}

.selector__info b {
  color: var(--color-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.selector__info p {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-top: 0.3rem;
}

.selector__info a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  display: inline-block;
  margin-top: 0.6rem;
}

@media (max-width: 1000px) {
  .selector__list {
    order: 2;
  }

  .selector__display {
    order: 1;
  }

  .selector__slide img {
    min-height: 20rem;
  }
}

/* ═══════════ ZITAT ═══════════ */

.zitat-stage {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.zitat-stage blockquote {
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-navy);
  font-weight: 500;
  text-wrap: balance;
  margin: 0 0 2rem;
}

.zitat__author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.zitat__author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 30, 64, 0.18);
}

.zitat__author b {
  display: block;
  color: var(--color-navy);
  font-size: 1rem;
}

.zitat__author span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ═══════════ REVIEWS ═══════════ */

.reviews-kopf {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 2.6rem;
  flex-wrap: wrap;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-creme);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  color: var(--color-navy);
}

.google-badge b {
  color: var(--color-navy);
  font-size: 1.05rem;
  display: block;
  line-height: 1.2;
}

.google-badge small {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}

.review-card .stars {
  font-size: 0.95rem;
  display: block;
  margin-block-end: 0.7rem;
}

.review-card p {
  font-size: 0.98rem;
  margin-block-end: 1rem;
  color: var(--color-text-soft);
}

.review-card b {
  color: var(--color-navy);
  font-size: 0.95rem;
}

.review-card small {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.85rem;
}

/* ═══════════ ABLAUF ═══════════ */

.ablauf__cta {
  text-align: center;
  margin-block-start: 2.6rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

@media (max-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem 1.5rem;
  position: relative;
  text-align: center;
}

.step-card__num {
  position: absolute;
  top: -1.05rem;
  left: 50%;
  translate: -50% 0;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  padding: 0.3rem 0.9rem;
  box-shadow: 0 0 0 6px var(--color-creme);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
  font-weight: 600;
  hyphens: none;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ═══════════ ÜBER TIM ═══════════ */

.ueber-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .ueber-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.ueber__stage {
  position: relative;
  text-align: center;
}

.ueber__circle {
  display: none; /* kein Kreis mehr — sauberes gerahmtes Foto */
}

.ueber__stage img {
  /* Realistisches gerahmtes Foto (Tim im Trainingsraum): kein Anschnitt, kein Schweben */
  position: relative;
  width: min(100%, 23rem);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 30, 64, 0.18);
  margin-inline: auto;
  display: block;
}

.ueber__content h2 {
  margin-block-end: 1.2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-navy);
}

.ueber__content p {
  color: var(--color-text-soft);
  margin-block-end: 1.6rem;
}

.quali-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr; /* alle Boxen gleich hoch (Alex: ungleiche Groessen sahen schlecht aus) */
  gap: 1rem;
  margin: 1.6rem 0 1.9rem;
}

@media (max-width: 640px) {
  .quali-badges {
    grid-template-columns: 1fr;
  }
}

.quali-badge {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.98rem;
  box-shadow: 0 6px 16px rgba(0, 30, 64, 0.06);
  min-width: 0;
}

.quali-badge svg {
  flex: none;
  stroke: var(--color-primary);
}

/* ═══════════ EINZUGSGEBIET ═══════════ */

.gebiet-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .gebiet-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.gebiet__karte {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  aspect-ratio: 400 / 366;
  overflow: visible;
}

.gebiet__karte svg {
  width: 100%;
  height: 100%;
}

.gebiet__content h2 {
  margin-block-end: 1.2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-navy);
}

.gebiet__content p {
  color: var(--color-text-soft);
}

.gebiet__liste {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  color: var(--color-navy);
  font-weight: 500;
}

@media (max-width: 520px) {
  .gebiet__liste {
    grid-template-columns: 1fr; /* "Hochtaunuskreis" sprengt sonst die halbe Spalte */
  }
}

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

.gebiet__liste svg {
  flex: none;
}

.gebiet__note {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ═══════════ KONTAKT ═══════════ */

.kontakt-panel {
  --kontakt-pad: 3.5rem;
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: var(--kontakt-pad);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  color: #ffffff;
}
/* Grid-Blowout verhindern: Formular-Inputs erzwingen sonst Ueberbreite (mobil) */
.kontakt-panel > * {
  min-width: 0;
}

@media (max-width: 1000px) {
  .kontakt-panel {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}

.kontakt-panel h2 {
  color: #ffffff;
  margin-block-end: 0.9rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
}

.kontakt-panel__lead {
  color: rgba(255, 255, 255, 0.9);
  margin-block-end: 1.8rem;
}

.kontakt-panel__phone {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  color: #ffffff;
  text-decoration: none;
  margin-block-end: 1rem;
  min-width: 0;
}
.kontakt-panel__phone span {
  min-width: 0;
}
.kontakt-panel__phone small {
  overflow-wrap: anywhere;
}

.kontakt-panel__phone:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.kontakt-panel__phone svg {
  flex: none;
}

.kontakt-panel__phone b {
  display: block;
  font-size: 1.05rem;
}

.kontakt-panel__phone small {
  color: rgba(255, 255, 255, 0.78);
}

.kontakt-panel__mail {
  display: inline-block;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  margin-block-end: 1rem;
  word-break: break-word;
}
.kontakt-panel__mail:hover {
  color: #ffffff;
  opacity: 0.85;
}

.kontakt-panel__hint {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.kontakt-panel__form {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 24px 48px rgba(0, 20, 40, 0.2);
}

/* ═══════════ FOCUS STATES ═══════════ */

.btn:focus-visible,
.selector__item:focus-visible,
.hero__trust:focus-visible,
.google-badge:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ═══════════ REDUCED MOTION ═══════════ */

@media (prefers-reduced-motion: reduce) {
  .btn,
  .selector__item {
    transition: none;
  }

  .btn--primary:hover {
    transform: none;
  }
}
/* ═══════════ PREIS-TEASER + FAQ (Abstands-Regeln) ═══════════ */
/* Preise (weiss) direkt nach einer weissen Sektion: einfacher Abstand.
   Ausnahme: nach getoenten Sektionen (z.B. Ablauf creme) volles Top-Padding,
   sonst klebt der weisse Block an der Farbkante. */
.section:not(.section--ablauf):not(.section--ziel):not(.section--zitat):not(.section--ueber):not(.section--faq) + .section--preis {
  padding-block-start: 0;
}

/* FAQ getoente Sektion + Farbkanten */
.section--faq {
  background-color: var(--color-bg-alt);
}

.section + .section--faq {
  padding-block-start: calc(var(--section-pad) / 2);
}

.section:has(+ .section--faq) {
  padding-block-end: calc(var(--section-pad) / 2);
}

/* ═══════════ PREIS-TEASER (Variante A: Preis + Icon-Kacheln) ═══════════ */
.preis-kopf {
  max-width: 46rem;
  margin-block-end: 2rem;
}
.preis-kopf h2 {
  margin-block-end: 0.8rem;
}
.preis-lead {
  color: var(--color-text-soft);
  line-height: 1.6;
}

.preis-priceRow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-block-end: 1.6rem;
}
.preis-priceBig {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}
.preis-priceBig > div {
  min-width: 0;
}
.preis-pc {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: var(--color-teal-soft);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.preis-pc svg {
  width: 1.55rem;
  height: 1.55rem;
}
.preis-priceBig b {
  display: block;
  font-size: 1.55rem;
  color: var(--color-navy);
  line-height: 1.1;
}
.preis-priceBig b small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.preis-priceBig > div > span {
  display: block;
  margin-block-start: 0.2rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.preis-cta {
  white-space: nowrap;
}

.preis-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block-end: 1.4rem;
}
.preis-term {
  display: flex;
  gap: 0.85rem;
  padding: 0.4rem 0.2rem;
}
.preis-term b {
  display: block;
  color: var(--color-navy);
  margin-block-end: 0.25rem;
}
.preis-term p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.preis-chip {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: var(--color-teal-soft);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.preis-chip svg {
  width: 1.4rem;
  height: 1.4rem;
}
.preis-chip--solid {
  background: var(--color-primary);
  color: #ffffff;
}
.preis-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--color-tint);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
}
.preis-flex b {
  display: block;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-block-end: 0.2rem;
}
.preis-flex p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .preis-terms {
    grid-template-columns: 1fr;
  }
  .preis-priceRow {
    flex-direction: column;
    align-items: stretch;
  }
  .preis-cta {
    text-align: center;
    white-space: normal;
  }
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-navy);
}

.faq-item__chevron {
  flex: none;
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 1.4rem 1.25rem;
}

.faq-item__body p {
  margin: 0;
  color: var(--color-text-soft);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}



/* ═══════════ HERO-QUALI (integrierte Leiste am Hero) ═══════════ */
.hero__quali {
  margin: 1.6rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(0, 30, 64, 0.12);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
}

.hero__quali-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
  min-width: 0;
}

.hero__quali-item svg {
  flex: none;
}

@media (max-width: 860px) {
  .hero__quali {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__quali {
    grid-template-columns: 1fr;
  }
}

/* Preis-Karte: Wert-Karte ohne Zahl */
.preis__card-title {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.05rem;
  margin: 0 0 1.3rem;
}

.preis__card-note {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ═══════════ KONTAKT: Unterschrift + grosses angeschnittenes Bild ═══════════ */
.kontakt-panel__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.kontakt-panel__left > * {
  max-width: 100%;
}

.kontakt-panel {
  align-items: stretch;
}

/* Persona-Zeile unten: Bild links (angeschnitten) + Unterschrift rechts daneben */
.kontakt-panel__persona {
  margin-block-start: auto;
  padding-block-start: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  width: 100%;
}

.kontakt-panel__figure {
  flex: none;
  width: min(250px, 52%);
  margin-block-end: calc(-1 * var(--kontakt-pad, 3.5rem));
}

.kontakt-panel__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.kontakt-panel__sign {
  flex: 1;
  min-width: 0;
  padding-block-end: 2.2rem;
}

.kontakt-panel__sign img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  opacity: 0.95;
}

/* ═══════════ NAVIGATION v5 ═══════════ */

.site-header {
  border-bottom: 1px solid #eee;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .nav-logo img {
    height: 42px;
  }
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-inline-end: 2.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a,
.nav-dropdown-toggle {
  color: var(--color-text-soft);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
}

.nav-list a:hover,
.nav-dropdown-toggle:hover {
  color: var(--color-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 30, 64, 0.12);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  color: var(--color-text-soft);
  text-decoration: none;
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: var(--color-teal-soft);
  color: var(--color-navy);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-right: 2.3rem;
}

.nav-phone svg {
  color: var(--color-primary);
}

.btn--nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.98rem;
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-burger__bar {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 30, 64, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  z-index: 99;
}

.mobile-nav.is-open {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav__list {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.mobile-nav__list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius);
}

.mobile-nav__list a:hover {
  background: var(--color-teal-soft);
}

.mobile-nav__cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.mobile-nav__cta .btn {
  width: 100%;
  justify-content: center;
}

/* Mobile breakpoint */
@media (max-width: 900px) {
  .nav-center {
    display: none;
  }

  .nav-right .nav-phone span {
    display: none;
  }

  .nav-right .btn--nav {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

/* Focus states */
.nav-list a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-phone:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
/* ═══════════ FOOTER v5 ═══════════ */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0;
  font-size: 0.98rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo-col {
    justify-self: start;
  }
}

.footer-logo {
  height: 114px;
  width: auto;
  display: block;
  opacity: 0.95;
  margin-top: 7px;
}

/* Logo + Marke auf Hoehe der Menue-Items (unter den Ueberschriften) */
.footer-logo-col,
.footer-brand {
  padding-top: 3.13rem;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-grid b {
  color: #ffffff;
  display: block;
  margin-bottom: 0.7rem;
}

.footer-grid p {
  margin: 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  padding-block: 0.2rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-stars-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-stars-link:hover {
  color: #ffffff;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cookie-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.footer-cookie-btn:hover {
  color: #ffffff;
}
/* ═══════════ LEAD FORM v5 ═══════════ */

.lead-form h3 {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  color: var(--color-navy);
  font-weight: 600;
}

.form-field {
  margin-bottom: 1.05rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--color-line);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--color-navy);
  background: #ffffff;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.form-reassure {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
/* ═══════════ BLOG POST ═══════════ */

.post__header {
  margin-block-end: var(--space-lg);
  padding-block-end: var(--space-md);
  border-block-end: 1px solid var(--color-border);
}

.post__meta {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-block-start: var(--space-sm);
}

/* ═══════════ COOKIE CONSENT OVERRIDES ═══════════ */

:root {
  --cc-bg: var(--color-bg);
  --cc-text: var(--color-text);
  --cc-btn-primary-bg: var(--color-primary);
  --cc-btn-primary-text: #fff;
  --cc-btn-primary-hover-bg: var(--color-primary-hover);
  --cc-btn-secondary-bg: var(--color-bg-alt);
  --cc-btn-secondary-text: var(--color-text);
  --cc-btn-secondary-hover-bg: var(--color-border);
  --cc-toggle-bg-on: var(--color-primary);
  --cc-link: var(--color-primary);
  --cc-link-hover: var(--color-primary-hover);
  --cc-cookie-category-block-bg: var(--color-bg-alt);
  --cc-overlay-bg: rgba(0, 0, 0, 0.5);
  --cc-font-family: var(--font-sans);
  --cc-modal-border-radius: var(--radius-xl);
}

.site-footer__cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.site-footer__cookie-btn:hover {
  color: var(--color-primary);
}

