/* ==========================================================================
   Hausdorff Apotheke · Prävention & Beratung
   Design-System — Stand Juli 2026
   --------------------------------------------------------------------------
   Aufbau der Datei
   01 Tokens (Farben, Typo, Maße)
   02 Reset & Grundlagen
   03 Layout (wrap, section, grids)
   04 Typografie (display, heading, eyebrow, script, prose)
   05 Buttons
   06 Chips, Badges, Pills
   07 Kopf- & Fußbereich
   08 Bausteine (Karten, Themen, Schritte, Video, Podcast, FAQ, CTA)
   09 Trennbänder & Wellenkanten
   10 Bewegung & Barrierefreiheit
   ==========================================================================*/

/* ---------- 01 Tokens ----------------------------------------------------*/
:root {
  /* Marke */
  --ink:            #0B1D4D;   /* Dunkelblau — Überschriften, Flächen, Primär-Button */
  --ink-deep:       #071A3D;   /* Hover auf Dunkelblau */
  --pink:           #E6007E;   /* Akzent — Links, Handschrift, Highlights */
  --pink-ink:       #C10068;   /* Pink auf hellem Rosé (Kontrast) */
  --green:          #8BC34A;   /* Zweitakzent — Punkte, Podcast-Icons */
  --green-ink:      #5C8A14;   /* Grün auf hellem Grün (Kontrast) */

  /* Text */
  --body:           #4A5568;
  --muted:          #748090;
  --muted-soft:     #8A94A3;

  /* Linien & Flächen */
  --line:           #E6E9EE;
  --line-strong:    #D6DCE4;
  --line-chip:      #DDE3EA;
  --white:          #FFFFFF;

  /* Flächentöne (Karten) */
  --tint-pink:      #FDE9F3;  --pill-pink:  #FBD9EA;
  --tint-blue:      #EAF2F8;  --pill-blue:  #D6E6F3;
  --tint-green:     #F1F8E6;  --pill-green: #E4F0C7;
  --tint-grey:      #F5F7FA;  --pill-grey:  #E6ECF1;  --grey-ink: #5A6B80;

  /* Rahmenfarben der vier Ablauf-Schritte */
  --edge-green:     #DCEDBF;
  --edge-blue:      #CFE2F0;
  --edge-pink:      #F9CFE4;
  --edge-navy:      #C3CEDF;

  /* Schrift */
  --font-sans: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-hand: 'Caveat', 'Segoe Script', cursive;

  /* Maße */
  --wrap:           1240px;
  --gutter:         clamp(20px, 4vw, 32px);
  --section-y:      clamp(56px, 9vw, 96px);
  --section-y-sm:   clamp(40px, 6vw, 64px);

  --r-sm:           16px;
  --r-md:           20px;
  --r-lg:           24px;
  --r-xl:           28px;
  --r-pill:         999px;

  --shadow-float:   0 12px 32px rgba(11, 29, 77, .08);
  --shadow-card:    0 12px 28px rgba(0, 0, 0, .25);
  --shadow-video:   0 20px 40px rgba(17, 22, 20, .12);

  --header-h:       90px;
}

/* ---------- 02 Reset & Grundlagen ---------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--ink); text-decoration: none; transition: color .18s ease, border-color .18s ease, background-color .18s ease; }
a:hover { color: var(--pink); }

h1, h2, h3, h4 { color: var(--ink); margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--r-pill);
  font-size: 14px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

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

/* ---------- 03 Layout ---------------------------------------------------*/
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight     { padding-block: var(--section-y-sm); }
.section--no-top    { padding-top: 0; }
.section--no-bottom { padding-bottom: 0; }
.section--tint      { background: var(--tint-grey); }
.section--ink       { background: var(--ink); color: #fff; }
.section--fade      { background: linear-gradient(180deg, #EAF2F8 0%, #F8F8FA 14%, #F8F8FA 100%); }
.section--relative  { position: relative; overflow: hidden; }
[id] { scroll-margin-top: var(--header-h); }

/* Auto-fit Raster: bricht ohne Media Query auf eine Spalte um */
.grid { display: grid; gap: 20px; }
.grid--split   { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: clamp(40px, 5vw, 64px); align-items: center; }
.grid--split-t { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 44px 72px; align-items: start; }
.grid--cards   { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.grid--steps   { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.grid--videos  { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.grid--stats   { grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr)); gap: 32px; }
.grid--footer  { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 56px; }

.stack     { display: grid; gap: 20px; }
.row       { display: flex; flex-wrap: wrap; gap: 12px; }
.row--wide { gap: 28px; }
.row--tight{ gap: 8px; }

/* Dekorative Farbkreise im Hintergrund */
.blob { position: absolute; border-radius: 50%; z-index: 0; pointer-events: none; }
.blob--blue  { background: var(--tint-blue); }
.blob--green { background: var(--tint-green); }
.above { position: relative; z-index: 1; }

/* ---------- 04 Typografie ----------------------------------------------*/
.display {
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 600;
}
.heading {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 600;
}
.heading--sm { font-size: clamp(28px, 3vw, 38px); }
.heading--lg { font-size: clamp(30px, 3vw, 44px); line-height: 1.08; }
.subheading {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 600;
}
.card-title {
  font-size: 19px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
}
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Handschrift-Akzent — bewusst sparsam, einmal pro Abschnitt */
.script {
  font-family: var(--font-hand);
  font-size: 26px;
  line-height: 1;
  color: var(--pink);
  transform: rotate(-1.5deg);
  transform-origin: left center;
  display: block;
}
.script--green { color: var(--green); }

.lead  { font-size: 19px; line-height: 1.6; text-wrap: pretty; }
.prose { font-size: 17px; line-height: 1.65; text-wrap: pretty; }
.small { font-size: 14px; line-height: 1.55; text-wrap: pretty; }
.note  { font-size: 13px; line-height: 1.6; color: var(--muted-soft); }
.fine  { font-size: 12px; line-height: 1.6; color: var(--muted); }
.measure { max-width: 44ch; }
.measure--wide { max-width: 62ch; }
.on-ink       { color: rgba(255, 255, 255, .82); }
.on-ink-soft  { color: rgba(255, 255, 255, .72); }
h2.on-dark, h1.on-dark, h3.on-dark { color: #fff; }

/* ---------- 05 Buttons -------------------------------------------------*/
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 500; line-height: 1;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn--sm { font-size: 14px; padding: 11px 22px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-deep); color: #fff; }
.btn--pink { background: var(--ink); color: #fff; }
.btn--pink:hover { background: var(--pink); color: #fff; }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); font-weight: 600; }
.btn--light:hover { background: var(--tint-blue); color: var(--ink); }
.btn--outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; color: #fff; }
.btn--block { flex: 1 1 220px; min-width: min(220px, 100%); padding: 16px 28px; }

.textlink { font-size: 15px; font-weight: 500; color: var(--ink); }
.textlink:hover { color: var(--pink); }

/* ---------- 06 Chips, Badges, Pills ------------------------------------*/
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line-chip);
  border-radius: var(--r-pill); padding: 8px 16px;
  font-size: 13px; color: var(--ink);
}
.chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--chip-dot, var(--pink)); flex-shrink: 0;
}
.chip--green { --chip-dot: var(--green); }
.chip--ink   { --chip-dot: var(--ink); }
.chip--pink  { --chip-dot: var(--pink); }
.chip--grey  { --chip-dot: #9AA7B8; }

.badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--pill-grey); color: var(--grey-ink);
}

.status {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
}
.status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
}

.marker { /* Handschrift in einer Pille, z. B. „in 3 Minuten" */
  background: var(--tint-green); color: var(--pink);
  font-family: var(--font-hand); font-size: 24px; letter-spacing: 0;
  padding: 6px 16px; border-radius: var(--r-pill);
  transform: rotate(-3deg); display: inline-block;
}

/* ---------- 07 Kopf- & Fußbereich --------------------------------------*/
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 32px);
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img {
  height: clamp(32px, 5.6vw, 55px); width: auto; max-width: 56vw; object-fit: contain;
}
.site-nav { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; margin-left: auto; }
.site-nav a { font-size: 14px; color: var(--body); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--pink); }
.site-header .btn { flex-shrink: 0; }
/* Der Termin-Button im Menü ist nur für die mobile Klappliste gedacht. */
.site-nav .btn { display: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner > .btn { display: none; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 8px var(--gutter) 20px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-float);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .site-nav .btn { display: inline-flex; margin-top: 16px; border-bottom: 0; }
}

.site-footer { border-top: 1px solid var(--line); }
.site-footer__top { padding: clamp(40px, 7vw, 56px) var(--gutter) 32px; max-width: var(--wrap); margin-inline: auto; }
.site-footer__bottom { padding: 0 var(--gutter) 48px; max-width: var(--wrap); margin-inline: auto; }
.site-footer img { height: 42px; width: auto; object-fit: contain; margin-bottom: 18px; }
.site-footer a { color: var(--body); font-size: 14px; }
.footer-links { display: grid; gap: 9px; }
.disclaimer {
  padding-top: 24px; border-top: 1px solid var(--line);
  max-width: 90ch; margin-bottom: 16px;
}

/* ---------- 08 Bausteine ------------------------------------------------*/

/* Hero */
.hero__media { position: relative; }
.hero__media > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); }
.hero__quote {
  position: absolute; left: max(-24px, -4vw); bottom: clamp(16px, 3vw, 32px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 18px 22px;
  max-width: min(260px, 78%); box-shadow: var(--shadow-float);
}
.hero__quote strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; letter-spacing: -.01em; color: var(--ink); }
.hero__quote span { font-family: var(--font-hand); font-size: 20px; color: var(--pink); margin-top: 6px; display: block; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}

/* Kennzahlenband */
.stats { padding-block: clamp(26px, 4vw, 34px); }
.stat__value { font-size: 28px; font-weight: 600; letter-spacing: -.02em; }
.stat__value--green { color: var(--green); }
.stat__value--pink  { color: #FF8FC8; }
.stat__label { font-size: 13px; margin-top: 2px; }

/* Einfache Tonkarte (Mission, Hinweise) */
.card { border-radius: var(--r-md); padding: 28px; }
.card--blue  { background: var(--tint-blue); }
.card--green { background: var(--tint-green); }
.card--pink  { background: var(--tint-pink); }
.card__title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.checklist { display: grid; gap: 11px; font-size: 15px; line-height: 1.5; }
.checklist li { display: flex; gap: 12px; }
.checklist li::before { content: attr(data-mark); color: var(--pink); flex-shrink: 0; }

/* Themenkarten */
.theme-card {
  --c-bg: var(--tint-grey); --c-pill: var(--pill-grey); --c-ink: var(--grey-ink);
  background: var(--c-bg);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-card.t-pink  { --c-bg: var(--tint-pink);  --c-pill: var(--pill-pink);  --c-ink: var(--pink-ink); }
.theme-card.t-blue  { --c-bg: var(--tint-blue);  --c-pill: var(--pill-blue);  --c-ink: var(--ink); }
.theme-card.t-green { --c-bg: var(--tint-green); --c-pill: var(--pill-green); --c-ink: var(--green-ink); }
.theme-card.t-grey  { --c-bg: var(--tint-grey);  --c-pill: var(--pill-grey);  --c-ink: var(--grey-ink); }
.theme-card[hidden] { display: none; }
.theme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.theme-card > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.theme-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
/* flex: 0 0 auto — die Badge ist ein <p> und darf das flex:1 der Textabsätze
   (siehe .theme-card p) nicht erben, sonst zieht sie sich in die Höhe. */
.theme-card .badge { background: var(--c-pill); color: var(--c-ink); margin-bottom: 12px; flex: 0 0 auto; }
.theme-card h3 { margin-bottom: 10px; overflow-wrap: anywhere; hyphens: auto; }
.theme-card p { color: var(--body); margin-bottom: 18px; flex: 1; }
.theme-card__link {
  font-size: 14px; font-weight: 500; color: var(--c-ink);
  border-top: 1px solid rgba(11, 29, 77, .14); padding-top: 14px;
}
.theme-card__link:hover { color: var(--pink); }

/* Filter */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter {
  border: 1px solid var(--line-strong); background: transparent; color: var(--body);
  font-size: 14px; padding: 9px 18px; border-radius: var(--r-pill); cursor: pointer;
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }

/* Ablauf-Schritte */
.step {
  background: #fff; border: 2px solid var(--step-edge, var(--line));
  border-radius: var(--r-md); padding: 34px 28px 40px; text-align: center;
}
.step--green { --step-edge: var(--edge-green); }
.step--blue  { --step-edge: var(--edge-blue); }
.step--pink  { --step-edge: var(--edge-pink); }
.step--navy  { --step-edge: var(--edge-navy); }
.step img { width: 106px; height: 106px; margin: 0 auto 22px; border-radius: 50%; }
.step h3 { margin-bottom: 10px; }

/* Sektionskopf */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.section-head > div { max-width: 620px; }
.section-head .script { margin-bottom: 14px; }
.section-head .heading { margin-bottom: 16px; }
.section-head .heading:last-child { margin-bottom: 0; }

/* Erklärvideo */
.video-frame { position: relative; }
.video-frame video { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-video); cursor: pointer; }
.video-frame__play {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px; border-radius: var(--r-pill);
  background: rgba(230, 0, 126, .9); color: #fff; border: 0;
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding-left: 4px;
  transition: transform .2s ease, background-color .2s ease;
}
.video-frame__play:hover { background: var(--pink); transform: scale(1.06); }
.video-frame.is-playing .video-frame__play { display: none; }

/* Videokarten */
.video-card { display: block; color: inherit; }
.video-card__thumb { position: relative; border-radius: 18px; overflow: hidden; }
.video-card__thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .3s ease; }
.video-card:hover .video-card__thumb img { transform: scale(1.03); }
.video-card__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
}
.video-card__meta {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  display: flex; align-items: center; gap: 10px;
}
.video-card__meta i {
  width: 34px; height: 34px; border-radius: var(--r-pill); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink); font-style: normal;
}
.video-card__meta span { font-family: var(--font-mono); font-size: 11px; color: #fff; }
.video-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -.02em; line-height: 1.3; margin: 18px 0 8px; }

/* Podcast */
.podcast { position: relative; overflow: hidden; color: #fff; min-height: 640px; display: flex; align-items: stretch; }
.podcast__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.podcast::before, .podcast::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
}
.podcast::before { background: linear-gradient(100deg, rgba(6,14,28,.92) 0%, rgba(6,14,28,.85) 45%, rgba(6,14,28,.25) 68%, rgba(6,14,28,.05) 100%); }
.podcast::after  { background: linear-gradient(0deg, rgba(6,14,28,.85) 0%, rgba(6,14,28,.3) 40%, rgba(6,14,28,0) 65%); }
.podcast__inner { position: relative; z-index: 2; width: 100%; padding-block: var(--section-y); }
.podcast__usps { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 32px; }
.podcast__usp { text-align: center; font-size: 13px; color: rgba(255,255,255,.85); }
.podcast__usp i {
  width: 48px; height: 48px; border-radius: var(--r-pill);
  background: rgba(139,195,74,.18); border: 1px solid rgba(139,195,74,.45);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.episode {
  background: #fff; border-radius: var(--r-sm); padding: 10px;
  display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow-card);
}
.episode img { width: 96px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.episode__body { flex: 1; min-width: 0; }
.episode__meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--pink); margin-bottom: 4px;
}
.episode__meta span:last-child { color: #9AA5B1; }
.episode h3 { font-size: 15px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 6px; }
.episode h3 a { color: #111827; }
.episode audio { width: 100%; height: 30px; }

/* FAQ */
.faq-panel { background: #fff; border-radius: var(--r-md); padding: 8px 28px; }
.faq-item { border-bottom: 1px solid #EDF0F3; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; color: var(--pink); line-height: 1;
  transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.65; margin-bottom: 22px; max-width: 62ch; }

/* Abschluss-CTA */
.cta {
  background: var(--ink); border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 64px);
  color: #fff;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 5vw, 64px); align-items: center;
}
.cta__box {
  background: rgba(255,255,255,.07); border-radius: var(--r-md);
  padding: 28px clamp(24px, 3vw, 32px); display: grid; gap: 20px;
  font-size: 15px; line-height: 1.5;
}
.cta__box .label { color: rgba(255,255,255,.6); margin-bottom: 6px; }

/* ---------- 09 Trennbänder & Wellenkanten ------------------------------*/
/* Randloses Foto-Band zwischen zwei Themenbereichen (Liefermaß 2400×540) */
.band { width: 100%; overflow: hidden; }
.band img { width: 100%; height: 270px; object-fit: cover; object-position: center; }
@media (max-width: 700px) { .band img { height: 160px; } }

.wave { display: block; width: 100%; height: clamp(48px, 7vw, 96px); margin-bottom: -1px; }

/* Sanfte Wellen-Überleitung zwischen zwei Abschnitten. Der negative
   margin-top zieht die Welle in den Abstand darüber; die Fläche darunter
   trägt dieselbe Farbe wie der Anfang des folgenden Abschnitts (nahtlos). */
.wave-divider { line-height: 0; margin-top: calc(var(--section-y) * -0.6); }
.wave-divider svg { display: block; width: 100%; height: clamp(44px, 6vw, 84px); margin-bottom: -1px; }

/* ---------- 10 Bewegung & Barrierefreiheit -----------------------------*/
.js [data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal].is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .video-frame__play, .filters { display: none !important; }
  body { color: #000; }
}
