/* =================================================================
   Florian Mittelholzer — Personenmarke
   Design: restrained luxury · ivory / black / antique gold
   Display: Fraunces · Body: Inter
   ================================================================= */

:root {
  --ivory:      #F4EEE3;
  --ivory-soft: #EDE5D6;
  --black:      #14110E;
  --black-soft: #1d1915;
  --gold:       #B68A4E;
  --gold-light: #CBA15A;

  --fg: var(--black);
  --bg: var(--ivory);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell: 1320px;
  --pad: clamp(1.4rem, 5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.1, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.js body.is-loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ivory); }

/* ===== Layout shell ===== */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(5rem, 12vw, 11rem); }
.section--light { background: var(--ivory); color: var(--black); }
.section--dark  { background: var(--black); color: var(--ivory); }

/* Soft seam between alternating sections */
.section--dark + .section--light,
.section--light + .section--dark { }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.section--dark .eyebrow { color: var(--gold-light); }

h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }

.hairline { display: block; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ===== Monogram ===== */
.monogram {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  color: var(--gold);
}
.monogram__mark { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.06em; line-height: 1; }
.monogram--lg { width: 92px; height: 92px; }
.monogram--lg .monogram__mark { font-size: 2.1rem; }

/* ===== Skip-Link ===== */
.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 2000;
  background: var(--black); color: var(--ivory);
  padding: 0.7rem 1.2rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ===== Grain overlay ===== */
.grain {
  position: fixed; inset: 0; z-index: 1400; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Custom cursor ===== */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 1500; pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  display: none;
}
.cursor__dot {
  display: block; width: 10px; height: 10px; margin: -5px 0 0 -5px;
  background: var(--gold); border: 1px solid var(--gold); border-radius: 50%;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background 0.35s var(--ease);
}
.cursor.is-hover .cursor__dot { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: transparent; }
@media (hover: hover) and (pointer: fine) {
  html.js .cursor { display: block; }
  html.js.cursor-on * { cursor: none; }
}

/* ===== Preloader ===== */
html:not(.js) .preloader { display: none; }
.preloader {
  position: fixed; inset: 0; z-index: 1800;
  background: var(--black); color: var(--ivory);
  display: grid; place-items: center;
}
.preloader__inner {
  display: grid; place-items: center; gap: 2rem;
  text-align: center;
}
.preloader .monogram { color: var(--gold); border-color: rgba(203,161,90,0.5); }
.preloader__count {
  font-family: var(--serif); font-size: clamp(3rem, 12vw, 7rem); font-weight: 300;
  line-height: 1; display: flex; align-items: baseline; gap: 0.1em; color: var(--ivory);
}
.preloader__pct { font-size: 0.28em; color: var(--gold-light); }
.preloader__curtain {
  position: absolute; inset: 0; background: var(--ivory);
  transform: scaleY(0); transform-origin: bottom; pointer-events: none;
}
.preloader.done .preloader__count,
.preloader.done .monogram { opacity: 0; transition: opacity 0.4s var(--ease); }
.preloader.done .preloader__curtain { transform: scaleY(1); transition: transform 0.9s var(--ease); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-block: clamp(1.1rem, 2.4vw, 1.7rem);
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  color: var(--black);
}
.nav[data-theme="dark"] { color: var(--ivory); }
.nav.is-scrolled {
  padding-block: 0.7rem;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 28%, transparent);
}
.nav[data-theme="dark"].is-scrolled { background: color-mix(in srgb, var(--black) 72%, transparent); }
.nav__inner { display: flex; align-items: center; gap: 2rem; }
.nav__logo { color: inherit; }
.nav__logo .monogram { width: 40px; height: 40px; border-color: currentColor; color: inherit; transition: transform 0.5s var(--ease); }
.nav.is-scrolled .nav__logo .monogram { width: 34px; height: 34px; }
.nav__logo .monogram__mark { color: var(--gold); }

.nav__links { display: flex; gap: clamp(1.2rem, 2.4vw, 2.6rem); margin-left: auto; }
.nav__links a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  position: relative; overflow: hidden; padding-bottom: 2px;
}
.nav__links a span { display: inline-block; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid currentColor; padding: 0.7rem 1.4rem; border-radius: 100px;
  color: inherit; transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ivory); }

.nav__burger { display: none; }

/* ===== Reveal base states (CSS-driven, IntersectionObserver toggles .in) ===== */
html.js [data-reveal] {
  opacity: 0; transform: translateY(28px); will-change: opacity, transform;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

html.js [data-split] .word { display: inline-block; }
html.js [data-split] .word__in {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
html.js [data-split].in .word__in { transform: none; }

html.js .hero__title .line { display: block; overflow: hidden; }
html.js .hero__title .line__in {
  display: block; transform: translateY(100%);
  transition: transform 1.15s var(--ease);
}
html.js .hero.in .hero__title .line__in { transform: none; }
html.js .hero.in .hero__title .line:nth-child(2) .line__in { transition-delay: 0.12s; }
html.js .hero [data-reveal] { transition-delay: 0.25s; }
html.js .hero.in [data-reveal] { opacity: 1; transform: none; filter: blur(0); }

/* ===== 1 · Hero ===== */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 8rem; overflow: hidden; }
.hero__inner { width: 100%; }
.hero__eyebrow { margin-bottom: clamp(1.5rem, 4vw, 2.6rem); }
.hero__title {
  font-size: clamp(3.4rem, 16vw, 14rem);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.03em;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}
.hero__title .line__in { padding-bottom: 0.06em; }
.hero__foot {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 6vw, 5rem);
  justify-content: space-between; align-items: end;
  border-top: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
}
.hero__claim { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.1; font-weight: 400; max-width: 12ch; }
.hero__meta { font-size: clamp(0.95rem, 1.4vw, 1.08rem); color: color-mix(in srgb, var(--black) 62%, transparent); max-width: 36ch; }
.hero__scroll {
  position: absolute; left: var(--pad); bottom: clamp(1.5rem, 4vw, 2.6rem);
  display: flex; align-items: center; gap: 0.9rem;
}
.hero__scroll-line { width: 54px; height: 1px; background: var(--gold); transform-origin: left; animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleX(0.3); opacity: 0.4; } 50% { transform: scaleX(1); opacity: 1; } }
.hero__index { position: absolute; right: var(--pad); bottom: clamp(1.5rem, 4vw, 2.6rem); color: color-mix(in srgb, var(--black) 50%, transparent); }

/* ===== 2 · Positionierung ===== */
.block-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.statement {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem); line-height: 1.22; letter-spacing: -0.015em;
  max-width: 20ch;
}
.statement .word { overflow: hidden; padding-bottom: 0.04em; }
.positionierung__sign { margin-top: clamp(2.5rem, 6vw, 4.5rem); display: flex; align-items: center; gap: 1.4rem; }
.positionierung__sign .hairline { flex: 1; max-width: 240px; }

/* ===== Marquee — versal, editorial, zurückhaltend ===== */
.marquee {
  overflow: hidden; background: var(--black);
  padding-block: clamp(1.9rem, 4vw, 3.2rem);
  border-block: 1px solid color-mix(in srgb, var(--gold) 18%, transparent);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__track .mq {
  display: inline-flex; align-items: center; white-space: nowrap;
  gap: clamp(2.4rem, 5vw, 5rem);
  font-family: var(--sans); font-weight: 400; text-transform: uppercase;
  font-size: clamp(0.78rem, 1.3vw, 1.02rem); letter-spacing: 0.42em;
  color: color-mix(in srgb, var(--ivory) 62%, transparent);
  padding-right: clamp(2.4rem, 5vw, 5rem);
}
.marquee__track .mq i {
  flex: none; width: 5px; height: 5px; font-size: 0;
  background: var(--gold); transform: rotate(45deg); opacity: 0.85;
}

/* ===== 3 · Schwerpunkte (horizontal) ===== */
.focus { position: relative; }
.focus__pin { padding-block: clamp(4rem, 9vw, 7rem); }
.focus__track { display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 3rem); padding-inline: var(--pad); }
.focus__panel { flex: none; }
.focus__intro { display: flex; flex-direction: column; gap: 1.4rem; }
.focus__heading { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 300; line-height: 0.98; }
.focus__hint { color: var(--gold); display: none; }

.card {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--ivory-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.7s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card__num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.card__title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; }
.card__text { font-size: 1.02rem; color: color-mix(in srgb, var(--black) 68%, transparent); max-width: 34ch; }
.card__tag { margin-top: auto; padding-top: 1.2rem; color: var(--gold); }

/* ===== 4 · Meilensteine ===== */
.block-head--split { display: flex; flex-direction: column; gap: 1.6rem; }
.block-title { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 300; line-height: 1; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: color-mix(in srgb, var(--gold) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
  margin: clamp(3rem, 7vw, 5rem) 0;
}
.stat { background: var(--black); padding: clamp(1.6rem, 4vw, 2.8rem); display: flex; flex-direction: column; gap: 0.7rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 300; line-height: 1; color: var(--ivory); }
.stat__num .suffix { color: var(--gold-light); }
.stat__label { color: color-mix(in srgb, var(--ivory) 60%, transparent); }

.timeline { list-style: none; display: flex; flex-direction: column; }
.tl {
  display: grid; grid-template-columns: 7rem 1fr; gap: clamp(1.2rem, 4vw, 3rem);
  padding-block: clamp(1.6rem, 4vw, 2.6rem);
  border-top: 1px solid color-mix(in srgb, var(--ivory) 16%, transparent);
}
.tl:last-child { border-bottom: 1px solid color-mix(in srgb, var(--ivory) 16%, transparent); }
.tl__year { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--gold-light); }
.tl__title { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 400; margin-bottom: 0.5rem; }
.tl__text { font-size: 1rem; color: color-mix(in srgb, var(--ivory) 66%, transparent); max-width: 52ch; }

/* ===== 5 · Philosophie ===== */
.philosophy { text-align: center; }
.philosophy__inner { display: flex; flex-direction: column; align-items: center; gap: clamp(2rem, 5vw, 3.4rem); }
.philosophy__quote {
  font-size: clamp(2rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  max-width: 18ch;
}
.philosophy__quote .word { overflow: hidden; padding-bottom: 0.06em; }
.philosophy__attr { color: var(--gold); }

/* ===== 6 · Kontakt ===== */
.contact__inner { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 5.5rem); }
.contact__title { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 300; line-height: 0.98; margin: 1.4rem 0 1.6rem; }
.contact__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: color-mix(in srgb, var(--ivory) 70%, transparent); max-width: 44ch; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); }
.contact__channels { list-style: none; display: flex; flex-direction: column; }
.contact__channels li {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-block: clamp(1.1rem, 2.6vw, 1.7rem);
  border-top: 1px solid color-mix(in srgb, var(--ivory) 16%, transparent);
}
.contact__channels li:last-child { border-bottom: 1px solid color-mix(in srgb, var(--ivory) 16%, transparent); }
.contact__link {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 400;
  width: max-content; max-width: 100%; position: relative; overflow: hidden; padding-bottom: 2px;
  word-break: break-word;
}
.contact__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.contact__link:hover { color: var(--gold-light); }
.contact__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ===== Form ===== */
.cform { display: flex; flex-direction: column; gap: 1.4rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.cform__field { display: flex; flex-direction: column; gap: 0.55rem; }
.cform input, .cform textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ivory);
  background: transparent; border: none; border-bottom: 1px solid color-mix(in srgb, var(--ivory) 28%, transparent);
  padding: 0.75rem 0; transition: border-color 0.4s var(--ease);
}
.cform input::placeholder, .cform textarea::placeholder { color: color-mix(in srgb, var(--ivory) 38%, transparent); }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--gold); }
.cform textarea { resize: vertical; min-height: 64px; }
.cform__honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.btn {
  align-self: flex-start; cursor: pointer; border: none;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.05rem 2.4rem; border-radius: 100px; position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 2; }
.btn--gold { background: var(--gold); color: var(--ivory); }
.btn--gold::before {
  content: ""; position: absolute; inset: 0; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: 1;
}
.btn--gold:hover::before { transform: scaleX(1); }

/* ===== Footer ===== */
.footer { padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer__logo .monogram { color: var(--gold); border-color: color-mix(in srgb, var(--gold) 50%, transparent); }
.footer__copy { color: color-mix(in srgb, var(--ivory) 55%, transparent); }
.footer__made { color: color-mix(in srgb, var(--ivory) 40%, transparent); }

/* ===== Magnetic helper ===== */
.magnetic { will-change: transform; }

/* =================================================================
   Desktop: horizontal pinned Schwerpunkte
   ================================================================= */
@media (min-width: 860px) {
  .focus__pin { height: 100vh; padding-block: 0; display: flex; align-items: center; overflow: hidden; }
  .focus__track { flex-direction: row; align-items: stretch; height: min(72vh, 620px); gap: clamp(2rem, 4vw, 3.5rem); }
  .focus__intro { justify-content: center; width: clamp(28rem, 36vw, 40rem); }
  .focus__hint { display: block; margin-top: 1rem; }
  .card { width: clamp(24rem, 32vw, 34rem); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .block-head--split { flex-direction: row; align-items: end; justify-content: space-between; }
}

@media (min-width: 1100px) {
  .hero__foot { flex-wrap: nowrap; }
}

/* =================================================================
   Mobile navigation
   ================================================================= */
@media (max-width: 859px) {
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); height: 100dvh;
    background: var(--black); color: var(--ivory);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    padding: var(--pad); transform: translateX(100%);
    transition: transform 0.6s var(--ease); margin-left: 0;
    box-shadow: -30px 0 80px -40px rgba(0,0,0,0.6);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; letter-spacing: 0.12em; }
  .nav__links a::after { background: var(--gold-light); }
  .nav__burger {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 42px; height: 42px; margin-left: auto; background: none; border: none; cursor: pointer; z-index: 1100;
  }
  .nav__burger span { display: block; width: 26px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); margin-left: auto; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
  .nav.is-burger-open { color: var(--ivory); }

  .cform__row { grid-template-columns: 1fr; }
  .hero__index { display: none; }
}

/* =================================================================
   Reduced motion — alles ruhig, sofort sichtbar
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js .hero__title .line__in,
  html.js [data-split] .word__in { opacity: 1 !important; transform: none !important; }
  .marquee__track, .hero__scroll-line, .card::before { animation: none !important; }
  .cursor { display: none !important; }
  * { scroll-behavior: auto !important; }
}

/* =================================================================
   REVISION — klickbare Karten · Timeline-Links · Engagement-Index
   · helle Kontakt-Sektion
   ================================================================= */

/* Schwerpunkte-Karten als Links */
.card { color: inherit; justify-content: space-between; }
.card__foot { margin-top: auto; display: flex; flex-direction: column; gap: 0.9rem; padding-top: 0.4rem; }
.card__more { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--gold); }
.card__more i { font-style: normal; transition: transform 0.45s var(--ease); }
.card__title { transition: color 0.45s var(--ease); }
.card:hover .card__title { color: var(--gold); }
.card:hover .card__more i { transform: translateX(7px); }

/* Werdegang — Timeline als Links */
.tl { display: block; padding-block: 0; }
.tl__link {
  display: grid; grid-template-columns: 10rem 1fr auto; align-items: baseline;
  gap: clamp(1rem, 4vw, 3rem); padding-block: clamp(1.5rem, 4vw, 2.5rem);
  color: inherit; transition: padding-left 0.45s var(--ease);
}
.tl__link:hover { padding-left: 0.9rem; }
.tl__body { display: flex; flex-direction: column; gap: 0.5rem; }
.tl__title { transition: color 0.4s var(--ease); }
.tl__link:hover .tl__title { color: var(--gold-light); }
.tl__arr { align-self: center; color: var(--gold-light); opacity: 0; transform: translateX(-10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.tl__link:hover .tl__arr { opacity: 1; transform: none; }

/* Engagement — Index-Liste */
.idx { list-style: none; }
.idx__row { border-top: 1px solid color-mix(in srgb, var(--gold) 26%, transparent); }
.idx__row:last-child { border-bottom: 1px solid color-mix(in srgb, var(--gold) 26%, transparent); }
.idx__row > a {
  display: grid; grid-template-columns: 3rem 1fr auto auto; align-items: baseline;
  gap: clamp(1rem, 3vw, 2.4rem); padding-block: clamp(1.3rem, 3vw, 2rem);
  color: inherit; transition: padding-left 0.45s var(--ease);
}
.idx__row > a:hover { padding-left: 0.9rem; }
.idx__num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.08em; }
.idx__title { font-family: var(--serif); font-size: clamp(1.3rem, 2.7vw, 2rem); font-weight: 400; transition: color 0.4s var(--ease); }
.idx__row > a:hover .idx__title { color: var(--gold); }
.idx__meta { align-self: center; text-align: right; color: color-mix(in srgb, var(--black) 50%, transparent); }
.idx__arr { align-self: center; color: var(--gold); opacity: 0; transform: translateX(-10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.idx__row > a:hover .idx__arr { opacity: 1; transform: none; }

/* Kontakt auf heller Fläche */
.contact.section--light .contact__sub { color: color-mix(in srgb, var(--black) 64%, transparent); }
.contact.section--light .contact__channels li { border-color: color-mix(in srgb, var(--gold) 26%, transparent); }
.contact.section--light .contact__link:hover { color: var(--gold); }
.contact.section--light .contact__link::after { background: var(--gold); }
.contact.section--light .cform input,
.contact.section--light .cform textarea { color: var(--black); border-bottom-color: color-mix(in srgb, var(--black) 22%, transparent); }
.contact.section--light .cform input::placeholder,
.contact.section--light .cform textarea::placeholder { color: color-mix(in srgb, var(--black) 38%, transparent); }
.contact.section--light .cform input:focus,
.contact.section--light .cform textarea:focus { border-color: var(--gold); }

/* Mobile-Anpassungen der neuen Listen */
@media (max-width: 639px) {
  .tl__link { grid-template-columns: 1fr; gap: 0.4rem; }
  .tl__arr { display: none; }
  .idx__row > a { grid-template-columns: 2.2rem 1fr; }
  .idx__meta { grid-column: 2; text-align: left; }
  .idx__arr { display: none; }
}

/* =================================================================
   REVISION 2 — Portrait · Scroll-Fortschritt · Hero-Schimmer · aktive Nav
   ================================================================= */

/* Scroll-Fortschrittsbalken */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 1200; pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Hero: dezenter, atmender Gold-Schimmer */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 50% at 72% 32%, rgba(182,138,78,0.13), transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}
.hero__inner { position: relative; z-index: 1; }
@keyframes heroGlow {
  from { opacity: 0.45; transform: translate3d(-2%, 0, 0); }
  to   { opacity: 1;    transform: translate3d(2%, 2%, 0); }
}

/* Aktiver Nav-Link */
.nav__links a.is-active { color: var(--gold); }
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

/* Portrait in der Positionierung */
.pos__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.pos__body { min-width: 0; }
.pf { margin: 0; position: relative; }
.pf__frame {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5;
  background: var(--black-soft); border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  box-shadow: 0 50px 90px -50px rgba(0,0,0,0.8);
}
.pf__frame::after {
  content: ""; position: absolute; inset: 12px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(203,161,90,0.4);
}
.pf__img {
  position: absolute; inset: -8% 0; width: 100%; height: 116%;
  object-fit: cover; object-position: center 20%; will-change: transform;
}
.pf__cap { display: block; margin-top: 1rem; color: var(--gold-light); }

/* clip-path Reveal des Portraits */
html.js .reveal-clip .pf__img { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease); }
html.js .reveal-clip.in .pf__img { clip-path: inset(0 0 0 0); }

@media (min-width: 860px) {
  .pos__grid { grid-template-columns: 0.82fr 1.18fr; }
  .pf { position: sticky; top: 12vh; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .progress { display: none; }
  .hero::before { animation: none; }
  html.js .reveal-clip .pf__img { clip-path: none !important; }
}

/* =================================================================
   MOBILE — extreme Optimierung
   ================================================================= */
@media (max-width: 859px) {
  /* Vollbild-Menü statt Off-Canvas (verhindert horizontalen Überlauf) */
  .nav__links {
    position: fixed; inset: 0; width: 100%; height: 100dvh; margin: 0;
    background: var(--black); color: var(--ivory);
    flex-direction: column; justify-content: center; align-items: center; gap: 1.9rem;
    padding: var(--pad); transform: none; box-shadow: none;
    opacity: 0; visibility: hidden; pointer-events: none; z-index: 1050;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__links a { font-size: 1.5rem; letter-spacing: 0.1em; }
  .nav__links a::after { background: var(--gold-light); }
  .nav__logo, .nav__burger { position: relative; z-index: 1100; }

  /* Cursor nie auf Touch */
  .cursor, .progress { display: none !important; }

  /* Ruhigerer Sektions-Rhythmus */
  .section { padding-block: clamp(3.8rem, 13vw, 6rem); }
  .shell { --pad: 1.5rem; }
}

@media (max-width: 600px) {
  /* Hero: Name passt, kein Clipping */
  .hero { padding-top: 6.5rem; min-height: 90svh; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4.6rem); line-height: 1.05; letter-spacing: -0.02em; }
  .hero__eyebrow { margin-bottom: 1.2rem; }
  .hero__foot { gap: 1.3rem; padding-top: 1.3rem; }
  .hero__claim { font-size: clamp(1.45rem, 6.5vw, 2rem); max-width: none; }
  .hero__meta { font-size: 0.95rem; }

  /* Portrait etwas kompakter */
  .pf__frame { aspect-ratio: 4 / 4.4; }

  /* Statement & Headlines nicht zu wuchtig */
  .statement { font-size: clamp(1.55rem, 7vw, 2.4rem); }
  .focus__heading, .block-title, .contact__title { font-size: clamp(2.1rem, 9vw, 3.2rem); }
  .card__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .philosophy__quote { font-size: clamp(1.9rem, 8.5vw, 3rem); }

  /* Touch-Targets & Lesbarkeit */
  .nav__links a { font-size: 1.6rem; }
  .idx__title { font-size: clamp(1.15rem, 5vw, 1.5rem); }
  .contact__link { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
}

/* Mobile-Fix: Kennzahlen-Grid Überlauf + Sicherheits-Clipping */
@media (max-width: 859px) {
  .section { overflow-x: clip; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: clamp(1.3rem, 5vw, 2rem); }
  .stat__num { font-size: clamp(1.9rem, 9vw, 3.2rem); }
  .tl__year { font-size: clamp(1.05rem, 4.5vw, 1.5rem); }
}

/* Mobile: Kennzahl-Labels passen in die schmalen Zellen */
@media (max-width: 600px) {
  .stat__label { letter-spacing: 0.14em; font-size: 0.6rem; }
}

/* =================================================================
   FIX — Kennzahlen nie überlaufen (minmax verhindert Min-Content-Blowout)
   gilt über ALLE Breiten, inkl. Tablet 600–859px
   ================================================================= */
.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 859px) {
  .stat { padding: clamp(1.3rem, 4vw, 2.2rem); }
  .stat__num { font-size: clamp(1.9rem, 7vw, 3.4rem); }
  .stat__label { letter-spacing: 0.14em; font-size: 0.62rem; }
}

/* =================================================================
   AWARD MOTION — WebGL-Hero · dramatische Reveals · Cursor-Label
   ================================================================= */

/* WebGL Gold-Hero hinter dem Inhalt */
.hero__gl {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__gl.is-ready { opacity: 1; }
.hero .hero__inner { position: relative; z-index: 2; }
.hero.has-gl::before { opacity: 0.5; }

/* Dramatischere Scroll-Reveals (Blur-Focus + stärkerer Hub) */
html.js [data-reveal] {
  opacity: 0; transform: translateY(46px); filter: blur(9px); will-change: transform, filter, opacity;
  transition: opacity 0.95s var(--ease), transform 1.15s var(--ease), filter 0.9s var(--ease);
}
html.js [data-reveal].in { opacity: 1; transform: none; filter: blur(0); }

/* Split-Wörter: höher steigen + leichte Rotation */
html.js [data-split] .word__in {
  transform: translateY(130%) rotate(5deg); transform-origin: left bottom;
  transition: transform 1s var(--ease);
}
html.js [data-split].in .word__in { transform: none; }

/* Hero-Zeilen: kräftigerer Mask-Reveal mit Skew */
html.js .hero__title .line__in {
  transform: translateY(110%) skewY(6deg); transition: transform 1.25s var(--ease);
}
html.js .hero.in .hero__title .line__in { transform: none; }

/* Cursor-Label */
.cursor__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6);
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  opacity: 0; white-space: nowrap; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cursor.is-hover .cursor__label { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Skew-on-scroll Helfer */
.skewable { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .hero__gl { display: none !important; }
  html.js [data-reveal] { filter: none !important; transform: none !important; }
  html.js [data-split] .word__in { transform: none !important; }
}
@media (max-width: 600px) {
  .hero__gl { opacity: 0 !important; }   /* Performance auf Handy */
}

/* =================================================================
   ULTRA MOTION — per-Buchstabe 3D-Hero · 3D-Tilt-Karten
   ================================================================= */

/* Hero-Name: jeder Buchstabe klappt einzeln in 3D herein */
.hero__title { perspective: 1000px; }
.hero__title .line { overflow: visible; }
html.js .hero__title .line__in { transform: none !important; transition: none !important; }
html.js .hero__title .ch {
  display: inline-block; opacity: 0;
  transform: translateY(0.5em) rotateX(-92deg); transform-origin: 50% 100%;
  transition: opacity 0.7s var(--ease), transform 1.05s var(--ease);
  will-change: transform, opacity;
}
html.js .hero.in .hero__title .ch { opacity: 1; transform: none; }

/* 3D-Tilt-Karten (Schwerpunkte) */
.card { transform-style: preserve-3d; }
.card > * { transform: translateZ(0.01px); }

@media (prefers-reduced-motion: reduce) {
  html.js .hero__title .ch { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 600px) {
  .hero__title { perspective: none; }   /* Handy: ruhiger */
}

/* =================================================================
   HERO-KLICK-EFFEKT — Partikel-Canvas
   ================================================================= */
.fx {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 1300; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .fx { display: none; } }

/* =================================================================
   DARK CINEMATIC — komplettes dunkles Re-Design (alle Inhalte bleiben)
   Schwarz-dominant · goldenes Licht im Dunkeln · filmische Kapitel
   ================================================================= */
:root {
  --bg: #0c0a07;
  --fg: #efe7d6;
  --gold: #c2974f;
  --gold-light: #e6c47d;
}
body { background: var(--bg); color: var(--fg); }

/* Persistente Atmosphäre: tiefes Schwarz + Gold-Lichtquellen */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(55% 45% at 82% -8%, rgba(198,154,82,0.20), transparent 60%),
    radial-gradient(50% 40% at -5% 108%, rgba(150,112,52,0.14), transparent 60%),
    var(--bg);
}
/* Filmische Vignette */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1380; pointer-events: none;
  box-shadow: inset 0 0 240px 70px rgba(0,0,0,0.72);
}
.grain { opacity: 0.07; mix-blend-mode: overlay; }

/* Sektionen transparent → durchgehende Dunkelheit */
.section--dark { background: transparent; color: var(--fg); }
.eyebrow, .section--dark .eyebrow { color: var(--gold-light); }
.hairline { background: linear-gradient(90deg, var(--gold), transparent); }

/* Nav */
.nav { color: var(--fg); }
.nav.is-scrolled { background: color-mix(in srgb, var(--bg) 76%, transparent); box-shadow: 0 1px 0 rgba(198,154,82,0.28); }
.nav__links a.is-active { color: var(--gold-light); }

/* Cursor */
.cursor__dot { background: var(--gold-light); border-color: var(--gold-light); }
.cursor__label { color: var(--gold-light); }

/* Preloader-Vorhang dunkel (kein heller Blitz) */
.preloader__curtain { background: var(--bg); }

/* Hero — Name als Licht */
.hero__title { color: #f7f0e1; text-shadow: 0 0 70px rgba(230,196,125,0.22); }
.hero__claim { color: #f1e9d6; }
.hero__meta { color: rgba(239,231,214,0.58); }
.hero__foot { border-top-color: rgba(198,154,82,0.42); }
.hero__scroll-line { background: var(--gold-light); }

/* Portrait — kinematisch verdunkelt, leuchtet bei Hover */
.pf__frame { background: #0e0b07; border-color: rgba(198,154,82,0.5); box-shadow: 0 70px 130px -55px #000, 0 0 90px -34px rgba(198,154,82,0.4); }
.pf__frame::after { border-color: rgba(230,196,125,0.45); }
.pf__img { filter: brightness(0.82) contrast(1.06) saturate(0.94); transition: filter 0.9s var(--ease), clip-path 1.3s var(--ease); }
.pf:hover .pf__img { filter: brightness(1.02) contrast(1.05) saturate(1); }

/* Statement / große Typo */
.statement { color: #efe7d6; }

/* Cards (Schwerpunkte) — dunkles Glas, glühen bei Hover */
.card {
  background: linear-gradient(180deg, rgba(255,250,240,0.045), rgba(255,250,240,0.012));
  border-color: rgba(198,154,82,0.22);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.card::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.card:hover { box-shadow: 0 50px 100px -45px #000, 0 0 80px -26px rgba(198,154,82,0.5); border-color: rgba(198,154,82,0.55); }
.card__text { color: rgba(239,231,214,0.74); }
.card__title { color: #f4edde; }
.card:hover .card__title { color: var(--gold-light); }

/* Marquee */
.marquee { background: transparent; border-color: rgba(198,154,82,0.18); }
.marquee__track .mq { color: rgba(239,231,214,0.5); }
.marquee__track .mq i { background: var(--gold-light); }

/* Stats — glühende Zahlen */
.stats { background: rgba(198,154,82,0.22); border-color: rgba(198,154,82,0.22); }
.stat { background: #0e0b07; }
.stat__num { color: #f4edde; text-shadow: 0 0 42px rgba(230,196,125,0.28); }
.stat__num .suffix { color: var(--gold-light); }
.stat__label { color: rgba(239,231,214,0.55); }

/* Timeline */
.tl { border-color: rgba(239,231,214,0.13); }
.tl__title { color: #f1e9d8; }
.tl__text { color: rgba(239,231,214,0.6); }
.tl__year { color: var(--gold-light); }

/* Engagement-Index (war hell) → dunkel */
.idx__row { border-color: rgba(198,154,82,0.22); }
.idx__num { color: var(--gold-light); }
.idx__title { color: #f0e8d8; }
.idx__row > a:hover .idx__title { color: var(--gold-light); }
.idx__meta { color: rgba(239,231,214,0.45); }
.idx__arr { color: var(--gold-light); }

/* Philosophie — Bühne im Spotlight */
.philosophy { position: relative; }
.philosophy::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 50% 45%, rgba(198,154,82,0.16), transparent 70%);
}
.philosophy__inner { position: relative; z-index: 1; }
.philosophy__quote { color: #f6efe0; text-shadow: 0 0 80px rgba(230,196,125,0.24); }

/* Kontakt */
.contact__title { color: #f6efe0; }
.contact__sub { color: rgba(239,231,214,0.66); }
.contact__channels li { border-color: rgba(239,231,214,0.15); }
.contact__link { color: #f0e8d8; }
.contact__link:hover { color: var(--gold-light); }
.cform input, .cform textarea { color: #efe7d6; border-bottom-color: rgba(239,231,214,0.26); }
.cform input::placeholder, .cform textarea::placeholder { color: rgba(239,231,214,0.36); }
.btn--gold { background: var(--gold); color: #0c0a07; }
.btn--gold::before { background: var(--gold-light); }
.nav__cta:hover { color: #0c0a07; }

/* Footer */
.footer { background: transparent; box-shadow: inset 0 1px 0 rgba(198,154,82,0.25); }
.footer__copy { color: rgba(239,231,214,0.5); }
.footer__made { color: rgba(239,231,214,0.4); }
.footer__logo .monogram { border-color: rgba(198,154,82,0.5); }

/* Hero-GL stärker (Gold-Embers auf Schwarz) */
.hero__gl.is-ready { opacity: 1; }
.hero.has-gl::before { opacity: 0.7; }

/* =================================================================
   Sprachauswahl DE / EN / FR
   ================================================================= */
.lang { display: inline-flex; align-items: center; margin-left: 1.5rem; }
.lang a {
  font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 500;
  color: rgba(239,231,214,0.5); padding: 0.3rem 0.55rem;
  transition: color 0.3s var(--ease);
}
.lang a + a { border-left: 1px solid rgba(198,154,82,0.32); }
.lang a:hover, .lang a.is-active { color: var(--gold-light); }

@media (max-width: 859px) {
  /* Im Vollbild-Menü unten zentriert */
  .lang {
    position: fixed; left: 50%; bottom: 9vh; transform: translateX(-50%);
    margin: 0; z-index: 1060; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  }
  .nav.is-burger-open .lang { opacity: 1; visibility: visible; pointer-events: auto; }
  .lang a { font-size: 1rem; padding: 0.4rem 1rem; color: rgba(239,231,214,0.62); }
}

/* =================================================================
   „Drei-Felder"-Gefühl überall — Gold-Glow + Lift bei Hover + Tilt
   ================================================================= */
.tl__link, .idx__row > a {
  border-radius: 5px; will-change: transform;
  transition: padding-left 0.45s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease);
}
.tl__link:hover {
  background: linear-gradient(100deg, rgba(198,154,82,0.09), transparent 66%);
  box-shadow: 0 38px 72px -48px #000, 0 0 55px -30px rgba(198,154,82,0.4);
}
.idx__row > a:hover {
  background: linear-gradient(100deg, rgba(198,154,82,0.10), transparent 72%);
  box-shadow: 0 30px 60px -46px #000;
}
.stat { position: relative; will-change: transform; transition: box-shadow 0.5s var(--ease); }
.stat:hover { box-shadow: inset 0 0 72px -22px rgba(198,154,82,0.32), 0 0 44px -28px rgba(198,154,82,0.4); z-index: 1; }
.pf__frame { will-change: transform; }

/* =================================================================
   Lebenslauf-Download
   ================================================================= */
.cv-download {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 2.2rem;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500; color: var(--gold-light);
  border: 1px solid rgba(198,154,82,0.42); padding: 0.9rem 1.6rem; border-radius: 100px;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cv-download svg { width: 15px; height: 15px; }
.cv-download:hover {
  background: var(--gold); color: #0c0a07; border-color: var(--gold);
  box-shadow: 0 0 44px -10px rgba(198,154,82,0.55);
}

/* Kontaktformular-Status */
.cform__status { min-height: 1.3em; margin-top: 0.2rem; font-size: 0.86rem; letter-spacing: 0.01em; transition: color 0.3s var(--ease); }
.cform__status.ok { color: var(--gold-light); }
.cform__status.err { color: #d9a3a3; }

/* =================================================================
   PERFORMANCE — flüssigeres Rendering (gleiche Optik)
   ================================================================= */
.card { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
.grain { mix-blend-mode: normal; opacity: 0.05; }
html.js [data-reveal] { filter: blur(6px); }
/* GPU-Compositing-Hinweise nur dort, wo dauernd bewegt wird */
.hero__gl, .marquee__track, .cursor, .progress { will-change: transform; }

/* =================================================================
   MIKRO-DETAILS — Cursor-Trail · Sound-Toggle (Equalizer)
   ================================================================= */
.cursor__trail {
  position: fixed; top: 0; left: 0; z-index: 1499; pointer-events: none;
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; background: var(--gold);
}
@media (max-width: 600px) { .cursor__trail { display: none !important; } }

.sound-toggle {
  position: fixed; left: clamp(1rem, 2.2vw, 1.7rem); bottom: clamp(1rem, 2.2vw, 1.7rem); z-index: 1100;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(198,154,82,0.42); background: rgba(12,10,7,0.45);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.sound-toggle:hover { border-color: var(--gold); transform: translateY(-2px); }
.sound-toggle span { width: 2px; height: 6px; background: var(--gold-light); border-radius: 2px; transition: height 0.3s var(--ease); }
.sound-toggle.on span { animation: eq 0.85s var(--ease) infinite alternate; }
.sound-toggle.on span:nth-child(2) { animation-delay: 0.12s; }
.sound-toggle.on span:nth-child(3) { animation-delay: 0.24s; }
.sound-toggle.on span:nth-child(4) { animation-delay: 0.36s; }
@keyframes eq { from { height: 4px; } to { height: 15px; } }
@media (prefers-reduced-motion: reduce) { .sound-toggle.on span { animation: none; height: 10px; } }

/* =================================================================
   HELLER — wärmeres, helleres Dunkel (elegante Linie bleibt)
   ================================================================= */
:root {
  --bg: #4a4337;
  --black: #3a342b;   /* Preloader minimal tiefer für den Einstieg */
}
body { background: #4a4337; }
body::before {
  background:
    radial-gradient(56% 46% at 82% -8%, rgba(214,170,92,0.22), transparent 60%),
    radial-gradient(50% 40% at -5% 108%, rgba(170,130,64,0.15), transparent 60%),
    #4a4337;
}
body::after { box-shadow: inset 0 0 240px 86px rgba(0,0,0,0.5); }   /* Vignette sanfter */
.preloader { background: #3a342b; }
.preloader__curtain { background: #4a4337; }
.stat { background: #554d3f; }
.pf__frame { background: #554d3f; }
.card { background: linear-gradient(180deg, rgba(255,250,240,0.07), rgba(255,250,240,0.025)); }
.nav.is-scrolled { background: color-mix(in srgb, #4a4337 82%, transparent); }
.stats { background: rgba(214,170,92,0.24); }   /* Gitterlinien etwas heller */

/* Footer-Rechtslinks */
.footer__legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__legal a { color: color-mix(in srgb, var(--ivory) 52%, transparent); transition: color 0.35s var(--ease); }
.footer__legal a:hover { color: var(--gold-light); }
