/* ═══════════════ KAPITALSTEIN ═══════════════ */
:root {
  --bg: #050505;
  --bg-soft: #0a0908;
  --ink: #e8e2d6;
  --ink-dim: #8a8377;
  --gold: #c9a35c;
  --gold-soft: #a8874a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }

/* ─── Preloader ─── */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.9s ease, visibility 0.9s;
}
.loader.done { opacity: 0; visibility: hidden; }
/* Logo-Lockup (Icon + Wortmarke) */
.logo-icon { fill: var(--gold); display: block; }
.logo-word {
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.45em; color: var(--ink);
  margin-right: -0.45em; /* optischer Ausgleich des letzten Buchstabenabstands */
}

.loader-mark {
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.loader-mark .logo-icon { width: 56px; }
.loader-mark .logo-word { font-size: 15px; }
.loader-bar {
  width: 180px; height: 1px; background: rgba(201,163,92,0.2);
  position: relative; overflow: hidden;
}
.loader-bar span {
  position: absolute; inset: 0; background: var(--gold);
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.3s ease;
  display: block;
}
.loader-pct {
  font-size: 11px; letter-spacing: 0.35em; color: var(--ink-dim);
}

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
  opacity: 0; transform: translateY(-12px);
  transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
  mix-blend-mode: difference;
}
.nav.visible { opacity: 1; transform: none; }
.nav-logo {
  display: flex; align-items: center; gap: 14px;
}
.nav-logo .logo-icon { width: 26px; }
.nav-logo .logo-word { font-size: 13px; }
.nav-cta {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,163,92,0.35);
  padding-bottom: 4px;
  transition: border-color 0.4s;
}
.nav-cta:hover { border-color: var(--gold); }

/* ─── Scroll-Sequenz-Sektionen ─── */
.seq { position: relative; }
#hero { height: 420vh; }
#macro { height: 380vh; }

.seq .sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.seq-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(5,5,5,0.55) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, transparent 18%, transparent 80%, rgba(5,5,5,0.75) 100%);
}

/* Hero-Typo */
.hero-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 4.2vw, 68px);
  letter-spacing: 0.015em;
  line-height: 1.18;
  color: var(--ink);
  text-shadow: 0 2px 60px rgba(0,0,0,0.8);
  max-width: 18em;
  padding: 0 6vw;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  margin-top: 34px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--ink-dim); letter-spacing: 0.08em;
}

/* Stage-Texte (an Scrollpositionen fixiert, JS-gesteuert) */
.stage-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  pointer-events: none;
  opacity: 0;
}
.stage-copy[data-stage="2"] { align-items: flex-end; text-align: right; }
.stage-kicker {
  font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.stage-line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.12; color: var(--ink);
  text-shadow: 0 2px 40px rgba(0,0,0,0.9);
}

/* Scroll-Hinweis */
.scroll-hint {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: opacity 0.6s;
}
.scroll-line {
  width: 1px; height: 48px; overflow: hidden; position: relative;
  background: rgba(232,226,214,0.12);
}
.scroll-line::after {
  content: ''; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollPulse 2.2s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scrollPulse {
  0% { top: -50%; } 100% { top: 110%; }
}

/* ─── Story ─── */
.story {
  position: relative; z-index: 2;
  background: linear-gradient(var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
  padding: 22vh 8vw 20vh;
}
.story-inner { max-width: 1200px; margin: 0 auto; }
.story-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.story-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.15; margin-bottom: 14vh;
}
.story-title em { color: var(--gold); font-style: italic; }

.story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw;
  margin-bottom: 16vh;
}
.story-card {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 34px;
}
.card-num {
  font-family: var(--serif); font-size: 15px; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 26px;
}
.story-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.story-card p {
  font-size: 14.5px; line-height: 1.75; color: var(--ink-dim);
}

.story-quote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.8vw, 40px); line-height: 1.4;
  color: var(--ink); text-align: center;
}

/* ─── Atmosphäre ─── */
.atmo {
  position: relative; height: 130vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.atmo-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.atmo::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.6) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
}
.atmo-copy {
  position: relative; z-index: 2; text-align: center;
}
.atmo-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.atmo-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(52px, 8vw, 130px); line-height: 1.05;
  text-shadow: 0 2px 60px rgba(0,0,0,0.9);
}

/* ─── CTA ─── */
.cta {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 24vh 8vw 0;
  text-align: center;
}
.cta-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.cta-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6vw, 92px); line-height: 1.12;
  margin-bottom: 40px;
}
.cta-sub {
  font-size: 15px; line-height: 1.9; color: var(--ink-dim);
  margin-bottom: 64px;
}
.cta-btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 22px 54px; text-decoration: none;
  transition: background 0.4s, letter-spacing 0.4s;
}
.cta-btn:hover { background: var(--ink); letter-spacing: 0.45em; }

/* ─── Zahlen ─── */
.stats {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 0 8vw 20vh;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2vw;
  border-top: 1px solid rgba(201,163,92,0.25);
  border-bottom: 1px solid rgba(201,163,92,0.25);
  padding: 64px 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 3.6vw, 58px);
  color: var(--gold); letter-spacing: 0.02em;
}
.stat-label {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ─── Die Antwort ─── */
.answer {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 20vh 8vw;
}
.answer-inner { max-width: 1100px; margin: 0 auto; }
.answer-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.answer-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 12vh;
}
.answer-title em { color: var(--gold); font-style: italic; }
.answer-rows { display: flex; flex-direction: column; }
.answer-row {
  display: grid; grid-template-columns: 1fr 60px 1.6fr;
  align-items: baseline; gap: 24px;
  padding: 38px 0;
  border-top: 1px solid rgba(232,226,214,0.08);
}
.answer-row:last-child { border-bottom: 1px solid rgba(232,226,214,0.08); }
.answer-problem {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 28px);
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(201,163,92,0.5);
  text-decoration-thickness: 1px;
}
.answer-arrow { color: var(--gold); font-size: 20px; text-align: center; }
.answer-solution { font-size: 15px; line-height: 1.7; color: var(--ink); }

/* ─── Der Weg ─── */
.process {
  position: relative; z-index: 2;
  background: linear-gradient(var(--bg) 0%, var(--bg-soft) 55%, var(--bg) 100%);
  padding: 20vh 8vw;
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.process-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 12vh;
}
.process-steps {
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(201,163,92,0.25);
}
.step {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 44px 0 44px 40px;
  position: relative;
}
.step::before {
  content: ''; position: absolute; left: -4px; top: 58px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}
.step-num {
  font-family: var(--serif); font-size: 17px; color: var(--gold);
  letter-spacing: 0.2em;
}
.step-body h3 {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  margin-bottom: 14px;
}
.step-body p { font-size: 14.5px; line-height: 1.75; color: var(--ink-dim); max-width: 520px; }

/* ─── Vier Säulen ─── */
.pillars {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 20vh 8vw;
}
.pillars-inner { max-width: 1200px; margin: 0 auto; }
.pillars-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.pillars-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 12vh;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5vw;
}
.pillar {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 30px;
}
.pillar-num {
  font-family: var(--serif); font-size: 16px; color: var(--gold);
  letter-spacing: 0.25em; margin-bottom: 24px;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  margin-bottom: 16px;
}
.pillar p { font-size: 13.5px; line-height: 1.75; color: var(--ink-dim); }

/* ─── Für wen ─── */
.who {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 20vh 8vw;
}
.who-inner { max-width: 1200px; margin: 0 auto; }
.who-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.who-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 12vh;
}
.who-title em { color: var(--gold); font-style: italic; }
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw;
}
.who-card {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 30px;
}
.who-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 25px;
  margin-bottom: 16px;
}
.who-card p { font-size: 14px; line-height: 1.75; color: var(--ink-dim); }
.who-note {
  margin-top: 10vh; text-align: center;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.7vw, 22px); color: var(--ink-dim);
}

/* ─── Kundenstimmen ─── */
.voices {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 20vh 8vw;
}
.voices-inner { max-width: 1200px; margin: 0 auto; }
.voices-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10vh; text-align: center;
}
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw;
}
.voice {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 34px;
}
.voice p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 1.8vw, 24px); line-height: 1.5;
  color: var(--ink); margin-bottom: 28px;
}
.voice footer {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.voice footer span {
  display: block; margin-top: 6px;
  color: var(--ink-dim); letter-spacing: 0.15em; text-transform: none;
  font-size: 12px;
}

/* ─── FAQ ─── */
.faq {
  position: relative; z-index: 2;
  background: linear-gradient(var(--bg) 0%, var(--bg-soft) 55%, var(--bg) 100%);
  padding: 20vh 8vw;
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.faq-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 10vh;
}
.faq-item {
  border-top: 1px solid rgba(232,226,214,0.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(232,226,214,0.1); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 30px 0;
  font-family: var(--serif); font-size: clamp(18px, 1.9vw, 24px); font-weight: 500;
  color: var(--ink);
  transition: color 0.4s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  flex: none; width: 14px; height: 14px; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform 0.4s ease;
}
.faq-icon::before { left: 0; top: 6px; width: 14px; height: 1px; }
.faq-icon::after { left: 6px; top: 0; width: 1px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-body { overflow: hidden; }
.faq-body p {
  padding: 0 0 34px;
  font-size: 14.5px; line-height: 1.8; color: var(--ink-dim);
  max-width: 640px;
}

/* ─── Footer (ausgebaut) ─── */
.footer {
  margin-top: 22vh;
  border-top: 1px solid rgba(232,226,214,0.08);
  padding: 72px 0 40px;
  text-align: left;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3vw;
  margin-bottom: 72px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.footer-brand .logo-icon { width: 24px; }
.footer-brand .logo-word { font-size: 13px; }
.footer-claim { font-size: 13px; line-height: 1.8; color: var(--ink-dim); }
.footer-head {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.footer-col a, .footer-col span {
  font-size: 13px; color: var(--ink-dim); text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-base {
  border-top: 1px solid rgba(232,226,214,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ─── Potenzial-Band (Startseite) ─── */
.calcband {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 0 8vw 20vh;
}
.calcband-inner {
  max-width: 1100px; margin: 0 auto;
  border: 1px solid rgba(201,163,92,0.35);
  padding: clamp(40px, 6vw, 80px);
  display: flex; justify-content: space-between; align-items: center; gap: 5vw;
  background: radial-gradient(ellipse at 20% 0%, rgba(201,163,92,0.07), transparent 60%);
}
.calcband-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.calcband-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15; margin-bottom: 22px;
}
.calcband-sub { font-size: 14px; line-height: 1.8; color: var(--ink-dim); }
.calcband-btn {
  flex: none; white-space: nowrap;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,163,92,0.5);
  padding: 20px 44px;
  transition: background 0.4s, color 0.4s;
}
.calcband-btn:hover { background: var(--gold); color: var(--bg); }

/* ─── Potenzialrechner (Unterseite) ─── */
.calc-page { background: var(--bg); }
.calc-main {
  max-width: 1200px; margin: 0 auto;
  padding: 22vh 8vw 10vh;
}
.calc-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.calc-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.12; margin-bottom: 28px;
}
.calc-title em { color: var(--gold); font-style: italic; }
.calc-intro {
  font-size: 15px; line-height: 1.85; color: var(--ink-dim);
  margin-bottom: 10vh;
}
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw;
  align-items: start;
}

.field { margin-bottom: 38px; }
.field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px; gap: 16px;
}
.field-head label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}
.field-head output {
  font-family: var(--serif); font-size: 20px; color: var(--ink);
  white-space: nowrap;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px; background: rgba(201,163,92,0.25);
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: none;
  box-shadow: 0 0 0 4px rgba(201,163,92,0.15);
  transition: box-shadow 0.3s;
}
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 8px rgba(201,163,92,0.2); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: none;
}
input[type="range"]::-moz-range-track { height: 2px; background: rgba(201,163,92,0.25); }
.calc-assumptions {
  margin-top: 6px;
  font-size: 11.5px; line-height: 1.8; color: var(--ink-dim);
  letter-spacing: 0.04em;
}

.calc-results { display: flex; flex-direction: column; gap: 0; }
.result {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
}
.result-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}
.result-num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 2.6vw, 40px); color: var(--ink);
  white-space: nowrap;
}
.result-num.is-gold { color: var(--gold); }

.chart-wrap {
  margin-top: 34px;
  border: 1px solid rgba(232,226,214,0.08);
  padding: 24px;
}
.chart-head {
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 18px;
}
#chart { width: 100%; height: 200px; display: block; }
.chart-legend {
  margin-top: 14px;
  font-size: 11px; color: var(--ink-dim); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 8px;
}
.chart-legend .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block;
}

.calc-cta {
  margin-top: 14vh; text-align: center;
}
.calc-cta p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px); color: var(--ink);
  margin-bottom: 42px;
}
.calc-disclaimer {
  margin-top: 10vh;
  font-size: 11px; line-height: 1.9; color: var(--ink-dim);
  max-width: 640px; margin-left: auto; margin-right: auto;
  text-align: center; letter-spacing: 0.03em;
}
.calc-footer { margin-top: 8vh; padding: 0 8vw 40px; }
.calc-back { color: var(--ink-dim); text-decoration: none; }
.calc-back:hover { color: var(--gold); }

/* ─── FAQ-Unterseite ─── */
.faq-main {
  max-width: 900px; margin: 0 auto;
  padding: 22vh 8vw 10vh;
}
.faq-group { margin-bottom: 12vh; }
.faq-cat {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold);
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,163,92,0.25);
}
.faq-link { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,163,92,0.4); }
.faq-link:hover { border-color: var(--gold); }

/* „Alle Fragen"-Verweis (Startseite) */
.faq-more {
  margin-top: 8vh; text-align: center;
}
.faq-more a {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,163,92,0.5);
  padding: 18px 40px; display: inline-block;
  transition: background 0.4s, color 0.4s;
}
.faq-more a:hover { background: var(--gold); color: var(--bg); }

/* ─── Rechtliche Unterseiten ─── */
.legal-main {
  max-width: 760px; margin: 0 auto;
  padding: 20vh 8vw 10vh;
}
.legal-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12; margin-bottom: 40px;
}
.legal-muster {
  border: 1px solid rgba(201,163,92,0.4);
  padding: 18px 22px;
  font-size: 12px; letter-spacing: 0.06em; line-height: 1.7;
  color: var(--gold);
  margin-bottom: 9vh;
}
.legal-block { margin-bottom: 7vh; }
.legal-block h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 20px; color: var(--ink);
}
.legal-block p {
  font-size: 14px; line-height: 1.9; color: var(--ink-dim);
  margin-bottom: 16px;
}
.legal-block ul {
  list-style: none; margin-bottom: 16px;
}
.legal-block li {
  font-size: 14px; line-height: 1.9; color: var(--ink-dim);
  padding-left: 22px; position: relative;
}
.legal-block li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}
.legal-stand { font-size: 12px; letter-spacing: 0.1em; }

/* ─── Reveal (Scroll-fixierte Einblendungen) ─── */
.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.story-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.story-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .nav { padding: 20px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .stage-copy { padding: 0 10vw; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .answer-row { grid-template-columns: 1fr; gap: 12px; }
  .answer-arrow { display: none; }
  .step { grid-template-columns: 1fr; gap: 10px; padding-left: 28px; }
  .voices-grid { grid-template-columns: 1fr; gap: 56px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .who-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .calcband-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .calcband-btn { padding: 16px 32px; }
  .calc-grid { grid-template-columns: 1fr; gap: 64px; }
  .footer-base { flex-direction: column; gap: 12px; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line::after { animation: none; }
}
