/* Schriften, lokal eingebunden (SIL Open Font License) */
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-var.woff2") format("woff2"); font-weight: 400 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-italic-var.woff2") format("woff2"); font-weight: 400 900; font-style: italic; font-display: swap; }
@font-face { font-family: "Fira Sans"; src: url("../fonts/fira-sans-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Fira Sans"; src: url("../fonts/fira-sans-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Fira Sans"; src: url("../fonts/fira-sans-600.woff2") format("woff2"); font-weight: 600 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Pinyon Script"; src: url("../fonts/pinyon-script-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

/* Finanzgefühle · Brand tokens */
:root {
  --navy: #0F3473;
  --mint: #CDE7D4;
  --blush: #F6E4EB;
  --rose: #CE8491;
  --paper: #FCF7F9;
  --white: #FFFFFF;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
  --script: "Pinyon Script", cursive;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(80px, 11vw, 150px);
  --radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--navy); color: var(--blush); padding: 10px 16px; border-radius: 999px; z-index: 100; }
.skip:focus { left: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 999px;
  background: var(--navy); color: var(--blush);
  font-family: var(--sans); font-weight: 500; font-size: 1rem; line-height: 1.2;
  text-decoration: none; border: 1.5px solid var(--navy); cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn:hover { background: #0A2555; }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--blush); }
.btn--small { padding: 11px 20px; font-size: .95rem; }

/* Navigation */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246, 228, 235, .88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(15, 52, 115, .12); }
.nav__inner { max-width: 1320px; margin: 0 auto; padding: 12px var(--gutter); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; flex-shrink: 0; }
.wordmark { font-family: var(--serif); text-transform: uppercase; letter-spacing: .32em; font-size: 15px; font-weight: 500; }
.nav__links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; font-size: .92rem; white-space: nowrap; }
.nav__links a { text-decoration: none; padding: 6px 0; border-bottom: 1.5px solid transparent; }
.nav__links a:hover { border-bottom-color: var(--rose); }

/* Hero */
.hero {
  background: var(--blush);
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(32px, 5vw, 72px);
  max-width: none;
  padding: clamp(56px, 8vw, 110px) max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.hero__claim { font-weight: 500; font-size: 1.02rem; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.hero__claim::before { content: ""; width: 34px; height: 2px; background: var(--rose); }
.hero h1 { font-size: clamp(2.6rem, 4.5vw, 4.2rem); line-height: 1.02; margin-bottom: 26px; max-width: 15ch; }
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); max-width: 34em; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__quote { margin: 8px 0 0; display: flex; gap: 16px; align-items: flex-start; max-width: 34em; padding-top: 24px; border-top: 1px solid rgba(15, 52, 115, .18); }
.hero__quote img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--mint); }
.hero__quote blockquote { margin: 0; }
.hero__quote p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.45; }
.hero__quote figcaption { margin-top: 8px; font-size: .88rem; font-weight: 500; }

.hero__portrait { margin: 0; justify-self: center; width: min(520px, 100%); }
.hero__portrait svg { width: 100%; height: auto; overflow: visible; }
.seal-bg { fill: var(--mint); }
.seal-ring { fill: none; stroke: var(--navy); stroke-width: 2.5; }
.seal-text { fill: var(--navy); }
.seal-text--top { font-family: var(--serif); font-size: 21px; letter-spacing: 7px; font-weight: 500; }
.seal-text--bottom { font-family: var(--sans); font-size: 14px; letter-spacing: 5px; font-weight: 500; }
.seal-badge circle { fill: var(--blush); stroke: var(--navy); stroke-width: 2; }
.seal-badge text { font-family: var(--serif); font-size: 34px; font-weight: 600; fill: var(--navy); }
.seal-badge path { fill: var(--rose); }

@media (prefers-reduced-motion: no-preference) {
  .seal-ring { stroke-dasharray: 1310; stroke-dashoffset: 1310; animation: draw 1.8s .3s cubic-bezier(.6, 0, .2, 1) forwards; }
  .hero__portrait image { opacity: 0; animation: fade 1.2s .1s ease forwards; }
  .seal-badge { opacity: 0; animation: fade .6s 1.7s ease forwards; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }

/* Financial Health */
.fh { padding: var(--section) 0; background: var(--paper); }
.fh__grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 32px; row-gap: 56px; align-items: start; }
.fh__intro { grid-column: 1 / 8; }
.fh__intro h2 { margin-bottom: 28px; max-width: 16ch; }
.fh__intro p + p { margin-top: 16px; }
.fh__intro p { max-width: 36em; }
.fh__photo { grid-column: 9 / 13; grid-row: 1 / 6; margin: 0; position: sticky; top: 110px; }
.fh__photo img { border-radius: 260px 260px var(--radius-lg) var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

.fh__kicker { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.4rem); margin-bottom: 18px; max-width: 30ch; }
.pillars { grid-column: 1 / 8; list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pillars li { display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 12px; border-radius: 999px; background: var(--white); font-size: .98rem; }
.pillars li::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--mint); border: 1.5px solid var(--navy); }
.pillars__missing { background: var(--navy) !important; color: var(--blush); font-weight: 500; }
.pillars__missing::before { background: var(--rose) !important; border-color: var(--blush) !important; }

.define { grid-column: 1 / 8; background: var(--blush); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px); }
.define h3 { margin-bottom: 12px; }
.define p { max-width: 38em; }

.why { grid-column: 1 / 8; display: grid; gap: 0; }
.why__title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.25; margin-bottom: 26px; max-width: 26ch; }
.why__item { padding: 22px 0; border-top: 1px solid rgba(15, 52, 115, .18); display: grid; grid-template-columns: minmax(0, 15rem) 1fr; gap: 24px; }
.why__item:last-child { border-bottom: 1px solid rgba(15, 52, 115, .18); }
.why__claim { font-family: var(--serif); font-size: 1.3rem; line-height: 1.25; }
.why sup a { text-decoration: none; font-weight: 600; padding-left: 2px; }

.sources { grid-column: 1 / 8; font-size: .9rem; }
.sources summary { cursor: pointer; font-weight: 500; width: max-content; }
.sources ol { margin: 14px 0 10px; padding-left: 1.2em; display: grid; gap: 8px; }
.sources a { text-decoration-color: var(--rose); text-underline-offset: 3px; }

.bridge { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.35; max-width: 30ch; }

/* Kennst du das */
.tension { background: var(--navy); color: var(--blush); padding: var(--section) 0; }
.tension h2 { color: var(--blush); margin-bottom: clamp(40px, 6vw, 72px); }
.thoughts { list-style: none; margin: 0 0 clamp(64px, 9vw, 110px); padding: 0; display: grid; gap: clamp(22px, 3.2vw, 38px); }
.thoughts li { font-family: var(--serif); font-style: italic; font-size: clamp(1.45rem, 3.2vw, 2.5rem); line-height: 1.25; max-width: 24ch; }
.thoughts li:nth-child(even) { margin-left: auto; text-align: right; }
.thoughts li:last-child { color: var(--mint); }

.reframe { max-width: 660px; margin: 0 auto clamp(64px, 9vw, 110px); text-align: center; }
.reframe h3 { font-size: clamp(2rem, 4vw, 3rem); color: var(--mint); margin-bottom: 20px; }
.reframe p { font-size: 1.12rem; }

.check { background: var(--blush); color: var(--navy); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px); max-width: 860px; margin: 0 auto; }
.check__head { margin-bottom: 26px; }
.check__head h3 { margin-bottom: 10px; }
.q { border: 0; margin: 0; padding: 18px 0; border-top: 1px solid rgba(15, 52, 115, .18); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 8px; }
.q legend { float: left; width: 100%; padding: 0 0 10px; font-size: 1.05rem; font-weight: 500; }
.q label { position: relative; cursor: pointer; }
.q input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.q label { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--navy); font-size: .95rem; background: var(--white); transition: background .15s ease, color .15s ease; }
.q label:has(input:checked) { background: var(--navy); color: var(--blush); }
.q label:has(input:focus-visible) { outline: 3px solid var(--rose); outline-offset: 3px; }
.check__hint { font-size: .9rem; margin-top: 18px; }
.check__result { margin-top: 26px; padding-top: 26px; border-top: 2px solid var(--navy); }
.check__score { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 10px; }
.check__lever { margin-bottom: 24px; max-width: 38em; }

/* Finanzpuls-Check */
.fp { scroll-margin-top: 90px; }
.fp__eyebrow { font-size: .9rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #8E4E5A; margin-bottom: 10px !important; }
.fp__intro h3 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.fp__intro > p { max-width: 38em; }
.fp__facts { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.fp__facts li { background: var(--white); border-radius: 16px; padding: 12px 18px; font-size: .95rem; }
.fp__facts strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-right: 6px; }
.fp__legal { font-size: .82rem; margin-top: 16px !important; }
.fp__progress { height: 6px; border-radius: 99px; background: rgba(15, 52, 115, .12); overflow: hidden; }
.fp__progress span { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--navy), var(--rose)); transition: width .4s ease; }
.fp__count { font-size: .9rem; font-weight: 600; margin: 10px 0 18px !important; }
.fp__dim { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.fp__letter { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--blush); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2rem; flex-shrink: 0; }
.fp__dimname { font-family: var(--serif); font-size: 1.6rem; line-height: 1.1; }
.fp__dimsub { font-size: .92rem; }
.fp__q { border: 0; margin: 0; padding: 18px 0; border-top: 1px solid rgba(15, 52, 115, .15); }
.fp__q legend { float: left; width: 100%; padding: 0 0 12px; font-size: 1.05rem; font-weight: 500; line-height: 1.45; }
.fp__qn { font-family: var(--serif); color: #8E4E5A; margin-right: 6px; }
.fp__scale { clear: both; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; max-width: 420px; }
.fp__scale label { position: relative; cursor: pointer; }
.fp__scale input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.fp__scale span { display: flex; align-items: center; justify-content: center; height: 46px; border-radius: 14px; border: 1.5px solid var(--navy); background: var(--white); font-weight: 600; transition: background .15s ease, color .15s ease; }
.fp__scale label:has(input:checked) span { background: var(--navy); color: var(--blush); }
.fp__scale label:has(input:focus-visible) span { outline: 3px solid var(--rose); outline-offset: 2px; }
.fp__ends { display: flex; justify-content: space-between; max-width: 420px; font-size: .78rem; margin-top: 6px; }
.fp__error { font-size: .9rem; color: #8E2B3A; min-height: 1.2em; margin-top: 8px !important; }
.fp__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.fp__top { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; margin: 8px 0 26px; }
.fp__gauge { position: relative; width: 180px; height: 180px; }
.fp__gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fp__track { fill: none; stroke: rgba(15, 52, 115, .12); stroke-width: 10; }
.fp__arc { fill: none; stroke: var(--navy); stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.2s cubic-bezier(.2, .7, .2, 1); }
.fp__score { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fp__score strong { font-family: var(--serif); font-size: 3.2rem; font-weight: 500; line-height: 1; }
.fp__score span { font-size: .85rem; }
.fp__band { font-size: 1.05rem; margin-bottom: 10px !important; }
.fp__band strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.fp__bars { display: grid; gap: 12px; margin-bottom: 22px; }
.fp__barrow { display: grid; grid-template-columns: 130px 1fr 40px; gap: 14px; align-items: center; font-size: .95rem; }
.fp__barrow b { text-align: right; font-weight: 600; }
.fp__barwrap { height: 12px; border-radius: 99px; background: rgba(15, 52, 115, .1); overflow: hidden; }
.fp__barwrap i { display: block; height: 100%; width: 0; border-radius: 99px; background: var(--navy); transition: width 1s cubic-bezier(.2, .7, .2, 1); }
.fp__barrow.is-lever i { background: var(--rose); }
.fp__barrow.is-lever span { font-weight: 600; }
.fp__method { font-size: .95rem; padding: 14px 18px; background: var(--white); border-radius: 16px; margin-bottom: 20px !important; }
@media (max-width: 600px) {
  .fp__top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .fp__barrow { grid-template-columns: 100px 1fr 34px; font-size: .88rem; }
}

/* HERZ */
.herz { background: var(--mint); padding: var(--section) 0; }
.herz__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.herz__head h2 { margin-bottom: 18px; }
.herz__head p { font-size: 1.12rem; }

.herz__letters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 28px; }
.herz__letters button {
  background: none; border: 0; cursor: pointer; padding: 6px 0 14px;
  font-family: var(--serif); font-size: clamp(4.5rem, 12vw, 9.5rem); line-height: .95; font-weight: 500;
  color: var(--rose); display: flex; flex-direction: column; align-items: flex-start;
  border-bottom: 3px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.herz__letters button span { font-family: var(--sans); font-size: 1rem; font-weight: 500; line-height: 1.3; margin-top: 8px; color: var(--navy); }
.herz__letters button[aria-selected="true"] { color: var(--navy); border-bottom-color: var(--navy); }
.herz__letters button:hover { color: var(--navy); }

.herz__panels article { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4.5vw, 52px); max-width: 820px; }
.herz__panels h3 { margin: 0 0 16px; }
.herz__panels p + p { margin-top: 14px; }
.panel__focus { padding-top: 16px; border-top: 1px solid rgba(15, 52, 115, .15); }
@media (prefers-reduced-motion: no-preference) {
  .herz__panels article:not([hidden]) { animation: fade .35s ease; }
}

.herz__how { margin-top: clamp(56px, 8vw, 96px); }
.herz__how h3 { margin-bottom: 26px; }
.herz__how dl { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.herz__how dl div { border-top: 2px solid var(--navy); padding-top: 16px; }
.herz__how dt { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 8px; }
.herz__how dd { margin: 0; }

/* Geschichte */
.story { padding: var(--section) 0; background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.story__photo { margin: 0; }
.story__photo img { border-radius: 300px 300px var(--radius-lg) var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.story__text h2 { margin-bottom: 28px; }
.story__text p { max-width: 36em; }
.story__text p + p { margin-top: 16px; }
.signature { font-family: var(--script); font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1.1; margin-top: 22px !important; }
.creds { list-style: none; padding: 24px 0 0; margin: 26px 0 0; border-top: 1px solid rgba(15, 52, 115, .18); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; font-size: .96rem; }
.creds li { display: flex; gap: 10px; align-items: baseline; }
.creds li::before { content: ""; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--rose); transform: translateY(-2px); }

/* Kollaborationen */
.collab { background: var(--mint); color: var(--navy); padding: var(--section) 0; }
.collab__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.collab h2 { margin-bottom: 24px; max-width: 18ch; }
.collab__intro p { max-width: 34em; }
.collab__intro p + p { margin-top: 14px; }
.collab__intro .btn { margin-top: 30px; }
.btn--light { background: var(--blush); color: var(--navy); border-color: var(--blush); }
.btn--light:hover { background: var(--white); border-color: var(--white); }
.collab__list { list-style: none; margin: 0; padding: 0; display: grid; }
.collab__list li { padding: 18px 0 18px 30px; border-top: 1px solid rgba(15, 52, 115, .25); position: relative; }
.collab__list li:last-child { border-bottom: 1px solid rgba(15, 52, 115, .25); }
.collab__list li::before { content: ""; position: absolute; left: 0; top: 27px; width: 12px; height: 12px; border-radius: 50%; background: var(--rose); border: 1.5px solid var(--navy); }
.collab__list strong { font-weight: 600; }

.story__insight { margin: 22px 0; padding: 18px 22px; border-left: 4px solid var(--rose); background: var(--blush); border-radius: 0 18px 18px 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.45; max-width: 32em; }

/* Warum jetzt */
.now { background: var(--blush); color: var(--navy); padding: var(--section) 0; }
.now__head { max-width: 700px; margin-bottom: clamp(40px, 6vw, 72px); }
.now h2 { margin-bottom: 20px; }
.now__head p { font-size: 1.12rem; }
.now__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.now__list li { border-top: 2px solid var(--navy); padding-top: 20px; }
.now__num { font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 4.6rem); line-height: 1; color: var(--navy); margin-bottom: 14px !important; }
.now__num::after { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--rose); margin-left: 8px; vertical-align: top; }
.now__list h3 { margin-bottom: 12px; font-size: clamp(1.3rem, 2vw, 1.6rem); }
.now sup a { text-decoration: none; font-weight: 600; }
.now__close { margin-top: clamp(48px, 7vw, 80px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 32px; background: var(--white); border-radius: var(--radius-lg); }
.now__close p { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.25; max-width: 24ch; }
.now__note { margin-top: 20px; font-size: .82rem; }

/* Neuroplastizität */
.neuro { margin-top: clamp(48px, 7vw, 80px); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.neuro__text, .neuro__how { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 40px); }
.neuro__kicker { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #8E4E5A; margin-bottom: 10px !important; }
.neuro h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 16px; }
.neuro__text > p { margin-bottom: 22px !important; }
.neuro__label { font-size: .88rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px !important; }
.neuro__use { background: var(--mint); border-radius: 18px; padding: 18px 20px; }
.neuro__use ol { margin: 0; padding-left: 1.2em; display: grid; gap: 10px; }
.neuro__how ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.neuro__how li { padding-left: 16px; border-left: 3px solid var(--mint); line-height: 1.5; }
.neuro__net { width: 100%; max-width: 340px; display: block; margin: 0 0 16px; }
.neuro__lines path { stroke: rgba(15, 52, 115, .18); stroke-width: 2; fill: none; }
.neuro__path { stroke: var(--rose); stroke-width: 5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 360; stroke-dashoffset: 0; }
.neuro__nodes circle { fill: var(--navy); }
.motion .neuro__how .neuro__path { stroke-dashoffset: 360; transition: stroke-dashoffset 1.8s .4s cubic-bezier(.4, 0, .2, 1); }
.motion .neuro__how.is-visible .neuro__path { stroke-dashoffset: 0; }
.neuro sup a { text-decoration: none; font-weight: 600; }
.neuro__sources { grid-column: 1 / -1; }
.fp__herzlink { display: inline-block; margin-top: 18px; font-weight: 500; text-decoration-color: var(--rose); text-underline-offset: 4px; }
@media (max-width: 960px) { .neuro { grid-template-columns: 1fr; } }

/* Programm */
.prog { background: var(--navy); color: var(--blush); padding: var(--section) 0; }
.prog__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 70px); }
.prog__kicker { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--mint); margin-bottom: 14px !important; }
.prog h2 { color: var(--blush); margin-bottom: 20px; }
.prog__head > p:last-child { font-size: 1.12rem; }
.phases { list-style: none; margin: 0 0 clamp(48px, 7vw, 80px); padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.phases::before { content: ""; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px; background: linear-gradient(90deg, var(--mint), var(--rose)); }
.phase { position: relative; }
.phase__num { width: 56px; height: 56px; border-radius: 50%; background: var(--blush); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.4rem; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--navy); margin-bottom: 20px; }
.phase__tag { font-size: .85rem; font-weight: 600; letter-spacing: .08em; color: var(--mint); margin-bottom: 6px !important; }
.phase h3 { color: var(--blush); margin-bottom: 10px; }
.prog__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.prog__label { font-size: .9rem; font-weight: 600; letter-spacing: .06em; color: var(--mint); margin-bottom: 14px !important; }
.prog__week, .prog__incl { background: rgba(246, 228, 235, .07); border: 1px solid rgba(246, 228, 235, .2); border-radius: var(--radius-lg); padding: 28px; }
.prog__week ul, .prog__incl ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.prog__week li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; padding: 10px 12px; border-radius: 16px; background: rgba(246, 228, 235, .06); }
.prog__week li span { width: 46px; height: 46px; border-radius: 50%; background: var(--mint); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .9rem; }
.prog__week li.is-rest span { background: var(--rose); }
.prog__note { font-size: .9rem; margin-top: 14px !important; opacity: .95; }
.prog__incl li { position: relative; padding-left: 28px; line-height: 1.5; }
.prog__incl li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--rose); }
.prog__incl strong { color: var(--mint); font-weight: 500; }
.wait { background: var(--blush); color: var(--navy); border-radius: var(--radius-lg); padding: clamp(28px, 4.5vw, 52px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; scroll-margin-top: 100px; }
.wait .prog__label { color: #8E4E5A; }
.wait h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.wait__form { display: grid; gap: 8px; }
.wait__form label { font-size: .92rem; font-weight: 500; }
.wait__form input[type="text"], .wait__form input[type="email"] { padding: 14px 18px; border-radius: 14px; border: 1.5px solid var(--navy); background: var(--white); font: inherit; color: var(--navy); margin-bottom: 8px; }
.wait__consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: .86rem !important; line-height: 1.45; margin: 6px 0 12px; }
.wait__consent input { margin-top: 3px; accent-color: var(--navy); width: 18px; height: 18px; flex-shrink: 0; }
.wait__form .btn { justify-self: start; }
.wait__error { font-size: .9rem; color: #8E2B3A; min-height: 1.2em; }
.wait__thanks { grid-column: 1 / -1; }
.wait__video { position: relative; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; background: var(--navy); margin: 18px 0 16px; }
.wait__video video, .wait__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wait__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: var(--blush); text-align: center; padding: 20px; background: radial-gradient(circle at 50% 40%, rgba(205, 231, 212, .18), transparent 60%); }
.wait__play { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--blush); position: relative; }
.wait__play::after { content: ""; position: absolute; left: 34px; top: 26px; border-left: 22px solid var(--blush); border-top: 16px solid transparent; border-bottom: 16px solid transparent; }
.wait__confirm { font-size: .92rem; }
.prog__alt { margin-top: 28px !important; }
.prog__alt a { color: var(--mint); text-underline-offset: 4px; }
.contact__wait { margin-top: 40px !important; padding-top: 26px; border-top: 1px solid rgba(15, 52, 115, .2); max-width: 34em; }
@media (max-width: 960px) {
  .phases, .prog__grid, .wait { grid-template-columns: 1fr; }
  .phases::before { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto; background: linear-gradient(var(--mint), var(--rose)); }
  .phase { display: grid; grid-template-columns: 56px 1fr; column-gap: 20px; }
  .phase__num { grid-row: 1 / 4; margin-bottom: 0; }
}

.prog__cta { margin-top: 12px; }

/* Bewerbung */
.apply { background: var(--paper); padding: var(--section) 0; }
.apply__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.apply__kicker { font-size: .95rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #8E4E5A; margin-bottom: 14px !important; }
.apply h2 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 22px; }
.apply__accent { background: linear-gradient(90deg, var(--navy), #8E4E5A 55%, var(--rose)); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.apply__lead { font-size: 1.15rem; line-height: 1.6; max-width: 34em; margin-bottom: 26px !important; }
.apply__form { display: grid; gap: 14px; max-width: 560px; }
.apply__form input[type="text"], .apply__form input[type="email"] { padding: 20px 26px; border-radius: 22px; border: 1.5px solid rgba(15, 52, 115, .18); background: var(--white); font: inherit; font-size: 1.05rem; color: var(--navy); box-shadow: 0 4px 14px rgba(15, 52, 115, .05); }
.apply__form input::placeholder { color: #5E6E8E; }
.apply__form input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(206, 132, 145, .35); }
.apply__opt { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; line-height: 1.45; }
.apply__opt input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; }
.apply__btn { width: 100%; gap: 12px; padding: 21px 30px; font-size: 1.08rem; box-shadow: 0 14px 30px rgba(15, 52, 115, .22); }
.apply__micro { font-size: .88rem; line-height: 1.5; }
.apply__micro a { text-underline-offset: 3px; }
.apply__error { font-size: .9rem; color: #8E2B3A; min-height: 1.2em; }
.apply__quiz fieldset { border: 0; margin: 0 0 8px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.apply__quiz legend { font-family: var(--serif); font-size: 1.2rem; padding: 0 0 10px; width: 100%; }
.apply__quiz label { position: relative; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--navy); background: var(--white); cursor: pointer; font-size: .95rem; }
.apply__quiz input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.apply__quiz label:has(input:checked) { background: var(--navy); color: var(--blush); }
.apply__quiz label:has(input:focus-visible) { outline: 3px solid var(--rose); outline-offset: 3px; }
.apply__thanks .wait__video { max-width: 640px; }
.apply__thanks .apply__btn { max-width: 560px; margin-bottom: 14px; }
.apply__photo { margin: 0; text-align: center; }
.apply__photo img { width: 100%; max-width: 420px; aspect-ratio: 1; object-fit: cover; object-position: 50% 40%; border-radius: 50%; border: 12px solid var(--mint); outline: 2px solid var(--navy); outline-offset: -20px; margin: 0 auto; }
.apply__photo figcaption { margin-top: 18px; display: grid; gap: 4px; }
.apply__photo strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.apply__photo span { font-size: .92rem; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 960px) {
  .apply__grid { grid-template-columns: 1fr; }
  .apply__photo { order: -1; }
  .apply__photo img { max-width: 260px; }
}

/* Ablauf */
.flow { background: var(--white); padding: var(--section) 0; }
.flow__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.flow__intro { position: sticky; top: 110px; }
.flow__intro h2 { margin-bottom: 18px; }
.flow__intro > p { font-size: 1.1rem; margin-bottom: 26px; }
.promise { background: var(--blush); border-radius: var(--radius-lg); padding: 24px 26px; margin-bottom: 28px; }
.promise__title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 12px !important; }
.promise ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.promise li { position: relative; padding-left: 26px; font-size: .98rem; line-height: 1.5; }
.promise li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--rose); border: 1.5px solid var(--navy); }
.flow__micro { margin-top: 12px !important; font-size: .88rem; }
.steps { list-style: none; margin: 0; padding: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(var(--mint), var(--rose)); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 0 0 34px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step__num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--blush); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--white); }
.step h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); margin: 6px 0 4px; }
.step__meta { font-size: .88rem; font-weight: 600; color: #8E4E5A; margin-bottom: 8px !important; }

/* CTA-Details */
.check__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.bridge-wrap { grid-column: 1 / 13; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.herz__cta { margin-top: 40px; }
.btn--large { padding: 19px 34px; font-size: 1.05rem; }
.contact__checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 10px; max-width: 34em; }
.contact__checks li { position: relative; padding-left: 30px; }
.contact__checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: var(--blush); font-size: .75rem; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta { display: block; position: fixed; left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); z-index: 45; text-align: center; background: var(--navy); color: var(--blush); text-decoration: none; font-weight: 500; padding: 15px 20px; border-radius: 999px; box-shadow: 0 12px 30px rgba(15, 52, 115, .3); transform: translateY(140%); transition: transform .35s ease; }
  .sticky-cta.is-shown { transform: none; }
}

/* Kundenstimmen (Laufband) */
.voices { background: var(--navy); color: var(--blush); padding: 44px 0 50px; overflow: hidden; }
.voices__title { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.2rem; margin-bottom: 26px !important; color: var(--mint); }
.voices__viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.voices__track { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; width: max-content; animation: marquee 48s linear infinite; }
.voices__viewport:hover .voices__track, .voices__viewport:focus-within .voices__track { animation-play-state: paused; }
.voice { flex: 0 0 auto; width: min(440px, 78vw); background: rgba(246, 228, 235, .08); border: 1px solid rgba(246, 228, 235, .22); border-radius: 22px; padding: 22px 26px; }
.voice p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; }
.voice span { display: block; margin-top: 12px; font-size: .9rem; font-weight: 500; color: var(--mint); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .voices__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .voices__track { animation: none; padding: 0 var(--gutter); }
}

/* Podcast */
.pod { background: var(--paper); padding: var(--section) 0; }
.pod__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.pod__head h2 { margin-bottom: 18px; }
.pod__head p { font-size: 1.1rem; }
.pod__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ep { background: var(--white); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 8px; transition: transform .25s ease, box-shadow .25s ease; }
.ep:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15, 52, 115, .10); }
.ep img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--mint); outline: 1.5px solid var(--navy); outline-offset: 3px; margin-bottom: 10px; }
.ep__meta { font-size: .85rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ep__tag { background: var(--blush); border-radius: 999px; padding: 3px 10px; font-weight: 600; }
.ep h3 { font-size: 1.35rem; }
.ep__role { font-size: .9rem; line-height: 1.45; }
.ep__role a { text-decoration-color: var(--rose); text-underline-offset: 3px; }
.ep blockquote { margin: 8px 0 4px; font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.4; padding-left: 14px; border-left: 3px solid var(--rose); }
.ep__about { font-size: .94rem; }
.ep__link { margin-top: auto; padding-top: 12px; font-weight: 500; text-decoration: none; }
.ep__link:hover { text-decoration: underline; text-decoration-color: var(--rose); text-underline-offset: 4px; }
.pod__all { margin-top: 36px; }

/* Social-Leiste */
.socialbar-wrap { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 40; }
.socialbar { list-style: none; margin: 0; padding: 8px; display: flex; flex-direction: column; gap: 8px; background: rgba(252, 247, 249, .92); border-radius: 999px; box-shadow: 0 10px 30px rgba(15, 52, 115, .12); }
.socialbar a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); background: var(--blush); position: relative; transition: background .2s ease, color .2s ease, transform .2s ease; }
.socialbar a:hover { background: var(--navy); color: var(--blush); transform: scale(1.06); }
.socialbar svg { width: 20px; height: 20px; }
.socialbar span { position: absolute; right: 52px; white-space: nowrap; background: var(--navy); color: var(--blush); font-size: .8rem; padding: 4px 10px; border-radius: 999px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.socialbar a:hover span, .socialbar a:focus-visible span { opacity: 1; }
.social-inline { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.social-inline a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; border: 1.5px solid currentColor; text-decoration: none; font-family: var(--sans); font-size: .92rem; }
.social-inline svg { width: 18px; height: 18px; }
.nav__social { display: none; }
@media (max-width: 1100px) { .socialbar-wrap { display: none; } }
@media (max-width: 1180px) {
  .nav__social { display: block; margin-top: 22px; }
  .nav__links .nav__social a { border-bottom: 1.5px solid currentColor; padding: 9px 14px; }
}
@media (max-width: 960px) { .pod__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .pod__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 10px; }
  .ep { flex: 0 0 84%; scroll-snap-align: start; }
}

/* FAQ */
.faq { background: var(--paper); padding: var(--section) 0; border-top: 1px solid rgba(15, 52, 115, .1); }
.faq__grid { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq h2 { position: sticky; top: 110px; }
.faq__item { border-top: 1px solid rgba(15, 52, 115, .2); }
.faq__item:last-child { border-bottom: 1px solid rgba(15, 52, 115, .2); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.8rem; color: var(--rose); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); display: inline; }
.faq__item p { padding: 0 0 24px; max-width: 42em; }

/* Kontakt */
.contact { background: var(--blush); padding: var(--section) 0; }
.contact__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.contact__text h2 { margin-bottom: 22px; max-width: 14ch; }
.contact__text > p { max-width: 34em; margin-bottom: 30px; font-size: 1.1rem; }
.contact__photo { margin: 0; }
.contact__photo img { border-radius: 50%; aspect-ratio: 1 / 1; object-position: 50% 40%; object-fit: cover; width: 100%; border: 10px solid var(--mint); outline: 2px solid var(--navy); outline-offset: -18px; }
.newsletter { margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(15, 52, 115, .2); max-width: 520px; }
.newsletter label { display: block; margin-bottom: 14px; }
.newsletter__row { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input { flex: 1 1 220px; padding: 15px 20px; border-radius: 999px; border: 1.5px solid var(--navy); background: var(--white); font: inherit; font-size: 1rem; color: var(--navy); }
.newsletter__msg { margin-top: 10px; font-size: .92rem; min-height: 1.4em; }

/* Footer */
.footer { background: var(--navy); color: var(--blush); padding: 64px 0 48px; }
.footer__grid { display: grid; grid-template-columns: auto 1fr auto; gap: 28px 40px; align-items: center; }
.social-inline--footer { justify-content: flex-end; }
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__brand p { font-family: var(--serif); font-size: 1.15rem; max-width: 18ch; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 26px; justify-content: flex-end; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { text-decoration: underline; text-decoration-color: var(--rose); text-underline-offset: 4px; }
.footer__note a { color: var(--mint); text-underline-offset: 3px; }
.footer__note { grid-column: 1 / -1; font-size: .85rem; padding-top: 24px; border-top: 1px solid rgba(246, 228, 235, .25); max-width: 60em; }

.nav__member a { font-weight: 500; }
.footer__links .nav__member { list-style: none; }

/* Menü-Button und mobiles Menü */
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--navy); background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; position: relative; z-index: 58; }
.nav__toggle span { display: block; width: 18px; height: 1.5px; background: var(--navy); transition: transform .3s ease, opacity .2s ease; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__backdrop { display: none; }
.nav__cta { display: none; }

@media (max-width: 1180px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246, 228, 235, .97); }
  .nav__inner { gap: 14px; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(380px, 88vw);
    flex-direction: column; gap: 0; padding: 104px 36px 36px; background: var(--blush);
    box-shadow: -24px 0 60px rgba(15, 52, 115, .18); z-index: 57;
    font-family: var(--serif); font-size: 1.35rem; white-space: normal;
    transform: translateX(100%); visibility: hidden;
    transition: transform .4s cubic-bezier(.2, .7, .2, 1), visibility 0s .4s;
  }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(15, 52, 115, .15); }
  .nav__links a:hover { border-bottom-color: var(--rose); }
  .nav__cta { display: block; margin-top: 28px; }
  .nav__links .nav__cta a { display: inline-flex; border-bottom: 0; padding: 16px 26px; font-family: var(--sans); font-size: 1rem; color: var(--blush); }
  .nav--open .nav__links { transform: none; visibility: visible; transition: transform .4s cubic-bezier(.2, .7, .2, 1); }
  .nav__backdrop { display: block; position: fixed; inset: 0; background: rgba(15, 52, 115, .28); opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 56; }
  .nav--open .nav__backdrop { opacity: 1; pointer-events: auto; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero__portrait { order: -1; width: min(380px, 86%); }
  .fh__intro, .pillars, .define, .why, .bridge-wrap, .sources { grid-column: 1 / -1; }
  .fh__photo { grid-column: 1 / -1; grid-row: auto; max-width: 420px; position: static; }
  .story__grid, .contact__grid, .collab__grid, .faq__grid, .flow__grid { grid-template-columns: 1fr; }
  .flow__intro { position: static; }
  .faq h2 { position: static; }
  .story__photo { max-width: 440px; }
  .contact__photo { max-width: 340px; }
  .herz__how dl { grid-template-columns: 1fr; gap: 22px; }
  .now__list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .wordmark { font-size: 13px; letter-spacing: .24em; }
  .nav__bar-cta { display: none; }
  .why__item { grid-template-columns: 1fr; gap: 8px; }
  .thoughts li:nth-child(even) { text-align: left; margin-left: 12%; }
  .creds { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
  .herz__letters button span { font-size: .82rem; }
}

/* ---------- Bewegung ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--rose); transform-origin: 0 50%; transform: scaleX(0); z-index: 60; pointer-events: none; }
.nav { transition: background .3s ease, box-shadow .3s ease; }
.nav__inner { transition: padding .3s ease; }
.nav--scrolled { background: rgba(252, 247, 249, .94); box-shadow: 0 6px 24px rgba(15, 52, 115, .08); }
.nav--scrolled .nav__inner { padding-top: 7px; padding-bottom: 7px; }

.btn { transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(15, 52, 115, .18); }

.seal-ring-text { transform-box: view-box; transform-origin: 260px 260px; }
.seal-photo { transform-box: fill-box; transform-origin: center; }
.hero__portrait { will-change: transform; }

.fh__photo, .story__photo, .contact__photo { overflow: hidden; }
.fh__photo { border-radius: 260px 260px var(--radius-lg) var(--radius-lg); }
.story__photo { border-radius: 300px 300px var(--radius-lg) var(--radius-lg); }
.contact__photo { border-radius: 50%; }
[data-zoom] { will-change: transform; transform-origin: center; }
.contact__photo [data-zoom] { transform-origin: 50% 40%; }
.now__close p { transform-origin: left center; }

.motion .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--delay, 0ms); }
.motion .reveal--left { transform: translateX(-48px); }
.motion .reveal--right { transform: translateX(48px); }
.motion .reveal--pop { transform: scale(.7); transition-timing-function: cubic-bezier(.3, 1.6, .5, 1); }
.motion .reveal.is-visible { opacity: 1; transform: none; }
.motion .pillars__missing.is-visible { animation: pulse 2.4s 1s ease-in-out 2; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(206, 132, 145, .55); } 50% { box-shadow: 0 0 0 12px rgba(206, 132, 145, 0); } }

.herz__letters button { transition: color .2s ease, border-color .2s ease, transform .25s ease; }
.herz__letters button:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-progress { display: none; }
}

/* ---------- Rechtliche Seiten (Impressum, Datenschutz) ---------- */
.legal-page { background: var(--paper); }
.legal__bar { background: var(--blush); border-bottom: 1px solid rgba(15, 52, 115, .12); }
.legal__barin { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.legal__back { font-size: .95rem; text-underline-offset: 4px; }
.legal { max-width: 820px; padding-top: clamp(40px, 7vw, 80px); padding-bottom: clamp(60px, 9vw, 110px); }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 24px; }
.legal h2 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin: 36px 0 10px; }
.legal p, .legal li { line-height: 1.65; }
.legal p + p { margin-top: 10px; }
.legal ul { padding-left: 1.2em; margin: 10px 0; display: grid; gap: 6px; }
.legal a { text-decoration-color: var(--rose); text-underline-offset: 3px; }
.legal__lead { font-size: 1.1rem; }
.todo { background: #FFF1B8; padding: 1px 6px; border-radius: 6px; }
.legal__foot { background: var(--navy); color: var(--blush); padding: 26px 0; font-size: .9rem; }
.legal__footin { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.legal__foot a { color: var(--blush); text-underline-offset: 3px; }
