/* ============================================================================
   lehnisch.de — Produktions-Stylesheet (Phase 6, Statik-Welle)
   Basis: Designsystem Warm Navigator (colors_and_type.css, verbatim aus dem
   Vault, v1.7.2). Dieses Sheet trägt Layout und Seiten-Komponenten. Alle Werte
   pixelgenau aus der Claude-Design-Vorlage (Relaunch Referenz-Screens v2 /
   Ueber-mich Referenz-Screen v1) übernommen; die interne Prototyp-Struktur
   (Inline-Styles, React) wurde bewusst NICHT kopiert (CSP: kein unsafe-inline).
   ============================================================================ */

/* ---------- Basis ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 88px; } /* Ankersprünge (#erstgespraech u.a.) landen sonst hinter der 76px-Fix-Nav */
body {
  margin: 0;
  background: #F8F6F2;
  color: #18273A;
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { display: block; }
img { max-width: 100%; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

@keyframes sl-rise { from { transform: translateY(112%); } to { transform: translateY(0); } }
@keyframes sl-fade { from { opacity: 0; } to { opacity: 1; } }
/* Einstiegs-Animationen laufen nur mit JS (html.js) und ohne reduced motion */
html:not(.js) [data-anim] { animation: none !important; opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Frost-Kacheln: Tint + Blur mit @supports-Fallback (Merkliste Runde 5) */
[data-frost] {
  background-color: rgba(24,39,58,0.58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
@supports not ((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))) {
  [data-frost] { background-color: rgba(24,39,58,0.85); }
}

/* Teal-Underline-Hover (Signatur-Muster der Vorlage) */
.ul-hover {
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  padding-bottom: 3px;
  transition: background-size var(--motion-fast) var(--ease-out);
}
.ul-teal { background-image: linear-gradient(90deg, #0D9488, #0D9488); }
.ul-teal-dark { background-image: linear-gradient(90deg, #2FB6A8, #2FB6A8); }
a:hover > .ul-hover, a:focus-visible > .ul-hover { background-size: 100% 1.5px; }

/* Text-Link im Fließtext (D4-Fall, Warum-jetzt, Über-mich) */
.inline-link {
  color: #18273A;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(24,39,58,0.3);
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, #0D9488, #0D9488);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), background-size var(--motion-fast) var(--ease-out);
}
.inline-link:hover, .inline-link:focus-visible {
  color: #0D9488;
  border-color: rgba(13,148,136,0);
  background-size: 100% 1.5px;
}

a:focus-visible, button:focus-visible { outline: var(--focus-ring); outline-offset: var(--focus-ring-offset); }
.on-dark a:focus-visible, .on-dark button:focus-visible { outline: var(--focus-ring-dark); outline-offset: var(--focus-ring-offset); }

strong.emph { font-weight: 500; color: #18273A; }
strong.emph-dark { font-weight: 600; color: #F8F6F2; }

/* ============================================================================
   Adaptive Navigation (fixed, Zustand folgt dem Untergrund; JS setzt --nav-*)
   ============================================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  pointer-events: none;
  background-color: rgba(45,74,94,0);
  border-bottom: 1px solid rgba(24,39,58,0);
  transition: background-color var(--motion-base) var(--ease-in-out), border-bottom-color var(--motion-base) var(--ease-in-out);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-nav--light-start { background-color: rgba(248,246,242,0); transition-duration: var(--motion-fast); transition-timing-function: var(--ease-out); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  box-sizing: border-box;
}
.nav-logo { display: block; }
.nav-logo img { height: 22px; width: auto; display: block; }
.nav-logo .logo-dark { display: var(--nav-logo-dark, block); }
.nav-logo .logo-light { display: var(--nav-logo-light, none); }
.site-nav--light-start .nav-logo .logo-dark { display: var(--nav-logo-dark, none); }
.site-nav--light-start .nav-logo .logo-light { display: var(--nav-logo-light, block); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-fg, rgba(248,246,242,0.85));
  text-decoration: none;
  padding: 10px 12px;
  transition: color var(--motion-base) var(--ease-in-out);
}
.site-nav--light-start .nav-link { color: var(--nav-fg, rgba(24,39,58,0.78)); }
.nav-link:hover { color: var(--nav-fg-hover, #F8F6F2); }
.site-nav--light-start .nav-link:hover { color: var(--nav-fg-hover, #18273A); }
.nav-link--spaced { margin-right: 8px; }
.nav-link .ul-hover { background-image: linear-gradient(90deg, var(--nav-ul, #2FB6A8), var(--nav-ul, #2FB6A8)); }
.site-nav--light-start .nav-link .ul-hover { background-image: linear-gradient(90deg, var(--nav-ul, #0D9488), var(--nav-ul, #0D9488)); }
.nav-link[aria-current="page"] { color: var(--nav-fg-hover, #18273A); }
.nav-link[aria-current="page"] .ul-hover { background-size: 100% 1.5px; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--nav-btn-bg, #0D9488);
  color: var(--nav-btn-fg, #0A1424);
  font-weight: var(--nav-btn-w, 600);
  transition: background-color var(--motion-base) var(--ease-in-out), color var(--motion-base) var(--ease-in-out), transform var(--motion-fast) var(--ease-out);
}
.site-nav--light-start .nav-cta {
  background-color: var(--nav-btn-bg, #18273A);
  color: var(--nav-btn-fg, #F8F6F2);
  font-weight: var(--nav-btn-w, 500);
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--ease-out);
}
.nav-cta:hover { background-color: var(--nav-btn-bg-hover, #0EA89A); transform: translateY(-1px); }
.site-nav--light-start .nav-cta:hover { background-color: var(--nav-btn-bg-hover, #2E4360); }
.nav-link:focus-visible, .nav-cta:focus-visible { outline: 2px solid var(--nav-ring, #0D9488); outline-offset: 2px; }

/* Mobil: Links + Nav-CTA weichen, Hamburger übernimmt (Sticky-CTA trägt die Buchung) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--nav-icon, #F8F6F2);
}
.site-nav--light-start .nav-toggle { color: var(--nav-icon, #18273A); }
.nav-menu {
  display: none;
  position: absolute;
  top: calc(76px + env(safe-area-inset-top, 0px));
  left: 0; right: 0;
  background: #F8F6F2;
  border-bottom: 1px solid rgba(24,39,58,0.12);
  box-shadow: 0 8px 24px rgba(24,39,58,0.10);
  padding: 8px 20px 16px;
  pointer-events: auto;
}
.nav-menu.open { display: block; }
.nav-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: #18273A;
  text-decoration: none;
  border-bottom: 1px solid rgba(24,39,58,0.08);
}
.nav-menu a:last-child { border-bottom: none; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================================
   Scroll-Punkte (Kapitel-Indikator links, nur Desktop; JS färbt aktiv/dunkel)
   ============================================================================ */
.dots {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: none;
  flex-direction: column;
  gap: 18px;
  padding-left: clamp(10px, 1.4vw, 26px);
}
@media (min-width: 1024px) { html.js .dots { display: flex; } }
.dot { position: relative; display: flex; align-items: center; width: 28px; height: 14px; text-decoration: none; }
.dot-i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(248,246,242,0.3);
  transition: background-color var(--motion-base) var(--ease-in-out);
}
.dot-l {
  position: absolute; left: 26px;
  white-space: nowrap;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-fast) var(--ease-out);
}
.dot:hover .dot-l, .dot:focus-visible .dot-l { opacity: 1; }

/* ============================================================================
   SCREEN 01 · Hero (Onepager)
   ============================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #2D4A5E 0%, #2D4A5E 26%, #0D9488 102%);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
html.js .hero-canvas[data-anim] { animation: sl-fade 900ms var(--ease-out) 0.35s both; }
.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: calc(96px + env(safe-area-inset-top, 0px)) 40px 48px;
  box-sizing: border-box;
}
.hero-eyebrow {
  margin: 0;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,246,242,0.68);
}
html.js .hero-eyebrow[data-anim] { animation: sl-fade 500ms var(--ease-out) 0.15s both; }
.hero-h1 {
  margin: 30px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(42px, 5.2vw + 6px, 76px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F8F6F2;
}
.hero-h1 .clip { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero-h1 .clip--last { padding-bottom: 0.08em; margin-bottom: 0; }
.hero-h1 .rise { display: inline-block; }
html.js .hero-h1 .rise[data-anim] { animation: sl-rise 700ms var(--ease-out) 0.25s both; }
html.js .hero-h1 .rise--2[data-anim] { animation-delay: 0.38s; }
html.js .hero-h1 .gold-dot[data-anim] { animation: sl-fade 400ms var(--ease-in-out) 1.2s both; }
.hero-sub {
  margin: 28px 0 0;
  max-width: 34em;
  font-size: clamp(17px, 0.5vw + 12px, 21px);
  line-height: 1.6;
  color: rgba(248,246,242,0.84);
  text-wrap: pretty;
}
html.js .hero-sub[data-anim] { animation: sl-fade 500ms var(--ease-out) 0.7s both; }
.hero-actions {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 28px;
}
html.js .hero-actions[data-anim] { animation: sl-fade 500ms var(--ease-out) 0.88s both; }
.hero-scroll-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 16px; font-weight: 500;
  color: rgba(248,246,242,0.9);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}
.hero-scroll-link:hover { color: #2FB6A8; }
.hero-scroll-link .arrow { font-weight: 400; }

/* Beweis-Kacheln */
.hero-tiles-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 44px;
  box-sizing: border-box;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.tile {
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid rgba(248,246,242,0.14);
  border-radius: 10px;
  padding: 26px 26px 20px;
  box-shadow: inset 0 1px 0 rgba(248,246,242,0.10);
  transition: box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
}
.tile:hover {
  box-shadow: inset 0 1px 0 rgba(248,246,242,0.10), 0 8px 24px rgba(24,39,58,0.35);
  transform: translateY(-2px);
  border-color: rgba(248,246,242,0.28);
}
.tile-kicker {
  margin: 0;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,246,242,0.80);
}
.tile-h {
  margin: 2px 0 0;
  min-height: 52px;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 20px;
  line-height: 1.3; letter-spacing: -0.01em;
  color: #F8F6F2;
  text-wrap: balance;
}
.tile-sub { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(248,246,242,0.80); }
.tile-src {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(248,246,242,0.14);
  font-size: 13px;
  color: rgba(248,246,242,0.68);
}
.hero-quiet { margin-top: 22px; }
.hero-quiet-link {
  display: inline-flex; align-items: center;
  min-height: 32px;
  font-size: 14px; font-weight: 500;
  color: #2FB6A8;
  text-decoration: none;
}

/* Mobil: Kacheln als Swipe-Reihe komplett in der dunklen Hero-Fläche */
@media (max-width: 700px) {
  .hero-inner { padding: calc(44px + env(safe-area-inset-top, 0px) + 62px) 20px 0; justify-content: flex-start; }
  .hero { min-height: 0; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.13em; line-height: 1.6; }
  .hero-h1 { margin-top: 18px; font-size: 37px; line-height: 1.08; letter-spacing: -0.03em; }
  .hero-sub { margin-top: 18px; font-size: 15.5px; line-height: 1.55; }
  .hero-actions { margin-top: 26px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-actions .btn-primary { width: 100%; box-sizing: border-box; font-size: 15px; padding: 14px 22px; }
  .hero-scroll-link { font-size: 14.5px; min-height: 44px; }
  .hero-tiles-wrap { padding: 0 0 40px; }
  .tiles {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 36px 20px 4px;
    scrollbar-width: none;
  }
  .tiles::-webkit-scrollbar { display: none; }
  .tile { scroll-snap-align: start; flex: none; width: 288px; gap: 8px; padding: 20px 20px 16px; box-sizing: border-box; }
  .tile-kicker { font-size: 11px; }
  .tile-h { font-size: 17px; min-height: 44.2px; }
  .tile-sub { font-size: 13.5px; line-height: 1.5; }
  .tile-src { padding-top: 11px; font-size: 12px; }
  .hero-quiet { margin: 14px 20px 0; }
  .hero-quiet-link { min-height: 44px; }
}

/* ============================================================================
   SCREEN 02 · Mechanismus
   ============================================================================ */
.mech-intro {
  position: relative;
  min-height: 88svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 176px) 40px;
  box-sizing: border-box;
}
/* Visual in eigener Spalte statt Live-Sperrzone (Mentor-Auflage 3 / Merkliste):
   Grid trennt Text und Netz statisch, das Skript vermisst nichts. */
.mech-grid { display: grid; grid-template-columns: minmax(0, 56em) minmax(280px, 1fr); gap: clamp(24px, 3vw, 56px); align-items: center; }
.mech-text { position: relative; z-index: 1; max-width: 56em; }
.drift-col { position: relative; height: min(74vh, 520px); align-self: center; display: none; }
.drift-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
@media (min-width: 1024px) { .drift-col { display: block; } }
@media (max-width: 1023px) { .mech-grid { grid-template-columns: minmax(0, 1fr); } }
.mech-h2 {
  margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 0.6em;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(23px, 1.4vw + 9px, 30px); /* Sicht-Abgleich: jeder Satz eine Zeile auf Desktop */
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #18273A;
}
.mech-h2 span { display: block; text-wrap: balance; }
.mech-body {
  margin: 32px 0 0;
  max-width: 38em;
  font-size: clamp(17px, 0.4vw + 13px, 21px);
  line-height: 1.65;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
@media (max-width: 700px) {
  .mech-intro { min-height: 0; padding: 60px 20px 0; }
  .mech-h2 { margin-top: 18px; font-size: 23px; }
  .mech-body { margin-top: 16px; font-size: 15px; line-height: 1.6; }
}

/* Gepinnte Scroll-Erzählung (nur Desktop ≥860; Höhe setzt JS bei Motion an) */
.wf-wrap { position: relative; height: auto; }
.wf-stage {
  position: sticky; top: 0;
  height: 100vh; min-height: 620px;
  background: linear-gradient(180deg, #1E2F46 0%, #14202F 100%);
  overflow: hidden;
}
html:not(.js) .wf-stage { position: relative; }
.wf-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.wf-labels { position: absolute; inset: 0; pointer-events: none; }
.wf-label {
  position: absolute;
  opacity: 0;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  white-space: nowrap;
}
.wf-card {
  position: absolute;
  left: 72%; top: 45%;
  transform: translate(-50%, -50%);
  width: min(clamp(400px, 28vw, 560px), calc(100vw - 48px));
  background: #324F62;
  border: 1px solid rgba(248,246,242,0.28);
  border-radius: 10px;
  padding: clamp(22px, 1.6vw, 32px) clamp(24px, 1.8vw, 36px);
  box-shadow: 0 18px 50px rgba(10,20,36,0.5);
  transition: box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}
.wf-card:hover { box-shadow: 0 24px 60px rgba(10,20,36,0.55); transform: translate(-50%, -50%) translateY(-2px); }
.wf-card-kicker {
  margin: 0 0 8px;
  font-size: clamp(12px, 0.7vw, 14px); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,246,242,0.80);
}
.wf-card-q {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(248,246,242,0.14);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #F8F6F2;
  text-wrap: pretty;
}
.wf-answers {
  list-style: none;
  margin: 16px 0 0; padding: 0;
  display: flex; flex-direction: column;
  gap: clamp(13px, 0.9vw, 17px);
}
.wf-answer { display: flex; gap: 10px; align-items: baseline; }
.wf-answer .bullet {
  flex: none;
  width: 7px; height: 7px; border-radius: 50%;
  background: #2FB6A8;
  transform: translateY(-1px);
}
.wf-answer .txt { font-size: clamp(13.5px, 0.85vw, 17px); line-height: 1.5; color: rgba(248,246,242,0.8); }
.wf-seal-row {
  display: flex; align-items: center; gap: 9px;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(248,246,242,0.14);
  font-size: clamp(13px, 0.8vw, 16px);
  color: rgba(248,246,242,0.75);
}
.wf-seal { flex: none; width: 9px; height: 9px; border-radius: 50%; background: #D4A853; }
.wf-beats { position: absolute; left: 0; right: 0; bottom: 9vh; pointer-events: none; }
.wf-beat { position: absolute; bottom: 0; left: 0; right: 0; margin: 0; padding: 0 24px; text-align: center; opacity: 0; }
.wf-beat > span {
  display: block;
  max-width: 20em;
  margin: 0 auto;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(26px, 3vw + 4px, 60px);
  line-height: 1.22;
  letter-spacing: -0.028em;
  color: #F8F6F2;
  text-wrap: balance;
}
.wf-finale {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 clamp(24px, 5vw, 96px);
  box-sizing: border-box;
  pointer-events: none;
}
.wf-finale-p {
  margin: 0;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw + 8px, 92px);
  line-height: 1.16;
  letter-spacing: -0.032em;
  color: #F8F6F2;
  text-wrap: balance;
}
.wf-line { display: inline-block; opacity: 0; }
.wf-line--block { display: block; margin-top: 0.1em; }
.wf-ul {
  background-image: linear-gradient(90deg, #2FB6A8, #2FB6A8);
  background-repeat: no-repeat;
  background-position: 0 96%;
  background-size: 0% 3px;
  padding-bottom: 0.04em;
}
/* Endzustand ohne JS / reduced motion: Karte steht, Finale ruhig unten */
html:not(.js) .wf-card { opacity: 1; }
html:not(.js) .wf-answer { opacity: 1; }
html:not(.js) .wf-line { opacity: 1; }
html:not(.js) .wf-ul { background-size: 100% 3px; }
html:not(.js) .wf-finale { justify-content: flex-end; padding-bottom: 8vh; }
html:not(.js) .wf-finale-p { font-size: clamp(22px, 2.6vw, 44px); }
html:not(.js) .wf-beat { display: none; }
@media (max-width: 859px) { .wf-wrap { display: none; } }

/* Mobil-Ersatz: die Erzählung als EIN komponiertes dunkles Endbild */
.m-panel {
  position: relative;
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #1E2F46 0%, #14202F 100%);
  padding: 26px 18px 20px;
  display: none;
}
@media (max-width: 859px) { .m-panel { display: block; } }
.m-panel-intro {
  position: relative; z-index: 1;
  margin: 0 auto;
  max-width: 19em;
  text-align: center;
  font-size: 12.5px; line-height: 1.55;
  color: rgba(248,246,242,0.75);
  text-wrap: pretty;
}
.m-gridzone { position: relative; height: 132px; margin-top: 10px; }
.m-grid-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.m-label {
  position: absolute;
  opacity: 0.7;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 600; font-size: 8px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  white-space: nowrap;
}
.m-card {
  position: relative; z-index: 1;
  background: #324F62;
  border: 1px solid rgba(248,246,242,0.28);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(10,20,36,0.5);
}
.m-card-kicker { margin: 0 0 6px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248,246,242,0.80); }
.m-card-q { margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(248,246,242,0.14); font-family: var(--font-headline); font-weight: 600; font-size: 14.5px; line-height: 1.35; color: #F8F6F2; text-wrap: pretty; }
.m-answers { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.m-answers li { display: flex; gap: 8px; align-items: baseline; }
.m-answers .bullet { flex: none; width: 6px; height: 6px; border-radius: 50%; background: #2FB6A8; transform: translateY(-1px); }
.m-answers .txt { font-size: 12px; line-height: 1.45; color: rgba(248,246,242,0.8); }
.m-seal-row { display: flex; align-items: center; gap: 8px; margin: 13px 0 0; padding-top: 11px; border-top: 1px solid rgba(248,246,242,0.14); font-size: 11.5px; color: rgba(248,246,242,0.75); }
.m-seal { flex: none; width: 8px; height: 8px; border-radius: 50%; background: #D4A853; }
.m-finale {
  position: relative; z-index: 1;
  margin: 30px auto 10px;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 23px;
  line-height: 1.24; letter-spacing: -0.02em;
  color: #F8F6F2;
  text-wrap: balance;
}

/* Eigen-Beweis (Gedächtnis-Graph) */
.proof {
  position: relative;
  min-height: 76svh;
  display: flex; align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
  width: 100%;
}
.accent-bar { display: block; width: 56px; height: 3px; border-radius: 2px; background: #0D9488; }
.proof-text {
  margin: 36px 0 0;
  font-size: clamp(19px, 0.9vw + 9px, 27px);
  line-height: 1.6;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
.proof-col { max-width: 34em; }
.mem-col { position: relative; height: clamp(400px, 56vh, 560px); display: none; }
.mem-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
@media (min-width: 1024px) { .mem-col { display: block; } }
@media (max-width: 700px) {
  .proof { min-height: 0; padding: 48px 20px 24px; }
  .accent-bar { width: 44px; }
  .proof-text { margin-top: 22px; font-size: 15px; line-height: 1.65; }
}

/* ============================================================================
   SCREEN 03 · Drei-Stationen-Weg
   ============================================================================ */
.section-rule { border-top: 1px solid rgba(24,39,58,0.12); }
.weg-inner {
  min-height: 90svh;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.section-h2 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(32px, 2.6vw + 10px, 56px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: #18273A;
  text-wrap: balance;
}
/* Sicht-Abgleich: volle Breite, ein Satz pro Zeile (statt 21ch-Block) */
.weg-h2 { max-width: none; font-size: clamp(30px, 2.3vw + 8px, 48px); }
.weg-h2 span { display: block; text-wrap: balance; }
.stations { margin-top: clamp(56px, 6vh, 96px); display: flex; flex-direction: column; gap: 28px; }
.station-row {
  display: grid;
  grid-template-columns: clamp(76px, 7vw, 116px) minmax(0, 1fr);
  gap: 0 clamp(20px, 2.5vw, 44px);
}
.station-rail { display: flex; flex-direction: column; align-items: center; padding-top: clamp(28px, 2.4vw, 40px); }
.station-rail--lead { padding-top: clamp(32px, 3vw, 52px); }
.station-num {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(42px, 3.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(24,39,58,0.25);
  transition: color var(--motion-fast) var(--ease-out);
}
.station-num.active { color: #0D9488; }
html:not(.js) .station-num--1 { color: #0D9488; }
.station-line { flex: 1; width: 2px; margin-top: 16px; border-radius: 1px; background: rgba(13,148,136,0.4); }
.station-card {
  background: #FBF9F5;
  border: 1px solid var(--color-border-default);
  border-radius: 10px;
  padding: clamp(28px, 2.4vw, 40px);
  transition: box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}
.station-card:hover { box-shadow: 0 8px 24px rgba(24,39,58,0.12); transform: translateY(-2px); }
.station-card--lead {
  border-radius: 14px;
  padding: clamp(32px, 3vw, 52px);
  box-shadow: var(--shadow-base);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 3vw, 52px);
}
.station-kicker {
  margin: 0;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(24,39,58,0.55);
}
.station-h3 {
  margin: 14px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(22px, 1.2vw + 8px, 30px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #18273A;
}
.station-h3--lead { margin-top: 16px; font-size: clamp(26px, 1.6vw + 10px, 38px); line-height: 1.14; }
.station-p {
  margin: 18px 0 0;
  max-width: 52em; /* Lesebreite Reading-Token (Merkliste ~720px) */
  font-size: clamp(15.5px, 0.35vw + 12px, 18.5px);
  line-height: 1.68;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
.station-p--lead { margin-top: 22px; font-size: clamp(16px, 0.35vw + 12px, 19px); }
.station-aside { align-self: center; border-top: 1px solid rgba(24,39,58,0.12); padding-top: 28px; }
.station-aside-p { margin: 0; font-size: clamp(16px, 0.35vw + 12px, 19px); line-height: 1.68; color: rgba(24,39,58,0.78); }
.station-aside-h {
  margin: 18px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(20px, 1.1vw + 8px, 28px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #18273A;
}

/* ============================================================================
   SCREEN 04 · D4-Fall
   ============================================================================ */
.fall-inner {
  min-height: 90svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.fall-h2 { max-width: 20ch; }
.case-card {
  margin-top: clamp(44px, 5vh, 64px);
  background: #FBF9F5;
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: clamp(30px, 3.2vw, 56px);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 3.2vw, 60px);
  align-items: center;
}
.case-copy { display: flex; flex-direction: column; gap: clamp(20px, 2.5vh, 30px); }
.case-p { margin: 0; font-size: clamp(16px, 0.35vw + 12px, 19px); line-height: 1.7; color: rgba(24,39,58,0.78); text-wrap: pretty; }
.case-img-wrap { width: 100%; aspect-ratio: 4 / 3; }
.case-img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.case-footer { margin-top: clamp(30px, 4vh, 48px); border-top: 1px solid rgba(24,39,58,0.12); padding-top: clamp(26px, 3.5vh, 40px); }
.case-quote {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(24px, 1.4vw + 12px, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #18273A;
  max-width: 24ch;
  text-wrap: balance;
}
.case-meta {
  margin-top: clamp(22px, 3vh, 34px);
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 16px 32px;
}
.case-meta-muted { margin: 0; font-size: 15px; color: rgba(24,39,58,0.55); }
.case-meta-link { margin: 0; font-size: 16px; color: rgba(24,39,58,0.78); }

/* ============================================================================
   SCREEN 05 · Anwendungsbeispiele
   ============================================================================ */
.bsp-inner {
  min-height: 90svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.ex-list { margin-top: clamp(40px, 5vh, 64px); }
.ex-row {
  border-top: 1px solid rgba(24,39,58,0.12);
  padding: clamp(36px, 4.5vh, 56px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px clamp(32px, 4vw, 72px);
  align-items: start;
}
.ex-row--last { border-bottom: 1px solid rgba(24,39,58,0.12); }
.ex-h {
  margin: 0;
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(21px, 1vw + 10px, 30px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #18273A;
  text-wrap: balance;
}
.ex-h svg { flex: none; margin-top: 0.12em; }
.ex-p { margin: 0; max-width: 40em; font-size: clamp(16px, 0.35vw + 12px, 19px); line-height: 1.7; color: rgba(24,39,58,0.78); text-wrap: pretty; }
.ex-close {
  margin: clamp(56px, 7vh, 96px) auto 0;
  text-align: center; /* bewusste Ausnahme (Design-Entscheid Runde 4) */
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(24px, 1.6vw + 10px, 42px);
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: #18273A;
  max-width: 26ch;
  text-wrap: balance;
}

/* ============================================================================
   SCREEN 06 · Einwände
   ============================================================================ */
.einwaende { background: #FBF9F5; border-top: 1px solid rgba(24,39,58,0.12); border-bottom: 1px solid rgba(24,39,58,0.12); }
.obj-inner {
  position: relative;
  min-height: 90svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.obj-quotes {
  position: absolute;
  right: clamp(16px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: clamp(220px, 24vw, 400px);
  height: auto;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) { .obj-quotes { display: block; } }
.obj-eyebrow { position: relative; z-index: 1; }
.obj-list { position: relative; z-index: 1; margin-top: clamp(24px, 3vh, 40px); max-width: 52em; }
.obj-row { border-top: 1px solid rgba(24,39,58,0.12); padding: clamp(36px, 4.5vh, 56px) 0; }
.obj-row--last { border-bottom: 1px solid rgba(24,39,58,0.12); }
.obj-h {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(21px, 1.1vw + 10px, 31px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #18273A;
  max-width: 26ch;
  text-wrap: balance;
}
.obj-p { margin: 20px 0 0; max-width: 44em; font-size: clamp(16px, 0.35vw + 12px, 19px); line-height: 1.7; color: rgba(24,39,58,0.78); text-wrap: pretty; }

/* ============================================================================
   SCREEN 07 · Warum jetzt
   ============================================================================ */
.why-inner {
  position: relative;
  min-height: 90svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
/* Sicht-Abgleich: Headline volle Breite über dem Grid, Netz-Grafik rückt tiefer neben den Fließtext */
.why-grid {
  margin-top: clamp(44px, 5vh, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
  width: 100%;
}
.why-h2 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(34px, 2.8vw + 12px, 62px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #18273A;
  max-width: none;
  text-wrap: balance;
}
.why-h2 span { display: block; text-wrap: balance; }
.why-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 3.5vw, 64px);
  max-width: 66em;
}
.why-p { margin: 0; font-size: clamp(16px, 0.35vw + 12px, 19px); line-height: 1.7; color: rgba(24,39,58,0.78); text-wrap: pretty; }
.leave-col { position: relative; height: clamp(380px, 52vh, 540px); display: none; }
.leave-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
@media (min-width: 1024px) { .leave-col { display: block; } }

/* ============================================================================
   SCREEN 08 · Erstgespräch (dunkle CTA-Bühne)
   ============================================================================ */
.cta-section { background: linear-gradient(180deg, #18273A 0%, #14202F 100%); }
.cta-inner {
  position: relative;
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 12vh, 168px) 40px;
  box-sizing: border-box;
}
.sort-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) { html.js .sort-canvas { display: block; } }
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow { color: rgba(248,246,242,0.68); }
.cta-h2 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(38px, 3vw + 14px, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #F8F6F2;
  max-width: 16ch;
}
.cta-sub {
  margin: 32px 0 0;
  max-width: 36em;
  font-size: clamp(17px, 0.4vw + 13px, 21px);
  line-height: 1.65;
  color: rgba(248,246,242,0.8);
  text-wrap: pretty;
}
.cta-action { margin-top: clamp(40px, 5vh, 56px); }
.cta-action .btn-primary { font-size: 17px; padding: 16px 30px; }
.cta-byline { margin: 20px 0 0; font-size: 14.5px; color: rgba(248,246,242,0.55); }
.cta-alt {
  margin: clamp(44px, 6vh, 64px) 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(248,246,242,0.14);
  max-width: 36em;
  font-size: 15px; line-height: 1.65;
  color: rgba(248,246,242,0.6);
}
@media (max-width: 700px) {
  .cta-inner { min-height: 0; padding: 52px 20px 56px; }
  .cta-h2 { margin-top: 16px; font-size: 28px; line-height: 1.12; letter-spacing: -0.025em; }
  .cta-sub { margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .cta-action { margin-top: 24px; }
  .cta-action .btn-primary { width: 100%; box-sizing: border-box; font-size: 15px; padding: 14px 22px; }
  .cta-byline { margin-top: 14px; font-size: 12.5px; }
  .cta-alt { margin-top: 28px; padding-top: 18px; font-size: 13px; line-height: 1.6; }
}

/* ============================================================================
   Footer (dunkel, Signaturlinie über volle Breite)
   ============================================================================ */
.site-footer { background: linear-gradient(180deg, #1E2F46 0%, #14202F 100%); }
.footer-sig { height: 2px; width: 100%; background: var(--grad-signature); }
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 24px;
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 40px;
}
.footer-main img { height: 22px; width: auto; display: block; }
.footer-byline { margin: 16px 0 0; font-size: 14.5px; line-height: 1.55; color: rgba(248,246,242,0.8); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-links a {
  font-size: 14.5px;
  color: #2FB6A8;
  text-decoration: none;
  transition: color var(--motion-base) var(--ease-in-out);
}
.footer-links a:hover { color: #F8F6F2; }
.footer-copy { max-width: 1200px; margin: 0 auto; padding: 0 40px 48px; }
.footer-copy p { margin: 0; font-size: 12.5px; color: rgba(248,246,242,0.42); }
@media (max-width: 700px) {
  .footer-main { padding: 28px 20px 0; gap: 16px; }
  .footer-main img { height: 16px; }
  .footer-byline { margin-top: 12px; font-size: 12.5px; }
  .footer-links { margin-top: 0; gap: 8px 20px; }
  .footer-links a { font-size: 13px; }
  .footer-copy { padding: 20px 20px calc(96px + env(safe-area-inset-bottom, 0px)); }
  .footer-copy p { font-size: 11.5px; }
}

/* ============================================================================
   Mobiler Sticky-CTA (Hairline-Oberkante, blendet aus wenn Sektions-CTA sichtbar)
   ============================================================================ */
.m-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  padding: 10px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  background: #F8F6F2;
  border-top: 1px solid rgba(24,39,58,0.12);
  box-shadow: 0 -8px 24px rgba(24,39,58,0.10);
  transform: translateY(110%);
  display: none;
}
html.js .m-bar { display: block; }
@media (min-width: 821px) { .m-bar { display: none !important; } }
.m-bar .btn-primary { width: 100%; box-sizing: border-box; font-size: 15px; padding: 13px 20px; }

/* ============================================================================
   ÜBER MICH
   ============================================================================ */
.um-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(160px, 20vh, 224px) 40px clamp(72px, 9vh, 112px);
  box-sizing: border-box;
}
.um-h1 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(42px, 3.4vw + 12px, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #18273A;
  max-width: 720px;
  text-wrap: balance;
}
.um-h1 .clip { display: block; overflow: hidden; padding-bottom: 0.08em; }
.um-h1 .rise { display: inline-block; }
html.js .um-h1 .rise[data-anim] { animation: sl-rise 700ms var(--ease-out) 0.2s both; }
html.js .um-head .eyebrow[data-anim] { animation: sl-fade 500ms var(--ease-out) 0.1s both; }
.um-intro { max-width: 720px; }
.um-intro p {
  margin: 22px 0 0;
  font-size: clamp(17px, 0.4vw + 13px, 21px);
  line-height: 1.65;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
.um-intro p:first-child { margin-top: 36px; }
html.js .um-intro p[data-anim] { animation: sl-fade 500ms var(--ease-out) 0.55s both; }
html.js .um-intro p + p[data-anim] { animation-delay: 0.68s; }
@media (max-width: 700px) {
  .um-head { padding: 36px 20px 56px; }
  .um-h1 { margin-top: 18px; font-size: 34px; line-height: 1.1; }
  .um-intro p { font-size: 15.5px; line-height: 1.62; }
  .um-intro p:first-child { margin-top: 22px; }
}

/* Seekarten-Route */
.route-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 104px) 40px 0;
  box-sizing: border-box;
}
.route-eyebrow { text-align: center; }
.chart-wrap { position: relative; padding-bottom: clamp(120px, 15vh, 190px); }
.chart-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
}
html:not(.js) .chart-svg { display: none; }
.st-list {
  list-style: none;
  margin: 0;
  padding: clamp(96px, 12vh, 150px) 0 0;
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  gap: clamp(120px, 15vh, 190px);
}
.st-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(140px, 15vw, 200px) minmax(0,1fr);
  column-gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.st-spine { grid-column: 2; min-height: 10px; }
.st-cell { max-width: 34em; }
.st-cell--r { grid-column: 3; justify-self: start; }
.st-cell--l { grid-column: 1; justify-self: end; }
.st-labelrow { display: flex; }
.st-cell--r .st-labelrow { justify-content: flex-start; }
.st-cell--l .st-labelrow { justify-content: flex-end; }
.st-label-p {
  margin: 0;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(24,39,58,0.55);
}
.st-p strong { font-weight: 600; }
.st-p {
  margin: 14px 0 0;
  font-size: clamp(15.5px, 0.3vw + 12px, 18px);
  line-height: 1.68;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
@media (max-width: 860px) {
  .st-row { grid-template-columns: 64px minmax(0, 1fr); }
  .st-spine { grid-column: 1; }
  .st-cell--r, .st-cell--l { grid-column: 2; justify-self: start; }
  .st-cell--l .st-labelrow { justify-content: flex-start; }
  .st-list { gap: 56px; padding-top: 48px; }
  .chart-wrap { padding-bottom: 64px; }
  .route-section-inner { padding: 24px 20px 0; }
}

/* Portrait + Stempel-Satz */
.portrait-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 152px) 40px;
  box-sizing: border-box;
}
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.portrait-frame {
  width: 100%; max-width: 420px;
  aspect-ratio: 4 / 5;
  background: #EFECE5;
  border: 1px solid var(--color-border-default);
  border-radius: 10px;
  overflow: hidden;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-name { margin: 18px 0 0; font-size: 15px; font-weight: 600; color: #18273A; }
.portrait-role { margin: 4px 0 0; font-size: 14px; color: rgba(24,39,58,0.55); }
.stamp-quote {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(26px, 1.5vw + 12px, 38px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #18273A;
  max-width: 18em;
  text-wrap: pretty;
}
.stamp-bar { display: block; margin-top: 32px; width: 56px; height: 3px; border-radius: 2px; background: #0D9488; }
@media (max-width: 700px) {
  .portrait-inner { padding: 56px 20px 60px; }
  .portrait-name { margin-top: 16px; font-size: 14.5px; }
  .portrait-role { font-size: 13.5px; }
  .stamp-quote { font-size: 22px; line-height: 1.35; }
  .stamp-bar { margin-top: 22px; width: 44px; }
}

/* Ruhige Textsektionen (Beratung, Abseits der Zahlen) */
.plain-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(88px, 11vh, 144px) 40px;
  box-sizing: border-box;
}
.plain-copy { max-width: 720px; }
.plain-copy p {
  margin: 22px 0 0;
  font-size: clamp(16px, 0.35vw + 12px, 19px);
  line-height: 1.7;
  color: rgba(24,39,58,0.78);
  text-wrap: pretty;
}
.plain-copy p:first-of-type { margin-top: 28px; }
@media (max-width: 700px) {
  .plain-inner { padding: 52px 20px 56px; }
  .plain-copy p { font-size: 15px; margin-top: 14px; }
  .plain-copy p:first-of-type { margin-top: 20px; }
}

/* Über-mich-CTA (hell, ruhiger Abschluss) */
.um-cta-inner {
  min-height: 56svh;
  display: flex; align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(104px, 13vh, 168px) 40px;
  box-sizing: border-box;
}
.um-cta-h2 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(28px, 2vw + 8px, 44px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #18273A;
  max-width: 24em;
  text-wrap: balance;
}
.um-cta-action { margin-top: clamp(36px, 5vh, 52px); }
.um-cta-alt { margin: 28px 0 0; font-size: 15px; line-height: 1.65; color: rgba(24,39,58,0.6); }
@media (max-width: 700px) {
  .um-cta-inner { min-height: 0; padding: 56px 20px 64px; }
  .um-cta-h2 { margin-top: 18px; font-size: 23px; line-height: 1.25; }
  .um-cta-action { margin-top: 28px; }
  .um-cta-action .btn-primary { width: 100%; box-sizing: border-box; font-size: 15px; padding: 14px 22px; }
  .um-cta-alt { margin-top: 18px; font-size: 14px; }
}

/* ============================================================================
   Rechtsseiten (Impressum, Datenschutz) — ruhige Leseseiten auf Cream
   ============================================================================ */
.legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(150px, 18vh, 200px) 40px clamp(88px, 11vh, 144px);
  box-sizing: border-box;
}
.legal-copy { max-width: 720px; }
.legal-h1 {
  margin: 28px 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(36px, 2.6vw + 12px, 56px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: #18273A;
}
.legal-copy h2 {
  margin: clamp(40px, 5vh, 56px) 0 0;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(20px, 0.9vw + 12px, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #18273A;
}
.legal-copy p, .legal-copy address, .legal-copy li {
  font-size: clamp(15.5px, 0.3vw + 12px, 18px);
  line-height: 1.7;
  color: rgba(24,39,58,0.78);
  font-style: normal;
  text-wrap: pretty;
}
.legal-copy p, .legal-copy address { margin: 16px 0 0; }
.legal-copy ul { margin: 16px 0 0; padding-left: 1.2em; }
.legal-copy li { margin-top: 8px; }
.legal-copy a { color: #18273A; font-weight: 500; }
.legal-lead { font-size: clamp(17px, 0.4vw + 13px, 21px) !important; margin-top: 32px !important; }
@media (max-width: 700px) {
  .legal-inner { padding: 130px 20px 64px; }
}
