/* ============================================================
   MutterErde® — Design-System B „Geerdet & Editorial"
   Tokens verbindlich lt. Build-Brief V1.0 (Juli 2026)
   ============================================================ */

/* ---------- Fonts (self-hosted, latin, variable) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-Italic.woff2') format('woff2');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Flächen */
  --cream:      #FBF6EE;
  --sand:       #EFE3D3;
  --plum:       #211318;
  --plum-deep:  #160D11;
  /* Akzente */
  --rose:       #A04B62;
  --rose-soft:  #D9A0B0;
  --clay:       #8A5A48;
  --gold:       #C49A5A;
  /* Text */
  --ink:        #241820;
  --ink-soft:   #4B3A42;
  --paper:      #F4E9E0;
  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  /* Radius & Linien */
  --radius:     4px;
  --hairline:   1px solid rgba(196,154,90,.45);
  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-hover: 0 14px 40px rgba(160,75,98,.18);
  /* Layout */
  --w-max:      1240px;
  --w-text:     68ch;
  --pad-x:      clamp(20px, 5vw, 64px);
  --sec-y:      clamp(88px, 12vw, 160px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  /* KEIN scroll-behavior:smooth — kollidiert mit Lenis (Doppel-Glättung, zähes Scrollen) */
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 640px) { body { font-size: 17px; } }
img, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: var(--rose); text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }
::selection { background: rgba(160,75,98,.22); }

/* Papier-Korn — Markenkern (fixe Ebene über hellen Flächen) */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .05;
  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.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Skip-Link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--plum); color: var(--paper);
  padding: 12px 20px; z-index: 10000; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* Fokus sichtbar: Goldlinie */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  color: inherit;
}
h1, .h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.015em;
}
h2, .h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.012em;
}
h3, .h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  font-weight: 400;
}
.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.on-dark .accent, .accent--soft { color: var(--rose-soft); }
p { max-width: var(--w-text); }
.lead { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.55; color: var(--ink-soft); }
.on-dark .lead { color: rgba(244,233,224,.8); }
.small { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.on-dark .small { color: rgba(244,233,224,.66); }

/* Kicker mit Goldlinie */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  flex: none;
}
.on-dark .kicker { color: var(--rose-soft); }

/* Preis-Ziffern */
.price {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Text-Link mit wachsender Goldlinie */
.tlink {
  position: relative;
  display: inline-block;
  color: var(--rose);
  font-weight: 600;
  padding-bottom: 2px;
}
.on-dark .tlink { color: var(--rose-soft); }
.tlink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.tlink:hover::after, .tlink:focus-visible::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: var(--radius);
  background: var(--rose);
  color: var(--paper);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); background: #8F4257; }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(36,24,32,.32);
}
.btn--ghost:hover { background: rgba(36,24,32,.05); box-shadow: none; color: var(--ink); }
.on-dark .btn--ghost {
  color: var(--paper);
  border-color: rgba(244,233,224,.38);
}
.on-dark .btn--ghost:hover { background: rgba(244,233,224,.08); color: var(--paper); }
.btn--sm { padding: 12px 22px; font-size: 15px; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--narrow { max-width: 880px; }
.section { padding-block: var(--sec-y); position: relative; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--plum);
  color: var(--paper);
  position: relative;
}
.on-dark { color: var(--paper); }
.section--dark > .wrap { position: relative; z-index: 2; }
/* Grain auf dunklen Flächen (Video verschmilzt mit Seite) */
.section--dark::before, .site-footer::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: overlay;
  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.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 1;
}
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head h2 { margin-bottom: 18px; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .5s var(--ease), box-shadow .5s var(--ease);
}
.nav-inner {
  max-width: var(--w-max);
  margin-inline: auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav--solid {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(196,154,90,.45);
}
.nav--solid .nav-inner { padding-block: 12px; }
.brand {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .5s var(--ease);
}
.brand sup { font-size: .45em; font-weight: 300; }
.nav--on-hero:not(.nav--solid) .brand,
.nav--on-hero:not(.nav--solid) .nav-link { color: var(--paper); }
.nav--on-hero:not(.nav--solid) .btn--ghost {
  color: var(--paper);
  border-color: rgba(244,233,224,.38);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  list-style: none;
}
.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 3px;
  transition: color .5s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { flex: none; }
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px;
}
.nav-burger span {
  width: 26px; height: 1.5px;
  background: currentColor;
  color: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav--on-hero:not(.nav--solid) .nav-burger span { color: var(--paper); }
@media (max-width: 960px) { .nav-burger { display: flex; } }
body.menu-open .nav-burger span { color: var(--paper); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* Offenes Menü: Die Leiste liegt über dem dunklen Overlay. Im gescrollten
   Zustand (.nav--solid, Creme-Hintergrund) wäre das helle X sonst unsichtbar,
   daher Hintergrund raus und Markenzug hell — wie im Hero-Zustand. */
body.menu-open .nav { background: transparent; box-shadow: none; }
body.menu-open .nav .brand,
body.menu-open .nav .nav-link { color: var(--paper); }

/* Mobile Fullscreen-Overlay */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: 990;
  background: var(--plum);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--pad-x) 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility 0s .5s;
}
body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s var(--ease);
}
body.menu-open { overflow: hidden; }
.nav-overlay ul { list-style: none; display: grid; gap: 8px; }
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(34px, 8vw, 52px);
  color: var(--paper);
  display: inline-block;
  padding: 6px 0;
}
.nav-overlay li {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
body.menu-open .nav-overlay li { opacity: 1; transform: none; }
body.menu-open .nav-overlay li:nth-child(1) { transition-delay: .08s; }
body.menu-open .nav-overlay li:nth-child(2) { transition-delay: .16s; }
body.menu-open .nav-overlay li:nth-child(3) { transition-delay: .24s; }
body.menu-open .nav-overlay li:nth-child(4) { transition-delay: .32s; }
body.menu-open .nav-overlay li:nth-child(5) { transition-delay: .40s; }
body.menu-open .nav-overlay li:nth-child(6) { transition-delay: .48s; }
.nav-overlay .overlay-meta {
  margin-top: 48px;
  border-top: var(--hairline);
  padding-top: 24px;
  font-size: 15px;
  color: rgba(244,233,224,.6);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: var(--plum);
  overflow: clip;
}
.hero--sub { min-height: 72svh; }
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media > video, .hero-media > img, .hero-media > .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Signature-Moment 1: Hero-Atmen */
@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.hero-media--breathe > * { animation: breathe 24s var(--ease) infinite; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(22,13,17,.55) 0%, rgba(22,13,17,.25) 38%, rgba(22,13,17,0) 60%),
    linear-gradient(to top, rgba(22,13,17,.78) 0%, rgba(22,13,17,.45) 40%, rgba(22,13,17,.18) 70%, rgba(22,13,17,.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding: 140px var(--pad-x) clamp(120px, 16vh, 170px);
}
.hero--sub .hero-inner { padding-bottom: clamp(72px, 10vh, 120px); }
.hero h1 { max-width: 15ch; margin-bottom: 22px; }
.hero .lead { max-width: 46ch; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Wort-für-Wort-Reveal */
.w-reveal .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
}
.w-reveal.is-in .w { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* Scroll-Hinweis mit atmender Goldlinie */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,233,224,.72);
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 44px;
  background: var(--gold);
  transform-origin: top;
  animation: hintBreathe 3.2s var(--ease) infinite;
}
@keyframes hintBreathe {
  0%, 100% { transform: scaleY(.35); opacity: .5; }
  50%      { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 640px) { .scroll-hint { display: none; } }

/* ---------- Scroll-Reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* ---------- Platzhalter-Medien (bis echte Assets da sind) ---------- */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 70% 12%, rgba(196,154,90,.35) 0%, rgba(196,154,90,0) 55%),
    linear-gradient(168deg, #3A2129 0%, #57303C 34%, #8A5A48 72%, #C49A5A 130%);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .12;
  mix-blend-mode: overlay;
  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.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.ph::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: 30%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244,233,224,0), rgba(244,233,224,.4), rgba(244,233,224,0));
}
.ph--earth {
  background:
    radial-gradient(110% 80% at 30% 8%, rgba(251,246,238,.28) 0%, rgba(251,246,238,0) 60%),
    linear-gradient(165deg, #8A5A48 0%, #6E4437 45%, #57303C 100%);
}
.ph--dusk {
  background:
    radial-gradient(130% 100% at 70% 100%, rgba(160,75,98,.55) 0%, rgba(160,75,98,0) 60%),
    linear-gradient(180deg, #160D11 0%, #211318 55%, #57303C 100%);
}
.ph--soft {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(217,160,176,.4) 0%, rgba(217,160,176,0) 60%),
    linear-gradient(165deg, #EFE3D3 0%, #D9C3AC 60%, #C49A5A 130%);
}
.ph--soft::after { background: linear-gradient(90deg, rgba(138,90,72,0), rgba(138,90,72,.35), rgba(138,90,72,0)); }

/* Medien-Rahmen */
.media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.media--portrait { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 21 / 9; }
.media--arch {
  aspect-ratio: 3 / 4;
  border-radius: clamp(140px, 22vw, 260px) clamp(140px, 22vw, 260px) var(--radius) var(--radius);
}
.media > * { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Selbsterkennung: Zeilen-Highlight beim Scrollen ---------- */
.recognition-lines { display: grid; gap: clamp(22px, 3.4vw, 40px); max-width: 900px; }
.recog-line {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  opacity: .2;
}

/* ---------- Signature-Moment 2: Der Weg (Sticky) ---------- */
.weg { position: relative; }
.weg-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.weg-left {
  position: sticky;
  top: 22vh;
  min-height: 40vh;
}
.weg-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(120px, 14vw, 210px);
  line-height: .9;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
  position: relative;
  height: 1em;
}
.weg-num span {
  position: absolute; left: 0; top: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.weg-num span.is-active { opacity: 1; transform: none; }
.weg-word {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(30px, 3.4vw, 46px);
  display: block;
  margin-top: 18px;
  position: relative;
  height: 1.2em;
}
.weg-word span {
  position: absolute; left: 0; top: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.weg-word span.is-active { opacity: 1; transform: none; }
.weg-stations { display: grid; gap: clamp(64px, 9vw, 130px); }
.weg-station .media { margin-bottom: 28px; aspect-ratio: 16 / 10; }
.weg-station h3 { margin-bottom: 12px; }
.weg-station p { color: var(--ink-soft); }
.weg-mobile-label { display: none; }
@media (max-width: 860px) {
  .weg-grid { grid-template-columns: 1fr; }
  .weg-left { display: none; }
  .weg-mobile-label {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
  }
  .weg-mobile-label .num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 54px;
    line-height: 1;
    color: var(--gold);
  }
  .weg-mobile-label .word {
    font-family: var(--font-display);
    font-size: 26px;
  }
}

/* ---------- Signature-Moment 3: Stimmen-Wand ---------- */
.voices { overflow: clip; }
.voices-bg {
  position: absolute; inset: 0;
  opacity: .1;
}
.voices-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.voices-center blockquote {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
}
.voices-center figcaption {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(244,233,224,.66);
}
.marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(48px, 7vw, 88px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(18px, 2vw, 24px);
  white-space: nowrap;
  color: rgba(244,233,224,.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Reconnect-Treppe (geteilte Tabellen-Karte) ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.tier {
  padding: clamp(30px, 3.6vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: var(--hairline);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.tier:first-child { border-left: none; }
.tier:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.tier-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
}
.tier .price { color: var(--ink); }
.tier .price small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.tier p { font-size: 16px; color: var(--ink-soft); flex-grow: 1; }
.tier-note { font-size: 13.5px; color: var(--clay); }
.tier-badge {
  position: absolute;
  top: 0; right: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  padding: 10px 14px;
  border-left: var(--hairline);
  border-bottom: var(--hairline);
  border-radius: 0 0 0 var(--radius);
}
@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-left: none; border-top: var(--hairline); }
  .tier:first-child { border-top: none; }
}

/* ---------- Sicherheits-Block ---------- */
.trust {
  border-left: 2px solid var(--gold);
  padding-left: clamp(24px, 3.4vw, 44px);
}
.trust .h3 { margin-bottom: 16px; font-style: italic; }

/* ---------- Signature-Moment 4: Goldlinie ---------- */
.goldline {
  position: absolute;
  top: 0; left: max(calc((100vw - 1240px) / 2 - 40px), 18px);
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.goldline path {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  opacity: .8;
}
@media (max-width: 1100px) { .goldline { display: none; } }

/* ---------- CTA-Sektion (Klarheitsgespräch) ---------- */
.cta-final {
  position: relative;
  color: var(--paper);
  overflow: clip;
}
.cta-final .cta-bg {
  position: absolute; inset: 0;
}
.cta-final .cta-bg > img,
.cta-final .cta-bg > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-final .cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--cream) 0%, rgba(251,246,238,0) 26%), linear-gradient(rgba(22,13,17,.55), rgba(22,13,17,.72));
}
.cta-final .wrap { position: relative; z-index: 2; }

/* ---------- Click-to-Load Embeds (Calendly / Klick-Tipp) ---------- */
.embed-gate {
  position: relative;
  border: var(--hairline);
  border-radius: var(--radius);
  background: rgba(251,246,238,.06);
  aspect-ratio: 4 / 3;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  overflow: hidden;
}
.section--cream .embed-gate, .section--sand .embed-gate { background: rgba(33,19,24,.03); }
.embed-gate--slim {
  aspect-ratio: auto;
  min-height: 300px;
  max-width: 800px;
}
.embed-gate iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.embed-gate-inner { max-width: 44ch; display: grid; gap: 18px; justify-items: center; }
.embed-gate-inner .small { max-width: 40ch; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 26px; max-width: 640px; }
.field { display: grid; gap: 10px; }
.field label { font-weight: 600; font-size: 16px; }
.field .hint { font-size: 14px; color: var(--ink-soft); }
.field input[type="text"], .field input[type="email"], .field textarea, .field select {
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(138,90,72,.4);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.choices { display: grid; gap: 10px; }
.choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(138,90,72,.35);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  font-size: 16px;
}
.choice:hover { border-color: var(--rose); }
.choice input { margin-top: 4px; accent-color: var(--rose); }
.choice:has(input:checked) {
  border-color: var(--rose);
  background: rgba(160,75,98,.06);
}

/* ---------- FAQ-Akkordeon ---------- */
.faq { display: grid; border-top: var(--hairline); max-width: 820px; }
.faq details { border-bottom: var(--hairline); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2vw, 23px);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .x {
  flex: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--clay);
  transition: transform .45s var(--ease);
  transform: rotate(0deg);
}
.faq details[open] summary .x { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 26px; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Timeline (/reconnect „Was passiert") ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 72px);
  padding-left: clamp(34px, 5vw, 56px);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(196,154,90,.35);
}
.timeline .tl-line {
  position: absolute;
  left: 8px; top: 8px;
  width: 1px;
  height: 0;
  background: var(--gold);
}
.tl-item { position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(34px, 5vw, 56px) + 4.5px);
  top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.tl-item .tl-kicker {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.tl-item h3 { margin-bottom: 10px; }
.tl-item p { color: var(--ink-soft); }

/* ---------- Sticky-Bottom-Bar (Mobile, /reconnect) ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: rgba(33,19,24,.97);
  color: var(--paper);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .6s var(--ease);
  border-top: 1px solid rgba(196,154,90,.45);
}
.sticky-bar.is-visible { transform: none; }
.sticky-bar .sb-label { font-size: 14.5px; line-height: 1.3; }
.sticky-bar .sb-label b { font-family: var(--font-display); font-weight: 400; font-size: 16px; display: block; }
@media (max-width: 760px) { .sticky-bar { display: flex; } }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--plum-deep);
  color: var(--paper);
  border-top: var(--hairline);
  padding: clamp(56px, 8vw, 96px) 0 40px;
}
.site-footer .wrap { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--paper); font-size: 26px; }
.footer-brand p {
  margin-top: 16px;
  color: rgba(244,233,224,.66);
  font-size: 16px;
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(244,233,224,.82); font-size: 16px; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(196,154,90,.25);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(244,233,224,.5);
}
.footer-bottom a { color: rgba(244,233,224,.7); }

/* ---------- Kompass-Sektion (Freebie-Auffangnetz) ---------- */
.kompass-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) { .kompass-box { grid-template-columns: 1fr; } }
.inline-form { display: flex; gap: 12px; flex-wrap: wrap; }
.inline-form input[type="email"] {
  flex: 1 1 200px;
  font: inherit;
  padding: 15px 16px;
  border: 1px solid rgba(138,90,72,.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
}
.inline-form input[type="text"] {
  flex: 1 1 120px;
  font: inherit;
  padding: 15px 16px;
  border: 1px solid rgba(138,90,72,.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
}
.inline-form input:focus { outline: none; border-color: var(--gold); background: #fff; }
.inline-form--stack { flex-direction: column; flex-wrap: nowrap; gap: 10px; }
.inline-form--stack input[type="text"],
.inline-form--stack input[type="email"],
.inline-form--stack .btn { width: 100%; flex: 0 0 auto; }
.inline-form--stack .btn { text-align: center; justify-content: center; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--rose);
  cursor: pointer;
}
.form-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.form-note a { color: var(--rose); text-decoration: underline; }

/* ---------- Kongress-Referenzen (Portfolio) ---------- */
.ref-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 44px) clamp(28px, 4vw, 56px);
}
@media (max-width: 640px) { .ref-grid { grid-template-columns: 1fr; } }
.ref-item { border-top: var(--hairline); padding-top: 16px; }
.ref-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.25;
  color: var(--ink);
}
.ref-item p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.ref-cta { margin-top: clamp(32px, 5vw, 52px); }
.ref-link { margin-top: 11px; font-size: 15px; }
.ref-soon { color: var(--ink-soft); opacity: .6; font-style: italic; }

/* ---------- Über-uns-Kapitel ---------- */
.chapter {
  display: grid;
  grid-template-columns: minmax(90px, 180px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(36px, 5vw, 64px);
  border-top: var(--hairline);
}
.chapter:first-of-type { border-top: none; }
.chapter-year {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 68px);
  color: var(--gold);
  line-height: 1;
  position: sticky;
  top: 120px;
}
@media (max-width: 640px) {
  .chapter { grid-template-columns: 1fr; gap: 10px; }
  .chapter-year { position: static; font-size: 34px; }
}

/* ---------- Karten (Öle etc.) ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  border: var(--hairline);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.card h3 { font-size: 22px; }
.card p { font-size: 16px; color: var(--ink-soft); flex-grow: 1; }

/* ---------- Zahlen-Reihe (Kongresse) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  text-align: center;
}
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 32px; } }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat span { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: inherit; opacity: .75; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 26px; } .mt-3 { margin-top: 44px; } .mt-4 { margin-top: 64px; }
.mb-1 { margin-bottom: 14px; } .mb-2 { margin-bottom: 26px; } .mb-3 { margin-bottom: 44px; }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.legal-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 44px 0 14px; }
.legal-body h3 { font-size: 20px; margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }

/* ---------- Ruhige Liste (Intensiv) ---------- */
.quiet-list {
  list-style: none;
  display: grid;
  max-width: 62ch;
}
.quiet-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(196,154,90,.25);
  font-size: 17px;
  line-height: 1.6;
}
.quiet-list li:first-child { border-top: 1px solid rgba(196,154,90,.25); }
.quiet-list b { font-weight: 600; }

/* ---------- Seiten ohne Hero ---------- */
.section--first { padding-top: calc(var(--sec-y) + 72px); }

/* ---------- Dunkle Seite (/reconnect/intensiv) ---------- */
body.theme-dark { background: var(--plum); color: var(--paper); }
body.theme-dark .nav--solid { background: rgba(33,19,24,.96); }
body.theme-dark .nav--solid .brand,
body.theme-dark .nav--solid .nav-link { color: var(--paper); }
body.theme-dark .nav--solid .nav-burger span { color: var(--paper); }
body.theme-dark::after { mix-blend-mode: overlay; opacity: .06; }

/* ---------- Reduced Motion: alles aus ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  [data-reveal], .w-reveal .w { opacity: 1 !important; transform: none !important; }
  .recog-line { opacity: 1 !important; }
  .marquee-track { animation: none !important; flex-wrap: wrap; width: auto; }
  .hero-media--breathe > * { animation: none !important; }
  .scroll-hint { display: none; }
  .weg-num span, .weg-word span { opacity: 1; position: static; transform: none; }
  video[data-motion] { display: none; }
}

/* ── Über uns: lange Lesestrecke ─────────────────────── */
.prose p { max-width: var(--w-text); }
.prose p + p { margin-top: 1.3em; }
.prose .verse + p { margin-top: 0; }
/* Zwischenüberschriften bekommen Luft nach oben UND unten (kein „Kleben") */
.prose h3 { line-height: 1.3; margin-top: 1.9em; margin-bottom: .55em; }
.prose h3:first-child { margin-top: 0; }
.prose h3 + p { margin-top: 0; }
.prose ul.quiet-list { margin-top: 14px; margin-bottom: 4px; }
.prose ul.quiet-list + p { margin-top: 1.3em; }
.verse {
  margin: 2.4rem 0;
  padding-left: clamp(18px, 3vw, 28px);
  border-left: var(--hairline);
}
.verse p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  line-height: 1.65;
  color: var(--rose);
  max-width: var(--w-text);
}
.verse p + p { margin-top: .35em; }
.prose .standalone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-top: 1.4em;
}

/* Breite Lesestrecke + eingebettetes Bild */
.prose--wide p { max-width: 86ch; }
.prose::after { content: ""; display: table; clear: both; }
.prose-img { margin: 0 0 22px; }
.prose-img img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: clamp(120px, 16vw, 200px) clamp(120px, 16vw, 200px) var(--radius) var(--radius);
}
@media (min-width: 861px) {
  .prose-img {
    float: right;
    width: min(380px, 38%);
    margin: 8px 0 32px clamp(28px, 4vw, 56px);
  }
}

/* Sticky Sub-Navigation mit Ankerpunkten */
.subnav {
  position: sticky;
  top: calc(var(--nav-h, 73px) - 1px);
  z-index: 900;
  background: var(--cream);
  border-bottom: var(--hairline);
}
.subnav-inner {
  max-width: var(--w-max);
  margin-inline: auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: clamp(24px, 4vw, 44px);
  overflow-x: auto;
}
.subnav a {
  padding: 13px 0 11px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.subnav a:hover { color: var(--rose); }
.subnav a.is-active { color: var(--rose); border-bottom-color: var(--rose); }

/* Kongresse-Hero: Desktop beide Gesichter, Mobile auf Björn+Setup fokussiert */
.kongress-hero-img { object-position: 50% 34%; }
@media (max-width: 760px) { .kongress-hero-img { object-position: 70% 22%; } }

/* ---------- Klaro Consent-Banner (MutterErde: dunkles Pflaume) ---------- */
.klaro {
  --font-family: var(--font-body);
  --border-radius: 4px;
  --dark1: #1B1015;   /* Notice-/Modal-Hintergrund */
  --dark2: #241820;
  --dark3: #33222a;
  --light1: #F4E9E0;  /* helle Flächen / Text auf dunkel */
  --light2: rgba(244,233,224,.22);
  --light3: rgba(244,233,224,.6);
  --white1: #F4E9E0;
  --white2: #F4E9E0;
  --white3: #EFE3D3;
  --green1: #A04B62;  /* „Alle akzeptieren" */
  --green2: #8F4257;
  --green3: #F4E9E0;
  --blue1: #D9A0B0;   /* Schalter-/Link-Akzent */
  --blue2: #A04B62;
  --button-text-color: #F4E9E0;
}
.klaro .cookie-notice, .klaro .cookie-modal .cm-modal {
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border-radius: var(--radius);
}
.klaro .cookie-notice, .klaro .cookie-notice p, .klaro .cookie-notice .cn-body,
.klaro .cookie-modal, .klaro .cookie-modal p, .klaro .cookie-modal .cm-caption,
.klaro .cookie-modal li, .klaro .cookie-modal .cm-list-title { color: #F4E9E0; }
.klaro .cookie-notice a, .klaro .cookie-modal a { color: var(--rose-soft); font-weight: 600; }
.klaro button.cm-btn { border-radius: var(--radius); font-weight: 600; }
.klaro .cm-btn.cm-btn-success { background: var(--rose); color: #F4E9E0; }
.klaro .cm-btn.cm-btn-success:hover { background: #8F4257; }

/* Marken-Logo neben dem Schriftzug (Header + Footer) */
.brand { display: inline-flex; align-items: center; gap: 7px; }
.brand-word { display: inline-block; }        /* Wort + ® bleiben zusammen (kein Flex-Gap dazwischen) */
.brand-logo { width: 32px; height: 32px; flex: none; border-radius: 50%; display: block; }
.footer-brand .brand-logo { width: 30px; height: 30px; }
@media (max-width: 640px) { .brand-logo { width: 28px; height: 28px; } }
