/* ═══════════════ 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); }

/* ─── Nav-Menü (Logo-Dropdown) ─── */
.nav-logo.has-menu { cursor: pointer; }
.nav-logo.has-menu:hover .logo-icon { opacity: 0.85; }
.nav-menu {
  position: fixed; top: 84px; left: 48px; z-index: 60;
  min-width: 268px;
  background: rgba(10,9,8,0.96);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(201,163,92,0.22);
  border-top: 2px solid var(--gold);
  padding: 16px 26px 14px;
  max-height: calc(100dvh - 100px); overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nav-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.nav-menu-link {
  display: block; padding: 11px 0;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(232,226,214,0.08);
  transition: color 0.3s, padding-left 0.3s;
}
.nav-menu-link:last-of-type { border-bottom: none; }
.nav-menu-link:hover { color: var(--gold); padding-left: 6px; }

/* Logo-Morph: vier Balken werden zum Schliessen-Kreuz */
.nav-logo.has-menu .logo-icon rect {
  transition: transform 0.45s cubic-bezier(0.65,0,0.35,1), opacity 0.3s ease;
  transform-box: fill-box; transform-origin: center;
}
.nav-logo.has-menu[aria-expanded="true"] .logo-icon rect:nth-child(1) {
  transform: translateY(19px) rotate(45deg);
}
.nav-logo.has-menu[aria-expanded="true"] .logo-icon rect:nth-child(2),
.nav-logo.has-menu[aria-expanded="true"] .logo-icon rect:nth-child(3) {
  opacity: 0; transform: scaleX(0);
}
.nav-logo.has-menu[aria-expanded="true"] .logo-icon rect:nth-child(4) {
  transform: translateY(-19px) rotate(-45deg);
}
@media (max-width: 720px) {
  .nav-menu { left: 24px; right: 24px; top: 74px; min-width: 0; }
}
@media (max-width: 600px) {
  .nav-logo .logo-word { display: none; }
  .nav-logo .logo-icon { width: 30px; }
}

/* ─── 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: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  text-shadow: 0 1px 14px rgba(0,0,0,0.85), 0 0 3px rgba(0,0,0,0.6);
  transition: opacity 0.6s;
}
.scroll-line {
  width: 1px; height: 48px; overflow: hidden; position: relative;
  background: rgba(232,226,214,0.3);
}
.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); }

/* ─── Wer wir sind ─── */
.founder {
  position: relative; z-index: 2;
  background: var(--bg);
  padding: 16vh 8vw;
}
.founder-inner { max-width: 1200px; margin: 0 auto; }
.founder-eyebrow {
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.founder-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.15; margin-bottom: 9vh;
}
.founder-title em { color: var(--gold); font-style: italic; }
.founder-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.founder-foto {
  position: relative; margin: 0;
  border: 1px solid rgba(201,163,92,0.35);
  padding: 14px; background: var(--bg-soft);
}
.founder-foto::after {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid rgba(201,163,92,0.18);
  pointer-events: none;
}
.founder-foto img { display: block; width: 100%; height: auto; }
.founder-name {
  font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.4vw, 34px);
  margin-bottom: 8px;
}
.founder-rolle {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.founder-text > p:not(.founder-rolle) {
  font-size: 15px; line-height: 1.85; color: var(--ink-dim);
  margin-bottom: 18px;
}
.founder-fakten {
  display: flex; gap: clamp(24px, 4vw, 60px);
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 24px; margin-top: 10px;
}
.founder-fakten b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2vw, 30px); color: var(--gold); margin-bottom: 4px;
}
.founder-fakten span {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.team-block { margin-top: clamp(64px, 9vh, 120px); }
.team-intro {
  font-size: 15px; line-height: 1.85; color: var(--ink-dim);
  max-width: 720px; margin-bottom: 52px;
}
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3vw;
}
.team-card {
  border-top: 1px solid rgba(201,163,92,0.25);
  padding-top: 26px;
}
.team-avatar {
  width: 64px; height: 64px; margin-bottom: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(201,163,92,0.3);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar svg {
  width: 34px; height: 34px;
  fill: none; stroke: var(--gold); stroke-width: 1.6;
}
.team-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 19px;
  margin-bottom: 10px;
}
.team-card p { font-size: 13px; line-height: 1.7; 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); }

/* ─── ProvenExpert-Siegel ─── */
/* Das Siegel ist eine helle Karte von ProvenExpert und darf nicht umgefärbt
   werden — es ist eine fremde Auszeichnung, kein Gestaltungselement. Damit es
   in der dunklen Fußzeile nicht als Fremdkörper steht, sitzt es im selben
   goldgerahmten Feld, das vorher der Bewertungs-Knopf getragen hat: gleicher
   Rahmen, gleicher Abstand, gleiche Bewegung beim Überfahren. Die 130 px
   Bildbreite bleiben unangetastet — Hochskalieren würde die Schrift im
   Siegel weich zeichnen. */
.pe-siegel {
  display: inline-block; align-self: flex-start;
  margin-top: 20px; padding: 10px;
  border: 1px solid rgba(201,163,92,0.35);
  background: rgba(201,163,92,0.04);
  line-height: 0; text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.pe-siegel:hover {
  border-color: var(--gold);
  background: rgba(201,163,92,0.09);
  transform: translateY(-2px);
}
.pe-siegel img { display: block; width: 130px; height: auto; }

/* ─── Consent-Banner ─── */
.consent {
  position: fixed; left: 50%; bottom: 24px;
  transform: translate(-50%, 24px);
  width: min(680px, calc(100vw - 32px));
  background: rgba(10,9,8,0.97);
  border: 1px solid rgba(201,163,92,0.4);
  border-top: 2px solid var(--gold);
  padding: 26px 28px 20px;
  z-index: 90;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.consent.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.consent-head {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.consent-text { font-size: 13px; line-height: 1.7; color: var(--ink-dim); margin-bottom: 18px; }
.consent-text a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,163,92,0.4); }
.consent-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consent-btn {
  font-family: inherit; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 13px 26px; cursor: pointer; transition: all 0.3s;
}
.consent-accept {
  background: var(--gold); color: #0a0908; border: 1px solid var(--gold); font-weight: 600;
}
.consent-accept:hover { background: #d9b878; border-color: #d9b878; }
.consent-decline {
  background: transparent; color: var(--ink-dim); border: 1px solid rgba(232,226,214,0.25);
}
.consent-decline:hover { color: var(--ink); border-color: rgba(232,226,214,0.5); }
.consent-note { font-size: 10.5px; color: rgba(138,131,119,0.75); margin-top: 14px; }
@media (max-width: 600px) {
  .consent { bottom: 12px; padding: 22px 20px 16px; }
  .consent-actions { flex-direction: column; }
  .consent-btn { width: 100%; }
}
.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; }
  .founder-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .founder-foto { max-width: 440px; margin: 0 auto; }
  .founder-fakten { flex-wrap: wrap; gap: 22px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-grid .footer-col { min-width: 0; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .calcband-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  /* Der Knopf lief auf schmalen Displays aus dem Rahmen heraus:
     er füllt jetzt die Breite und steht mittig, der Text darf umbrechen. */
  .calcband-btn {
    align-self: stretch; padding: 16px 20px;
    white-space: normal; text-align: center;
    letter-spacing: 0.24em; line-height: 1.6;
  }
  .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; }
}


/* ═══════════ EASTER EGG: Die Lampe schaltet das Licht ═══════════
   Klick auf die Stehlampe im fertig renovierten Zimmer wechselt die
   ganze Seite in die helle Variante — und zurück. */

/* ── Tageslicht: kaum merkliche Bewegung im Sonnenstrahl, wie echtes Licht ── */
.tageslicht { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tageslicht::before {
  content: ''; position: absolute; left: -12%; top: -18%; width: 85%; height: 130%;
  background: radial-gradient(ellipse 46% 34% at 30% 34%, rgba(255,214,150,0.16), transparent 68%);
  mix-blend-mode: screen;
  animation: sonnenatem 17s ease-in-out infinite;
}
.tageslicht::after {
  content: ''; position: absolute; left: 4%; top: -8%; width: 70%; height: 120%;
  background: linear-gradient(118deg, transparent 30%, rgba(255,225,170,0.10) 46%, transparent 62%);
  mix-blend-mode: screen;
  animation: sonnenzug 26s ease-in-out infinite;
}
@keyframes sonnenatem {
  0%, 100% { opacity: 0.55; transform: translate3d(0,0,0) scale(1); }
  45%      { opacity: 1;    transform: translate3d(1.2%, 0.8%, 0) scale(1.04); }
  70%      { opacity: 0.7;  transform: translate3d(-0.6%, 0.3%, 0) scale(1.01); }
}
@keyframes sonnenzug {
  0%, 100% { opacity: 0.5; transform: translate3d(0,0,0) skewX(0deg); }
  50%      { opacity: 0.95; transform: translate3d(1.8%, 0, 0) skewX(-1.2deg); }
}

/* ── Die Lampe: unsichtbarer Schalter mit leisem Schimmer als Einladung ── */
.lampe {
  position: absolute; z-index: 6;
  width: 84px; height: 84px; margin: -42px 0 0 -42px;
  background: none; border: none; padding: 0; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity 0.6s ease;
}
.lampe.bereit { opacity: 1; pointer-events: auto; }
.lampe::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 32px; height: 32px; margin: -16px 0 0 -16px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,216,150,0);
  animation: lampenwink 5s ease-in-out infinite;
}
/* Hover-Hinweis: kleine Pille über dem Schirm */
.lampe::before {
  content: 'Licht einschalten';
  position: absolute; left: 50%; bottom: calc(100% - 4px);
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap; padding: 7px 14px; border-radius: 999px;
  background: rgba(10,9,8,0.88); border: 1px solid rgba(201,163,92,0.45);
  color: #e8e2d6; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lampe:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }
html.hell .lampe::before {
  content: 'Licht ausschalten';
  background: rgba(250,247,240,0.94); color: #262014;
  border-color: rgba(138,111,60,0.45);
}

@keyframes lampenwink {
  0%, 78%, 100% { box-shadow: 0 0 0 0 rgba(255,216,150,0); }
  86% { box-shadow: 0 0 26px 10px rgba(255,216,150,0.28); }
  93% { box-shadow: 0 0 12px 4px rgba(255,216,150,0.12); }
}
html.hell .lampe::after { animation: none; }
/* Auf Touch-Geräten: größere Tippfläche für die Lampe */
@media (pointer: coarse) {
  .lampe { width: 116px; height: 116px; margin: -58px 0 0 -58px; }
}

/* ── Der Schein: die Lampe brennt wirklich ──
   Heller Kern am Schirm plus warmer Lichtkegel, der nach unten
   auf Sessel und Parkett fällt. */
.lampe { outline: none; }
.lampen-schein {
  position: absolute; left: 50%; top: 50%;
  width: calc(225px * var(--licht-skala, 0.85) * var(--licht-groesse, 1));
  height: calc(225px * var(--licht-skala, 0.85) * var(--licht-groesse, 1));
  margin: calc(-112px * var(--licht-skala, 0.85) * var(--licht-groesse, 1)) 0 0
          calc(-112px * var(--licht-skala, 0.85) * var(--licht-groesse, 1));
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,200,1) 0%, rgba(255,224,160,0.55) 18%, rgba(255,205,130,0.18) 40%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.2,0.8,0.3,1);
}
.lampen-schein::after {
  content: ''; position: absolute; left: 50%; top: 48%;
  width: calc(236px * var(--licht-skala, 0.85) * var(--licht-groesse, 1));
  height: calc(343px * var(--licht-skala, 0.85) * var(--licht-groesse, 1));
  transform: translateX(-50%) rotate(var(--kegel-winkel, -18deg));
  transform-origin: 50% 0;
  background: linear-gradient(to bottom, rgba(255,232,180,0.5) 0%, rgba(255,216,140,0.22) 38%, transparent 85%);
  -webkit-clip-path: polygon(41% 0, 59% 0, 96% 100%, 4% 100%);
  clip-path: polygon(41% 0, 59% 0, 96% 100%, 4% 100%);
  filter: blur(9px);
  mix-blend-mode: screen;
}
html.hell .lampen-schein {
  opacity: 1; transform: scale(1);
  animation: lampenflackern 0.5s steps(1) 1, lampenatem 6s ease-in-out 0.6s infinite;
}
@keyframes lampenflackern {
  0% { opacity: 0; } 30% { opacity: 0.9; } 45% { opacity: 0.2; }
  60% { opacity: 1; } 75% { opacity: 0.7; } 100% { opacity: 1; }
}
@keyframes lampenatem {
  0%, 100% { opacity: 1; } 50% { opacity: 0.86; }
}
html.hell .seq-canvas { filter: brightness(1.1) saturate(1.03); }

/* ── Lichtblitz beim Umschalten: warmer Puls von der Lampe aus ── */
.licht-blitz {
  position: fixed; z-index: 200; pointer-events: none;
  width: 60px; height: 60px; margin: -30px 0 0 -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,228,170,0.95), rgba(255,210,140,0.4) 45%, transparent 70%);
  animation: blitzauf 0.9s cubic-bezier(0.2,0.7,0.3,1) forwards;
}
@keyframes blitzauf {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(60); opacity: 0; }
}

/* ── Justier-Modus (?lampe=justieren): Licht mit der Maus setzen ── */
html.justieren .lampe { cursor: grab; }
html.justieren .lampe:active { cursor: grabbing; }
html.justieren .lampe::before { display: none; }
html.justieren .lampe::after {
  animation: none;
  box-shadow: 0 0 0 2px rgba(255,216,150,0.9), 0 0 18px 6px rgba(255,216,150,0.35);
}
.kal-panel {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 300; width: min(560px, calc(100vw - 32px));
  background: rgba(10,9,8,0.94); border: 1px solid rgba(201,163,92,0.5);
  border-radius: 12px; padding: 16px 20px; color: #e8e2d6;
  font-size: 12.5px; line-height: 1.6; backdrop-filter: blur(10px);
}
.kal-panel b { color: #c9a35c; }
.kal-panel code { font-family: ui-monospace, Menlo, monospace; color: #ffd896; font-size: 12px; }
.kal-panel .kal-knoepfe { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.kal-panel button {
  background: #c9a35c; border: none; color: #141005; font-weight: 700;
  border-radius: 7px; padding: 8px 14px; font-size: 12px; cursor: pointer;
}
.kal-panel button.leise { background: none; border: 1px solid rgba(232,226,214,0.3); color: #e8e2d6; font-weight: 400; }

/* ═══════════ HELLES THEMA (per Lampe) ═══════════ */
html.hell {
  --bg: #f5f1e8; --bg-soft: #eee8da;
  --ink: #262014; --ink-dim: #6f6553;
  --gold: #a8874a; --gold-soft: #8a6f3c;
  background: #efe9db;
}
html.hell body {
  background: linear-gradient(175deg, #faf7f0 0%, #f5f0e4 34%, #efe7d4 68%, #e7dcc4 100%);
  background-attachment: fixed;
}
html.hell .cta, html.hell .answer, html.hell .founder, html.hell .who {
  background: linear-gradient(180deg, #f8f4ec 0%, #f2ebdc 100%);
}
html.hell .stats, html.hell .pillars, html.hell .voices, html.hell .calcband {
  background: linear-gradient(180deg, #f2ebdc 0%, #ece3cf 100%);
}
html.hell .loader { background: #f8f4ec; }
html.hell .vignette {
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(5,5,5,0.5) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.35) 0%, transparent 16%, transparent 78%, #f8f4ec 100%);
}
html.hell .atmo::after {
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.55) 100%),
    linear-gradient(to bottom, #f2ebdc 0%, transparent 18%, transparent 82%, #f2ebdc 100%);
}
html.hell .hero-title, html.hell .stage-title, html.hell .stage-line, html.hell .atmo-title,
html.hell .hero-copy, html.hell .stage-copy, html.hell .atmo-copy { color: #efe9db; }
html.hell .hero-sub, html.hell .stage-kicker, html.hell .scroll-hint { color: #cfc7b6; }
html.hell .scroll-line { background: rgba(239,233,219,0.5); }
html.hell .nav {
  mix-blend-mode: normal;
  background: rgba(250,247,240,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(138,111,60,0.16);
}
html.hell .nav-menu {
  background: rgba(250,247,240,0.96);
  border-color: rgba(138,111,60,0.3);
  box-shadow: 0 18px 50px rgba(60,48,28,0.14);
}
html.hell .nav-menu-link { border-bottom-color: rgba(38,32,20,0.08); }
html.hell .story-card { border-top-color: rgba(138,111,60,0.35); }
html.hell .chart-wrap { border-color: rgba(38,32,20,0.12); }
html.hell .consent {
  background: rgba(250,247,240,0.97);
  box-shadow: 0 18px 50px rgba(60,48,28,0.16);
}
html.hell .consent-decline { border-color: rgba(38,32,20,0.25); }
html.hell .consent-decline:hover { border-color: rgba(38,32,20,0.5); }
html.hell .cta-title, html.hell .answer-title { text-shadow: none; }
