/* ============================================================
   SCHRAMM STRATEGIEBERATUNG — style.css
   Dark Prestige · Gold · Schach · Cinematisch
   ============================================================ */

/* ── GOOGLE FONTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & ROOT ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #080808;
  --bg-2:         #0f0f0f;
  --bg-3:         #141414;
  --bg-4:         #1a1a1a;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dim:     rgba(201,168,76,0.10);
  --gold-border:  rgba(201,168,76,0.22);
  --gold-glow:    rgba(201,168,76,0.08);
  --text:         #EDE8DC;
  --text-muted:   #8A8478;
  --text-dim:     #4A4640;
  --white:        #ffffff;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow-gold:  0 0 60px rgba(201,168,76,0.12);
  --shadow-dark:  0 20px 60px rgba(0,0,0,0.7);
  --transition:   0.45s cubic-bezier(0.16,1,0.3,1);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-muted); line-height: 1.9; }
a { color: inherit; text-decoration: none; }

em { font-style: italic; color: var(--gold); }
strong { color: var(--text); font-weight: 600; }

.serif { font-family: var(--font-serif); }
.gold  { color: var(--gold); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.wrap--narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 7rem 0; }
.section-pad--sm { padding: 4rem 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.92rem; font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.04);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gold-border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before { content: '♟ '; opacity: 0.7; }

/* ── DIVIDER ────────────────────────────────────────────────── */
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line--center { margin: 1.5rem auto; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.8) 0%, rgba(8,8,8,0) 100%);
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--gold-border);
  padding: 1rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

/* Split-Nav: links | LOGO | rechts */
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Logo — exakt in der Mitte */
.nav__logo {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  justify-content: center;
}
.nav__logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.45));
  transition: filter 0.3s;
}
.nav__logo:hover .nav__logo-icon {
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.8));
}
.nav__logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1;
  margin-top: 3px;
}

/* Links-Gruppe links — rechtsbündig */
.nav__links {
  display: flex; align-items: center;
  list-style: none; gap: 0;
}
.nav__links--left  { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }

/* Vertikale Gold-Trennlinie neben dem Logo */
.nav__links--left  { padding-right: 1.5rem; border-right: 1px solid var(--gold-border); }
.nav__links--right { padding-left:  1.5rem; border-left:  1px solid var(--gold-border); }

/* Nav-Link Stil */
.nav__links > li > a,
.nav__dropdown-wrap > a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.5);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav__links > li > a::after,
.nav__dropdown-wrap > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav__links > li > a:hover,
.nav__links > li > a.active,
.nav__dropdown-wrap > a:hover,
.nav__dropdown-wrap > a.active {
  color: var(--text);
}
.nav__links > li > a:hover::after,
.nav__links > li > a.active::after,
.nav__dropdown-wrap > a:hover::after,
.nav__dropdown-wrap > a.active::after {
  transform: scaleX(1);
}

/* CTA im rechten Menü */
.nav__cta-item { margin-left: 0.75rem; }
.btn--nav {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3px !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
}
.btn--nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.btn--nav::after {
  content: none !important;
}
.btn--nav:hover {
  color: #0a0a0a !important;
  box-shadow: 0 0 18px rgba(201,168,76,0.35) !important;
  transform: none !important;
}
.btn--nav:hover::before {
  transform: scaleX(1);
}
.btn--nav span {
  position: relative;
  z-index: 1;
}

/* Nav Icon (Schachfigur) */
.nav__icon {
  font-size: 0.75rem;
  margin-right: 0.35rem;
  opacity: 0.35;
  transition: opacity 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  display: inline-block;
  vertical-align: baseline;
  color: var(--gold);
}
.nav__links > li > a:hover .nav__icon,
.nav__links > li > a.active .nav__icon,
.nav__dropdown-wrap > a:hover .nav__icon,
.nav__dropdown-wrap > a.active .nav__icon {
  opacity: 1;
  transform: translateY(-1px) scale(1.15);
}

/* Mobile Icon */
.nav__mobile-icon {
  font-size: 1.1rem;
  margin-right: 0.7rem;
  opacity: 0.3;
  color: var(--gold);
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.nav__mobile-links a:hover .nav__mobile-icon { opacity: 1; transform: scale(1.2); }
.nav__mobile-links a.nav__mobile-sub .nav__mobile-icon { font-size: 0.85rem; opacity: 0.25; }

/* Dropdown */
.nav__dropdown-wrap { position: relative; }
.nav__chevron {
  font-size: 0.58rem; margin-left: 0.3rem; opacity: 0.45;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  display: inline-block; vertical-align: middle;
}
.nav__dropdown-wrap:hover .nav__chevron { transform: rotate(90deg); opacity: 1; }

.nav__dropdown {
  opacity: 0; pointer-events: none; visibility: hidden;
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(9,8,6,0.99);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  min-width: 220px;
  list-style: none; padding: 0.5rem 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.75);
  z-index: 200;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.25s;
}
.nav__dropdown::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: rgba(9,8,6,0.99);
  border-left: 1px solid var(--gold-border);
  border-top: 1px solid var(--gold-border);
}
/* Invisible hover bridge — fills the gap between trigger and dropdown */
.nav__dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 18px; /* covers the 14px gap + a bit extra */
  background: transparent;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
}
.nav__dropdown li + li { border-top: 1px solid rgba(201,168,76,0.07); }
.nav__dropdown li a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.07em;
  color: rgba(237,232,220,0.55);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}
.nav__dropdown li a::before {
  content: '♟'; font-size: 0.6rem; color: var(--gold);
  opacity: 0; transition: opacity 0.2s; flex-shrink: 0;
}
.nav__dropdown li a::after { display: none; }
.nav__dropdown li a:hover {
  color: var(--gold); background: rgba(201,168,76,0.05); padding-left: 1.5rem;
}
.nav__dropdown li a:hover::before { opacity: 1; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENÜ ── */
.nav__backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.nav__backdrop.open { display: block; }

.nav__mobile {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(360px, 90vw);
  background: #09080600;
  background: rgba(9,8,6,0.99);
  border-left: 1px solid var(--gold-border);
  z-index: 999;
  padding: 2rem 2.5rem 2.5rem;
  transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.nav__mobile.open { right: 0; }

.nav__mobile-close {
  align-self: flex-end;
  background: none; border: none;
  color: rgba(237,232,220,0.4);
  font-size: 1.1rem; cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.nav__mobile-close:hover { color: var(--gold); }

.nav__mobile-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-border);
}

.nav__mobile-links {
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.nav__mobile-links a {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400;
  color: rgba(237,232,220,0.45);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}
.nav__mobile-links a:hover { color: var(--gold); padding-left: 0.5rem; }
.nav__mobile-links a.nav__mobile-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  padding: 0.5rem 0 0.5rem 1rem;
  border-bottom: none;
}
.nav__mobile-links a.nav__mobile-sub:hover { color: var(--gold); padding-left: 1.5rem; }

.nav__mobile-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
}
.nav__mobile-leitsatz {
  margin-top: 1.2rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(237,232,220,0.25);
  text-align: center;
  font-style: italic;
}


/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  max-height: 100svh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Schachbrett-Hintergrund */
.hero__chess-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Schwebende Schachfiguren */
.hero__pieces {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.chess-piece {
  position: absolute;
  font-size: 3rem;
  opacity: 0.04;
  animation: floatPiece linear infinite;
  filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(1.5);
}
.chess-piece:nth-child(1)  { left: 5%;   top: 15%; font-size: 4rem; animation-duration: 22s; animation-delay: 0s; }
.chess-piece:nth-child(2)  { left: 88%;  top: 20%; font-size: 2.5rem; animation-duration: 18s; animation-delay: -6s; }
.chess-piece:nth-child(3)  { left: 15%;  top: 70%; font-size: 3.5rem; animation-duration: 25s; animation-delay: -3s; }
.chess-piece:nth-child(4)  { left: 75%;  top: 65%; font-size: 2rem;   animation-duration: 20s; animation-delay: -10s; }
.chess-piece:nth-child(5)  { left: 45%;  top: 85%; font-size: 5rem;   animation-duration: 30s; animation-delay: -15s; opacity: 0.025; }
.chess-piece:nth-child(6)  { left: 60%;  top: 10%; font-size: 2.2rem; animation-duration: 16s; animation-delay: -8s; }

@keyframes floatPiece {
  0%   { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-30px) rotate(5deg); }
  66%  { transform: translateY(15px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.6; transform: translate(-50%,-50%) scale(1.1); }
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
  width: 100%;
}

.hero__overline {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__overline-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}
.hero__overline span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.08rem; line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.hero__ctas {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.2rem;
}

.hero__stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--gold-border);
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 3px;
}
.hero__stat-divider {
  width: 1px; height: 36px;
  background: var(--gold-border);
}

/* Schachbrett visuell rechts */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.chess-board-3d {
  position: relative;
  width: 420px; height: 420px;
}
.chess-board-3d__grid {
  display: grid; grid-template-columns: repeat(8,1fr);
  width: 100%; height: 100%;
  border: 1px solid var(--gold-border);
  transform: perspective(800px) rotateX(20deg) rotateY(-8deg);
  box-shadow: var(--shadow-gold), var(--shadow-dark);
  overflow: hidden; border-radius: 4px;
}
.chess-board-3d__cell {
  aspect-ratio: 1;
  transition: background 0.3s;
}
.chess-board-3d__cell.light { background: rgba(201,168,76,0.06); }
.chess-board-3d__cell.dark  { background: rgba(0,0,0,0.4); }
.chess-board-3d__cell.active-light { background: rgba(201,168,76,0.2); }
.chess-board-3d__cell.active-dark  { background: rgba(201,168,76,0.12); }
.chess-board-3d__cell.highlight { background: rgba(201,168,76,0.35) !important; }

.chess-board-3d__piece {
  position: absolute;
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.5));
  animation: pieceFloat 4s ease-in-out infinite;
  cursor: default;
}
.chess-board-3d__piece.king {
  bottom: 42%; left: 44%;
  font-size: 3.5rem;
  animation-duration: 5s;
}
@keyframes pieceFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.chess-board-3d__label {
  position: absolute;
  bottom: -3rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  white-space: nowrap;
}

/* ── QUOTE SECTION ──────────────────────────────────────────── */
.quote-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  pointer-events: none;
}
.quote-block {
  text-align: center; position: relative; z-index: 1;
}
.quote-block__symbol {
  font-family: var(--font-serif);
  font-size: 8rem; line-height: 0.5;
  color: var(--gold); opacity: 0.15;
  display: block; margin-bottom: -1rem;
  font-weight: 900;
}
.quote-block__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700; font-style: italic;
  color: var(--text);
  line-height: 1.4;
  max-width: 780px; margin: 0 auto 1.5rem;
}
.quote-block__author {
  font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

/* ── PRINCIPLES ─────────────────────────────────────────────── */
.principles-section { background: var(--bg-2); }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 540px; margin: 0 auto; }

.principle-item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.principle-item:last-child { border-bottom: none; }
.principle-item:hover { transform: translateX(8px); }

.principle-num {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 900;
  color: var(--gold); opacity: 0.15;
  line-height: 1; min-width: 70px;
  transition: opacity 0.3s;
}
.principle-item:hover .principle-num { opacity: 0.4; }

.principle-icon {
  font-size: 1.4rem; margin-bottom: 0.5rem;
}
.principle-content h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.principle-content p { font-size: 0.92rem; }

/* ── SYSTEM SECTION ─────────────────────────────────────────── */
.system-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.system-card {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.system-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.system-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.system-card:hover::before { opacity: 1; }

.system-card__num {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 900;
  color: var(--gold); opacity: 0.08;
  line-height: 1; margin-bottom: -1rem;
}
.system-card__icon {
  font-size: 1.8rem; margin-bottom: 1rem;
}
.system-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.system-card p { font-size: 0.88rem; line-height: 1.8; }

/* ── STORY SECTION ──────────────────────────────────────────── */
.story-section { background: var(--bg); }

.story-block {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 5rem; align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.story-block:last-child { border-bottom: none; }

.story-block__label {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 900;
  color: var(--gold); opacity: 0.12;
  line-height: 1;
}
.story-block__content h3 { margin-bottom: 1.2rem; }
.story-block__content p { margin-bottom: 1rem; font-size: 0.95rem; }
.story-block__content p:last-child { margin-bottom: 0; }

/* ── CHESS QUOTE ────────────────────────────────────────────── */
.chess-metaphor {
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.chess-metaphor::before {
  content: '♟';
  position: absolute; right: -2rem; bottom: -3rem;
  font-size: 20rem; opacity: 0.025;
  pointer-events: none; line-height: 1;
  filter: sepia(1) saturate(3) hue-rotate(10deg);
}

.metaphor-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.metaphor-text h2 { margin-bottom: 1.5rem; }
.metaphor-text p { margin-bottom: 1.2rem; font-size: 0.95rem; }
.metaphor-points {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.metaphor-point {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-3);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}
.metaphor-point:hover { transform: translateX(6px); background: var(--bg-4); }
.metaphor-point__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.metaphor-point h4 { font-size: 0.92rem; margin-bottom: 0.25rem; }
.metaphor-point p  { font-size: 0.82rem; margin: 0; }

/* Mini Schachbrett */
.chess-mini-board {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 4px;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-gold);
}
.chess-mini-cell {
  aspect-ratio: 1; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s;
}
.chess-mini-cell.light { background: rgba(201,168,76,0.06); }
.chess-mini-cell.dark  { background: rgba(0,0,0,0.3); }
.chess-mini-cell.piece { background: rgba(201,168,76,0.15); }
.chess-mini-cell:hover { background: rgba(201,168,76,0.25) !important; transform: scale(1.1); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.05), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1.2rem; }
.cta-inner p  { margin-bottom: 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-detail__icon { font-size: 1.2rem; color: var(--gold); width: 28px; }
.contact-detail__text { font-size: 0.9rem; color: var(--text-muted); }
.contact-detail__text strong { display: block; color: var(--text); font-size: 0.85rem; margin-bottom: 2px; }

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-family: var(--font-sans); font-size: 0.9rem;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   STORY CTA — Vollbild mit Hintergrundbild
   ═══════════════════════════════════════════════════════ */
.story-cta {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.story-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  filter: grayscale(15%) brightness(0.7) contrast(1.1);
  transform: scale(1.04);
  transition: transform 10s ease;
}
.story-cta:hover .story-cta__bg { transform: scale(1.0); }
.story-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.82) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.2) 40%, rgba(8,8,8,0.6) 100%);
  pointer-events: none;
}
.story-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 6rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
/* Eyebrow mit Linien */
.story-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 2.5rem;
}
.story-cta__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}
/* Headline */
.story-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.story-cta__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}
/* Sub */
.story-cta__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(237,232,220,0.5);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 3rem;
}
/* Buttons */
.story-cta__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.story-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.story-cta__btn--primary {
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
}
.story-cta__btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.story-cta__btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(237,232,220,0.25);
}
.story-cta__btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
/* Leitsatz */
.story-cta__leitsatz {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(237,232,220,0.35);
  margin: 0;
}
.story-cta__leitsatz-chess {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1rem;
}
.story-cta__leitsatz em { font-style: italic; }
.story-cta__leitsatz-attr {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
  font-style: normal;
}
@media (max-width: 600px) {
  .story-cta { min-height: auto; }
  .story-cta__bg { background-attachment: scroll; }
  .story-cta__actions { flex-direction: column; width: 100%; }
  .story-cta__btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   SITE FOOTER — Premium 4-Spalten
   ═══════════════════════════════════════════════════════ */

/* Leitsatz-Leiste oben */
.site-footer__top {
  border-top: 1px solid rgba(201,168,76,0.12);
  background: #0a0a0a;
  padding: 2.5rem 0;
}
.site-footer__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer__leitsatz {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(237,232,220,0.55);
  margin: 0;
}
.site-footer__leitsatz-chess {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  font-style: normal;
}
.site-footer__cta {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.75rem 1.8rem;
}

/* Hauptbereich */
.site-footer {
  background: #080808;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

/* Brand-Spalte */
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.site-footer__logo-chess {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.site-footer__logo strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.site-footer__logo span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}
.site-footer__desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 320px;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
a.site-footer__contact-item:hover { color: var(--gold); }
a.site-footer__instagram:hover .site-footer__contact-icon svg { opacity: 1; }
.site-footer__contact-icon {
  width: 20px;
  text-align: center;
  color: var(--gold);
  opacity: 0.55;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.site-footer__contact-icon svg {
  fill: var(--gold);
  opacity: 0.55;
  transition: opacity 0.25s;
  vertical-align: middle;
}

/* Link-Spalten */
.site-footer__col-title {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.site-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: block;
}
.site-footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Badge */
.site-footer__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  background: rgba(201,168,76,0.03);
  width: fit-content;
}
.site-footer__badge-chess {
  color: var(--gold);
  opacity: 0.5;
  font-size: 1rem;
}
.site-footer__badge span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Bottom Bar */
.site-footer__bottom {
  padding: 1.5rem 0;
  background: #060606;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(237,232,220,0.25);
}
.site-footer__bottom-sep { opacity: 0.3; }
.site-footer__bottom-inner a {
  color: rgba(201,168,76,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.site-footer__bottom-inner a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 3rem;
  }
  .site-footer__top-inner { flex-direction: column; align-items: flex-start; }
  .site-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ── PAGE HERO (Unterseiten) ────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}
.page-hero__chess-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── TRUTH CARDS ────────────────────────────────────────────── */
.truth-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.truth-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.truth-card::after {
  content: attr(data-num);
  position: absolute; right: 1.5rem; bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 900;
  color: var(--gold); opacity: 0.05;
  line-height: 1;
}
.truth-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.truth-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.truth-card h3    { font-size: 1.2rem; margin-bottom: 0.75rem; }
.truth-card p     { font-size: 0.88rem; line-height: 1.85; }

/* ── REVEAL ANIMATIONEN ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.visible {
  transform: translateX(0);
}

/* ── PROGRESS BAR ───────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 9999; transition: width 0.1s;
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* ── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem; color: var(--text);
  box-shadow: var(--shadow-dark);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 9990;
  display: flex; align-items: center; gap: 0.75rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   STARTSEITEN-SPEZIFISCHE SEKTIONEN
   ══════════════════════════════════════════════════════════════ */

/* ── §1 FULLSCREEN STATEMENT ─────────────────────────────────── */
.fs-statement {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  position: relative; overflow: hidden;
  padding: 6rem 2rem;
}
.fs-statement__inner {
  position: relative; z-index: 2;
  text-align: center;
}
.fs-statement__label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
}
.fs-statement__quote {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text);
  border: none; padding: 0; margin: 0 0 2rem;
}
.fs-statement__quote em {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fs-statement__sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 400px; margin: 0 auto;
}
/* Ghost-Zahl Hintergrund */
.fs-statement__bg-num {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 60vw; font-weight: 900;
  color: var(--gold); opacity: 0.015;
  line-height: 1; pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  user-select: none;
}

/* ── §2 SPLIT + TIMELINE ─────────────────────────────────────── */
.split-timeline {
  display: grid; grid-template-columns: 1fr 1.4fr;
  min-height: 70vh;
  background: var(--bg-2);
}
.split-timeline__left {
  padding: 6rem 4rem 6rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
  position: sticky; top: 0; align-self: start;
  height: 100vh;
}
.split-timeline__left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}
.split-timeline__left p { margin-top: 1.5rem; font-size: 0.95rem; }
.split-timeline__right {
  padding: 6rem 5vw 6rem 3rem;
  border-left: 1px solid var(--gold-border);
  display: flex; flex-direction: column; gap: 0;
}

/* Timeline Items */
.tl-item {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 1.5rem; position: relative;
  padding-bottom: 3rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item__line {
  position: absolute; left: 13px; top: 34px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
}
.tl-item:last-child .tl-item__line { display: none; }
.tl-item__dot {
  width: 28px; height: 28px;
  background: var(--bg-3);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0; margin-top: 4px;
  transition: var(--transition);
  z-index: 1;
}
.tl-item:hover .tl-item__dot {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.2);
}
.tl-item__body h4 {
  font-size: 1rem; margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}
.tl-item__body p { font-size: 0.85rem; line-height: 1.8; }

/* ── §3 ABOUT FULLBLEED ──────────────────────────────────────── */
.about-fullbleed {
  background: var(--bg);
  position: relative; overflow: hidden;
  padding: 7rem 0;
}
.about-fullbleed__piece {
  position: absolute; right: -3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 28rem; line-height: 1;
  color: var(--gold); opacity: 0.03;
  pointer-events: none; user-select: none;
  filter: sepia(1) saturate(3);
}
.about-fullbleed__grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 6rem; align-items: center;
}
.about-fullbleed__initials {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}
.about-fullbleed__tag {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 1rem;
}
.about-fullbleed__text h2 { margin-bottom: 1rem; }
.about-fullbleed__text p  { margin-bottom: 1.2rem; font-size: 0.95rem; }

/* ── §4 MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg-3);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.4rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.marquee-track:hover span:hover { color: var(--gold); }
.marquee-sep {
  color: var(--gold) !important;
  opacity: 0.6;
  font-size: 1rem !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── §5 STEPS ────────────────────────────────────────────────── */
.steps-section {
  background: var(--bg-2);
  padding: 7rem 0;
}
.steps-header {
  margin-bottom: 4rem;
}
.steps-header h2 { font-size: clamp(2rem,3.5vw,3rem); margin-bottom:0.75rem; }
.steps-header p  { font-size:0.95rem; }

.steps-list { display: flex; flex-direction: column; }

.step-row {
  display: grid;
  grid-template-columns: 72px 52px 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: var(--transition);
}
.step-row:last-child { border-bottom: none; }
.step-row:hover { transform: translateX(10px); }
.step-row:hover .step-row__line {
  width: 100%;
  opacity: 1;
}
.step-row__num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 900;
  color: var(--gold); opacity: 0.15;
  line-height: 1;
  transition: opacity 0.3s;
}
.step-row:hover .step-row__num { opacity: 0.5; }
.step-row__icon {
  font-size: 1.8rem; text-align: center;
  transition: transform 0.4s;
}
.step-row:hover .step-row__icon { transform: scale(1.3) rotate(-8deg); }
.step-row__content h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step-row__content p  { font-size: 0.85rem; }
.step-row__line {
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  opacity: 0; transition: width 0.5s ease, opacity 0.3s;
}

/* ── §6 CHESS BANNER ─────────────────────────────────────────── */
.chess-banner {
  background: var(--bg);
  position: relative; overflow: hidden;
  padding: 7rem 0;
}
.chess-banner__bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  color: var(--gold); opacity: 0.025;
  top: 50%; right: -2rem;
  transform: translateY(-50%);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em; line-height: 1;
}
.chess-banner__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.chess-banner__text h2 { margin-bottom: 1.2rem; }
.chess-banner__text p  { margin-bottom: 1rem; font-size: 0.95rem; }
.chess-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  min-width: 120px; flex: 1;
  transition: var(--transition);
}
.chess-stat:hover { border-color: var(--gold); transform: translateY(-4px); }
.chess-stat span { font-size: 1.8rem; }
.chess-stat p    { font-size: 0.75rem; text-align: center; margin: 0; color: var(--text-muted); }
.chess-banner__board { display: flex; justify-content: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; gap: 3rem; padding-top: 9rem; }
  .chess-board-3d { width: 320px; height: 320px; }
  .metaphor-grid  { grid-template-columns: 1fr; }
  .contact-split  { grid-template-columns: 1fr; }
  .story-block    { grid-template-columns: 1fr; gap: 2rem; }
  .split-timeline { grid-template-columns: 1fr; }
  .split-timeline__left { position: static; height: auto; padding: 4rem 2rem 2rem; }
  .split-timeline__right { padding: 2rem 2rem 4rem; border-left: none; border-top: 1px solid var(--gold-border); }
  .about-fullbleed__grid { grid-template-columns: 1fr; gap: 3rem; }
  .chess-banner__inner { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 52px 40px 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { gap: 1.5rem; }
  .section-pad { padding: 4rem 0; }
  .system-grid { grid-template-columns: 1fr; }
  .truth-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .chess-board-3d { width: 260px; height: 260px; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .fs-statement__quote { font-size: clamp(2rem, 8vw, 3.5rem); }
  .step-row { grid-template-columns: 40px 1fr; }
  .step-row__icon { display: none; }
  .colab-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-divider { display: none; }
  .split-timeline__left { padding: 3rem 1.5rem 1.5rem; }
  .split-timeline__right { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background-color: #0a0a0a;
  background-image: url('../img/ladebildschirm.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
}
.preloader::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.75);
  z-index: 1;
}
.preloader__curtain {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--gold); z-index: 3;
  transform: scaleY(0);
}
.preloader__curtain--top    { top: 0; transform-origin: top; }
.preloader__curtain--bottom { bottom: 0; transform-origin: bottom; }
.preloader__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  text-align: center;
}.preloader__king {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--gold);
  animation: preloaderKing 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(200,168,75,0.5));
}
@keyframes preloaderKing {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.05); }
}
.preloader__bar-wrap {
  width: 220px; height: 2px;
  background: rgba(200,168,75,0.2);
  border-radius: 9px; overflow: hidden;
}
.preloader__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 9px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(200,168,75,0.5);
}
.preloader__label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim-text, #9a8040);
}
.preloader--hidden { pointer-events: none; }
.preloader--out .preloader__curtain--top    { animation: curtainTop    0.7s cubic-bezier(0.76,0,0.24,1) forwards; }
.preloader--out .preloader__curtain--bottom { animation: curtainBottom 0.7s cubic-bezier(0.76,0,0.24,1) forwards; }
@keyframes curtainTop    { 0%{transform:scaleY(0)} 100%{transform:scaleY(1)} }
@keyframes curtainBottom { 0%{transform:scaleY(0)} 100%{transform:scaleY(1)} }
.preloader--away { animation: preloaderAway 0.4s ease forwards; }
@keyframes preloaderAway { to { opacity:0; pointer-events:none; } }

/* page hidden until preloader done */
body.loading { overflow: hidden; }
body.loading .site-header,
body.loading main,
body.loading .site-footer { opacity: 0; }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL CLASSES
   ══════════════════════════════════════════════════════════════ */
/* .cin-fade-up — hero intro (plays once, CSS driven) */
.cin-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: cinFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: var(--cin-delay, 0s);
  animation-play-state: paused;
}
body:not(.loading) .cin-fade-up { animation-play-state: running; }
@keyframes cinFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* .s-fade-up, .s-fade-left, .s-clip-up — IntersectionObserver driven */
.s-fade-up,
.s-fade-left,
.s-clip-up {
  transition-property: opacity, transform, clip-path;
  transition-timing-function: cubic-bezier(0.22,1,0.36,1);
  transition-duration: 0.85s;
  transition-delay: var(--s-delay, 0s);
}
.s-fade-up   { opacity: 0; transform: translateY(40px); }
.s-fade-left { opacity: 0; transform: translateX(-50px); }
.s-clip-up   { opacity: 0; clip-path: inset(100% 0 0 0); }

.s-fade-up.is-visible   { opacity: 1; transform: translateY(0); }
.s-fade-left.is-visible { opacity: 1; transform: translateX(0); }
.s-clip-up.is-visible   { opacity: 1; clip-path: inset(0% 0 0 0); }

/* ══════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ══════════════════════════════════════════════════════════════ */
.img-placeholder {
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #141414 100%);
  border: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(200,168,75,0.35); text-align: center;
  position: relative; overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.04) 0%, transparent 70%);
}
.img-placeholder__icon { font-size: 3rem; display: block; }
.img-placeholder__text { font-size: 0.7rem; color: #555; line-height: 1.5; }

.img-placeholder--bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #181818 50%, #0c0c0c 100%);
}
.img-placeholder__bg-icon {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  font-size: clamp(6rem, 20vw, 15rem);
  color: rgba(200,168,75,0.04); pointer-events: none; user-select: none;
}

.img-placeholder--strip {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 8px;
}
.img-placeholder--faq {
  width: 100%; aspect-ratio: 1;
  border-radius: 8px; margin-top: 2rem;
  min-height: 200px;
}
.img-placeholder--chess {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SPLIT (§3)
   ══════════════════════════════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 85vh; overflow: hidden;
}
.about-split__img-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); padding: 4rem 3rem;
}
.about-split__text-col {
  padding: 6rem 5rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.about-split__text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.15; margin: 1rem 0 1.5rem;
  color: var(--text);
}
.about-split__text-col p {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1.25rem; max-width: 52ch;
}
.about-split__stats {
  display: flex; align-items: center; gap: 0;
  margin: 2.5rem 0; flex-wrap: wrap; gap: 0;
}
.about-stat {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0 1.5rem;
}
.about-stat:first-child { padding-left: 0; }
.about-stat__icon { font-size: 1.4rem; color: var(--gold); }
.about-stat__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.about-stat__sep {
  width: 1px; height: 36px;
  background: var(--gold-border);
}

/* ══════════════════════════════════════════════════════════════
   IMAGE FRAME
   ══════════════════════════════════════════════════════════════ */
.img-frame { position: relative; }
.img-frame__inner {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  border-radius: 4px; overflow: hidden;
  background: #141414;
}
.img-frame__inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-frame__border {
  position: absolute; inset: -8px -8px 8px 8px;
  border: 1px solid var(--gold-border);
  border-radius: 4px; pointer-events: none; z-index: 0;
}
.img-frame--square .img-frame__inner { height: 420px; }
.img-frame__tag {
  position: absolute; bottom: -1rem; left: 2rem;
  background: var(--gold); color: #0a0a0a;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 2px;
  display: flex; align-items: center; gap: 0.5rem;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   IMG-QUOTE FULLBLEED (§6)
   ══════════════════════════════════════════════════════════════ */
.img-quote-section {
  position: relative; min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.img-quote__bg {
  position: absolute; inset: 0;
  background-attachment: fixed;
}
.img-quote__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-quote__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(1px);
}
.img-quote__inner {
  position: relative; z-index: 2; text-align: center;
  padding: 5rem 2rem;
}
.img-quote__content { display: block; }
.img-quote__open {
  font-family: var(--font-serif);
  font-size: 8rem; line-height: 0.6;
  color: var(--gold); opacity: 0.5;
  display: block; margin-bottom: 0.5rem;
}
.img-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700; color: var(--text);
  line-height: 1.2; margin: 0 0 1.5rem;
}
.img-quote__author {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   STEPS SECTION (§7)
   ══════════════════════════════════════════════════════════════ */
.steps-section { background: var(--bg-2); padding: 7rem 0; }
.steps-header { text-align: center; margin-bottom: 4rem; }
.steps-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin: 0.5rem 0 1rem;
}
.steps-header p { color: var(--text-muted); }
.steps-list { max-width: 820px; margin: 0 auto; }
.step-row {
  display: grid;
  grid-template-columns: 64px 44px 1fr;
  align-items: start; gap: 0 1.5rem;
  padding: 2rem 0;
  position: relative;
}
.step-row + .step-row::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gold-border);
}
.step-row__num {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(200,168,75,0.15);
  line-height: 1;
  padding-top: 0.2rem;
}
.step-row__icon {
  font-size: 1.6rem;
  color: var(--gold);
  padding-top: 0.25rem;
  line-height: 1;
}
.step-row__content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; margin: 0 0 0.5rem;
  color: var(--text);
}
.step-row__content p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.93rem; }
.step-row__line { display: none; }

/* ══════════════════════════════════════════════════════════════
   IMAGE STRIP (§9)
   ══════════════════════════════════════════════════════════════ */
.img-strip { background: var(--bg); padding: 5rem 0; }
.img-strip__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.img-strip__frame {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 6px;
  cursor: pointer;
  transition: transform 0.5s ease;
  background: #141414;
}
.img-strip__frame:hover { transform: scale(1.02); }
.img-strip__frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.img-strip__frame:hover img { transform: scale(1.06); }
.img-strip__caption {
  margin-top: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: center;
}
.img-strip__item { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════════════════════
   PRINZIPIEN HORIZONTAL SCROLL (§10)
   ══════════════════════════════════════════════════════════════ */
.prinzip-scroll { background: var(--bg-2); padding: 6rem 0; overflow: hidden; }
.section-header-left { margin-bottom: 3rem; }
.section-header-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.5rem 0; color: var(--text);
}
.prinzip-track-wrap {
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--gold-border) transparent;
  padding-bottom: 1.5rem;
  /* indent to align with wrap */
  padding-left: max(2rem, calc((100vw - 1200px)/2));
}
.prinzip-track-wrap::-webkit-scrollbar { height: 3px; }
.prinzip-track-wrap::-webkit-scrollbar-track { background: transparent; }
.prinzip-track-wrap::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 9px; }
.prinzip-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  padding-right: 3rem;
}
.prinzip-card {
  width: 280px; flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.prinzip-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.prinzip-card__num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 700;
  color: rgba(200,168,75,0.12);
  line-height: 1; margin-bottom: 0.25rem;
}
.prinzip-card__icon {
  font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; display: block;
}
.prinzip-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; margin: 0 0 0.75rem;
  color: var(--text);
}
.prinzip-card p {
  font-size: 0.87rem; color: var(--text-muted);
  line-height: 1.65; margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   FAQ (§11)
   ══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); padding: 8rem 0; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.faq-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1; margin: 0.5rem 0 1.5rem;
}
.faq-left p { color: var(--text-muted); line-height: 1.75; max-width: 40ch; }
.faq-item {
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gold-border); }
.faq-item__trigger {
  width: 100%; background: transparent; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left; gap: 1rem;
  transition: color 0.25s;
}
.faq-item__trigger:hover { color: var(--gold); }
.faq-item__q {
  font-size: 1rem; font-weight: 500;
  color: var(--text); transition: color 0.25s;
  line-height: 1.4;
}
.faq-item__trigger:hover .faq-item__q { color: var(--gold); }
.faq-item__icon { flex-shrink: 0; color: var(--gold); transition: transform 0.3s ease; }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__trigger[aria-expanded="true"] .faq-v { opacity: 0; transform: scaleY(0); transform-origin: center; transition: all 0.25s; }
.faq-v { transition: all 0.25s; }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
}
.faq-item__body p {
  color: var(--text-muted); line-height: 1.8;
  padding: 0 0 1.5rem; margin: 0;
  font-size: 0.93rem;
}
.faq-item__body.is-open { max-height: 300px; }

/* ══════════════════════════════════════════════════════════════
   CTA FINAL (§12)
   ══════════════════════════════════════════════════════════════ */
.cta-final {
  position: relative; overflow: hidden;
  background: var(--bg-2);
  padding: 9rem 2rem;
  text-align: center;
}
.cta-final__chess-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-final__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
}
.cta-final__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.2; margin: 0.5rem 0 2rem;
  color: var(--text);
}
.cta-final__inner p {
  color: var(--text-muted); line-height: 1.8;
  max-width: 55ch; margin: 1.5rem auto 2.5rem;
}
.cta-btns {
  display: flex; gap: 1.25rem; justify-content: center;
  flex-wrap: wrap;
}
.cta-final__piece {
  font-size: 4rem; color: rgba(200,168,75,0.18);
  display: block; margin-top: 3rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-split__text-col { padding: 4rem 2rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .img-strip__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .about-split__text-col { padding: 3rem 1.5rem; }
  .img-strip__grid { grid-template-columns: 1fr; }
  .steps-section { padding: 5rem 0; }
  .cta-final { padding: 6rem 1.5rem; }
  .faq-grid { gap: 2rem; }
  .faq-left .img-placeholder--faq { display: none; }
  .img-frame__inner { height: 320px; }
  .img-frame--square .img-frame__inner { height: 300px; }
  .about-split__stats { gap: 1rem 0; }
}

/* ══════════════════════════════════════════════════════════════
   INDIVIDUELLE SEKTIONEN — NEUGESTALTUNG
   ══════════════════════════════════════════════════════════════ */

/* ── §2 FS-STATEMENT — vertikale Akzentlinien ────────────────── */
.fs-statement__line-left,
.fs-statement__line-right {
  position: absolute; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}
.fs-statement__line-left  { left: 6vw; }
.fs-statement__line-right { right: 6vw; }

/* ── §3 ABOUT-SPLIT — initials overlay ──────────────────────── */
.about-split__img-number {
  position: absolute; top: 2rem; right: 2rem;
  font-family: var(--font-serif);
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: var(--gold); opacity: 0.07;
  pointer-events: none; user-select: none; z-index: 0;
}

/* ── §4 MARQUEE — Gold-Variante (invertiert) ─────────────────── */
.marquee-wrap--gold {
  background: var(--gold);
  border-top: none;
  border-bottom: none;
  padding: 1.2rem 0;
}
.marquee-wrap--gold .marquee-track span {
  color: rgba(0,0,0,0.55);
  font-weight: 800;
}
.marquee-wrap--gold .marquee-track span:hover { color: #0a0a0a; }

/* ── §5 TRUTHS — große horizontale Rows mit Nummer ──────────── */
.truths-section {
  background: var(--bg);
  position: relative; overflow: hidden;
  padding: 8rem 0;
}
.truths-section__decor {
  position: absolute; top: 50%; left: -3rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 10rem); font-weight: 900;
  color: var(--gold); opacity: 0.03;
  letter-spacing: 0.3em; white-space: nowrap;
  pointer-events: none; user-select: none;
}
.truths-header {
  max-width: 640px; margin-bottom: 4rem;
}
.truths-header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.1; margin: 0.5rem 0 1.2rem;
}
.truths-header p { font-size: 0.95rem; }

.truths-list { display: flex; flex-direction: column; }

.truth-row {
  display: grid;
  grid-template-columns: 72px 1px 44px 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: background 0.35s, padding-left 0.35s;
  border-radius: 4px;
}
.truth-row:first-child { border-top: 1px solid rgba(255,255,255,0.04); }
.truth-row:hover {
  background: rgba(201,168,76,0.03);
  padding-left: 1rem;
}
.truth-row__num {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 900;
  color: var(--gold); opacity: 0.2;
  line-height: 1; transition: opacity 0.3s;
}
.truth-row:hover .truth-row__num { opacity: 0.6; }
.truth-row__divider {
  width: 1px; height: 40px;
  background: var(--gold-border);
  flex-shrink: 0;
}
.truth-row__icon {
  font-size: 1.5rem; text-align: center; color: var(--gold);
  transition: transform 0.4s;
}
.truth-row:hover .truth-row__icon { transform: scale(1.25) rotate(-10deg); }
.truth-row__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; margin-bottom: 0.35rem;
}
.truth-row__body p { font-size: 0.85rem; margin: 0; }
.truth-row__arrow {
  font-size: 1.2rem; color: var(--gold); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
}
.truth-row:hover .truth-row__arrow {
  opacity: 0.6; transform: translateX(0);
}

/* ── §6 IMG-QUOTE — Regel zwischen Zitat und Autor ───────────── */
.img-quote__rule {
  width: 60px; height: 1px;
  background: var(--gold); opacity: 0.6;
  margin: 1.5rem auto;
}

/* ── §7 STEPS-SECTION — Raster-Hintergrund ──────────────────── */
.steps-section {
  position: relative;
}
.steps-section__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, black 40%, transparent 100%);
}

/* Step-row overrides for new grid */
.step-row {
  grid-template-columns: 72px 52px 1fr;
}

/* ── §8 CHESS-BANNER — Schrägbild mit Shine-Overlay ─────────── */
.chess-banner__img-clip {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  border-radius: 4px;
}
.chess-banner__img-clip img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.chess-banner__img-clip:hover img { transform: scale(1.05); }
.chess-banner__img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201,168,76,0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}
.chess-stats-row {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
}

/* ── §9 IMG-TRIO — unterschiedliche Höhen mit Hover-Overlay ─── */
.img-trio {
  background: var(--bg-3);
  padding: 6rem 0;
}
.img-trio__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1.5rem;
  align-items: end;
}
.img-trio__frame {
  position: relative; overflow: hidden;
  border-radius: 6px; cursor: pointer;
}
.img-trio__frame img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.img-trio__item--tall .img-trio__frame img { height: 480px; }
.img-trio__item:not(.img-trio__item--tall) .img-trio__frame img { height: 360px; }
.img-trio__item--shifted { margin-bottom: 3rem; }

.img-trio__hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.4s;
}
.img-trio__frame:hover .img-trio__hover { opacity: 1; }
.img-trio__frame:hover img { transform: scale(1.06); }
.img-trio__hover span {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: #fff; font-weight: 700;
}
.img-trio__caption {
  margin-top: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: center;
}

/* ── §10 PRINZIP-SECTION — Gold-Hintergrund mit schwarzen Karten */
.prinzip-section {
  background: var(--gold);
  position: relative; overflow: hidden;
  padding: 7rem 0 5rem;
}
.prinzip-section__bg-piece {
  position: absolute; right: -2rem; bottom: -4rem;
  font-size: clamp(10rem, 22vw, 20rem);
  color: rgba(0,0,0,0.07); line-height: 1;
  pointer-events: none; user-select: none;
  font-weight: 900;
}
.prinzip-section__header {
  margin-bottom: 3.5rem;
}
.prinzip-section__header h2 {
  color: #0a0a0a;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0.5rem 0;
}
.prinzip-section__header p { color: rgba(0,0,0,0.5); }
.prinzip-section .eyebrow { color: rgba(0,0,0,0.45); }
.prinzip-section .eyebrow::before { opacity: 0.4; }

/* Prinzip-Track (horizontales Scroll) */
.prinzip-track-wrap {
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
  padding-bottom: 2rem;
  padding-left: max(2rem, calc((100vw - 1160px)/2));
}
.prinzip-track-wrap::-webkit-scrollbar { height: 3px; }
.prinzip-track-wrap::-webkit-scrollbar-track { background: transparent; }
.prinzip-track-wrap::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 9px; }
.prinzip-track {
  display: flex; gap: 1.25rem;
  width: max-content;
  padding-right: 3rem;
}
.prinzip-card {
  width: 260px; flex-shrink: 0;
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.prinzip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.5);
}
.prinzip-card__top {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 1rem;
}
.prinzip-card__num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 900;
  color: rgba(201,168,76,0.15); line-height: 1;
}
.prinzip-card__icon {
  font-size: 1.8rem; color: var(--gold);
}
.prinzip-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; margin: 0 0 0.65rem;
  color: var(--text);
}
.prinzip-card p {
  font-size: 0.83rem; color: var(--text-muted);
  line-height: 1.65; margin: 0;
}

/* ── §11 FAQ — Fragezeichen-Deko, bg-2 Hintergrund ──────────── */
.faq-section {
  position: relative;
}
.faq-section__deco {
  position: absolute; right: 4vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 18rem); font-weight: 900;
  color: var(--gold); opacity: 0.025;
  pointer-events: none; user-select: none;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — NEUE SEKTIONEN
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .truths-section__decor { display: none; }
  .chess-banner__img-clip { clip-path: none; border-radius: 8px; }
}
@media (max-width: 1024px) {
  .chess-banner__inner { grid-template-columns: 1fr; }
  .chess-banner__img-wrap { max-width: 520px; }
  .faq-grid { grid-template-columns: 1fr; }
  .img-trio__grid { grid-template-columns: 1fr 1fr; }
  .img-trio__item--shifted { margin-bottom: 0; }
}
@media (max-width: 768px) {
  .truths-section { padding: 5rem 0; }
  .truth-row { grid-template-columns: 52px 1px 36px 1fr; }
  .truth-row__arrow { display: none; }
  .truths-header h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .img-trio__grid { grid-template-columns: 1fr; }
  .img-trio__item--tall .img-trio__frame img,
  .img-trio__item:not(.img-trio__item--tall) .img-trio__frame img { height: 260px; }
  .prinzip-section { padding: 5rem 0 3rem; }
  .faq-section__deco { display: none; }
  .chess-banner__img-wrap { display: none; }
  .chess-stats-row { flex-direction: column; }
  .fs-statement__line-left, .fs-statement__line-right { display: none; }
  .about-split__img-number { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   CINEMATIC SYSTEM — Film-Ästhetik komplett
   ═══════════════════════════════════════════════════════════ */

/* ── INTRO LOADER ────────────────────────────────────────── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 8000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Transition beim Verschwinden: opacity + nach oben schieben */
  transition:
    opacity    0.7s cubic-bezier(0.76,0,0.24,1) 0.1s,
    transform  0.7s cubic-bezier(0.76,0,0.24,1) 0.1s,
    visibility 0.7s linear                       0.1s;
}

/* Hintergrundbild als Pseudo-Element für Ken-Burns-Zoom */
#intro::after {
  content: '';
  position: absolute;
  inset: -5%;
  background-image: url('../img/ladebildschirm.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.0);
  transition: transform 4.0s cubic-bezier(0.16,1,0.3,1);
}
/* Während Intro läuft: Bild zoomt langsam rein */
#intro.step-1::after {
  transform: scale(1.08);
}

/* Dunkles Overlay über dem Bild */
#intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.68);
  z-index: 1;
  transition: opacity 0.5s ease;
}

/* Abschluss: Intro fährt nach oben weg */
#intro.is-done {
  opacity: 0;
  transform: translateY(-4%);
  visibility: hidden;
  pointer-events: none;
}

.intro__bar {
  position: absolute;
  left: 0; right: 0;
  height: 12vh;
  background: #000;
  z-index: 2;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro__bar--top    { top: 0;    transform: translateY(0); transition-delay: 0s; }
.intro__bar--bottom { bottom: 0; transform: translateY(0); transition-delay: 0.08s; }
#intro.curtain-open .intro__bar--top    { transform: translateY(-100%); }
#intro.curtain-open .intro__bar--bottom { transform: translateY(100%); }

.intro__center {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  /* Beim Verschwinden: Content blendet früher aus */
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#intro.curtain-open .intro__center {
  opacity: 0;
  transform: scale(0.95);
}

.intro__chess-symbol {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.5));
}
#intro.step-1 .intro__chess-symbol { opacity: 1; transform: scale(1); }

.intro__tagline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.intro__word {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
#intro.step-2 .intro__word:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
#intro.step-2 .intro__word:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
#intro.step-2 .intro__word:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

.intro__line {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s;
}
#intro.step-2 .intro__line { width: 120px; }

.intro__name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.6s ease 0.8s;
}
#intro.step-2 .intro__name { opacity: 1; }

.intro__grain {
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grainAnim 0.4s steps(2) infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes grainAnim {
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(-2%,-1%) rotate(0.5deg); }
  50%  { transform: translate(1%,2%) rotate(-0.5deg); }
  75%  { transform: translate(-1%,1%) rotate(0.3deg); }
  100% { transform: translate(2%,-2%) rotate(0deg); }
}

/* ── LETTERBOX ───────────────────────────────────────────── */
.letterbox {
  position: fixed;
  left: 0; right: 0;
  height: 0;
  background: #000;
  z-index: 100;
  pointer-events: none;
  transition: height 1s cubic-bezier(0.76,0,0.24,1);
}
.letterbox--top    { top: 0; }
.letterbox--bottom { bottom: 0; }
body.cinema-mode .letterbox { height: 6vh; }

/* ── GRAIN GLOBAL ─────────────────────────────────────────── */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grainAnim 0.4s steps(2) infinite;
}

/* ── HERO — SPLITSCREEN ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--bg);
}

/* ── LINKE SEITE ─────────────────────────────────────────── */
.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 4rem 4rem 6rem;
  background: var(--bg);
  /* Übergang: nach Intro einschieben von links */
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s,
              transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.hero--visible .hero__left {
  opacity: 1;
  transform: translateX(0);
}

/* Goldene vertikale Trennlinie */
.hero__left::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}

/* ── RECHTE SEITE ────────────────────────────────────────── */
.hero__right {
  position: relative;
  overflow: hidden;
}

/* Bild als echtes <img> — wie Levia */
.hero__right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  /* Sanfter Ken-Burns-Effekt nach dem Intro */
  transform: scale(1.06);
  transition: transform 3.0s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.hero--visible .hero__right-img {
  transform: scale(1.0);
}

/* Diagonal-Übergang von links ins Bild (wie Levia) */
.hero__right::before {
  content: '';
  position: absolute;
  top: 0; left: -1px; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.10) 50%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* ── META ────────────────────────────────────────────────── */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
.hero--visible .hero__meta { opacity: 1; transform: translateY(0); }
.hero__chess-mark { color: var(--gold); font-size: 1rem; }
.hero__separator  { color: var(--gold-border); }

/* ── TITEL ───────────────────────────────────────────────── */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.hero__title-line:nth-child(1) { transition-delay: 0.7s; }
.hero__title-line:nth-child(2) {
  transition-delay: 0.85s;
  color: var(--gold);
  font-style: italic;
}
.hero--visible .hero__title-line { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.hero__divider-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0.6;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 1s;
}
.hero--visible .hero__divider-line { width: 80px; }

/* ── SUBTEXT ─────────────────────────────────────────────── */
.hero__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 1.1s, transform 0.7s ease 1.1s;
}
.hero--visible .hero__sub { opacity: 1; transform: translateY(0); }

/* ── CTAs ────────────────────────────────────────────────── */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 1.3s, transform 0.7s ease 1.3s;
}
.hero--visible .hero__ctas { opacity: 1; transform: translateY(0); }

/* ── SCROLL HINT ─────────────────────────────────────────── */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity 0.7s ease 1.6s;
}
.hero--visible .hero__scroll { opacity: 1; }
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50%       { opacity: 1;   height: 55px; }
}

/* ── ASIDE ZITAT (über Bild rechts) ─────────────────────── */
.hero__aside {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  z-index: 5;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 1.5s, transform 0.7s ease 1.5s;
}
.hero--visible .hero__aside { opacity: 1; transform: translateY(0); }
.hero__quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  opacity: 0.9;
}
.hero__quote-attr {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NAV RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav__links--left  { padding-right: 1rem; }
  .nav__links--right { padding-left:  1rem; }
  .nav__links > li > a,
  .nav__dropdown-wrap > a {
    padding: 0.4rem 0.55rem;
    font-size: 0.66rem;
  }
}
@media (max-width: 860px) {
  .nav__links--left,
  .nav__links--right { display: none; }
  .nav__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav__hamburger { display: flex; }
  .nav__logo { justify-content: flex-start; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* VIDEO IM HINTERGRUND — Text darüber, wie ein Fullscreen-Hero */
  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
    max-height: none;
    overflow: hidden;
  }

  /* Video: absolute Hintergrund, füllt den ganzen Hero */
  .hero__right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .hero__right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1) !important;
    transition: none !important;
  }

  /* Leichteres Overlay — Video sichtbar, Text lesbar */
  .hero__right-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.65) 0%,
      rgba(8,8,8,0.35) 45%,
      rgba(8,8,8,0.55) 100%
    );
  }

  /* Diagonal-Übergang auf Mobile ausblenden */
  .hero__right::before {
    display: none;
  }

  /* Text-Bereich: über dem Video, volle Breite */
  .hero__left {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 1.5rem 3rem;
    background: transparent;
  }
  .hero__left::after { display: none; }

  /* Sub-Text heller */
  .hero__sub {
    color: rgba(237,232,220,0.90);
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__left  { padding: 6.5rem 1.25rem 2.5rem; }
  .hero__sub   { color: rgba(237,232,220,0.75); }
}

@media (max-width: 380px) {
  .hero__left  { padding: 5.5rem 1rem 2rem; }
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
}
/* ── SCENE BASE ──────────────────────────────────────────── */
.scene {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.scene--dark        { background: var(--bg-2); }
.scene--statement   {
  background-image: url('../img/zitat.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 10rem 0;
}
.scene--statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.70) 50%,
    rgba(8,8,8,0.85) 100%
  );
  z-index: 0;
}
.scene--statement > * { position: relative; z-index: 1; }
.scene--person {
  background-image: url('../img/übermichsasha.png');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.scene--person::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.90) 0%,
    rgba(8,8,8,0.72) 50%,
    rgba(8,8,8,0.90) 100%
  );
  z-index: 0;
}
.scene--person > * { position: relative; z-index: 1; }
.scene--chess       { background: var(--bg-3); }
.scene--system      { background: var(--bg-2); }
.scene--truths      { background: var(--bg); }
.scene--cta         { background: #000; padding: 10rem 0; }

.scene__number {
  position: absolute;
  top: 2rem;
  right: 3vw;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.scene__header {
  margin-bottom: 4rem;
}
.scene__header h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-top: 0.75rem;
}
.scene__cta {
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════════════════
   PROBLEM SEKTION — "Du kennst dieses Gefühl"
   Split: Bild links (sticky) · Content rechts (scrollbar)
   ══════════════════════════════════════════════════════════ */
.problem {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 100vh;
  background: var(--bg);
}

/* ── LINKE SPALTE: Bild ── */
.problem__visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.problem__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.75) saturate(0.85);
}
.problem__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  transparent 50%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 80%, var(--bg) 100%);
}

/* Floating Badge */
.problem__badge {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.problem__badge-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.problem__badge-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}
.problem__badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Vertikales Label */
.problem__vertical-label {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  white-space: nowrap;
}

/* ── RECHTE SPALTE: Content ── */
.problem__content {
  padding: 6rem 4rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* Header-Block */
.problem__header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.problem__header-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.problem__header-line {
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--gold-border);
}
.problem__header-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.problem__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}
.problem__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.problem__intro-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Problem-Items */
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problem__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.problem__item:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Icon-Spalte */
.problem__item-icon {
  width: 48px; height: 48px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 2px;
}
.problem__item:hover .problem__item-icon {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Text-Spalte */
.problem__item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.problem__item-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.problem__item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.problem__item-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

/* Progress-Bar unter jedem Item */
.problem__item-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.problem__item-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
/* Bar animiert wenn Element sichtbar ist */
.problem__item.is-visible .problem__item-bar-fill {
  width: var(--w);
}
.problem__item-bar-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* CTA am Ende */
.problem__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  gap: 1rem;
}
.problem__cta-text {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
}
.problem__cta-text i { color: var(--gold); font-size: 1rem; }
.problem__cta-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.problem__cta-link:hover { gap: 0.8rem; }

/* Responsive */
@media (max-width: 1024px) {
  .problem {
    grid-template-columns: 1fr;
  }
  .problem__visual {
    position: relative;
    height: 60vw;
    max-height: 480px;
  }
  .problem__content {
    padding: 4rem 2rem;
    border-left: none;
  }
}
@media (max-width: 600px) {
  .problem__content { padding: 3rem 1.5rem; }
  .problem__cta { flex-direction: column; align-items: flex-start; }
}

/* ── STATEMENT ───────────────────────────────────────────── */
.statement__chess {
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(201,168,76,0.12);
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  line-height: 1;
}
.statement__quote {
  text-align: center;
  font-style: normal;
}
.statement__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.25em;
}
.statement__quote p em { color: var(--gold); font-style: italic; }
.statement__attr {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ══════════════════════════════════════════════════════════
   LÖSUNG SEKTION
   3 Cards: Strategie · Struktur · Charakter
   ══════════════════════════════════════════════════════════ */
.loesung {
  position: relative;
  background: var(--bg);
  background-image: url('../img/lousungsektion.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 8rem 0 7rem;
  overflow: hidden;
}
.loesung::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.88);
  z-index: 0;
}
.loesung > .wrap,
.loesung__bg-glow { position: relative; z-index: 1; }

/* Header */
.loesung__header {
  text-align: center;
  margin-bottom: 5rem;
}
.loesung__header-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.loesung__header-eyebrow span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.loesung__header-line {
  width: 3rem;
  height: 1px;
  background: var(--gold-border);
}
.loesung__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.loesung__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.loesung__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* 3 Cards Grid */
.loesung__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.loesung__card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.loesung__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
  transition: background 0.4s;
}
.loesung__card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.loesung__card:hover::before {
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* Gold-Highlighted mittlere Card */
.loesung__card--gold {
  background: var(--bg-3);
  border-color: var(--gold-border);
}
.loesung__card--gold::before {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.loesung__card--gold::after {
  content: '✦ Kern-Hebel';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* Card Top: Icon + Nummer */
.loesung__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loesung__card-icon {
  width: 52px; height: 52px;
  background: var(--bg-4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--text-dim);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.loesung__card:hover .loesung__card-icon,
.loesung__card--gold .loesung__card-icon {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}
.loesung__card-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.loesung__card--gold .loesung__card-num {
  color: rgba(201,168,76,0.08);
}

/* Card Title */
.loesung__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* Card Text */
.loesung__card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Card Checklist */
.loesung__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.loesung__card-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.loesung__card-list li i {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.loesung__card--gold .loesung__card-list {
  border-top-color: var(--gold-border);
}

/* Card Footer */
.loesung__card-footer {
  padding-top: 0.75rem;
}
.loesung__card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.loesung__card--gold .loesung__card-tag {
  color: var(--gold);
  opacity: 0.7;
}

/* Bottom CTA */
.loesung__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  gap: 2rem;
}
.loesung__bottom-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.loesung__bottom-text i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.loesung__bottom-text p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}

/* Responsive */
@media (max-width: 960px) {
  .loesung__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .loesung__card--gold::after { display: none; }
}
@media (max-width: 640px) {
  .loesung { padding: 5rem 0; }
  .loesung__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── PERSON ──────────────────────────────────────────────── */
.person__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.person__img-wrap { position: relative; }
.person__img-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.person__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 20% center;
  display: block;
  transition: transform 0.7s ease;
}
.person__img-frame:hover img { transform: scale(1.04); }
.person__img-frame--placeholder {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.person__img-chess {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.person__text p { margin-bottom: 1.2rem; }
.person__cta { margin-top: 2rem; }

/* ── PRINZIPIEN LIST ─────────────────────────────────────── */
/* Hintergrund-Sektion */
.scene--prinzipien {
  position: relative;
  padding: 9rem 0 8rem;
  background-image: url('../img/7schrittesektion .png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.prinzipien__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.82) 30%,
      rgba(8,8,8,0.80) 70%,
      rgba(8,8,8,0.97) 100%
    );
  z-index: 1;
}

/* Subtext unter H2 */
.scene__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* Card Grid: 3 Spalten, letzte Karte über 3 */
.prinzipien__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin: 4rem 0 3rem;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
}

/* Einzelne Karte */
.prinzip__card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: rgba(10,9,7,0.70);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.prinzip__card:nth-child(3n) { border-right: none; }
.prinzip__card:nth-child(n+5) { border-bottom: none; }
.prinzip__card:hover {
  background: rgba(201,168,76,0.04);
}

/* Letzte Karte — volle Breite */
.prinzip__card--wide {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--gold-border);
}
.prinzip__card--wide h3 { font-size: 1.15rem; flex: 1; margin: 0; }
.prinzip__card--wide p  { flex: 2; margin: 0; font-size: 0.85rem; }
.prinzip__card--wide .prinzip__card-link { white-space: nowrap; }

/* Karten-Header: Nummer + Icon */
.prinzip__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.prinzip__card-num {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.5;
}
.prinzip__card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.12;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
  line-height: 1;
}
.prinzip__card:hover .prinzip__card-icon {
  opacity: 0.55;
  transform: scale(1.2) translateY(-2px);
}
.prinzip__card:hover .prinzip__card-num { opacity: 0.9; }

/* Texte */
.prinzip__card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.prinzip__card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Link */
.prinzip__card-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(4px);
}
.prinzip__card:hover .prinzip__card-link {
  opacity: 0.8;
  transform: translateY(0);
}

/* Alte List-Styles (legacy, nicht löschen) */
.prinzipien__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gold-border);
}
.prinzip__row {
  display: grid;
  grid-template-columns: 60px 28px 1fr 40px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s, padding-left 0.3s;
  border-radius: 4px;
  position: relative;
}
.prinzip__row:hover { background: rgba(201,168,76,0.03); padding-left: 1rem; }
.prinzip__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.18;
  transition: opacity 0.3s;
  line-height: 1;
}
.prinzip__row:hover .prinzip__num { opacity: 0.6; }
.prinzip__chess { font-size: 1.2rem; color: var(--gold); opacity: 0.4; }
.prinzip__content h3 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--text); }
.prinzip__content p { font-size: 0.85rem; margin: 0; }
.prinzip__link {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
  text-decoration: none;
}
.prinzip__row:hover .prinzip__link { opacity: 0.8; transform: translateX(0); }

/* ── CHESS SCENE ─────────────────────────────────────────── */
.chess__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.chess__board {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chess__board-inner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  width: min(380px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.chess__cell {
  aspect-ratio: 1;
  transition: background 0.3s;
}
.chess__cell--light { background: rgba(201,168,76,0.06); }
.chess__cell--dark  { background: rgba(0,0,0,0.4); }
.chess__cell--light:hover { background: rgba(201,168,76,0.15); }
.chess__cell--dark:hover  { background: rgba(201,168,76,0.08); }
.chess__cell--piece {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
}
.chess__board-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── SYSTEM PILLARS ──────────────────────────────────────── */
.system__pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.system__pillar {
  background: var(--bg-2);
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.system__pillar:hover { background: var(--bg-3); }
.system__pillar-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1rem;
  transition: color 0.3s, opacity 0.3s;
}
.system__pillar:hover .system__pillar-num { color: rgba(201,168,76,0.12); }
.system__pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.system__pillar:hover .system__pillar-icon { transform: scale(1.2) rotate(8deg); }
.system__pillar h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--text); }
.system__pillar p  { font-size: 0.82rem; line-height: 1.6; }

/* ── TRUTHS ──────────────────────────────────────────────── */
.truths__list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  border-top: 1px solid var(--gold-border);
}
.truth__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
  transition: background 0.3s;
}
.truth__item:hover { background: rgba(201,168,76,0.02); }
.truth__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  padding-top: 0.2rem;
  transition: opacity 0.3s;
}
.truth__item:hover .truth__num { opacity: 0.5; }
.truth__text h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.truth__text p  { font-size: 0.9rem; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.cta__chess {
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(201,168,76,0.15);
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.cta__leitsatz {
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(201,168,76,0.4);
  letter-spacing: 0.05em;
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn__arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left  { transform: translateX(-30px) translateY(0); }
.reveal--right { transform: translateX(30px) translateY(0); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: translateX(0); }
.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-line.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .chess__grid { grid-template-columns: 1fr; }
  .chess__board { display: none; }
  .hero__aside { display: none; }
  .system__pillars { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 120px 1.5rem 80px; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .problem__grid { grid-template-columns: 1fr; }
  .person__grid { grid-template-columns: 1fr; gap: 3rem; }
  .scene { padding: 5rem 0; }
  .statement__quote p { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .prinzip__row { grid-template-columns: 50px 1fr 30px; }
  .prinzip__chess { display: none; }
  .system__pillars { grid-template-columns: 1fr 1fr; }
  .truth__item { grid-template-columns: 44px 1fr; gap: 1rem; }
  /* Prinzipien Grid Responsive */
  .prinzipien__grid { grid-template-columns: 1fr 1fr; }
  .prinzip__card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .prinzip__card--wide h3,
  .prinzip__card--wide p { flex: unset; }
  .scene--prinzipien { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .prinzipien__grid { grid-template-columns: 1fr; }
  .prinzip__card { border-right: none; }
  .prinzip__card-link { opacity: 0.6; transform: none; }
}
@media (max-width: 480px) {
  .system__pillars { grid-template-columns: 1fr; }
}


/* ── INTRO RUNNING — Scroll sperren während Intro ── */
body.intro-running {
  overflow: hidden;
}

/* ── CHESS CELL — Pulse Animation ── */
.chess__cell--pulse {
  background: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* ── SCENE ACTIVE — subtle indicator ── */
.scene--active .scene__number {
  opacity: 0.08;
  transition: opacity 0.5s ease;
}


/* =====================================================================
   SUBPAGE CINEMATIC STYLES — Page Hero, Timeline, Chapters, Forms
   ===================================================================== */

/* ── PAGE CINEMATIC HERO ────────────────────────────────────────────── */
.page-cinematic-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.page-cinematic-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.85) 100%),
    repeating-conic-gradient(var(--bg-3) 0% 25%, var(--bg-2) 0% 50%) 0 0 / 60px 60px;
  z-index: 0;
}
.page-cinematic-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,8,0.7) 100%);
  z-index: 1;
}
.page-cinematic-hero__inner {
  position: relative;
  z-index: 2;
}
.page-cinematic-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.page-cinematic-hero__meta .chess-mark {
  color: var(--gold);
  font-size: 1rem;
}
.page-cinematic-hero__meta .sep { color: var(--gold-border); }

.page-cinematic-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.page-cinematic-hero__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.page-cinematic-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}
.page-cinematic-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}
.page-cinematic-hero__scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── TIMELINE (ueber-mich) ──────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__chapter {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--gold-border);
}
.timeline__chapter:last-child { border-bottom: 1px solid var(--gold-border); }

.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.timeline__chapter-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.timeline__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  min-height: 60px;
}
.timeline__content {
  padding-bottom: 2rem;
}
.timeline__text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.timeline__text p em { color: var(--text); font-style: italic; }
.timeline__highlight {
  background: var(--gold-dim);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem !important;
  color: var(--text) !important;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.timeline__highlight .chess-mark {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── STATEMENT QUOTE VARIANTS ──────────────────────────────────────── */
.statement__quote--gold {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.statement__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-top: 1rem;
}

/* ── SCENE VARIANTS ─────────────────────────────────────────────────── */
.scene--bg2 { background: var(--bg-2); }

/* ── GOLD DIVIDER ───────────────────────────────────────────────────── */
.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}

/* ── CHESS MARK (inline) ─────────────────────────────────────────────── */
.chess-mark {
  color: var(--gold);
  font-size: 1.1em;
}

/* ── PRINZIP CHAPTER ────────────────────────────────────────────────── */
.prinzip-chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 860px;
}
.prinzip-chapter--right { margin-left: auto; }
.prinzip-chapter__header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.prinzip-chapter__num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  transition: color 0.4s;
}
.prinzip-chapter:hover .prinzip-chapter__num { color: rgba(201,168,76,0.2); }
.prinzip-chapter__title-wrap {
  padding-top: 0.5rem;
  flex: 1;
}
.prinzip-chapter__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}
.prinzip-chapter__body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.prinzip-chapter__body p em { color: var(--text); }
.prinzip-chapter__chess {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 1rem;
}

/* ── METHODE CHAPTER ────────────────────────────────────────────────── */
.methode-scene { position: relative; }

.methode-chapter {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 3rem;
  align-items: start;
}
.methode-chapter--alt .methode-chapter__main { order: 0; }

.methode-chapter__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.5rem;
}
.methode-chapter__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.methode-chapter__chess {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.7;
}
.methode-chapter__connector {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  min-height: 80px;
}
.methode-chapter__text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.methode-chapter__text p em { color: var(--text); }
.methode-chapter__result {
  background: var(--gold-dim);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-top: 1.5rem;
}
.methode-chapter__result-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.methode-chapter__result p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ── SYSTEM PILLARS OVERVIEW ────────────────────────────────────────── */
.system__pillars--overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 3rem;
}
.system__pillars--overview .system__pillar {
  background: var(--bg-3);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.system__pillars--overview .system__pillar:hover { background: var(--bg-4); }
.system__pillar-num {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.system__pillar-chess {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.system__pillar-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

/* ── PROCESS STEPS (zusammenarbeit) ─────────────────────────────────── */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}
.process__step {
  display: grid;
  grid-template-columns: 60px 60px 1fr;
  gap: 0 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gold-border);
  align-items: start;
}
.process__step:last-child { border-bottom: 1px solid var(--gold-border); }
.process__step-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  padding-top: 0.2rem;
}
.process__step-chess {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 0.2rem;
}
.process__step-content h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.process__step-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.process__connector {
  width: 1px;
  height: 2rem;
  background: var(--gold-border);
  margin-left: 30px;
}

/* ── FITFOR GRID (zusammenarbeit) ─────────────────────────────────────── */
.fitfor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 3rem;
}
.fitfor__col {
  background: var(--bg-3);
  padding: 3rem;
}
.fitfor__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}
.fitfor__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.fitfor__list li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.fitfor__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.fitfor__list--no li::before {
  content: '×';
  color: var(--text-dim);
}

/* ── FUNNEL STEPS (kontakt) ──────────────────────────────────────────── */
.funnel__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}
.funnel__step {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  padding: 2rem 1.5rem;
  text-align: center;
}
.funnel__step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.funnel__step-chess {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.8rem;
}
.funnel__step-title {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.funnel__step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.funnel__step-text a {
  color: var(--gold);
  text-decoration: none;
}
.funnel__arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  text-align: center;
}

/* ── KONTAKT GRID ────────────────────────────────────────────────────── */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontakt__form-wrap .scene__header { margin-bottom: 2rem; }
.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__group--full { grid-column: 1 / -1; }
.form__group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__group input,
.form__group textarea {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  color: var(--text);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-dim);
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}
.form__checkbox a { color: var(--gold); }
.form__submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Kontakt Info */
.kontakt__info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt__info-block { text-align: center; padding: 2rem; background: var(--bg-3); border: 1px solid var(--gold-border); }
.kontakt__info-chess { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.kontakt__info-block h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text); }
.kontakt__info-subtitle { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.kontakt__info-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
}
.kontakt__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kontakt__info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.kontakt__info-item span,
.kontakt__info-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
}
.kontakt__info-item a:hover { color: var(--gold); }
.kontakt__leitsatz {
  text-align: center;
  padding: 1.5rem;
}
.kontakt__leitsatz p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.kontakt__leitsatz span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── IMPRESSUM BLOCK ─────────────────────────────────────────────────── */
.impressum-block {
  max-width: 800px;
  margin: 0 auto;
}
.impressum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.impressum-grid p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.impressum-grid a {
  color: var(--gold);
  text-decoration: none;
}

/* ── SCENE SUB TEXT ──────────────────────────────────────────────────── */
.scene__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* ── RESPONSIVE — SUBPAGES ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .system__pillars--overview { grid-template-columns: repeat(3, 1fr); }
  .funnel__steps { grid-template-columns: 1fr; }
  .funnel__arrow { display: none; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .kontakt__info { position: static; }
}
@media (max-width: 900px) {
  .timeline__chapter { grid-template-columns: 60px 1fr; gap: 0 1.5rem; }
  .methode-chapter { grid-template-columns: 50px 1fr; gap: 0 1.5rem; }
  .prinzip-chapter__header { gap: 1rem; }
  .fitfor__grid { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 50px 50px 1fr; }
  .impressum-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .page-cinematic-hero { min-height: 60vh; padding-bottom: 4rem; }
  .page-cinematic-hero__title { font-size: 2.5rem; }
  .timeline__chapter { grid-template-columns: 1fr; }
  .timeline__marker { flex-direction: row; padding-top: 0; }
  .timeline__line { display: none; }
  .methode-chapter { grid-template-columns: 1fr; }
  .methode-chapter__sidebar { flex-direction: row; }
  .methode-chapter__connector { display: none; }
  .prinzip-chapter__header { flex-direction: column; gap: 0.5rem; }
  .prinzip-chapter__num { font-size: 4rem; }
  .process__step { grid-template-columns: 1fr; }
  .impressum-grid { grid-template-columns: 1fr; }
  .system__pillars--overview { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════
   GESCHICHTE — Emotionales Story-Layout
   ═══════════════════════════════════════════════════════════════════ */

/* HERO */
/* Nav-Spacer für Seiten mit Split-Hero */
.nav-spacer {
  height: 80px;
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════
   STORY HERO — Premium Split-Screen
   ═══════════════════════════════════════════════════════ */
.story-hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg);
  overflow: clip;
}

.story-hero--split {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 70vh;
  overflow: visible;
}

/* ── LINKES PANEL ── */
.story-hero__left {
  position: relative;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  z-index: 3;
  overflow: visible;
}
/* Überlappender Blend-Gradient — fließt ins Foto über */
.story-hero__left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  bottom: 0;
  width: 100px;
  background: linear-gradient(
    90deg,
    #0a0a0a 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* Subtiler Rauschtextur-Hintergrund links */
.story-hero__left-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.story-hero__left-content {
  position: relative;
  z-index: 2;
  padding: 5rem 4rem 5rem 6vw;
  width: 100%;
}

/* Gold-Naht rechts */
.story-hero__seam {
  display: none;
}

/* ── EYEBROW ── */
.story-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0.75;
}
.story-hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── HEADLINE ── */
.story-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 2.2rem;
  letter-spacing: -0.01em;
}
.story-hero__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
  font-size: 1.05em;
}

/* ── SUBTEXT ── */
.story-hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(237,232,220,0.42);
  line-height: 1.9;
  max-width: 360px;
  margin-bottom: 2.8rem;
  font-style: italic;
}

/* ── DIVIDER MIT CHESS ICON ── */
.story-hero__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.story-hero__divider::before,
.story-hero__divider::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}
.story-hero__divider::after {
  background: linear-gradient(270deg, var(--gold), transparent);
}
.story-hero__divider-chess {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

/* ── META MIT MINI-PORTRAIT ── */
.story-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.story-hero__meta-portrait {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.4);
  flex-shrink: 0;
  background: #1a1a1a;
}
.story-hero__meta-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}
.story-hero__meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.story-hero__meta-info strong {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.story-hero__meta-info span {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

/* ── RECHTES PANEL — Foto ── */
.story-hero__right {
  position: relative;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
}
.story-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(8%) contrast(1.08) brightness(0.92);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.story-hero--split:hover .story-hero__photo {
  transform: scale(1.0);
}

/* Dunkler Gradient unten über dem Foto */
.story-hero__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.18) 0%,
    transparent 35%,
    transparent 55%,
    rgba(8,8,8,0.65) 100%
  );
  pointer-events: none;
}

/* Goldener Schimmer links am Foto (Naht-Seite) */
.story-hero__photo-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0a0a0a        0%,
    rgba(10,10,10,0.85) 8%,
    rgba(10,10,10,0.45) 20%,
    rgba(10,10,10,0.1)  35%,
    transparent         55%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── FLOATING CAPTION UNTEN RECHTS ── */
.story-hero__caption {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 4;
}
.story-hero__caption-year {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.story-hero__caption-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(237,232,220,0.45);
}

/* ── SCROLL INDICATOR ── */
.story-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.25);
  z-index: 10;
  writing-mode: vertical-rl;
}
.story-hero__scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
  writing-mode: horizontal-tb;
}

/* Alte Fullscreen-Hero Elemente ausblenden */
.story-hero__img,
.story-hero__overlay,
.story-hero__content,
.story-hero__photo-border,
.story-hero__photo-wrap,
.story-hero__rule,
.story-hero__meta-name,
.story-hero__meta-sep,
.story-hero__meta-role { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 60vw;
  }
  .story-hero__left {
    order: 1;
    min-height: auto;
  }
  .story-hero__left-content {
    padding: 9rem 2rem 3rem;
  }
  .story-hero__seam { display: none; }
  .story-hero__right {
    height: 60vw;
    order: 2;
  }
}
@media (max-width: 540px) {
  .story-hero__right { height: 75vw; }
  .story-hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .story-hero__meta-info span { display: none; }
}

/* INTRO */
.story-intro {
  padding: 7rem 0 5rem;
  background: var(--bg);
}
.story-intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(237,232,220,0.45);
  text-align: center;
  margin-bottom: 0.5rem;
}
.story-intro__text--em {
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  margin-top: 1rem;
}
.story-intro__attr {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 2rem;
}

/* KAPITEL */
/* ═══════════════════════════════════════════════════════
   KAPITEL 01 — Der Ausgangspunkt
   ═══════════════════════════════════════════════════════ */
.ch01 {
  position: relative;
  padding: 9rem 0 8rem;
  background: var(--bg);
  overflow: hidden;
}
.ch01__bg-num {
  position: absolute;
  top: -0.1em;
  right: -0.04em;
  font-family: var(--font-serif);
  font-size: clamp(16rem, 28vw, 26rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ch01__bg-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.ch01__wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
/* Linke Spalte */
.ch01__aside {
  position: sticky;
  top: 8rem;
}
.ch01__chapter-tag {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.ch01__tag-num {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.3rem;
}
.ch01__tag-big {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.4);
  line-height: 1;
}
.ch01__aside-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.ch01__aside-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
}
/* Rechte Spalte */
.ch01__main { padding-top: 0.5rem; }
.ch01__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.ch01__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}
.ch01__body p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 640px;
}
/* Statement-Karte */
.ch01__statement {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.03);
  border-radius: 0 8px 8px 0;
  max-width: 640px;
}
.ch01__statement-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ch01__statement-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.ch01__statement-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
/* Facts-Leiste */
.ch01__facts {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  max-width: 640px;
}
.ch01__fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ch01__fact-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ch01__fact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}
.ch01__fact-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .ch01__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ch01__aside { position: static; }
  .ch01__chapter-tag { flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .ch01__tag-big { font-size: 2.5rem; }
}
@media (max-width: 540px) {
  .ch01__facts { flex-wrap: wrap; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   KAPITEL 02 — Die Entscheidung
   ═══════════════════════════════════════════════════════ */
.ch02 {
  position: relative;
  padding: 9rem 0 8rem;
  background: var(--bg-2);
  overflow: hidden;
}
.ch02__bg-num {
  position: absolute;
  top: -0.1em;
  right: -0.04em;
  font-family: var(--font-serif);
  font-size: clamp(16rem, 28vw, 26rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ch02__wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
/* Header */
.ch02__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 1.5rem;
}
.ch02__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.ch02__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}
.ch02__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}
/* Versus-Block */
.ch02__versus {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.ch02__versus-side {
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ch02__versus-side--left {
  background: rgba(255,255,255,0.01);
  border-right: none;
}
.ch02__versus-side--right {
  background: rgba(201,168,76,0.04);
  border-left: none;
}
.ch02__versus-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.ch02__versus-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.ch02__versus-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.ch02__versus-side--left .ch02__versus-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(237,232,220,0.2);
  font-size: 0.7rem;
}
.ch02__versus-side--right .ch02__versus-list li {
  color: var(--text);
}
.ch02__versus-side--right .ch02__versus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
}
.ch02__versus-verdict {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 0.5rem;
  font-weight: 600;
}
.ch02__versus-verdict--no {
  color: rgba(237,232,220,0.2);
  text-decoration: line-through;
  text-decoration-color: rgba(237,232,220,0.15);
}
.ch02__versus-verdict--yes {
  color: var(--gold);
}
/* Mittleres Trennelement */
.ch02__versus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.06);
  border-left: 1px solid rgba(201,168,76,0.1);
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
}
.ch02__versus-or {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
  writing-mode: vertical-rl;
}
/* Fließtext */
.ch02__body p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 0;
}
.ch02__body p em { color: var(--text); font-style: italic; }
/* Preis-Karte */
.ch02__cost {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-left: 3px solid rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.025);
  border-radius: 0 8px 8px 0;
  max-width: 680px;
}
.ch02__cost-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ch02__cost-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.ch02__cost-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 700px) {
  .ch02__versus {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .ch02__versus-divider {
    padding: 1rem 2rem;
    border: none;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .ch02__versus-or { writing-mode: horizontal-tb; }
}

/* ─────────────────────────────────────────────────────── */
.story-chapter {
  position: relative;
  padding: 8rem 0 7rem;
  background: var(--bg);
  overflow: hidden;
}
.story-chapter--dark { background: var(--bg-2); }

/* Riesen-Nummer im Hintergrund */
.story-chapter__number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(14rem, 25vw, 22rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.story-chapter__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.story-chapter__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 1.8rem;
}
.story-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.story-chapter__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.story-chapter__body {
  position: relative;
  z-index: 1;
}
.story-chapter__body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  max-width: 680px;
}
.story-chapter__body p em { color: var(--text); font-style: italic; }

/* PULL QUOTE */
.story-pull {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(201,168,76,0.05);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2.5rem;
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.story-pull--light { background: rgba(201,168,76,0.07); }
.story-pull__icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1.3;
}
.story-pull p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   ZITAT-BREAK 01 — Cinematic Quote
   ═══════════════════════════════════════════════════════ */
.zitat01 {
  position: relative;
  padding: 10rem 0 9rem;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
/* Dunkles Overlay über dem Hintergrundbild */
.zitat01__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.72) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.zitat01__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.zitat01__mark {
  position: absolute;
  top: -0.05em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(18rem, 35vw, 30rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.zitat01__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zitat01__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.zitat01__line--top  { margin-bottom: 3rem; }
.zitat01__line--bottom { margin-top: 3rem; }
.zitat01__quote {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.zitat01__part1 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: rgba(237,232,220,0.28);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.zitat01__part2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zitat01__attr {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
  margin-top: 0.5rem;
}
@media (max-width: 540px) {
  .zitat01 { padding: 7rem 0 6rem; }
  .zitat01__mark { display: none; }
}

/* ZITAT-BREAK (legacy) */
.story-quote-break {
  padding: 8rem 0;
  background: var(--bg);
  text-align: center;
}
.story-quote-break--gold {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(201,168,76,0.04) 50%,
    var(--bg) 100%
  );
}
.story-blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(237,232,220,0.25);
  border: none;
  padding: 0;
  margin: 0;
}
.story-blockquote em { color: var(--text); font-style: italic; }
.story-blockquote--gold {
  color: var(--gold);
  opacity: 0.85;
}
.story-quote-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 2rem;
  text-align: center;
}
.story-quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 1.2rem;
  text-align: center;
}

/* SPLIT-LAYOUT */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.story-split__left {
  position: sticky;
  top: 8rem;
}
.story-split__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 1.5rem 0 2rem;
}
.story-split__ornament {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
}
.story-split__right p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}
.story-split__right p em { color: var(--text); font-style: italic; }
.story-split__fact {
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  margin-top: 2rem;
}
.story-split__fact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.6rem;
}
.story-split__fact p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 !important;
}

/* MOMENT-KARTEN */
.story-moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5rem;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.story-moment {
  padding: 2.5rem 2rem;
  background: rgba(10,9,7,0.6);
  backdrop-filter: blur(8px);
  border-right: 1px solid var(--gold-border);
  transition: background 0.3s;
}
.story-moment:last-child { border-right: none; }
.story-moment:hover { background: rgba(201,168,76,0.04); }
.story-moment__icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.15;
  display: block;
  margin-bottom: 1rem;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.story-moment:hover .story-moment__icon { opacity: 0.6; transform: scale(1.15) translateY(-2px); }
.story-moment h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.story-moment p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* KAPITEL mit Foto-Akzent */
.story-chapter--photo {
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.story-chapter__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
}
.story-chapter__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(8,8,8,0.98) 0%,
      rgba(8,8,8,0.92) 45%,
      rgba(8,8,8,0.50) 75%,
      rgba(8,8,8,0.20) 100%
    );
  z-index: 1;
}
.story-chapter__photo-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; gap: 3rem; }
  .story-split__left { position: static; }
  .story-moments { grid-template-columns: 1fr; }
  .story-moment { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .story-moment:last-child { border-bottom: none; }
  .story-chapter--photo { min-height: auto; }
  .story-chapter__photo-overlay {
    background: linear-gradient(180deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.80) 100%);
  }
  .story-portrait__img { max-height: 400px; }
}
@media (max-width: 640px) {
  .story-hero { padding-bottom: 5rem; }
  .story-hero__scroll { display: none; }
  .story-chapter { padding: 5rem 0 4rem; }
  .story-intro { padding: 5rem 0 3rem; }
  .story-quote-break { padding: 5rem 0; }
  .story-moments { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .story-moments { grid-template-columns: 1fr; }
}

/* ── PORTRAIT-FOTO (Geschichte Kapitel 02) ────────────────── */
.story-split--portrait {
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 5rem;
}
.story-portrait {
  position: sticky;
  top: 7rem;
}
.story-portrait__img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
  border: 1px solid var(--gold-border);
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s ease;
}
.story-portrait:hover .story-portrait__img {
  filter: grayscale(0%) contrast(1.0);
}
.story-portrait__caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
  padding-left: 0.25rem;
  border-left: 2px solid var(--gold-border);
  padding-left: 0.8rem;
}
.story-portrait__name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.story-portrait__role {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
}

/* ── FOTO-MOMENT (vollbreites Bild mit Zitat) ─────────────── */
/* ═══════════════════════════════════════════════════════
   FOTO-MOMENT — Cinematic Vollbild
   ═══════════════════════════════════════════════════════ */
.foto-moment {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Hintergrundbild — oben verankert damit Kopf sichtbar */
.foto-moment__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 10s ease;
  filter: grayscale(10%) brightness(0.85) contrast(1.05);
}
.foto-moment:hover .foto-moment__bg {
  transform: scale(1.0);
}
/* Dunkles Overlay — Mitte heller, Ränder dunkler */
.foto-moment__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.75) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.2) 40%, rgba(8,8,8,0.2) 60%, rgba(8,8,8,0.65) 100%);
  pointer-events: none;
}
/* Inhalt zentriert */
.foto-moment__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.foto-moment__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}
.foto-moment__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: none;
  padding: 0;
  margin: 0;
}
.foto-moment__q1 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: rgba(237,232,220,0.45);
  letter-spacing: 0.06em;
}
.foto-moment__q2 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 640px) {
  .foto-moment { height: 75vh; }
  .foto-moment__bg { background-attachment: scroll; }
}

/* ─────────────────────────────────────────────────────── */
.story-foto-moment {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.story-foto-moment__frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 75vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: filter 0.6s ease;
}
.story-foto-moment__frame:hover {
  filter: brightness(1.05);
}
/* img nicht mehr genutzt — ausblenden falls noch vorhanden */
.story-foto-moment__img {
  display: none;
}
.story-foto-moment__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8,8,8,0.1) 0%,
      rgba(8,8,8,0.2) 45%,
      rgba(8,8,8,0.88) 100%
    );
}
.story-foto-moment__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 3rem;
  z-index: 2;
}
.story-foto-moment__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.story-foto-moment__name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .story-foto-moment__frame { height: 55vh; background-attachment: scroll; }
  .story-foto-moment__text { padding: 1.5rem; }
}

/* Hero — Foto-Position für Portrait-Bilder optimieren */
.story-hero__img {
  background-position: center 20%;
}

/* ── HERO Unterseiten — kein Intro-Overlay, sofort sichtbar ─────────── */
.hero--subpage {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Unterseiten haben kein Intro → alle Kindelemente sofort sichtbar */
.hero--subpage .hero__left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: none !important;
}
.hero--subpage .hero__right-img {
  transform: scale(1.0) !important;
  transition: none !important;
}

/* Bild kleiner / eingerahmt statt Vollformat */
.hero__right--contained {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  padding: 3rem 2.5rem;
}
.hero__right--contained .hero__right-img {
  width: auto !important;
  height: auto !important;
  max-width: 75% !important;
  max-height: 70vh !important;
  object-fit: contain !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
}
/* ── Lebenscode Hero — Portrait-Bild besser positioniert ─── */
.hero__right--lc .hero__right-img {
  object-position: center top !important;
  object-fit: contain !important;
  background: var(--bg-2);
}
@media (max-width: 768px) {
  .hero__right--lc .hero__right-img {
    object-fit: cover !important;
    object-position: center 20% !important;
  }
}

.hero--subpage .hero__meta,
.hero--subpage .hero__title-line,
.hero--subpage .hero__sub,
.hero--subpage .hero__ctas,
.hero--subpage .hero__scroll,
.hero--subpage .hero__aside {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}
.hero--subpage .hero__divider-line {
  width: 80px !important;
  transition: none !important;
}

/* ── PAGE HERO — Prinzipien ─────────────────────────────────────────── */
.page-cinematic-hero--prinzipien .page-cinematic-hero__bg {
  background:
    linear-gradient(180deg, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.80) 100%),
    url('assets/img/prinzipien.png') center center / cover no-repeat;
}

/* ── PAGE HERO — Innere Meisterschaft ────────────────────────────────── */
.page-cinematic-hero--innere-meisterschaft .page-cinematic-hero__bg {
  background:
    linear-gradient(180deg, rgba(8,8,8,0.30) 0%, rgba(8,8,8,0.75) 100%),
    url('assets/img/inneremeisterschaft.png') center top / cover no-repeat;
}

/* ═══════════════════════════════════════════════════════
   PRINZIPIEN — Intro-Leitsatz
═══════════════════════════════════════════════════════ */
.prnz-intro {
  padding: 8rem 0 6rem;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.prnz-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold));
}
.prnz-intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  border: none;
  margin: 0 auto;
  max-width: 760px;
  padding: 0;
}
.prnz-intro__attr {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   PRINZIPIEN — Scroll-Fortschrittsleiste
═══════════════════════════════════════════════════════ */
.prnz-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(201,168,76,0.1);
  z-index: 8000;
  display: flex;
  align-items: center;
}
.prnz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.35s ease;
  width: 0%;
}
.prnz-progress__label {
  position: absolute;
  right: 1.5rem;
  top: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   PRINZIPIEN — Item Layout
═══════════════════════════════════════════════════════ */
.prnz-list {
  position: relative;
}

.prnz-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 4rem;
  padding: 7rem 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid var(--gold-border);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.prnz-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.prnz-item--alt {
  background: var(--bg-2);
  max-width: 100%;
  padding-left: calc(50% - 550px + 2rem);
  padding-right: calc(50% - 550px + 2rem);
}
.prnz-item--last {
  border-bottom: none;
}

/* Aside — Nummer + Schachfigur + Linie */
.prnz-item__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.3rem;
}
.prnz-item__numblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.prnz-item__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.9;
}
.prnz-item__chess {
  font-size: 1.4rem;
  color: rgba(201,168,76,0.3);
  transition: color 0.4s ease, transform 0.4s ease;
}
.prnz-item.is-visible .prnz-item__chess {
  color: var(--gold);
  transform: scale(1.15);
}
.prnz-item__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-border), transparent);
  margin-top: 1.2rem;
  min-height: 60px;
}

/* Body */
.prnz-item__body {
  padding-top: 0.2rem;
}
.prnz-item__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.prnz-item.is-visible .prnz-item__eyebrow {
  opacity: 1;
  transform: translateX(0);
}
.prnz-item__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}
.prnz-item.is-visible .prnz-item__title {
  opacity: 1;
  transform: translateY(0);
}
.prnz-item__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease 0.4s;
}
.prnz-item.is-visible .prnz-item__divider {
  transform: scaleX(1);
}
.prnz-item__text {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.prnz-item.is-visible .prnz-item__text {
  opacity: 1;
  transform: translateY(0);
}
.prnz-item__text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}
.prnz-item__text p:last-child { margin-bottom: 0; }

/* Pull-Quote */
.prnz-item__pull {
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.prnz-item.is-visible .prnz-item__pull {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════
   PRINZIPIEN — Abschluss-Zitat
═══════════════════════════════════════════════════════ */
.prnz-closing {
  padding: 9rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.68) 0%, rgba(8,8,8,0.82) 100%),
    url('../img/ctaprinzipien.png') center center / cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .prnz-closing {
    background-attachment: scroll;
  }
}
.prnz-closing__chess {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.prnz-closing__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  border: none;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  line-height: 1.3;
}
.prnz-closing__attr {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .prnz-item {
    grid-template-columns: 60px 1fr;
    gap: 0 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .prnz-item--alt {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .prnz-item__num { font-size: 2.2rem; }
  .prnz-item__title { font-size: 1.7rem; }
  .prnz-progress__label { display: none; }
}
@media (max-width: 480px) {
  .prnz-item {
    grid-template-columns: 1fr;
  }
  .prnz-item__aside {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .prnz-item__line { display: none; }
}

/* ── PRINZIPIEN CTA — Hintergrundbild ───────────────────────────────── */
.prnz-cta {
  position: relative;
  background-attachment: fixed;
}
.scene--cta.prnz-cta {
  background:
    linear-gradient(180deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.85) 100%),
    url('assets/img/ctaprinzipien.png') center center / cover no-repeat !important;
  background-attachment: fixed !important;
}
@media (max-width: 768px) {
  .scene--cta.prnz-cta { background-attachment: scroll !important; }
}

/* ── PRINZIPIEN Splitscreen CTA ─────────────────────────────────────── */
.prnz-split-cta {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 70vh;
  background: var(--bg-2);
  overflow: hidden;
}
.prnz-split-cta__left {
  background: var(--bg-2);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--gold-border);
}
.prnz-split-cta__inner {
  padding: 6rem 4rem 6rem 8vw;
  width: 100%;
}
.prnz-split-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.prnz-split-cta__eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.prnz-split-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.prnz-split-cta__divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.6rem;
}
.prnz-split-cta__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.prnz-split-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.prnz-split-cta__leitsatz {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* Rechte Bild-Seite — größer, gerahmt */
.prnz-split-cta__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 3rem 2rem;
  background: var(--bg-2);
  position: relative;
}
.prnz-split-cta__img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.prnz-split-cta__img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.prnz-split-cta__img-wrap::after {
  content: '';
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.prnz-split-cta__img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
  filter: brightness(0.93) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.prnz-split-cta__img-wrap:hover .prnz-split-cta__img {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.015);
}
.prnz-split-cta__img-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #080808;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  z-index: 3;
}

@media (max-width: 900px) {
  .prnz-split-cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .prnz-split-cta__left { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .prnz-split-cta__inner {
    padding: 4rem 2rem;
  }
  .prnz-split-cta__right {
    padding: 3rem 2rem 4rem;
  }
  .prnz-split-cta__img-wrap { max-width: 400px; }
}


/* ═══════════════════════════════════════════════════════════════════
   KONTAKT FUNNEL — kf-*  (no-scroll, viewport-locked)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Outer shell: normal flow, nav visible, scrollable ───────────── */
.kf-wrap {
  background: var(--bg);
  min-height: calc(100vh - 80px);
  padding-top: 80px; /* space for fixed nav */
  display: flex;
  flex-direction: column;
}

/* ── Progress bar (sticky under nav) ────────────────────────────── */
.kf-progress {
  position: sticky;
  top: 80px; /* sits right below the nav */
  z-index: 500;
  height: 3px;
  background: rgba(201,168,76,0.12);
}
.kf-progress__fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}
.kf-progress__label {
  position: absolute;
  right: 1.2rem;
  top: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  opacity: 0.75;
  white-space: nowrap;
}

/* ── Steps container ─────────────────────────────────────────────── */
.kf-step {
  display: none;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
  animation: kfFadeIn 0.38s ease forwards;
}
.kf-step--active {
  display: flex;
}
.kf-step--exit {
  animation: kfFadeOut 0.22s ease forwards !important;
}
@keyframes kfFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kfFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* ── Step inner wrapper ──────────────────────────────────────────── */
.kf-step__inner {
  width: 100%;
  max-width: 820px;
  text-align: center;
}
.kf-step__inner--form {
  max-width: 680px;
  text-align: left;
}
.kf-step__inner--center {
  text-align: center;
}

/* ── Badge ───────────────────────────────────────────────────────── */
.kf-step__badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.85rem;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
}

/* ── Title ───────────────────────────────────────────────────────── */
.kf-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 0.45rem;
}
.kf-step__title em {
  color: var(--gold);
  font-style: italic;
}

/* ── Sub ─────────────────────────────────────────────────────────── */
.kf-step__sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Options grid ────────────────────────────────────────────────── */
.kf-options {
  display: grid;
  gap: 0.6rem;
  margin: 0 auto;
  max-width: 780px;
}
.kf-options--2col {
  grid-template-columns: 1fr 1fr;
}
.kf-options--1col {
  grid-template-columns: 1fr;
  max-width: 520px;
}

/* ── Option card ─────────────────────────────────────────────────── */
.kf-option {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.kf-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.kf-option:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.14);
}
.kf-option:hover::before { opacity: 1; }
.kf-option--selected {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.08) !important;
  box-shadow: 0 0 0 1px var(--gold), 0 4px 20px rgba(201,168,76,0.18) !important;
}
.kf-option--wide {
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem;
}
.kf-option__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.kf-option__label {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.kf-option__desc {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.kf-option--wide .kf-option__label,
.kf-option--wide .kf-option__desc { display: block; }

/* ── Form header (Step 4) ────────────────────────────────────────── */
.kf-form-header {
  text-align: center;
  margin-bottom: 1.1rem;
}
.kf-form-header__chess {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

/* ── Answer summary ──────────────────────────────────────────────── */
.kf-summary {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
}
.kf-summary:empty { display: none; }
.kf-summary__title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: 0.5rem;
}
.kf-summary__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.kf-summary__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
}
.kf-summary__key { color: var(--text-muted); }
.kf-summary__key::after { content: ':'; }
.kf-summary__val { color: var(--text); font-weight: 500; }

/* ── Form ────────────────────────────────────────────────────────── */
.kf-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.kf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.kf-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kf-form__group--full { grid-column: 1 / -1; }
.kf-form__group label {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}
.kf-form__group input,
.kf-form__group textarea,
.kf-form__group select {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.kf-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}
.kf-form__group select option { background: #111; color: #fff; }
.kf-form__group input:focus,
.kf-form__group textarea:focus,
.kf-form__group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.kf-form__group textarea { resize: none; }
.kf-form__group input::placeholder,
.kf-form__group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}
.kf-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.kf-form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 1px;
}
.kf-form__checkbox a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.kf-form__checkbox a:hover { text-decoration-color: var(--gold); }

/* ── Submit button ───────────────────────────────────────────────── */
.kf-submit {
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.22s ease;
}
.kf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Trust strip ─────────────────────────────────────────────────── */
.kf-form__trust {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  align-items: center;
}

/* ── Thanks screen ───────────────────────────────────────────────── */
.kf-thanks__icon {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.kf-thanks__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}
.kf-thanks__sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.kf-thanks__next {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 440px;
  margin: 0 auto 1.5rem;
  text-align: left;
}
.kf-thanks__step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.65rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
}
.kf-thanks__step-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.kf-thanks__leitsatz {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* ── Legal bar ───────────────────────────────────────────────────── */
.kf-legal {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: var(--bg);
  margin-top: auto;
}
.kf-legal p {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.kf-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.kf-legal a:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .kf-options--2col { grid-template-columns: 1fr; }
  .kf-form__row     { grid-template-columns: 1fr; }
  .kf-submit        { width: 100%; justify-content: center; text-align: center; }
  .kf-form__trust   { justify-content: center; }
  .kf-step__inner--form { text-align: center; }
  .kf-step__title   { font-size: clamp(1.4rem, 6vw, 2rem); }
}


/* ═══════════════════════════════════════════════════════════════════
   INNERE MEISTERSCHAFT — im-*
   ═══════════════════════════════════════════════════════════════════ */

/* ── Intro ───────────────────────────────────────────────────────── */


/* ═══════════════════════════════════════════════════════════════════
   INNERE MEISTERSCHAFT — komplettes Design-System v2
   ═══════════════════════════════════════════════════════════════════ */

/* ── Intro Banner ─────────────────────────────────────────────────── */
.im-intro {
  background: var(--bg);
  padding: 8rem 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.im-intro.im--visible {
  opacity: 1;
  transform: translateY(0);
}
.im-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.im-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.im-intro__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}
.im-intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 1.5rem;
}
.im-intro__quote em {
  color: var(--gold);
  font-style: italic;
}
.im-intro__attr {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: normal;
}
.im-intro__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.im-intro__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4rem;
}
.im-intro__scroll-hint span {
  display: block;
  width: 1px;
  height: 8px;
  background: var(--gold);
  opacity: 0.3;
  animation: imScrollPulse 1.6s ease infinite;
}
.im-intro__scroll-hint span:nth-child(2) { animation-delay: 0.2s; }
.im-intro__scroll-hint span:nth-child(3) { animation-delay: 0.4s; }
@keyframes imScrollPulse {
  0%, 100% { opacity: 0.15; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.4); }
}

/* ── Chapters Wrapper ─────────────────────────────────────────────── */
.im-chapters {
  background: var(--bg);
  position: relative;
}

/* ── Top Progress Bar ─────────────────────────────────────────────── */
.im-progress {
  position: sticky;
  top: 80px;
  z-index: 50;
  height: 2px;
  background: rgba(255,255,255,0.04);
}
.im-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.15s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ── Chapter Card (imc) ───────────────────────────────────────────── */
.imc {
  display: grid;
  grid-template-columns: 100px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem 6rem 4vw;
  gap: 0 4rem;
  position: relative;
  /* reveal state */
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.imc.im--visible {
  opacity: 1;
  transform: translateX(0);
}

/* alternating: dark rows */
.imc--dark {
  background: var(--bg-2);
  transform: translateX(24px); /* slide from right */
}
.imc--dark.im--visible {
  transform: translateX(0);
}

/* finale chapter — gold top border */
.imc--finale {
  border-top: 1px solid var(--gold-border);
  position: relative;
}
.imc--finale::before {
  content: 'Das Finale';
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* separator between chapters */
.imc + .imc:not(.imc--dark),
.imc--dark + .imc {
  border-top: 1px solid rgba(201,168,76,0.05);
}

/* ── Aside: badge + line ──────────────────────────────────────────── */
.imc__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.2rem;
}
.imc__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  justify-content: center;
  background: rgba(201,168,76,0.03);
  transition: border-color 0.4s, background 0.4s;
  flex-shrink: 0;
}
.imc:hover .imc__badge,
.imc.im--visible .imc__badge {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.07);
}
.imc__badge--king {
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.imc__num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.imc__piece {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.3s;
}
.imc.im--visible .imc__piece { color: var(--gold); }
.imc__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  min-height: 60px;
}

/* ── Body ─────────────────────────────────────────────────────────── */
.imc__head {
  margin-bottom: 2rem;
}
.imc__kap {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 0.8rem;
}
.imc__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin: 0;
}
.imc__title em {
  color: var(--gold);
  font-style: italic;
}
.imc__text {
  margin-bottom: 0;
}
.imc__text p {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.imc__text p:last-child { margin-bottom: 0; }
.imc__text em {
  color: var(--text);
  font-style: italic;
}

/* ── Pull Quote ───────────────────────────────────────────────────── */
.imc__pull {
  margin-top: 2.5rem;
  padding: 1.4rem 2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201,168,76,0.06), transparent);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
  position: relative;
}
.imc__pull::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.8rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}
.imc__pull--king {
  border-left-width: 3px;
  background: linear-gradient(to right, rgba(201,168,76,0.1), transparent);
  color: var(--gold-light);
  font-size: 1.15rem;
}

/* ── Interlude ────────────────────────────────────────────────────── */
.im-interlude {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.im-interlude.im--visible {
  opacity: 1;
  transform: scale(1);
}
.im-interlude::before,
.im-interlude::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border));
}
.im-interlude::before { top: 0; height: 4rem; }
.im-interlude::after  {
  bottom: 0; height: 4rem;
  background: linear-gradient(to top, transparent, var(--gold-border));
}
.im-interlude__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.im-interlude__deco {
  display: block;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 2rem;
  letter-spacing: 0.5em;
}
.im-interlude__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 1.25rem;
}
.im-interlude__attr {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Closing Quote ────────────────────────────────────────────────── */
.im-closing {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.im-closing.im--visible {
  opacity: 1;
  transform: translateY(0);
}
.im-closing__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.88) 100%),
    url('assets/img/inneremeisterschaft.png') center 30% / cover no-repeat;
  z-index: 0;
}
.im-closing__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.im-closing__chess {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2.5rem;
  opacity: 0.6;
}
.im-closing__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
.im-closing__quote em {
  color: var(--gold);
  font-style: italic;
}
.im-closing__attr {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── CTA Splitscreen ──────────────────────────────────────────────── */
.im-cta {
  display: grid;
  grid-template-columns: 1fr 40%;
  min-height: 62vh;
}
.im-cta__left {
  background: var(--bg-2);
  padding: 6rem 5rem 6rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.im-cta__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.im-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin: 0;
}
.im-cta__title em {
  color: var(--gold);
  font-style: italic;
}
.im-cta__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.im-cta__sub {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
}
.im-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.im-cta__leitsatz {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
}
.im-cta__right {
  position: relative;
  overflow: hidden;
}
.im-cta__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.im-cta__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,0.6) 0%, rgba(15,15,15,0.1) 70%);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .imc {
    grid-template-columns: 72px 1fr;
    gap: 0 2rem;
    padding: 4rem 1.5rem;
  }
  .im-cta { grid-template-columns: 1fr; }
  .im-cta__right { min-height: 45vh; }
  .im-cta__left { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .imc {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.25rem;
  }
  .imc__aside {
    flex-direction: row;
    margin-bottom: 1.5rem;
  }
  .imc__line { display: none; }
  .imc__badge { width: 52px; height: 52px; }
  .im-intro__quote { font-size: clamp(1.5rem, 7vw, 2rem); }
  .imc--finale::before { font-size: 0.55rem; }
}


/* ═══════════════════════════════════════════════════════════════════
   METHODE — ms-* Design-System
   ═══════════════════════════════════════════════════════════════════ */

/* ── Intro ────────────────────────────────────────────────────────── */
.ms-intro {
  background: var(--bg);
  padding: 8rem 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ms-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ms-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ms-intro__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.4rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}
.ms-intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
.ms-intro__quote em {
  color: var(--gold);
  font-style: italic;
}
.ms-intro__attr {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Sticky Säulen-Navigation ─────────────────────────────────────── */
.ms-nav {
  position: sticky;
  top: 80px;
  z-index: 40;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
}
.ms-nav__inner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ms-nav__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}
.ms-nav__item:hover {
  color: var(--text);
  border-bottom-color: rgba(201,168,76,0.3);
}
.ms-nav__item--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.ms-nav__piece {
  font-size: 1rem;
  opacity: 0.6;
}
.ms-nav__item--active .ms-nav__piece { opacity: 1; }
.ms-nav__num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 900;
  opacity: 0.5;
}
.ms-nav__label { letter-spacing: 0.04em; }
.ms-nav__progress {
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.12s linear;
  box-shadow: 0 0 6px rgba(201,168,76,0.4);
}

/* ── Säule Card ───────────────────────────────────────────────────── */
.ms-saeule {
  background: var(--bg);
  border-bottom: 1px solid rgba(201,168,76,0.06);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ms-saeule.ms--visible {
  opacity: 1;
  transform: translateY(0);
}
.ms-saeule--alt {
  background: var(--bg-2);
}

/* Säule 05 — Finale: gold top accent */
.ms-saeule--finale {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
  position: relative;
}
.ms-saeule--finale::before {
  content: 'Das Fundament';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Säule Head ───────────────────────────────────────────────────── */
.ms-saeule__head {
  border-bottom: 1px solid rgba(201,168,76,0.07);
  padding: 3rem 2rem 2.5rem;
}
.ms-saeule__head-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ms-saeule__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  flex-shrink: 0;
  gap: 0.15rem;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.ms-saeule:hover .ms-saeule__badge,
.ms-saeule.ms--visible .ms-saeule__badge {
  border-color: rgba(201,168,76,0.45);
}
.ms-saeule__badge--gold {
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(201,168,76,0.22);
}
.ms-saeule__piece {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}
.ms-saeule__num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.ms-saeule__badge--gold .ms-saeule__num { opacity: 1; }
.ms-saeule__kap {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 0.6rem;
}
.ms-saeule__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin: 0;
}
.ms-saeule__title em {
  color: var(--gold);
  font-style: italic;
}

/* ── Säule Body: Text + Aside ─────────────────────────────────────── */
.ms-saeule__body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.ms-saeule__text p {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.ms-saeule__text p:last-child { margin-bottom: 0; }
.ms-saeule__text em { color: var(--text); font-style: italic; }

/* ── Aside: pull quote + tags ─────────────────────────────────────── */
.ms-saeule__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(80px + 56px + 2rem);
}
.ms-saeule__pull {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  padding: 1.5rem 1.8rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201,168,76,0.07), transparent);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.ms-saeule__pull::before {
  content: '"';
  position: absolute;
  top: -0.4rem;
  left: 1.6rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}
.ms-saeule__pull--gold {
  background: linear-gradient(to right, rgba(201,168,76,0.12), transparent);
  color: var(--gold-light);
  font-size: 1.2rem;
  border-left-width: 3px;
}
.ms-saeule__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ms-saeule__tags span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  background: rgba(201,168,76,0.03);
  transition: border-color 0.25s, color 0.25s;
}
.ms-saeule:hover .ms-saeule__tags span {
  border-color: rgba(201,168,76,0.35);
  color: var(--text);
}

/* ── Leitsatz ─────────────────────────────────────────────────────── */
.ms-leitsatz {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 7rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ms-leitsatz.ms--visible {
  opacity: 1;
  transform: translateY(0);
}
.ms-leitsatz__inner { max-width: 600px; margin: 0 auto; }
.ms-leitsatz__piece {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 2rem;
}
.ms-leitsatz__quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.ms-leitsatz__attr {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── CTA ──────────────────────────────────────────────────────────── */
.ms-cta {
  background: var(--bg);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ms-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ms-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ms-cta__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ms-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}
.ms-cta__title em { color: var(--gold); font-style: italic; }
.ms-cta__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.ms-cta__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  text-align: center;
}
.ms-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ms-cta__leitsatz {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ms-saeule__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .ms-saeule__aside { position: static; }
  .ms-nav__label { display: none; }
  .ms-nav__item { gap: 0.3rem; padding: 1rem 0.75rem; }
}
@media (max-width: 600px) {
  .ms-nav { display: none; }
  .ms-saeule__head { padding: 2.5rem 1.25rem 2rem; }
  .ms-saeule__body { padding: 2rem 1.25rem 3rem; }
  .ms-saeule__badge { width: 56px; height: 56px; }
  .ms-saeule__head-inner { gap: 1.25rem; }
  .ms-leitsatz { padding: 5rem 1.25rem; }
  .ms-cta { padding: 5rem 1.25rem; }
}


/* ── ms-cta-stage: Dark Stage CTA mit Hintergrundbild ──────────────── */
.ms-cta-stage {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ms-cta-stage__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ms-cta-stage:hover .ms-cta-stage__bg {
  transform: scale(1.0);
}
.ms-cta-stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.88) 45%,
    rgba(8,8,8,0.45) 70%,
    rgba(8,8,8,0.1) 100%
  );
}
.ms-cta-stage__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.ms-cta-stage__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
.ms-cta-stage__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
}
.ms-cta-stage__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin: 0;
}
.ms-cta-stage__title em {
  color: var(--gold);
  font-style: italic;
}
.ms-cta-stage__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.ms-cta-stage__sub {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}
.ms-cta-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}
.ms-cta-stage__leitsatz {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  width: 100%;
}

@media (max-width: 700px) {
  .ms-cta-stage {
    min-height: auto;
  }
  .ms-cta-stage__overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.92) 60%,
      rgba(8,8,8,0.75) 100%
    );
  }
  .ms-cta-stage__inner { padding: 5rem 1.25rem; }
  .ms-cta-stage__content { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════
   MOBILE OPTIMIERUNG — 100% Responsiv
   Breakpoints: 900px | 768px | 600px | 480px | 380px
   ═══════════════════════════════════════════════════════════════════ */

/* ── GLOBAL MOBILE FIX ──────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
* { box-sizing: border-box; }

img, video {
  max-width: 100%;
  height: auto;
}

/* Mindest Touch-Zielgröße für alle interaktiven Elemente */
button, a, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}
.btn {
  min-height: 44px;
  touch-action: manipulation;
}

/* ── NAVIGATION MOBILE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav__inner {
    grid-template-columns: auto 1fr;
    padding: 0 1.25rem;
  }
  .nav__logo {
    justify-content: flex-start;
  }
  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav__links--left,
  .nav__links--right {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 0;
  }
  .nav__inner {
    padding: 0 1rem;
  }
  .nav__logo {
    font-size: 0.95rem;
  }
  .nav__logo-icon {
    font-size: 1.2rem;
  }
}

/* Mobile Menü — bessere Touch-Erfahrung */
.nav__mobile-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
}
.nav__mobile-close {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── HERO MOBILE ────────────────────────────────────────────────── */
/* Video im Hintergrund — Text darüber (Fullscreen-Stil) */
@media (max-width: 900px) {
  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
    max-height: none;
    overflow: hidden;
  }
  /* Video: absoluter Hintergrund */
  .hero__right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: unset;
    max-height: unset;
    order: unset;
    z-index: 0;
  }
  .hero__right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* vollständig zentriert, kein Ausschnitt */
    transform: scale(1) !important;
    transition: none !important;
  }
  /* Leichteres Overlay — Video bleibt gut sichtbar, Text trotzdem lesbar */
  .hero__right-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.65) 0%,
      rgba(8,8,8,0.35) 45%,
      rgba(8,8,8,0.55) 100%
    );
  }
  .hero__right::before { display: none; }

  /* Text-Bereich über dem Video */
  .hero__left {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100svh;
    background: transparent;
    padding: 7rem 1.5rem 3rem;
    order: unset;
    justify-content: center;
  }
  .hero__left::after { display: none; }

  /* Sub-Text etwas heller damit er auf dem helleren Overlay lesbar bleibt */
  .hero__sub {
    color: rgba(237,232,220,0.90);
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .hero__left  { padding: 6.5rem 1.25rem 2.5rem; }
  .hero__title {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem) !important;
    line-height: 1.1;
  }
  .hero__sub {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero__stat-divider { display: none; }
  .hero__meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .hero__left {
    padding: 5rem 1rem 1.75rem;
  }
  .hero__title {
    font-size: clamp(1.7rem, 9vw, 2.2rem) !important;
  }
}

/* ── INTRO (Preloader) MOBILE ───────────────────────────────────── */
@media (max-width: 600px) {
  .intro__chess-symbol { font-size: 2.8rem; }
  .intro__tagline { gap: 0.75rem; }
  .intro__word { font-size: clamp(0.85rem, 4vw, 1.2rem); }
  .intro__bar { height: 10vh; }
}

/* ── LETTERBOX MOBILE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  body.cinema-mode .letterbox { height: 4vh; }
}

/* ── WRAP / CONTAINER MOBILE ────────────────────────────────────── */
@media (max-width: 600px) {
  .wrap,
  .wrap--narrow {
    padding: 0 1.25rem;
  }
  .section-pad { padding: 3.5rem 0; }
  .section-pad--sm { padding: 2.5rem 0; }
}
@media (max-width: 380px) {
  .wrap, .wrap--narrow { padding: 0 1rem; }
}

/* ── TYPOGRAPHY MOBILE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  p  { font-size: 0.9rem; }
}

/* ── BUTTONS MOBILE ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .cta-btns,
  .cta__actions,
  .story-cta__actions,
  .prnz-split-cta__actions,
  .im-cta__actions,
  .ms-cta__actions,
  .ms-cta-stage__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn,
  .cta__actions .btn,
  .story-cta__actions .btn,
  .prnz-split-cta__actions .btn,
  .im-cta__actions .btn,
  .ms-cta__actions .btn,
  .ms-cta-stage__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── PROBLEM SECTION MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .problem {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .problem__visual {
    position: relative;
    height: 55vw;
    max-height: 400px;
    top: auto;
  }
  .problem__content {
    padding: 3.5rem 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .problem__badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .problem__content { padding: 3rem 1.25rem; }
  .problem__item { grid-template-columns: 40px 1fr; gap: 1rem; }
  .problem__item-icon { width: 40px; height: 40px; }
  .problem__cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .problem__badge { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* ── LOESUNG SECTION MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .loesung__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .loesung__card--gold::after { display: none; }
}
@media (max-width: 600px) {
  .loesung { padding: 4rem 0; }
  .loesung__header { margin-bottom: 3rem; }
  .loesung__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .loesung__bottom .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── PERSON SECTION MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .person__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .person__img-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .person__img-frame { aspect-ratio: 3/4; }
  .person__img-frame img { object-position: 20% 15%; }
}

/* ── PRINZIPIEN SECTION MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .prinzipien__grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
  }
  .prinzip__card:nth-child(3n) { border-right: 1px solid var(--gold-border); }
  .prinzip__card:nth-child(2n) { border-right: none; }
  .prinzip__card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.75rem 1.5rem;
  }
  .prinzip__card--wide h3,
  .prinzip__card--wide p { flex: unset; }
  .scene--prinzipien { background-attachment: scroll; }
}
@media (max-width: 500px) {
  .prinzipien__grid { grid-template-columns: 1fr; }
  .prinzip__card { border-right: none !important; }
  .prinzip__card-link { opacity: 0.7; transform: none; }
}

/* ── CHESS SCENE MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .chess__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .chess__board { display: none; }
}

/* ── SYSTEM PILLARS MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .system__pillars,
  .system__pillars--overview {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .system__pillars,
  .system__pillars--overview {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .system__pillars,
  .system__pillars--overview {
    grid-template-columns: 1fr;
  }
}

/* ── TRUTHS / WAHRHEITEN MOBILE ─────────────────────────────────── */
@media (max-width: 600px) {
  .truth__item {
    grid-template-columns: 42px 1fr;
    gap: 0.75rem;
  }
  .truth__num { font-size: 2rem; }
  .truths-section { padding: 4rem 0; }
  .truth-row {
    grid-template-columns: 42px 1px 30px 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .truth-row__arrow { display: none; }
}

/* ── STEPS SECTION MOBILE ───────────────────────────────────────── */
@media (max-width: 600px) {
  .step-row {
    grid-template-columns: 48px 1fr;
    gap: 0 1rem;
    padding: 1.5rem 0;
  }
  .step-row__icon { display: none; }
  .steps-section { padding: 4rem 0; }
}
@media (max-width: 380px) {
  .step-row { grid-template-columns: 40px 1fr; }
  .step-row__num { font-size: 2rem; }
}

/* ── MARQUEE MOBILE ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .marquee-track span { font-size: 0.9rem; }
  .marquee-wrap { padding: 1rem 0; }
}

/* ── SCENE MOBILE ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .scene { padding: 4rem 0; }
  .scene--cta { padding: 5rem 0; }
  .scene--statement,
  .scene--person { background-attachment: scroll; }
  .scene__header { margin-bottom: 2.5rem; }
  .scene__header h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ── STATEMENT QUOTE MOBILE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .statement__chess { font-size: clamp(3rem, 12vw, 5rem); }
  .statement__quote p {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.35;
  }
  .fs-statement__quote {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
  }
  .fs-statement { padding: 5rem 1.5rem; min-height: 60vh; }
}

/* ── ÜBER MICH / STORY-HERO MOBILE ─────────────────────────────── */
@media (max-width: 860px) {
  .story-hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 60vw;
  }
  .story-hero__left { order: 1; }
  .story-hero__left-content { padding: 7rem 1.5rem 3rem; }
  .story-hero__right {
    order: 2;
    height: 60vw;
  }
  .story-hero__caption { bottom: 1rem; left: 1rem; }
}
@media (max-width: 540px) {
  .story-hero__right { height: 72vw; }
  .story-hero__title { font-size: clamp(2rem, 8.5vw, 3rem) !important; }
  .story-hero__sub { max-width: 100%; }
  .story-hero__scroll { display: none; }
}

/* ── STORY SPLIT (Kapitel) MOBILE ───────────────────────────────── */
@media (max-width: 860px) {
  .story-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-split__left { position: static; }
  .story-split--portrait { grid-template-columns: 1fr; }
  .story-portrait { position: static; }
}
@media (max-width: 540px) {
  .story-moments { grid-template-columns: 1fr; }
  .story-chapter { padding: 4.5rem 0 3.5rem; }
  .story-quote-break { padding: 4rem 0; }
  .story-chapter__body p { font-size: 0.95rem; }
}

/* ── KAPITEL 01/02 MOBILE ───────────────────────────────────────── */
@media (max-width: 720px) {
  .ch01__wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .ch01__aside { position: static; }
  .ch01__chapter-tag { flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .ch01__tag-big { font-size: 2.2rem; }
  .ch01__facts { flex-wrap: wrap; gap: 1.25rem; }
  .ch01__fact-sep { display: none; }
  .ch02__versus { grid-template-columns: 1fr; }
  .ch02__versus-divider {
    padding: 0.75rem 2rem;
    border: none;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .ch02__versus-or { writing-mode: horizontal-tb; }
}
@media (max-width: 480px) {
  .ch01 { padding: 5rem 0 4rem; }
  .ch02 { padding: 5rem 0 4rem; }
  .ch01__statement { gap: 1rem; padding: 1.5rem; }
  .ch02__cost { gap: 1rem; padding: 1.5rem; }
}

/* ── TIMELINE (ÜBER MICH) MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .timeline__chapter {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 3rem 0;
  }
  .timeline__marker {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0;
  }
  .timeline__chapter-num { font-size: 1.6rem; }
  .timeline__line { display: none; }
  .timeline__text p { font-size: 0.95rem; }
}

/* ── PAGE CINEMATIC HERO MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .page-cinematic-hero { min-height: 55vh; padding-bottom: 4rem; }
  .page-cinematic-hero__title { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .page-cinematic-hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .page-cinematic-hero { min-height: 50vh; padding-bottom: 3rem; }
  .page-cinematic-hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

/* ── METHODE CHAPTER MOBILE ─────────────────────────────────────── */
@media (max-width: 640px) {
  .methode-chapter {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .methode-chapter__sidebar {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .methode-chapter__connector { display: none; }
  .methode-chapter__text p { font-size: 0.95rem; }
}

/* ── PRINZIP CHAPTER MOBILE ─────────────────────────────────────── */
@media (max-width: 640px) {
  .prinzip-chapter__header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .prinzip-chapter__num { font-size: clamp(3rem, 10vw, 5rem); }
  .prinzip-chapter__title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .prinzip-chapter__body p { font-size: 0.95rem; }
}

/* ── PROCESS STEPS (ZUSAMMENARBEIT) MOBILE ─────────────────────── */
@media (max-width: 640px) {
  .process__step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }
  .process__step-chess { display: none; }
  .process__connector { margin-left: 0; }
}

/* ── FITFOR GRID MOBILE ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .fitfor__grid { grid-template-columns: 1fr; }
  .fitfor__col { padding: 2rem 1.5rem; }
}

/* ── KONTAKT FUNNEL MOBILE ──────────────────────────────────────── */
@media (max-width: 640px) {
  .kontakt__grid { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt__info { position: static; }
  .kontakt__info-block { padding: 1.5rem; }
  .funnel__steps { grid-template-columns: 1fr; }
  .funnel__arrow { display: none; }
}
@media (max-width: 480px) {
  .kf-options--2col { grid-template-columns: 1fr; }
  .kf-form__row { grid-template-columns: 1fr; }
  .kf-submit { width: 100%; justify-content: center; text-align: center; }
  .kf-step { padding: 2rem 1rem 2.5rem; }
  .kf-step__title { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
}

/* ── FAQ SECTION MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-left .img-placeholder--faq { display: none; }
  .faq-left h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}
@media (max-width: 480px) {
  .faq-item__trigger { padding: 1.25rem 0; }
  .faq-item__q { font-size: 0.92rem; }
}

/* ── IMPRESSUM MOBILE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .impressum-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── FOOTER MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 3rem;
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__top-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .site-footer__leitsatz { font-size: 0.95rem; }
  .site-footer__cta { width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 500px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { justify-content: center; text-align: center; flex-direction: column; gap: 0.5rem; }
  .site-footer__bottom-sep { display: none; }
}

/* ── STORY CTA MOBILE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .story-cta { min-height: auto; }
  .story-cta__bg { background-attachment: scroll; }
  .story-cta__inner { padding: 4rem 1.25rem; }
  .story-cta__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .story-cta__actions { flex-direction: column; width: 100%; }
  .story-cta__btn { width: 100%; justify-content: center; }
}

/* ── PRNZ ITEMS MOBILE ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .prnz-item {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .prnz-item--alt {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .prnz-item__aside {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .prnz-item__line { display: none; }
  .prnz-item__num { font-size: 2rem; }
  .prnz-item__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .prnz-item__text p { font-size: 0.92rem; }
  .prnz-progress__label { display: none; }
}
@media (max-width: 380px) {
  .prnz-item { padding-left: 1rem; padding-right: 1rem; }
}

/* ── PRNZ SPLIT CTA MOBILE ──────────────────────────────────────── */
@media (max-width: 760px) {
  .prnz-split-cta { grid-template-columns: 1fr; min-height: auto; }
  .prnz-split-cta__left { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .prnz-split-cta__inner { padding: 4rem 1.5rem; }
  .prnz-split-cta__right { padding: 2rem 1.5rem 3.5rem; }
  .prnz-split-cta__img-wrap { max-width: 380px; }
}
@media (max-width: 480px) {
  .prnz-split-cta__actions { flex-direction: column; }
  .prnz-split-cta__actions .btn { width: 100%; justify-content: center; }
  .prnz-split-cta__img-wrap::before,
  .prnz-split-cta__img-wrap::after { display: none; }
}

/* ── INNERE MEISTERSCHAFT MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  .imc {
    grid-template-columns: 64px 1fr;
    gap: 0 1.5rem;
    padding: 3.5rem 1.25rem;
  }
  .imc__title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .imc__text p { font-size: 0.92rem; }
  .im-cta { grid-template-columns: 1fr; }
  .im-cta__right { min-height: 45vw; }
  .im-cta__left { padding: 3.5rem 1.5rem; gap: 1.25rem; }
  .im-closing { padding: 6rem 1.5rem; }
  .im-interlude { padding: 4.5rem 1.5rem; }
}
@media (max-width: 500px) {
  .imc {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }
  .imc__aside {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .imc__line { display: none; }
  .imc__badge { width: 48px; height: 48px; }
  .im-intro { padding: 5.5rem 1.25rem 5rem; }
  .im-intro__quote { font-size: clamp(1.4rem, 6.5vw, 2rem); }
  .im-cta__actions { flex-direction: column; }
  .im-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ── METHODE / SÄULEN MOBILE ────────────────────────────────────── */
@media (max-width: 760px) {
  .ms-saeule__body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 3rem;
  }
  .ms-saeule__aside { position: static; }
  .ms-saeule__head { padding: 2.5rem 1.25rem 2rem; }
  .ms-saeule__head-inner { gap: 1.25rem; }
  .ms-saeule__badge { width: 56px; height: 56px; }
  .ms-saeule__title { font-size: clamp(1.4rem, 5.5vw, 2.2rem); }
  .ms-leitsatz { padding: 5rem 1.25rem; }
  .ms-cta { padding: 5rem 1.25rem; }
  .ms-nav__label { display: none; }
  .ms-nav__item { gap: 0.3rem; padding: 1rem 0.6rem; font-size: 0.68rem; }
}
@media (max-width: 480px) {
  .ms-nav { display: none; }
  .ms-intro { padding: 5.5rem 1.25rem 5rem; }
  .ms-intro__quote { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}

/* ── ZITAT01 (FOTO-SEKTION) MOBILE ─────────────────────────────── */
@media (max-width: 540px) {
  .zitat01 { padding: 5.5rem 0 5rem; }
  .zitat01__mark { display: none; }
  .zitat01__part2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .foto-moment { height: 70vw; }
  .foto-moment__bg { background-attachment: scroll; }
  .foto-moment__q2 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .story-foto-moment__frame { height: 52vw; background-attachment: scroll; }
  .story-foto-moment__text { padding: 1.25rem; }
  .story-foto-moment__quote { font-size: 1.15rem; }
}

/* ── IMG FRAME MOBILE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .img-frame__inner { height: 280px; }
  .img-frame--square .img-frame__inner { height: 260px; }
  .img-frame__border { display: none; }
}

/* ── IMG TRIO MOBILE ────────────────────────────────────────────── */
@media (max-width: 760px) {
  .img-trio__grid { grid-template-columns: 1fr 1fr; }
  .img-trio__item--shifted { margin-bottom: 0; }
}
@media (max-width: 500px) {
  .img-trio__grid { grid-template-columns: 1fr; }
  .img-trio__item--tall .img-trio__frame img,
  .img-trio__item:not(.img-trio__item--tall) .img-trio__frame img { height: 56vw; }
}

/* ── SPLIT TIMELINE MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .split-timeline { grid-template-columns: 1fr; }
  .split-timeline__left {
    position: static;
    height: auto;
    padding: 3.5rem 1.5rem 2rem;
  }
  .split-timeline__right {
    padding: 2rem 1.5rem 3.5rem;
    border-left: none;
    border-top: 1px solid var(--gold-border);
  }
}
@media (max-width: 480px) {
  .split-timeline__left { padding: 3rem 1.25rem 1.75rem; }
  .split-timeline__right { padding: 1.75rem 1.25rem 3rem; }
}

/* ── ABOUT SPLIT MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-split__img-col { padding: 3rem 2rem; }
  .about-split__text-col { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .about-split__stats { gap: 1rem; flex-direction: column; }
  .about-stat__sep { display: none; }
  .about-stat { padding-left: 0; }
  .about-split__text-col { padding: 2.5rem 1.25rem; }
}

/* ── CONTACT FORM MOBILE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem 1.25rem; }
}

/* ── CHESS BANNER MOBILE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .chess-banner__inner { grid-template-columns: 1fr; }
  .chess-banner__img-wrap { display: none; }
  .chess-stats-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .chess-banner { padding: 4rem 0; }
}

/* ── IMG STRIP MOBILE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .img-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .img-strip__grid { grid-template-columns: 1fr; }
}

/* ── STORY-CTA BG ATTACHMENT MOBILE ────────────────────────────── */
@media (max-width: 768px) {
  .scene--statement,
  .scene--person,
  .loesung,
  .scene--prinzipien,
  .img-quote__bg,
  .zitat01,
  .foto-moment__bg {
    background-attachment: scroll !important;
  }
}

/* ── METAPHOR GRID MOBILE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .metaphor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .chess-mini-board { max-width: 280px; margin: 0 auto; }
}

/* ── ABOUT FULLBLEED MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .about-fullbleed__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-fullbleed__piece { display: none; }
}
@media (max-width: 480px) {
  .about-fullbleed { padding: 5rem 0; }
  .about-fullbleed__initials { font-size: clamp(5rem, 18vw, 8rem); }
}

/* ── PRELOADER MOBILE ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .preloader__king { font-size: 3.5rem; }
  .preloader__bar-wrap { width: 160px; }
}

/* ── TOAST MOBILE ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}

/* ── PROGRESS BAR + SCROLL REVEAL MOBILE ───────────────────────── */
@media (max-width: 480px) {
  .reveal { transform: translateY(20px); }
}

/* ── ABOUT SPLIT STATS MOBILE ───────────────────────────────────── */
@media (max-width: 768px) {
  .about-split__stats {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
}

/* ── STORY CHAPTER PHOTO MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .story-chapter--photo {
    min-height: auto;
    padding: 0;
  }
  .story-chapter__photo-overlay {
    background: linear-gradient(180deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.82) 100%);
  }
  .story-chapter__photo-content {
    padding: 5rem 0;
  }
}

/* ── IM CLOSING BG ATTACHMENT MOBILE ───────────────────────────── */
@media (max-width: 600px) {
  .im-closing__bg { background-attachment: scroll; }
}

/* ── MS CTA STAGE BG MOBILE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .ms-cta-stage__overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.92) 60%,
      rgba(8,8,8,0.75) 100%
    ) !important;
  }
  .ms-cta-stage__content { max-width: 100%; }
}

/* ── GRID OVERFLOW SCHUTZ ───────────────────────────────────────── */
@media (max-width: 600px) {
  .prinzip-section { padding: 4rem 0 3rem; }
  .prinzip-track {
    gap: 1rem;
  }
  .prinzip-card {
    width: 240px;
  }
}

/* ── KEIN HORIZONTAL-SCROLL ─────────────────────────────────────── */
body { max-width: 100vw; overflow-x: hidden; }
.hero,
.problem,
.loesung,
.scene,
.story-hero,
.page-cinematic-hero,
.marquee-wrap,
.prnz-split-cta,
.im-cta,
.ms-saeule {
  overflow-x: hidden;
}

/* ── BERATER WIDGET MOBILE ───────────────────────────────────────── */
/* Das Widget hat Inline-Styles, wir überschreiben via ID */
@media (max-width: 400px) {
  #ss-berater-widget {
    bottom: 1rem !important;
    right: 0.75rem !important;
    left: 0.75rem !important;
    align-items: stretch !important;
  }
  #ss-berater-panel {
    width: auto !important;
    max-width: calc(100vw - 1.5rem) !important;
  }
}

/* ── CTA TEXT MAX-WIDTH MOBILE RESET ────────────────────────────── */
@media (max-width: 600px) {
  /* Inline style="max-width:520px" auf p-Tags in CTA-Sektionen */
  .scene--cta .wrap--narrow p[style],
  .cta__section p[style] {
    max-width: 100% !important;
  }
}

/* ── ZITAT01 / FOTO-MOMENT BG-SIZE SICHERHEIT ───────────────────── */
/* Hintergründe die per Inline-Style gesetzt werden */
.zitat01[style],
.foto-moment__bg[style],
.story-cta__bg[style],
.story-chapter__photo[style] {
  background-size: cover !important;
  background-position: center center !important;
}
@media (max-width: 768px) {
  .zitat01[style],
  .foto-moment__bg[style],
  .story-cta__bg[style],
  .story-chapter__photo[style] {
    background-attachment: scroll !important;
  }
}

/* ── NAV MOBILE CLOSE BUTTON TOUCH-TARGET ───────────────────────── */
#mobileClose {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.25rem;
}

/* ── HERO GLOW: NUR AUF DESKTOP ─────────────────────────────────── */
@media (hover: none) {
  .hero__glow {
    transform: translate(-50%, -50%) !important;
  }
}

/* ── FINAL OVERFLOW GUARD ───────────────────────────────────────── */
@media (max-width: 768px) {
  section, div, article, main, aside, header, footer, nav {
    max-width: 100%;
  }
  [style*="max-width"] {
    max-width: min(var(--mw, 9999px), 100%) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE FIXES — PHASE 2
   Intro-Spinnen, Hero, Grain, Sektions-Bugs
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. INTRO / LADEBILDSCHIRM ──────────────────────────────────── */

/* Ken-Burns-Zoom auf Mobile deaktivieren — zu ruckelig */
@media (max-width: 768px) {
  #intro::after {
    animation: none !important;
    transform: scale(1) !important;
    transition: none !important;
  }
  #intro.step-1::after {
    transform: scale(1) !important;
  }

  /* Intro-Balken kleiner auf Mobile */
  .intro__bar {
    height: 8vh;
  }

  /* Wörter-Abstand auf kleinen Screens */
  .intro__tagline {
    gap: 0.5rem;
  }
  .intro__word {
    font-size: clamp(0.8rem, 3.5vw, 1.1rem);
    letter-spacing: 0.12em;
  }

  /* Name kleiner */
  .intro__name {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  /* Intro-Grain auf Mobile komplett aus — kostet viel GPU */
  .intro__grain {
    display: none;
  }

  /* Overlay etwas dunkler damit Text lesbarer */
  #intro::before {
    background: rgba(8,8,8,0.78);
  }
}

/* Auf sehr kleinen Screens (<420px): Intro noch kompakter */
@media (max-width: 420px) {
  .intro__chess-symbol {
    font-size: 2.2rem;
  }
  .intro__word {
    font-size: 0.75rem;
  }
  .intro__bar {
    height: 6vh;
  }
}

/* ── 2. HERO MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* cinema-mode Letterbox auf Mobile deaktivieren — stört das Layout */
  body.cinema-mode .letterbox {
    height: 0 !important;
  }

  /* Letterbox komplett ausblenden auf Mobile */
  .letterbox {
    display: none !important;
  }

  /* Hero-Transitions auf Mobile kürzen — wirkt sonst träge */
  .hero__left {
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s !important;
  }
  .hero__meta,
  .hero__title-line,
  .hero__sub,
  .hero__ctas,
  .hero__scroll {
    transition-duration: 0.4s !important;
  }

  /* hero__sub max-width auf Mobile aufheben */
  .hero__sub {
    max-width: 100% !important;
  }

  /* Diagonal-Übergang rechts auf Mobile ausblenden */
  .hero__right::before {
    display: none;
  }

  /* hero__aside (Zitat über Video) auf Mobile ausblenden —
     Widget rechts unten würde sonst kollidieren */
  .hero__aside {
    display: none !important;
  }

  /* Scroll-Indicator auf Mobile ausblenden — überlappt mit Widget */
  .hero__scroll {
    display: none !important;
  }
}

/* Video-Hintergrund auf Mobile — Ken-Burns aus, object-position angepasst */
@media (max-width: 900px) {
  .hero__right-img {
    transform: scale(1) !important;
    transition: none !important;
    object-position: center 30%;
  }
}

@media (max-width: 900px) {
  .hero__right-img--zus {
    object-position: right 30% !important;
  }
}

/* ── 3. GRAIN ANIMATIONEN AUF MOBILE DEAKTIVIEREN ───────────────── */
/* grainAnim ist GPU-intensiv und verursacht Ruckeln auf Mobile */
@media (max-width: 768px) {
  .grain {
    animation: none !important;
    display: none;
  }
  .intro__grain {
    display: none;
  }
}

/* ── 4. SCENE__NUMBER OVERLAP FIX ──────────────────────────────── */
/* Die riesigen dekorativen Zahlen (06, 07 etc.) überlappen Content */
@media (max-width: 768px) {
  .scene__number {
    font-size: clamp(4rem, 18vw, 7rem);
    top: 0.5rem;
    right: 1rem;
    opacity: 0.04;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .scene__number {
    display: none;
  }
}

/* ── 5. PROBLEM SEKTION FIXES ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Vertikaler Label über dem Bild — ragt aus auf Mobile */
  .problem__vertical-label {
    display: none;
  }

  /* Problem-Visual als Bild oben, dann Content unten */
  .problem {
    display: flex;
    flex-direction: column;
  }
  .problem__visual {
    width: 100%;
    height: 52vw;
    min-height: 200px;
    max-height: 320px;
    position: relative;
    flex-shrink: 0;
  }
  .problem__content {
    padding: 2.5rem 1.25rem 3rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* Badge auf Mobile kleiner */
  .problem__badge {
    padding: 0.6rem 0.9rem;
    gap: 0.6rem;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }
  .problem__badge-icon {
    font-size: 1rem;
  }
  .problem__badge-text strong {
    font-size: 0.8rem;
  }
  .problem__badge-text span {
    font-size: 0.7rem;
  }
}

/* ── 6. SCENE STATEMENT + PERSON: background-attachment fix ─────── */
/* iOS und Android: background-attachment: fixed macht Probleme */
@media (max-width: 1024px) {
  .scene--statement {
    background-attachment: scroll !important;
  }
  .scene--person {
    background-attachment: scroll !important;
  }
}

/* ── 7. MARQUEE OVERFLOW ────────────────────────────────────────── */
@media (max-width: 480px) {
  .marquee-wrap {
    overflow: hidden;
  }
  .marquee-track {
    gap: 1.5rem;
  }
}

/* ── 8. HERO STATS MOBILE ───────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .hero__stat {
    flex: 0 0 auto;
  }
  .hero__stat-divider {
    display: none;
  }
}

/* ── 9. TRUTH / STEP ITEMS MOBILE ───────────────────────────────── */
@media (max-width: 480px) {
  .truth__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .truth__num {
    font-size: 1.8rem;
  }
  .truth__text h3 {
    font-size: 1rem;
  }
  .truth__text p {
    font-size: 0.88rem;
  }
}

/* ── 10. FINAL CTA SECTION (Startseite) ─────────────────────────── */
@media (max-width: 600px) {
  .scene--cta {
    padding: 6rem 0;
  }
  .cta__chess {
    font-size: 2.5rem;
  }
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cta__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta__leitsatz {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
}

/* ── 11. LOESUNG CARD MOBILE ────────────────────────────────────── */
@media (max-width: 600px) {
  .loesung__card {
    padding: 1.75rem 1.25rem;
  }
  .loesung__card-list li {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

/* ── 12. PERSON SECTION MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .person__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .person__img-frame {
    aspect-ratio: 4/3;
    max-width: 380px;
    margin: 0 auto;
  }
  .person__text {
    padding: 0;
  }
  .person__cta {
    margin-top: 1.5rem;
  }
  .person__cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── 13. SYSTEM PILLARS AUF MOBILE ─────────────────────────────── */
@media (max-width: 480px) {
  .system__pillar {
    padding: 1.5rem 1.25rem;
  }
  .system__pillar-num {
    font-size: 0.65rem;
  }
  .system__pillar h3 {
    font-size: 1rem;
  }
  .system__pillar p {
    font-size: 0.85rem;
  }
}

/* ── 14. SCENE HEADER MOBILE ────────────────────────────────────── */
@media (max-width: 600px) {
  .scene__header {
    margin-bottom: 2rem;
  }
  .scene__header h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem);
  }
  .scene__sub {
    font-size: 0.88rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
}

/* ── 15. PRINZIPIEN GRID MOBILE ─────────────────────────────────── */
@media (max-width: 600px) {
  .prinzip__card {
    padding: 1.5rem 1.25rem;
  }
  .prinzip__card h3 {
    font-size: 1rem;
  }
  .prinzip__card p {
    font-size: 0.85rem;
  }
  .prinzip__card-top {
    margin-bottom: 0.75rem;
  }
}

/* ================================================================
   INTRO / LADEBILDSCHIRM — MOBILE PERFORMANCE FIX
   Alle ruckelnden Animationen deaktivieren, GPU entlasten
   ================================================================ */
@media (max-width: 768px) {

  /* 1. Grain-Animationen komplett aus — größter Performance-Killer */
  .intro__grain,
  .grain {
    display: none !important;
    animation: none !important;
  }

  /* 2. Ken-Burns-Zoom deaktivieren — kein scale() auf dem Hintergrund */
  #intro::after {
    transform: scale(1) !important;
    transition: none !important;
    inset: 0 !important; /* kein -5% overflow mehr nötig */
  }
  #intro.step-1::after {
    transform: scale(1) !important;
  }

  /* 3. Intro-Bars kleiner — weniger Paint-Fläche */
  .intro__bar {
    height: 7vh !important;
  }

  /* 4. Intro-Hintergrundbild: will-change für GPU-Layer */
  #intro {
    will-change: opacity, transform;
  }

  /* 5. Curtain-Transition kürzer auf Mobile */
  .intro__bar {
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1) !important;
  }

  /* 6. Intro-Center: Animationen vereinfachen */
  #intro.curtain-open .intro__center {
    opacity: 0;
    transform: none !important; /* kein scale() — spart Compositing */
  }

  /* 7. Wörter: schneller einblenden, kein translateY-Overhead */
  .intro__word {
    transition: opacity 0.35s ease !important;
    transform: none !important;
  }
  #intro.step-2 .intro__word:nth-child(1),
  #intro.step-2 .intro__word:nth-child(2),
  #intro.step-2 .intro__word:nth-child(3) {
    transform: none !important;
  }

  /* 8. Chess-Symbol: kein Bounce-Effekt auf Mobil */
  .intro__chess-symbol {
    transition: opacity 0.35s ease !important;
    transform: none !important;
  }
  #intro.step-1 .intro__chess-symbol {
    transform: none !important;
  }

  /* 9. Intro is-done: kein translateY — einfach opacity */
  #intro.is-done {
    transform: none !important;
    opacity: 0 !important;
  }

  /* 10. Letterbox / cinema-mode nie auf Mobile */
  .letterbox {
    display: none !important;
  }
}

/* ================================================================
   STORY-HERO (ueber-mich.php) — VIDEO ALS HINTERGRUND AUF MOBILE
   Genau wie Hero auf Startseite: Video fullscreen, Text darüber
   ================================================================ */
@media (max-width: 768px) {

  /* Grid aufheben → Block-Layout */
  .story-hero--split {
    display: block;
    position: relative;
    min-height: 100svh;
  }

  /* Rechtes Panel (Video) → Absoluter Hintergrund */
  .story-hero__right {
    position: absolute;
    inset: 0;
    height: 100% !important;
    z-index: 1;
  }

  /* Video füllt gesamten Hero */
  .story-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Dunkles Overlay damit Text lesbar bleibt */
  .story-hero__photo-tint {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.62) 0%,
      rgba(8,8,8,0.32) 45%,
      rgba(8,8,8,0.55) 100%
    ) !important;
  }

  /* Linkes Panel (Text) → darüber, transparent */
  .story-hero__left {
    position: relative;
    z-index: 2;
    background: transparent !important;
    min-height: 100svh;
    width: 100%;
  }

  /* Blend-Schatten links weg — brauchen wir nicht auf Mobil */
  .story-hero__left::after {
    display: none;
  }

  /* Content-Padding auf Mobil anpassen */
  .story-hero__left-content {
    padding: 7rem 1.8rem 5rem 1.8rem;
  }

  /* Titel kleiner */
  .story-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Caption + Scroll auf Mobil ausblenden */
  .story-hero__caption,
  .story-hero__scroll {
    display: none !important;
  }
}


/* ============================================================
   STOISCHE HALTUNG — stoische-haltung.php
   6 Sektionen mit komplett unterschiedlichem visuellen Charakter
   ============================================================ */

/* ── SZENE 01: sh-manifesto — Dunkel, grosse Typografie, Triade ── */
.sh-manifesto {
  position: relative;
  background: var(--bg);
  padding: 9rem 0 8rem;
  overflow: hidden;
  border-top: 1px solid var(--gold-border);
}
.sh-manifesto__num {
  position: absolute;
  top: 3rem; right: 4rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 13rem);
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sh-manifesto__inner {
  text-align: center;
  position: relative; z-index: 1;
}
.sh-manifesto__eyebrow {
  margin-bottom: 2.5rem;
}
.sh-manifesto__lines {
  margin-bottom: 2rem;
}
.sh-manifesto__line {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}
.sh-manifesto__line--lg {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}
.sh-manifesto__trio {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 3rem;
}
.sh-manifesto__trio span {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.sh-manifesto__divider {
  font-size: 2rem;
  color: var(--gold);
  margin: 2rem 0;
  letter-spacing: 0.5em;
}
.sh-manifesto__answer {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.9;
}
.sh-manifesto__triad {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.sh-manifesto__triad-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.sh-manifesto__triad-icon {
  font-size: 1.8rem;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.sh-manifesto__triad-item strong {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text);
}

/* ── SZENE 02: sh-split — Splitscreen horizontal ── */
.sh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}
.sh-split__text {
  background: var(--bg-2);
  padding: 7rem 5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sh-split__num {
  position: absolute;
  top: 2.5rem; left: 2rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sh-split__text h2 {
  margin-bottom: 1.5rem;
}
.sh-split__intro {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-left: 2px solid var(--gold-border);
  padding-left: 1.2rem;
}
.sh-split__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.sh-split__card {
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--gold-border);
}
.sh-split__card--in { border-color: rgba(201,168,76,0.3); }
.sh-split__card--out { border-color: rgba(255,255,255,0.06); }
.sh-split__card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.sh-split__card--out .sh-split__card-label {
  color: var(--text-muted);
}
.sh-split__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sh-split__card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sh-split__card--in li i { color: var(--gold); font-size: 0.7rem; }
.sh-split__card--out li i { color: var(--text-dim); font-size: 0.7rem; }
.sh-split__conclusion {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.sh-split__visual {
  position: relative;
  overflow: hidden;
}
.sh-split__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}
.sh-split:hover .sh-split__visual img {
  transform: scale(1.04);
}
.sh-split__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,15,0.5) 0%,
    rgba(8,8,8,0.1) 60%,
    rgba(8,8,8,0) 100%
  );
}
.sh-split__visual-badge {
  position: absolute;
  bottom: 3rem; left: 2.5rem;
  background: rgba(8,8,8,0.88);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  backdrop-filter: blur(12px);
  max-width: 240px;
}
.sh-split__visual-badge-chess {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.sh-split__visual-badge p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

/* ── SZENE 03: sh-emotions — Dunkel, Tape + Prozess-Flow ── */
.sh-emotions {
  position: relative;
  background: var(--bg-3);
  padding: 9rem 0 8rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sh-emotions__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.sh-emotions__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  position: relative; z-index: 1;
}
.sh-emotions__num {
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 11rem);
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sh-emotions__sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.sh-emotions__tape {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.sh-emotions__tape-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 4rem;
  border-left: 1px solid var(--gold-border);
  position: relative;
}
.sh-emotions__tape-item:last-child {
  border-right: 1px solid var(--gold-border);
}
.sh-emotions__tape-icon {
  font-size: 2rem;
  line-height: 1;
}
.sh-emotions__tape-item span:last-child {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  font-weight: 700;
}
.sh-emotions__process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative; z-index: 1;
}
.sh-emotions__step {
  background: var(--bg-4);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s;
}
.sh-emotions__step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.sh-emotions__step-num {
  width: 40px; height: 40px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  margin: 0 auto 1.2rem;
}
.sh-emotions__step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.sh-emotions__step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.sh-emotions__arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  align-self: center;
  padding-top: 1rem;
}

/* ── SZENE 04: sh-chess-quote — Riesiger Hintergrundtext + Schachbrett ── */
.sh-chess-quote {
  position: relative;
  background: var(--bg);
  padding: 9rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-border);
}
.sh-chess-quote__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 25vw, 24rem);
  font-weight: 900;
  color: rgba(201,168,76,0.03);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.sh-chess-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative; z-index: 1;
}
.sh-chess-quote__num {
  position: absolute;
  top: -1rem; left: -2rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sh-chess-quote__left h2 {
  margin: 1rem 0 1.5rem;
}
.sh-chess-quote__left p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.sh-chess-quote__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.sh-chess-quote__board {
  position: relative;
  width: min(320px, 100%);
}
.sh-chess-quote__board-inner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
}
.sh-chess-quote__board-inner .cb__cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(0.6rem, 1.5vw, 1rem);
}
.sh-chess-quote__board-inner .cb__cell--l { background: rgba(201,168,76,0.12); }
.sh-chess-quote__board-inner .cb__cell--d { background: rgba(201,168,76,0.04); }
.sh-chess-quote__board-inner .cb__cell span { color: var(--text); line-height: 1; }
.sh-chess-quote__board-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.sh-chess-quote__quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.sh-chess-quote__quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gold);
  margin-top: 0.8rem;
  letter-spacing: 0.08em;
}

/* ── SZENE 05: sh-grid — Asymmetrisches Bento-Grid ── */
.sh-grid {
  position: relative;
  background: var(--bg-2);
  padding: 9rem 0 8rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sh-grid__num {
  position: absolute;
  top: 3rem; right: 3rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sh-grid__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4.5rem;
}
.sh-grid__header h2 { margin-bottom: 1rem; }
.sh-grid__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.sh-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.sh-grid__item {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.sh-grid__item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.sh-grid__item--wide {
  grid-column: span 3;
}
.sh-grid__item--highlight {
  background: linear-gradient(135deg, var(--bg-3), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.35);
}
.sh-grid__item-chess {
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  line-height: 1;
  pointer-events: none;
}
.sh-grid__item h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text);
  margin-bottom: 0.8rem;
}
.sh-grid__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.sh-grid__item-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.sh-grid__item-bar-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.sh-grid__item-bar-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ── SZENE 06: sh-final — Vollbild-Bild + Haltungs-Manifest ── */
.sh-final {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0;
}
.sh-final__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.sh-final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(40%);
}
.sh-final__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.80) 40%,
    rgba(8,8,8,0.50) 75%,
    rgba(8,8,8,0.85) 100%
  );
}
.sh-final__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
}
.sh-final__num {
  position: absolute;
  top: -4rem; left: -2rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sh-final__intro .eyebrow { margin-bottom: 1.2rem; }
.sh-final__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.sh-final__pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 900px;
  justify-content: center;
  flex-wrap: wrap;
}
.sh-final__pillar {
  flex: 1;
  min-width: 200px;
  padding: 2rem 2.5rem;
  text-align: center;
}
.sh-final__pillar-chess {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.sh-final__pillar h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.sh-final__pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.sh-final__divider {
  font-size: 2rem;
  color: var(--gold-border);
  opacity: 0.6;
  align-self: center;
  padding-top: 1.5rem;
}
.sh-final__leitsatz {
  text-align: center;
  padding: 3rem 4rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(16px);
  max-width: 600px;
  width: 100%;
}
.sh-final__leitsatz-chess {
  display: block;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.5));
}
.sh-final__leitsatz blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.sh-final__leitsatz cite {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: normal;
}
.sh-final__ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE — Stoische Haltung ── */
@media (max-width: 900px) {
  .sh-split {
    grid-template-columns: 1fr;
  }
  .sh-split__text {
    padding: 5rem 2rem 4rem;
    order: 2;
  }
  .sh-split__visual {
    min-height: 50vw;
    order: 1;
  }
  .sh-split__cards {
    grid-template-columns: 1fr;
  }
  .sh-chess-quote__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .sh-chess-quote__right {
    align-items: center;
  }
  .sh-grid__items {
    grid-template-columns: 1fr;
  }
  .sh-grid__item--wide {
    grid-column: span 1;
  }
  .sh-emotions__tape {
    gap: 0;
  }
  .sh-emotions__tape-item {
    padding: 1.5rem 2rem;
  }
  .sh-emotions__process {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sh-emotions__arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .sh-final__pillars {
    flex-direction: column;
    align-items: center;
  }
  .sh-final__divider {
    transform: rotate(90deg);
    padding: 0;
  }
  .sh-manifesto__triad {
    gap: 2.5rem;
  }
}


/* ════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIERUNG — KOMPLETT (Ubuntu-Siegel + Globale Fixes)
   Breakpoints: 900px | 768px | 600px | 480px | 380px
   ════════════════════════════════════════════════════════════════════ */

/* ── UBUNTU-SIEGEL — ALLE SEKTIONEN MOBILE ──────────────────────── */

/* Intro Banner */
@media (max-width: 600px) {
  .ub-intro {
    padding: 3.5rem 1.25rem;
  }
  .ub-intro__quote {
    font-size: clamp(1.2rem, 5.5vw, 1.7rem);
  }
}

/* Allgemeine Section Padding */
@media (max-width: 768px) {
  .ub-section {
    padding: 5rem 0;
  }
  .ub-scene-num {
    font-size: 5rem;
    top: 1.5rem;
    right: 1.25rem;
    opacity: 0.03;
  }
}
@media (max-width: 480px) {
  .ub-section {
    padding: 4rem 0;
  }
  .ub-scene-num { display: none; }
}

/* Szene 01 — Was es ist */
@media (max-width: 900px) {
  .ub-was__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ub-badge-ring {
    width: 120px;
    height: 120px;
  }
  .ub-badge-ring__chess { font-size: 2.2rem; }
}

/* Szene 02 — „ICH BIN. WIR SIND." */
@media (max-width: 640px) {
  .ub-big-quote {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin: 1rem 0 2rem;
  }
  .ub-ubuntu-meaning {
    flex-direction: column;
    gap: 1rem;
  }
  .ub-ubuntu-divider { display: none; }
  .ub-ubuntu-list { padding: 0 0.25rem; }
  .ub-ubuntu-item {
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }
}

/* Szene 03 — 3 Säulen */
@media (max-width: 900px) {
  .ub-sauelen__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .ub-saeule {
    padding: 1.75rem 1.25rem;
  }
  .ub-saeule__title { font-size: 1.3rem; }
  .ub-saeule__list li { font-size: 0.82rem; }
}

/* Szene 04 — Warum */
@media (max-width: 900px) {
  .ub-warum__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .ub-contrast {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ub-contrast__divider { display: none; }
  .ub-contrast__col { padding: 1.25rem; }
}

/* Szene 05 — Versprechen */
@media (max-width: 600px) {
  .ub-vow {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .ub-vow__text {
    font-size: 0.9rem;
  }
  .ub-vow:hover {
    transform: none; /* Kein Slide auf Touch */
  }
}

/* Szene 06 — Schramm */
@media (max-width: 900px) {
  .ub-schramm__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ub-schramm__img-frame {
    aspect-ratio: 4/3;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .ub-schramm__punkte { gap: 0.5rem; }
  .ub-punkt { font-size: 0.85rem; }
  .ub-schramm__leitsatz { font-size: 0.95rem; }
}

/* Szene 07 — Ubuntu Abschluss */
@media (max-width: 600px) {
  .ub-ubuntu-def__item {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
  }
  .ub-abschluss__final {
    font-size: 1.1rem;
    padding: 0.85rem 1.25rem;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* Ubuntu Teaser (Startseite) */
@media (max-width: 900px) {
  .ubuntu-teaser__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ubuntu-teaser__ring {
    width: 130px;
    height: 130px;
  }
  .ubuntu-teaser__chess { font-size: 2.5rem; }
}
@media (max-width: 600px) {
  .ubuntu-teaser__claims {
    gap: 1rem;
    flex-direction: column;
  }
  .scene--ubuntu { padding: 5rem 0; }
}

/* ── TESTIMONIALS — MOBILE FIX ──────────────────────────────────── */
@media (max-width: 900px) {
  .testi__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .scene--testimonials { padding: 5rem 0; }
  .testi__card { padding: 1.75rem 1.25rem; }
  .testi__text { font-size: 0.9rem; }
  .testi__author { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ── LOESUNG GRID MOBILE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .loesung__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .loesung__bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .loesung__bottom .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── PRINZIPIEN GRID MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .prinzipien__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .prinzip__card--wide {
    grid-column: span 2;
  }
}
@media (max-width: 540px) {
  .prinzipien__grid {
    grid-template-columns: 1fr;
  }
  .prinzip__card--wide {
    grid-column: span 1;
  }
}

/* ── CHESS BOARD SECTION MOBILE ─────────────────────────────────── */
@media (max-width: 900px) {
  .chess__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .chess__board {
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .chess__board { display: none; } /* Schachbrett auf sehr kleinen Screens ausblenden */
}

/* ── WRAP PADDING AUF MOBILE ────────────────────────────────────── */
@media (max-width: 600px) {
  .wrap, .wrap--narrow {
    padding: 0 1.25rem;
  }
}
@media (max-width: 380px) {
  .wrap, .wrap--narrow {
    padding: 0 1rem;
  }
}

/* ── BUTTONS MOBILE — Vollbreite in CTAs ────────────────────────── */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .cta__actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── TYPOGRAPHY MOBILE — Überschriften skalieren ────────────────── */
@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }
  p  { font-size: 0.92rem; }
}

/* ── SCENE PADDING MOBILE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .scene { padding: 5rem 0; }
  .scene--statement { padding: 4rem 0; }
  .scene--chess { padding: 5rem 0; }
  .scene--system { padding: 5rem 0; }
  .scene--truths { padding: 5rem 0; }
}
@media (max-width: 480px) {
  .scene { padding: 3.5rem 0; }
}

/* ── HOVER-EFFEKTE AUF TOUCH DEAKTIVIEREN ───────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .ub-vow:hover,
  .ub-saeule:hover,
  .testi__card:hover,
  .loesung__card:hover,
  .prinzip__card:hover,
  .problem__item:hover {
    transform: none !important;
    border-color: inherit;
    box-shadow: none;
  }
}

/* ── SAFE AREA für Notch / Home-Bar (iPhone) ────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .site-footer__bottom {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  #ss-berater-widget {
    bottom: calc(1.5rem + env(safe-area-inset-bottom)) !important;
  }
}

/* ── LANDSCAPE MOBILE ───────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero, .story-hero--split {
    min-height: auto;
    padding: 5rem 0 3rem;
  }
  .hero__right { display: none; } /* Video im Landscape ausblenden — spart Platz */
  .hero__left {
    width: 100%;
    padding: 4rem 2rem 2rem;
  }
}
