/* ==========================================================================
   Vitalwerk — Design-System
   Warm-editorial. Creme, Salbeigrün, Terrakotta. Große Schrift für 60+.
   ========================================================================== */

:root {
  /* Farben */
  /* Standard = Farbwelt D Meerbrise (Entscheidung Holger 02.09.2026) */
  --cream: #F4F5F1;
  --paper: #FFFFFF;
  --sand: #E6E8E0;
  --ink: #1B2A3A;
  --ink-soft: #3A4A5C;
  --muted: #66748A;
  --green: #234E7A;
  --green-deep: #173857;
  --green-tint: #DCE6F0;
  --green-glow: rgba(35,78,122,0.12);
  --terra: #E0644D;
  --terra-deep: #BC4A35;
  --terra-tint: #FADDD6;
  --line: rgba(27,42,58,0.12);
  --shadow: 0 18px 50px -24px rgba(27,42,58,0.35);

  /* Typografie */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
  --fs-base: 1.1875rem; /* 19px */
  --fs-lg: 1.375rem;
  --fs-xl: clamp(1.6rem, 2.4vw, 2rem);
  --fs-h2: clamp(2.2rem, 4.6vw, 3.6rem);
  --fs-h1: clamp(2.9rem, 6.5vw, 5.6rem);

  /* Maße */
  --wrap: min(1180px, 92vw);
  --text-col: min(760px, 92vw);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Papier-Korn */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: var(--fs-h1); font-variation-settings: "opsz" 144, "SOFT" 60; }
h2 { font-size: var(--fs-h2); font-variation-settings: "opsz" 96, "SOFT" 50; }
h3 { font-size: var(--fs-xl); }
p { margin: 0 0 1.1em; }
p.lead { font-size: var(--fs-lg); color: var(--ink-soft); }
em { font-style: italic; }
strong { font-weight: 700; }
a { color: var(--green); text-underline-offset: .18em; text-decoration-thickness: 2px; }
a:hover { color: var(--green-deep); }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 4px; border-radius: 6px; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: var(--wrap); margin-inline: auto; }
.text-col { width: var(--text-col); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .8rem 1.2rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

/* Eyebrow / Kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra);
}
.kicker::before { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 2px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.demo-bar { background: var(--ink); color: #fff; text-align: center; font-size: 1rem; line-height: 1.45; padding: .6rem 4vw; }
.demo-bar strong { color: #F4B7A6; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); font-family: var(--display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; }
.brand svg { width: 42px; height: 42px; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: 1.05rem; padding: .7rem 1rem; border-radius: 999px; transition: background .25s var(--ease), color .25s; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--green-tint); color: var(--green-deep); }
.nav a.cta { background: var(--terra); color: #fff; margin-left: .5rem; }
.nav a.cta:hover { background: var(--terra-deep); color: #fff; }
.nav-toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 999px; padding: .6rem 1rem; font: inherit; font-weight: 700; color: var(--ink); cursor: pointer; }
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem 4vw 1.5rem; gap: .35rem; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { font-size: 1.2rem; padding: 1rem 1.2rem; }
  .nav a.cta { margin-left: 0; text-align: center; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 60px; padding: .9rem 1.8rem; border-radius: 999px;
  font-family: var(--body); font-weight: 700; font-size: 1.15rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 30px -14px rgba(47,108,79,.7); }
.btn-primary:hover { background: var(--green-deep); color: #fff; }
.btn-terra { background: var(--terra); color: #fff; box-shadow: 0 12px 30px -14px rgba(201,97,59,.7); }
.btn-terra:hover { background: var(--terra-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: .6em; }
.hero h1 .accent { color: var(--green); font-style: italic; font-weight: 400; }
.hero .lead { max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-figure { position: relative; }
.hero-figure img, .hero-figure video { width: 100%; aspect-ratio: 4 / 3.9; object-fit: cover; object-position: 50% 30%; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 120px; box-shadow: var(--shadow); }
.hero-figure::before {
  content: ""; position: absolute; inset: -6% -8% 8% 10%; z-index: -1;
  background: radial-gradient(ellipse at 30% 30%, var(--green-tint), transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  position: absolute; left: -1.5rem; bottom: 2.5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.3rem; box-shadow: var(--shadow); max-width: 260px;
}
.hero-badge strong { display: block; font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--terra); }
.hero-badge span { color: var(--muted); font-size: 1rem; }
.hero-ring {
  position: absolute; right: -8vw; top: -10vw; width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  border: 1.5px solid var(--terra); border-radius: 50%; opacity: .25; pointer-events: none;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img, .hero-figure video { aspect-ratio: 16 / 11; border-radius: var(--r-lg); }
  .hero-badge { left: 1rem; bottom: 1rem; }
  .hero-ring { display: none; }
}

/* Reveal-Animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .25s; }
.hero .reveal:nth-child(4) { transition-delay: .35s; }

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head h2 { margin-top: .4em; }
.section.tinted { background: var(--paper); border-block: 1px solid var(--line); }
.section.deep { background: var(--green-deep); color: var(--cream); }
.section.deep h2, .section.deep h3 { color: #fff; }
.section.deep .kicker { color: #F1B79A; }
.section.deep p { color: rgba(255,252,245,.85); }

/* --------------------------------------------------------------------------
   Beschwerde-Finder
   -------------------------------------------------------------------------- */
.finder {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.finder::after {
  content: ""; position: absolute; right: -120px; bottom: -160px; width: 360px; height: 360px;
  background: radial-gradient(circle, var(--terra-tint), transparent 65%); pointer-events: none;
}
.finder-step { margin-bottom: 2rem; position: relative; z-index: 1; }
.finder-step h3 { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1rem; }
.finder-step h3 .num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; font-family: var(--body); font-size: 1rem; font-weight: 700;
}
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 60px; padding: .7rem 1.4rem; border-radius: 999px; cursor: pointer;
  background: var(--cream); border: 2px solid var(--line); font: inherit; font-weight: 700; font-size: 1.1rem; color: var(--ink);
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--green); background: var(--green-tint); }
.chip[aria-pressed="true"] { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 10px 26px -12px rgba(47,108,79,.8); }
.chip .ico { width: 26px; height: 26px; flex: none; }
.finder-result {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.4rem 1.6rem; border-radius: var(--r-md); background: var(--green-tint);
  transition: background .3s; position: relative; z-index: 1;
}
.finder-result p { margin: 0; font-size: var(--fs-lg); }
.finder-result.ready { background: var(--terra-tint); }
.finder-result .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* --------------------------------------------------------------------------
   Karten
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.card {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: inherit; }
.card img, .card video { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.card:hover img, .card:hover video { transform: scale(1.03); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { margin-bottom: .4em; }
.card-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.card-link { font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: .4rem; }
.card-link::after { content: "→"; transition: transform .3s var(--ease); }
.card:hover .card-link::after { transform: translateX(6px); }
.cards.feature { grid-template-columns: 2fr 1fr 1fr; }
.cards.feature .card:first-child { grid-row: span 2; }
.cards.feature .card:first-child img { aspect-ratio: auto; flex: 1; min-height: 320px; }
@media (max-width: 960px) { .cards.feature { grid-template-columns: 1fr 1fr; } .cards.feature .card:first-child { grid-column: span 2; grid-row: auto; } }
@media (max-width: 620px) { .cards.feature { grid-template-columns: 1fr; } .cards.feature .card:first-child { grid-column: auto; } }

/* Schritte */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.8rem 2rem; background: var(--paper); border-radius: var(--r-md); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 4rem; line-height: 1; color: var(--terra-tint);
  position: absolute; top: .6rem; right: 1.2rem; font-weight: 600;
}
.step h3 { position: relative; }
.step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Zitat */
.quote { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.quote img, .quote video { border-radius: 200px 200px var(--r-lg) var(--r-lg); aspect-ratio: 3 / 3.6; object-fit: cover; width: 100%; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.25; font-weight: 400; font-style: italic; }
.quote blockquote::before { content: "„"; color: var(--terra); }
.quote blockquote::after { content: "“"; color: var(--terra); }
.quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-family: var(--body); font-size: 1.05rem; color: rgba(255,252,245,.7); }
@media (max-width: 860px) { .quote { grid-template-columns: 1fr; } .quote img, .quote video { max-width: 340px; } }

/* CTA-Band */
.cta-band { background: var(--terra); color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); right: -180px; top: -220px; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.88); font-size: var(--fs-lg); margin: 0; }
.cta-band .btn { background: #fff; color: var(--terra-deep); justify-self: end; white-space: nowrap; }
.cta-band .btn:hover { background: var(--cream); }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn { justify-self: start; } }

/* --------------------------------------------------------------------------
   Beschwerde-Seite
   -------------------------------------------------------------------------- */
.page-hero { padding: clamp(2rem, 5vw, 4rem) 0 0; }
.page-hero .crumbs { font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; }
.page-hero .crumbs a { color: var(--muted); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--green); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
.page-hero img, .page-hero video { border-radius: var(--r-lg); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }

.age-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 0; }
.age-tabs .chip { min-height: 54px; }
.age-panels { position: relative; }
.age-panel { display: none; }
.age-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.toc { position: sticky; top: 110px; }
.toc ol { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.toc li a { display: block; padding: .55rem 0 .55rem 1.1rem; margin-left: -2px; border-left: 2px solid transparent; color: var(--muted); text-decoration: none; font-weight: 700; font-size: 1rem; transition: all .25s; }
.toc li a:hover, .toc li a.active { color: var(--green-deep); border-left-color: var(--terra); }
@media (max-width: 960px) { .layout { grid-template-columns: 1fr; } .toc { display: none; } }

.block { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.block:last-child { border-bottom: 0; }
.block h2 { margin-top: .3em; }

.callout { background: var(--green-tint); border-left: 6px solid var(--green); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.4rem 1.6rem; margin: 1.5rem 0; }
.callout strong { color: var(--green-deep); }
.callout.warn { background: var(--terra-tint); border-left-color: var(--terra); }
.callout.warn strong { color: var(--terra-deep); }

.list-check { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.list-check li { position: relative; padding-left: 2.4rem; margin-bottom: .8rem; }
.list-check li::before { content: ""; position: absolute; left: 0; top: .35em; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--green-tint); }
.list-check li::after { content: ""; position: absolute; left: .5rem; top: .62em; width: .45rem; height: .8rem; border: solid var(--green); border-width: 0 3px 3px 0; transform: rotate(45deg); }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2rem 0; }
.fact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; }
.fact strong { display: block; font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--terra); margin-bottom: .3rem; }
.fact span { color: var(--muted); font-size: 1rem; }
@media (max-width: 720px) { .facts { grid-template-columns: 1fr; } }

/* Übung (aufklappbar) */
.exercise { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 1.2rem; overflow: hidden; }
.exercise summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 64px 1fr auto; gap: 1.2rem; align-items: center; padding: 1.3rem 1.5rem; }
.exercise summary::-webkit-details-marker { display: none; }
.exercise summary .badge { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); font-family: var(--display); font-size: 1.6rem; font-weight: 600; }
.exercise summary h3 { margin: 0; font-size: 1.45rem; }
.exercise summary .meta { color: var(--muted); font-size: 1rem; }
.exercise summary .arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.exercise[open] summary .arrow { transform: rotate(180deg); background: var(--green-tint); border-color: var(--green); }
.exercise summary:hover .arrow { border-color: var(--green); }
.exercise-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 1.5rem 1.8rem 1.5rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.exercise-body img, .exercise-body video { border-radius: var(--r-sm); aspect-ratio: 4 / 3; object-fit: cover; }
.exercise-body ol { padding-left: 1.3rem; }
.exercise-body ol li { margin-bottom: .6rem; }
@media (max-width: 720px) { .exercise-body { grid-template-columns: 1fr; } .exercise summary { grid-template-columns: 52px 1fr auto; } }

/* Video-Platz */
.video-slot { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--ink); aspect-ratio: 16 / 9; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); }
.video-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.video-slot .play { position: relative; display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 14px rgba(201,97,59,.25); transition: transform .3s var(--ease); }
.video-slot:hover .play { transform: scale(1.06); }
.video-slot .play svg { width: 36px; height: 36px; margin-left: 5px; }
.video-slot .label { position: absolute; left: 1.4rem; bottom: 1.2rem; background: rgba(30,42,36,.8); padding: .6rem 1rem; border-radius: 999px; font-weight: 700; font-size: 1rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(246,241,230,.8); padding: 4rem 0 2.5rem; margin-top: clamp(3rem, 6vw, 6rem); }
.site-footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-family: var(--body); font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(246,241,230,.8); text-decoration: none; display: block; padding: .3rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .fine { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .95rem; color: rgba(246,241,230,.55); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
@media (max-width: 860px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .grid { grid-template-columns: 1fr; } }

/* Team */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.team .member { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem; }
.team .member .avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--green-tint); display: grid; place-items: center; font-family: var(--display); font-size: 1.8rem; color: var(--green-deep); margin-bottom: 1rem; }
.team .member h3 { font-size: 1.4rem; margin-bottom: .2em; }
.team .member .role { color: var(--terra); font-weight: 700; font-size: 1rem; margin-bottom: .8rem; }
.team .member p { color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Farbwelten (umschaltbar über data-theme am <html>)
   D meerbrise = Standard (in :root), die anderen drei per data-theme
   ========================================================================== */
[data-theme="morgenlicht"] {
  --cream: #F6F1E6; --paper: #FFFCF5; --sand: #EDE4D2;
  --ink: #1E2A24; --ink-soft: #3B4A42; --muted: #66736C;
  --green: #2F6C4F; --green-deep: #1F4A36; --green-tint: #DDE9DE; --green-glow: rgba(47,108,79,.12);
  --terra: #C9613B; --terra-deep: #A94B2A; --terra-tint: #F4DACB;
  --line: rgba(30,42,36,.12);
}
[data-theme="sonnenaufgang"] {
  --cream: #FBF6EE; --paper: #FFFFFF; --sand: #F1E6D6;
  --ink: #17313A; --ink-soft: #35505A; --muted: #62787F;
  --green: #1F6F78; --green-deep: #134C53; --green-tint: #D9EBEC; --green-glow: rgba(31,111,120,.12);
  --terra: #E2793B; --terra-deep: #BF5F27; --terra-tint: #FBE1CF;
  --line: rgba(23,49,58,.12);
}
[data-theme="waldboden"] {
  --cream: #F3EFE4; --paper: #FBF9F2; --sand: #E7E0CC;
  --ink: #232A1E; --ink-soft: #414A38; --muted: #6B7362;
  --green: #4E6B2F; --green-deep: #334A1D; --green-tint: #E1E8D2; --green-glow: rgba(78,107,47,.12);
  --terra: #D9A21B; --terra-deep: #B5840F; --terra-tint: #F7E9BF;
  --line: rgba(35,42,30,.12);
}
[data-theme="meerbrise"] {
  --cream: #F4F5F1; --paper: #FFFFFF; --sand: #E6E8E0;
  --ink: #1B2A3A; --ink-soft: #3A4A5C; --muted: #66748A;
  --green: #234E7A; --green-deep: #173857; --green-tint: #DCE6F0; --green-glow: rgba(35,78,122,.12);
  --terra: #E0644D; --terra-deep: #BC4A35; --terra-tint: #FADDD6;
  --line: rgba(27,42,58,.12);
}

/* Farbwelt-Umschalter (nur für die Testphase) */
.theme-picker {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 60;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .6rem .5rem 1rem; display: flex; align-items: center; gap: .5rem; box-shadow: var(--shadow);
  font-size: .95rem; font-weight: 700; color: var(--muted);
}
.theme-picker button {
  width: 34px; height: 34px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; padding: 0;
  background: linear-gradient(135deg, var(--a) 50%, var(--b) 50%); transition: transform .2s var(--ease);
}
.theme-picker button:hover { transform: scale(1.12); }
.theme-picker button[aria-pressed="true"] { border-color: var(--ink); }
.theme-picker a { color: var(--green); font-size: .9rem; margin-left: .3rem; }

/* Farbwelten-Seite */
.palettes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: 1.8rem; }
.palette { border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(0,0,0,.1); background: var(--p-cream); color: var(--p-ink); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.palette .swatches { display: grid; grid-template-columns: repeat(5, 1fr); height: 110px; }
.palette .swatches span { display: block; box-shadow: inset 0 0 0 1px rgba(0,0,0,.07); }
.palette .p-body { padding: 1.5rem 1.6rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.palette h3 { font-family: var(--display); margin-bottom: .2em; }
.palette .p-sub { font-weight: 700; color: var(--p-accent); font-size: 1rem; margin-bottom: .8rem; }
.palette p { font-size: 1.05rem; line-height: 1.5; margin-bottom: 1.2rem; }
.palette .mini { background: var(--p-paper); border-radius: var(--r-sm); padding: 1rem 1.1rem; border: 1px solid rgba(0,0,0,.08); margin-bottom: 1.2rem; }
.palette .mini .h { font-family: var(--display); font-size: 1.5rem; line-height: 1.1; margin-bottom: .4rem; }
.palette .mini .h i { color: var(--p-primary); }
.palette .mini .b { display: inline-block; margin-top: .6rem; padding: .5rem 1rem; border-radius: 999px; background: var(--p-primary); color: #fff; font-weight: 700; font-size: .95rem; }
.palette .mini .b.alt { background: var(--p-accent); }
.palette .p-body .btn { margin-top: auto; align-self: start; background: var(--p-primary); color: #fff; }

/* Mobile-Feinschliff */
@media (max-width: 900px) {
  .hero-badge { position: static; margin-top: 1rem; max-width: none; display: flex; align-items: center; gap: 1rem; box-shadow: none; }
  .hero-badge strong { font-size: 1.8rem; white-space: nowrap; }
}
@media (max-width: 600px) {
  .theme-picker { padding: .35rem .5rem; gap: .35rem; font-size: 0; }
  .theme-picker button { width: 28px; height: 28px; }
  .theme-picker a { font-size: .85rem; }
}

/* Video-Clips (Grok Imagine, stumm, Schleife) */
video.vid { display: block; width: 100%; object-fit: cover; background: var(--sand); }
.card video.vid { aspect-ratio: 4 / 3; }
.page-hero video.vid { aspect-ratio: 4 / 3; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.exercise-body video.vid { aspect-ratio: 4 / 3; border-radius: var(--r-sm); }
.quote video.vid { aspect-ratio: 3 / 3.6; border-radius: 200px 200px var(--r-lg) var(--r-lg); }
.hero-figure video.vid { aspect-ratio: 4 / 3.9; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 120px; box-shadow: var(--shadow); object-position: 50% 30%; }
@media (max-width: 900px) { .hero-figure video.vid { aspect-ratio: 16 / 11; border-radius: var(--r-lg); } .quote video.vid { max-width: 340px; } }

/* ==========================================================================
   v2 — Storytelling ohne Alter (02.09.2026)
   ========================================================================== */
.tabs-label { margin: 1.5rem 0 .4rem; font-weight: 700; color: var(--muted); }
.themen-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .themen-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .themen-grid { grid-template-columns: 1fr; } }
.fact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fact-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 1.6rem 1.5rem; }
.fact-item strong { display: block; font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3rem); line-height: 1; color: #F1B79A; margin-bottom: .6rem; }
.fact-item p { margin: 0; font-size: 1.05rem; }
@media (max-width: 860px) { .fact-strip { grid-template-columns: 1fr; } }
.fine-print { font-size: .95rem; color: var(--muted); margin-top: 1.4rem; }
.section.deep .fine-print { color: rgba(255,252,245,.65); } .section.deep .fine-print a { color: #F1B79A; }
.selbsttest-teaser, .quote-room { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.selbsttest-teaser img, .selbsttest-teaser video, .quote-room img, .quote-room video { border-radius: var(--r-lg); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); width: 100%; }
.quote-room { grid-template-columns: 1.1fr 1fr; }
@media (max-width: 860px) { .selbsttest-teaser, .quote-room { grid-template-columns: 1fr; } }
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.voice { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem; display: flex; flex-direction: column; }
.voice .avatar, .voice video.avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; aspect-ratio: 1; margin-bottom: 1rem; }
.voice blockquote { margin: 0 0 1rem; font-family: var(--display); font-size: 1.35rem; line-height: 1.3; font-style: italic; }
.voice blockquote::before { content: "„"; color: var(--terra); } .voice blockquote::after { content: "“"; color: var(--terra); }
.voice cite { font-style: normal; font-size: 1rem; color: var(--muted); display: block; margin-bottom: 1rem; }
.voice .first-week { margin-top: auto; font-size: 1rem; background: var(--green-tint); border-radius: var(--r-sm); padding: .9rem 1rem; }
@media (max-width: 960px) { .voices { grid-template-columns: 1fr; } }
.honest { background: var(--paper); border: 2px solid var(--green); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 3rem); max-width: 900px; }
.honest .list-check { margin-bottom: 0; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .steps.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps.four { grid-template-columns: 1fr; } }
.room-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.room-grid img, .room-grid video { border-radius: var(--r-lg); aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow); width: 100%; }
@media (max-width: 860px) { .room-grid { grid-template-columns: 1fr; } }
.team .member .quali { font-size: .95rem; color: var(--muted); margin-top: .8rem; border-top: 1px solid var(--line); padding-top: .8rem; }
.plan-form { background: var(--cream); border-radius: var(--r-md); padding: 1.2rem 1.4rem; margin: 1.2rem 0 1.6rem; }
.plan-form .chips { margin: .6rem 0; } .plan-form .muted { color: var(--muted); font-weight: 400; }
.plan-out { margin: .8rem 0 0; font-weight: 700; color: var(--green-deep); }
.test-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: start; }
.test-grid img, .test-grid video { border-radius: var(--r-md); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; position: sticky; top: 110px; }
@media (max-width: 860px) { .test-grid { grid-template-columns: 1fr; } .test-grid img, .test-grid video { position: static; } }
.test ol { padding-left: 1.3rem; } .test ol li { margin-bottom: .5rem; }
.test-ctrl { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 1.2rem 0 .6rem; }
.timer { font-family: var(--display); font-size: 2.4rem; font-weight: 600; min-width: 5ch; color: var(--ink); }
.test-result { font-weight: 700; min-height: 1.6em; }
.test-result.ok { color: var(--green-deep); } .test-result.warn { color: var(--terra-deep); }
.result-box { background: var(--paper); border: 2px solid var(--green); border-radius: var(--r-md); padding: 1.5rem 1.6rem; margin-bottom: 1.5rem; }
.result-box ul { margin: .6rem 0 0; padding-left: 1.2rem; } .result-box li { margin-bottom: .5rem; }
.text-col-wide { width: min(920px, 92vw); margin-inline: auto; }
.faq-body { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.faq summary h3 { font-size: 1.3rem; }
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { border-collapse: collapse; width: 100%; font-size: 1.02rem; background: var(--paper); border-radius: var(--r-sm); }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--body); font-weight: 700; color: var(--green-deep); background: var(--green-tint); }
ol.sources { padding-left: 1.3rem; } ol.sources li { margin-bottom: 1rem; font-size: 1rem; word-break: break-word; } ol.sources a { font-size: .95rem; }
h1 .accent, h1 em.accent { color: var(--green); font-style: italic; font-weight: 400; }

/* ==========================================================================
   v3 — Header neu, Altersleiste, Hero-Kennzahl kompakt, Videothek
   ========================================================================== */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); backdrop-filter: none; }
.site-header .wrap.top { min-height: 76px; gap: 2rem; }
.brand { font-size: 1.55rem; gap: .6rem; }
.brand svg { width: 38px; height: 38px; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand small { font-family: var(--body); font-weight: 400; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.nav { gap: 0; margin-left: auto; }
.nav a { padding: .5rem .85rem; border-radius: 0; font-size: 1rem; font-weight: 700; color: var(--ink-soft); position: relative; background: none !important; }
.nav a::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .15rem; height: 2px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.head-actions { display: flex; align-items: center; gap: .8rem; }
.btn-sm { min-height: 44px; padding: .55rem 1.2rem; font-size: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; padding: 0; background: var(--paper); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem 4vw 1rem; box-shadow: var(--shadow); z-index: 60; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.15rem; padding: .9rem .5rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .site-header .wrap.top { position: relative; }
}
@media (max-width: 600px) { .btn-sm { display: none; } .brand small { display: none; } }
.age-bar { background: var(--green-tint); border-top: 1px solid var(--line); }
.age-bar .wrap { display: flex; align-items: center; gap: 1rem; min-height: 46px; flex-wrap: wrap; padding: .3rem 0; }
.age-label { font-size: .92rem; font-weight: 700; color: var(--green-deep); white-space: nowrap; }
.age-chips { display: flex; gap: .4rem; flex-wrap: wrap; }
.age-chip { border: 1.5px solid transparent; background: transparent; border-radius: 999px; padding: .3rem .8rem; font: inherit; font-size: .92rem; font-weight: 700; color: var(--green-deep); cursor: pointer; min-height: 34px; transition: all .2s var(--ease); }
.age-chip:hover { background: rgba(255,255,255,.6); }
.age-chip[aria-pressed="true"] { background: var(--green); color: #fff; border-color: var(--green); }
@media (max-width: 600px) { .age-label { display: none; } }

/* Hero: Kennzahl kompakt, Umbrüche */
.hero { padding-top: clamp(1.5rem, 4vw, 3.5rem); }
.kicker { white-space: nowrap; }
.hero-badge { left: 1.25rem; right: 1.25rem; bottom: 1.25rem; max-width: none; display: flex; align-items: center; gap: 1rem; padding: .8rem 1.1rem; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); }
.hero-badge strong { font-size: 1.6rem; white-space: nowrap; margin: 0; }
.hero-badge span { font-size: .95rem; line-height: 1.35; }
@media (max-width: 1100px) and (min-width: 901px) { .hero-grid { grid-template-columns: 1fr 1fr; } .hero h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); } }
@media (max-width: 600px) { .kicker { white-space: normal; } .hero-badge { position: static; margin-top: 1rem; background: var(--paper); backdrop-filter: none; } }

/* Videothek */
.vfilters { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1rem; }
@media (max-width: 860px) { .vfilters { grid-template-columns: 1fr; } }
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.5rem; }
@media (max-width: 1000px) { .vgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vgrid { grid-template-columns: 1fr; } }
.vcard { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.vcard[hidden] { display: none; }
.vcard video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--sand); }
.vcard figcaption { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; gap: 1rem; }
.vcard figcaption strong { font-size: 1.02rem; } .vcard figcaption span { font-size: .9rem; color: var(--muted); white-space: nowrap; }

/* v3.1 — Hero bei mittlerer Breite einspaltig, Kennzahl unter dem Bild */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-figure { max-width: 680px; }
  .hero-figure img, .hero-figure video.vid { aspect-ratio: 16 / 10; border-radius: var(--r-lg); }
  .hero-badge { position: static; margin-top: .9rem; background: var(--paper); backdrop-filter: none; box-shadow: none; border: 1px solid var(--line); }
  .hero-badge span { font-size: 1rem; }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
  .hero-ring { display: none; }
}
@media (max-width: 900px) { .hero-figure { order: 0; } }
@media (max-width: 600px) {
  .age-chip { font-size: .85rem; padding: .25rem .6rem; min-height: 30px; }
  .age-bar .wrap { min-height: 40px; }
  .hero-badge { flex-direction: row; }
  .hero-badge strong { font-size: 1.4rem; }
}

/* v3.2 — Altersdialog statt Leiste; Kennzahl immer unter dem Bild */
.age-bar { display: none; }
.age-btn { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .5rem 1rem .5rem .8rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--cream); font: inherit; font-weight: 700; font-size: .95rem; color: var(--ink); cursor: pointer; transition: all .2s var(--ease); white-space: nowrap; }
.age-btn:hover { border-color: var(--green); background: var(--green-tint); }
.age-btn-ico { width: 22px; height: 22px; border-radius: 50%; background: conic-gradient(var(--terra) 0 25%, var(--green) 25% 50%, var(--terra-tint) 50% 75%, var(--green-tint) 75%); border: 2px solid var(--paper); box-shadow: 0 0 0 1px var(--line); }
@media (max-width: 600px) { .age-btn-text { display: none; } .age-btn { padding: .5rem .6rem; } }
.age-dialog { position: fixed; inset: 0; z-index: 200; background: rgba(27,42,58,.55); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 1rem; overflow: auto; }
.age-dialog[hidden] { display: none; }
.age-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 3rem); width: min(1080px, 100%); box-shadow: 0 40px 100px -30px rgba(0,0,0,.5); animation: fadeUp .45s var(--ease); }
.age-card h2 { margin: .3em 0 .3em; }
.age-card .lead { max-width: 62ch; }
.age-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.6rem 0 1.2rem; }
@media (max-width: 760px) { .age-tiles { grid-template-columns: 1fr 1fr; } }
.age-tile { padding: 0; border: 3px solid transparent; border-radius: var(--r-md); background: var(--cream); cursor: pointer; overflow: hidden; text-align: left; font: inherit; transition: transform .25s var(--ease), border-color .2s, box-shadow .25s; }
.age-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.age-tile span { display: block; padding: .8rem 1rem; font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.age-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-tint); }
.age-tile[aria-pressed="true"] { border-color: var(--green); }
.age-tile:focus-visible { outline: 3px solid var(--terra); outline-offset: 2px; }
.age-skip { background: none; border: 0; font: inherit; font-weight: 700; color: var(--muted); text-decoration: underline; text-underline-offset: .2em; cursor: pointer; padding: .5rem 0; }
.age-skip:hover { color: var(--green-deep); }
.hero-figure .hero-badge { position: static; margin-top: .9rem; background: var(--paper); backdrop-filter: none; box-shadow: none; border: 1px solid var(--line); }
.hero-figure img, .hero-figure video.vid { aspect-ratio: 4 / 3.4; }

.age-card:focus { outline: none; }

/* ==========================================================================
   v3.3 — Hero B „Cinematic Marine“ (Entscheidung Holger 02.09.2026)
   ========================================================================== */
.hero-cine { position: relative; min-height: clamp(640px, 92vh, 960px); display: flex; align-items: stretch; background: #1B2A3A; color: #fff; overflow: hidden; margin-top: -76px; padding-top: 76px; }
.hero-cine-media, .hero-cine video.vid, .hero-cine img.hero-cine-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%; }
.hero-cine-shade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(27,42,58,.94) 0%, rgba(27,42,58,.80) 36%, rgba(27,42,58,.28) 60%, rgba(27,42,58,.06) 100%), linear-gradient(180deg, rgba(27,42,58,.62) 0%, rgba(27,42,58,0) 24%, rgba(27,42,58,0) 66%, rgba(27,42,58,.78) 100%); }
.hero-cine-inner { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(3rem, 7vh, 6rem) 0 0; }
.hero-cine-text { max-width: 720px; display: flex; flex-direction: column; gap: 1.2rem; }
.hero-cine .kicker { color: #F4B7A6; }
.hero-cine .kicker::before { background: var(--terra); }
.hero-cine h1 { color: #fff; font-size: clamp(3rem, 7vw, 6.4rem); margin: 0; }
.hero-cine h1 .accent { color: #F4B7A6; }
.hero-cine .lead { color: rgba(255,255,255,.88); max-width: 34ch; margin: 0; }
.hero-cine .hero-actions { margin-top: .6rem; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-cine-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); padding: 1.3rem 0 1.6rem; margin-top: 3rem; }
.hero-cine-stats strong { display: block; font-family: var(--display); font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1; margin-bottom: .3rem; }
.hero-cine-stats span { font-size: .95rem; color: rgba(255,255,255,.78); }
@media (max-width: 900px) { .hero-cine-stats { grid-template-columns: 1fr 1fr; } .hero-cine { min-height: 0; } .hero-cine-text { max-width: none; } .hero-cine-media, .hero-cine video.vid { object-position: 62% 50%; } .hero-cine-shade { background: linear-gradient(180deg, rgba(27,42,58,.55) 0%, rgba(27,42,58,.8) 55%, rgba(27,42,58,.95) 100%); } }
@media (max-width: 600px) { .hero-cine-stats { grid-template-columns: 1fr 1fr; gap: 1rem; } .hero-cine .hero-actions .btn { width: 100%; } }
/* Kopf transparent über dem Hero, fest und weiß nach dem Scrollen */
.site-header.on-hero { position: sticky; background: transparent; border-bottom-color: rgba(255,255,255,.14); transition: background .3s var(--ease), border-color .3s; }
.site-header.on-hero .brand, .site-header.on-hero .nav a, .site-header.on-hero .brand small { color: #fff; }
.site-header.on-hero .nav a::after { background: #F4B7A6; }
.site-header.on-hero .age-btn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.site-header.on-hero .nav-toggle { background: transparent; border-color: rgba(255,255,255,.35); } .site-header.on-hero .nav-toggle span { background: #fff; }
.site-header.on-hero.scrolled { background: var(--paper); border-bottom-color: var(--line); }
.site-header.on-hero.scrolled .brand, .site-header.on-hero.scrolled .nav a { color: var(--ink-soft); } .site-header.on-hero.scrolled .brand { color: var(--ink); } .site-header.on-hero.scrolled .brand small { color: var(--muted); }
.site-header.on-hero.scrolled .age-btn { background: var(--cream); border-color: var(--line); color: var(--ink); }
.site-header.on-hero.scrolled .nav-toggle { background: var(--paper); border-color: var(--line); } .site-header.on-hero.scrolled .nav-toggle span { background: var(--ink); }
@media (max-width: 1040px) { .site-header.on-hero .nav { background: var(--paper); } .site-header.on-hero .nav a { color: var(--ink-soft); } }
.hero-cine .reveal { transition-delay: 0s; } .hero-cine .reveal:nth-child(2) { transition-delay: .1s; } .hero-cine .reveal:nth-child(3) { transition-delay: .2s; } .hero-cine .reveal:nth-child(4) { transition-delay: .3s; }

/* v3.4 — Headlines der Unterseiten kleiner und ruhiger */
.page-hero h1 { font-size: clamp(2.3rem, 4.2vw, 3.8rem); line-height: 1.06; max-width: 16ch; }
.page-hero .lead { max-width: 56ch; }
.page-hero-grid { align-items: center; }
.section-head h2, .block h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.hero-cine h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); max-width: 12ch; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* v3.5 — Preise */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2rem; align-items: stretch; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; } }
.plan { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.plan.best { border: 2px solid var(--terra); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -14px; left: 1.6rem; background: var(--terra); color: #fff; font-size: .85rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; letter-spacing: .04em; }
.plan h3 { font-size: 1.9rem; margin-bottom: .4rem; }
.plan .price { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--ink); display: flex; flex-direction: column; gap: .3rem; margin: .4rem 0 1rem; }
.plan .price small { font-family: var(--body); font-size: 1rem; color: var(--muted); }
.plan-claim { color: var(--ink-soft); min-height: 3.2em; }
.plan .list-check { flex: 1; } .plan .list-check li { font-size: 1.02rem; }
.plan .btn { align-self: stretch; margin-top: .6rem; }

/* v3.6 — kompakte Themenkarten (Themen 9–16) */
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 860px) { .mini-grid { grid-template-columns: 1fr; } }
.mini-card { display: grid; grid-template-columns: 150px 1fr; gap: 1.2rem; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.mini-card .mini-img, .mini-card video.mini-img { width: 150px; height: 100%; min-height: 130px; object-fit: cover; aspect-ratio: auto; }
.mini-card h3 { font-size: 1.35rem; margin: 0 0 .3rem; display: flex; align-items: center; gap: .5rem; }
.mini-card h3 .ico { width: 22px; height: 22px; color: var(--terra); }
.mini-card p { margin: 0 1.2rem .9rem 0; font-size: .98rem; color: var(--ink-soft); }
.mini-card > div { padding: 1rem 0; }
@media (max-width: 600px) { .mini-card { grid-template-columns: 110px 1fr; } .mini-card .mini-img { width: 110px; } }

/* ==========================================================================
   v4 — Design-Bänder: Vollbild mit Bild/Clip auf jeder Seite
   ========================================================================== */
.band { position: relative; color: #fff; background: #1B2A3A; overflow: hidden; display: flex; align-items: flex-end; }
.band-media, .band video.band-media, .band img.band-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% 45%; }
.band-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(27,42,58,.92) 0%, rgba(27,42,58,.72) 40%, rgba(27,42,58,.25) 68%, rgba(27,42,58,.08) 100%), linear-gradient(180deg, rgba(27,42,58,.55) 0%, rgba(27,42,58,0) 30%, rgba(27,42,58,0) 60%, rgba(27,42,58,.75) 100%); }
.band-inner { position: relative; padding: clamp(2.5rem, 6vh, 5rem) 0 clamp(2.5rem, 6vh, 4rem); max-width: var(--wrap); }
.band .kicker { color: #F4B7A6; } .band .kicker::before { background: var(--terra); }
.band h1 { color: #fff; font-size: clamp(2.4rem, 4.6vw, 4.2rem); max-width: 16ch; line-height: 1.05; margin: .3em 0 .4em; }
.band h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); margin: .3em 0 .5em; max-width: 18ch; }
.band .lead { color: rgba(255,255,255,.88); max-width: 58ch; }
.band .crumbs { color: rgba(255,255,255,.6); margin-bottom: 1.2rem; } .band .crumbs a { color: rgba(255,255,255,.6); }
.band-hero { min-height: clamp(520px, 66vh, 760px); margin-top: -76px; padding-top: 76px; }
.band-section { min-height: clamp(460px, 60vh, 680px); }
.band-tall { min-height: clamp(560px, 78vh, 860px); }
.band-cta { min-height: clamp(420px, 52vh, 600px); }
.band .list-check li { color: rgba(255,255,255,.9); } .band .list-check li::before { background: rgba(255,255,255,.18); } .band .list-check li::after { border-color: #F4B7A6; }
.band .list-check strong { color: #fff; }
.band .tabs-label { color: rgba(255,255,255,.75); }
.band .age-tabs .chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: #fff; }
.band .age-tabs .chip:hover { background: rgba(255,255,255,.2); }
.band .age-tabs .chip[aria-pressed="true"] { background: var(--terra); border-color: var(--terra); color: #fff; }
.band-callout { background: rgba(255,255,255,.12); border-left-color: #F4B7A6; color: rgba(255,255,255,.9); max-width: 60ch; backdrop-filter: blur(6px); }
.band-callout strong { color: #fff; }
.band a:not(.btn):not(.chip) { color: #F4B7A6; }
.band .voices { margin-top: 1.5rem; }
.band .voice { background: rgba(255,255,255,.94); color: var(--ink); backdrop-filter: blur(8px); }
.band .voice blockquote::before, .band .voice blockquote::after { color: var(--terra); }
.band .btn { margin-top: 1rem; }
/* Kopf transparent über jedem Band-Hero (JS setzt on-hero, wenn Band-Hero da ist) */
.site-header.on-hero { position: sticky; }
@media (max-width: 900px) { .band-shade { background: linear-gradient(180deg, rgba(27,42,58,.5) 0%, rgba(27,42,58,.82) 50%, rgba(27,42,58,.95) 100%); } .band-hero { min-height: 0; } .band h1 { max-width: none; } }

/* Menschen / Personas */
.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .pgrid { grid-template-columns: 1fr; } }
.pcard { display: grid; grid-template-columns: 220px 1fr; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: inherit; }
.pcard img, .pcard video { width: 100%; height: 100%; min-height: 240px; object-fit: cover; aspect-ratio: auto; }
.pcard-body { padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.pcard-meta { font-size: .95rem; color: var(--muted); font-weight: 700; }
.pcard blockquote { margin: 0; font-family: var(--display); font-size: 1.45rem; line-height: 1.25; font-style: italic; }
.pcard-topics { font-size: .95rem; color: var(--terra); font-weight: 700; margin: 0; }
.pcard .card-link { margin-top: auto; }
@media (max-width: 600px) { .pcard { grid-template-columns: 1fr; } .pcard img, .pcard video { min-height: 0; aspect-ratio: 3 / 2; } }
.plan-table td:first-child { white-space: nowrap; }
.plan-table td:nth-child(2) { white-space: nowrap; color: var(--muted); }
.block .chips a.chip { text-decoration: none; }

/* v4.1 — Layoutspalte darf nie breiter als der Viewport werden; Persona-Zitat kleiner */
.layout > div { min-width: 0; }
.table-wrap { max-width: 100%; }
.persona-hero h1 { font-size: clamp(1.9rem, 3.4vw, 3.1rem); max-width: 22ch; }

.band h1 .accent, .band h1 em.accent, .band h2 .accent { color: #F4B7A6; }

.persona-hero .band-media, .persona-hero video.band-media { object-position: 72% 22%; }
.persona-hero { min-height: clamp(560px, 70vh, 800px); }
