/* ===========================================================
   Rebecca Fackler — Coaching für Frauen
   Brand: Klarheit. Verbindung. Entwicklung.
   Palette: Sand · Stein · Küstenblau · Gold · Aubergine
   =========================================================== */

:root {
  /* Palette */
  --cream:       #f7f5f1;  /* Offwhite */
  --cream-deep:  #efe9e0;
  --sand:        #e9dcc6;  /* Sand */
  --sand-deep:   #ddc8a8;
  --stone:       #d6d0cf;
  --reed:        #a8b2a1;  /* Schilfgrün */
  --reed-deep:   #7f8a78;
  --sky:         #b7c8cf;  /* Ostsee-Blau */
  --mist:        #5f6f7a;  /* Tiefes Wasser / Nebelblau */
  --gold:        #c9a35d;  /* Warmes Gold */
  --gold-deep:   #ad8540;
  --plum:        #4e0c41;  /* Aubergine */
  --plum-soft:   #6f2a62;
  --ink:         #2c2329;
  --ink-soft:    #6a6068;
  --ink-warm:    #836f57;  /* warmer Taupe-Ton für Texte auf Sand/Creme */
  --white:       #fffefb;
  --line:        #e6ded2;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Lora", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:     18px;
  --radius-lg:  30px;
  /* Torbogen: glatter Rundbogen oben, weiche Ecken unten. Zweite Zahl (50%) = Bogenhöhe; kleiner (z. B. 40%) macht den Bogen flacher. */
  --arch:       50% 50% var(--radius-lg) var(--radius-lg) / 32% 32% var(--radius-lg) var(--radius-lg);
  /* Foto-Veredelung: leicht entsättigt + warm, damit Fotos zur Palette passen. Stärker entsättigen = erste Zahl kleiner. */
  --veil:       saturate(0.8) contrast(1.02) sepia(0.07);
  --shadow-sm:  0 3px 16px rgba(44, 35, 41, 0.05);
  --shadow-md:  0 14px 44px rgba(44, 35, 41, 0.09);

  --container:  1180px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.04rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 4.7vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

p { color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 26px;
}
.section { padding-block: clamp(56px, 6.5vw, 96px); }
.section--tight { padding-block: clamp(40px, 4.5vw, 64px); }
.bg-sand   { background: var(--sand); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-stone  { background: var(--stone); }
.bg-reed   { background: color-mix(in srgb, var(--reed) 30%, var(--cream)); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: inline-block;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

/* feine Gold-Trennlinie mit Mittelpunkt (Moodboard-Detail) */
.divider-gold {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  max-width: 240px; margin: 16px auto 0;
}
.divider-gold::before, .divider-gold::after { content: ""; height: 1px; flex: 1; }
.divider-gold::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-gold::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-gold span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

.lead {
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: balance;
}
.measure { max-width: 64ch; }
.center  { text-align: center; }
.center .lead, .center .measure { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.95em 1.9em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary { background: var(--plum); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--white); }

.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--cream) 93%, transparent);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .brand-logo { height: clamp(40px, 5vw, 52px); width: auto; flex: none; display: block; }
.brand .brand-emblem { width: clamp(44px, 4.5vw, 54px); height: clamp(44px, 4.5vw, 54px); flex: none; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
}
.brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; }
.nav-links a {
  position: relative; font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 100px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--cream-deep); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 0.62em 1.3em; font-size: 0.85rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 84px); }
.hero-grid {
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 6vw, 76px); align-items: center;
}
.hero .script { margin-bottom: 8px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5;
  max-width: 400px; margin-left: auto;
  border-radius: var(--radius); overflow: hidden;
  /* weicher, rundum gleichmäßiger Schlagschatten (Moodboard-Stil) */
  box-shadow: 0 22px 50px -22px rgba(44, 35, 41, 0.34),
              0 8px 20px -12px rgba(44, 35, 41, 0.16);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.hero-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px -22px rgba(44, 35, 41, 0.38),
              0 10px 24px -12px rgba(44, 35, 41, 0.20);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: var(--veil); }

.hero-badge {
  position: absolute; left: -22px; bottom: 32px;
  background: color-mix(in srgb, var(--white) 90%, transparent);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px; padding: 16px 22px 16px 16px;
  /* gestaffelter, weicher Schlagschatten für Tiefe */
  box-shadow: 0 1px 2px rgba(44, 35, 41, 0.10),
              0 6px 14px rgba(44, 35, 41, 0.10),
              0 22px 48px rgba(44, 35, 41, 0.20);
  display: flex; align-items: center; gap: 14px;
  max-width: 268px; z-index: 2;
}
.hero-badge .badge-emblem {
  width: 38px; height: 38px; flex: none; padding: 8px; border-radius: 50%;
  background: var(--sand); box-shadow: inset 0 0 0 1px rgba(201, 163, 93, 0.45);
}
.hero-badge p { font-family: var(--font-sans); font-size: 0.82rem; color: var(--ink); margin: 0; line-height: 1.45; }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; }
.blob--sky  { width: 340px; height: 340px; background: var(--sky); opacity: .28; top: -90px; right: -70px; }
.blob--gold { width: 260px; height: 260px; background: var(--gold); opacity: .12; bottom: -110px; left: -80px; }

/* ---------- Hero Vollbild (full-bleed) ---------- */
.hero-full { position: relative; min-height: clamp(560px, 86vh, 880px); display: flex; align-items: flex-start; padding-top: clamp(64px, 9vh, 120px); padding-bottom: clamp(40px, 6vh, 80px); overflow: hidden; }
.hero-full .hero-full-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 60%; filter: var(--veil); z-index: 0; }
/* heller Verlaufs-Schleier von links: Text links bleibt lesbar, Rebecca steht rechts frei */
.hero-full::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(247,245,241,.95) 0%, rgba(247,245,241,.85) 32%, rgba(247,245,241,.6) 46%, rgba(247,245,241,.3) 56%, rgba(247,245,241,.12) 63%, rgba(247,245,241,0) 70%); }
.hero-full .container { position: relative; z-index: 2; display: flex; justify-content: flex-start; }
.hero-full .hero-full-text { max-width: 520px; }
.hero-full .hero-full-text h1 { margin: 10px 0 20px; }
.hero-full .hero-full-text .lead { margin-bottom: 30px; max-width: 44ch; }
@media (max-width: 860px) {
  .hero-full .hero-full-bg { object-position: 28% 30%; }
  .hero-full .container { justify-content: center; }
  .hero-full .hero-full-text { text-align: center; }
  .hero-full .hero-full-text .lead { margin-inline: auto; }
  .hero-full .hero-actions { justify-content: center; }
  .hero-full::after { background: linear-gradient(180deg, rgba(247,245,241,.35) 0%, rgba(247,245,241,.8) 55%, rgba(247,245,241,.95) 100%); }
}

/* ---------- Marquee strip ---------- */
.strip { background: var(--plum); color: var(--cream); padding-block: 16px; overflow: hidden; }
.strip-track {
  display: flex; gap: 54px; white-space: nowrap; width: max-content;
  animation: marquee 36s linear infinite;
}
.strip-track span {
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  opacity: .92; display: inline-flex; align-items: center; gap: 54px;
}
.strip-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Compass / pillars ---------- */
.compass-wrap { display: grid; place-items: center; text-align: center; }
.compass-emblem { width: clamp(120px, 18vw, 190px); height: auto; margin-bottom: 22px; }
.compass-wrap .script { margin-bottom: 6px; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 18px; }
.pillar { text-align: center; }
.pillar .p-icon { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold-deep); }
.pillar .p-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.pillar h3 { font-size: 1.12rem; font-family: var(--font-display); margin-bottom: 8px; }
.pillar p { font-family: var(--font-sans); font-size: 0.88rem; color: var(--ink-warm); margin: 0; }

/* ---------- Cards / offers ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 34px;
  box-shadow: 0 10px 28px -8px rgba(44, 35, 41, 0.16);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 20px 46px -12px rgba(44, 35, 41, 0.24); border-color: transparent; }

/* Vortragsthemen kompakt: alle sechs auf einen Blick */
.themen-compact { gap: 20px; }
.themen-compact .card { padding: 26px 24px; }
.themen-compact .card .card-num { margin-bottom: 12px; }
.themen-compact .card h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); margin-bottom: 8px; }
.themen-compact .card p { font-size: 0.92rem; margin-bottom: 0; }
.card .card-num { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--gold-deep); letter-spacing: .08em; margin-bottom: 18px; }
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 24px; flex: 1; }
.card .card-link {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem;
  letter-spacing: .04em; color: var(--ink);
  display: inline-flex; align-items: center; gap: .5ch; transition: gap .3s var(--ease), color .3s var(--ease);
}
.card .card-link:hover { gap: 1ch; color: var(--gold-deep); }

.card--sand { background: var(--sand); border-color: transparent; }
.card--sand .card-num { color: var(--gold-deep); }
.card--sand p { color: color-mix(in srgb, var(--ink) 72%, transparent); }

.card--sand-deep { background: var(--sand-deep); border-color: transparent; }
.card--sand-deep .card-num { color: var(--gold-deep); }
.card--sand-deep p { color: color-mix(in srgb, var(--ink) 78%, transparent); }

.card--feature { background: var(--plum); color: var(--cream); border-color: transparent; }
.card--feature h3 { color: var(--cream); }
.card--feature .card-num { color: var(--gold); }
.card--feature p { color: color-mix(in srgb, var(--cream) 86%, transparent); }
.card--feature .card-link { color: var(--cream); }
.card--feature .card-link:hover { color: var(--gold); }

/* ---------- Logo / Referenz-Zeile ---------- */
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 48px; margin-top: 28px; }
.logo-row img { width: auto; opacity: .72; transition: opacity .3s ease; filter: saturate(0); }
.logo-row img:hover { opacity: 1; }
/* optisch ausbalanciert: kraeftige Wortmarken kleiner, feine/quadratische groesser */
.logo-row .logo--lufthansa { height: 27px; }
.logo-row .logo--eurowings { height: 30px; }
.logo-row .logo--vonovia { height: 23px; }
.logo-row .logo--lorenz { height: 34px; }
.logo-row .logo--stadtverwaltung { height: 40px; }
@media (max-width: 600px) {
  .logo-row .logo--lufthansa { height: 23px; }
  .logo-row .logo--eurowings { height: 26px; }
  .logo-row .logo--vonovia { height: 20px; }
  .logo-row .logo--lorenz { height: 29px; }
  .logo-row .logo--stadtverwaltung { height: 34px; }
}

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
  background: var(--sand);
  box-shadow: 0 22px 50px -22px rgba(44, 35, 41, 0.30),
              0 8px 18px -12px rgba(44, 35, 41, 0.15);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.split-media:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px -22px rgba(44, 35, 41, 0.34),
              0 10px 22px -12px rgba(44, 35, 41, 0.18);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: var(--veil); }

.stat-row { display: flex; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--plum); line-height: 1; }
.stat .label { font-family: var(--font-sans); font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Quote ---------- */
.quote-block {
  background: var(--plum); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(44px, 8vw, 96px); text-align: center;
  position: relative; overflow: hidden;
}
.quote-block .q-emblem { width: 56px; height: 56px; margin: 0 auto 26px; opacity: .9; }
.quote-block blockquote {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  font-style: italic; line-height: 1.25; color: var(--cream);
  max-width: 24ch; margin: 0 auto 22px;
}
.quote-block .q-sub { font-family: var(--font-body); font-style: normal; color: color-mix(in srgb, var(--cream) 82%, transparent); font-size: 1.02rem; max-width: 40ch; margin: 0 auto 18px; }
.quote-block cite {
  font-family: var(--font-sans); font-style: normal; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Testimonials / Stimmen ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 14px; }
.testi blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.18rem; line-height: 1.45; color: var(--ink);
  margin: 0 0 18px; flex: 1;
}
.testi figcaption {
  font-family: var(--font-sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep);
}
@media (max-width: 980px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
.testi-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-inline: auto; }
@media (max-width: 720px) { .testi-grid--2 { grid-template-columns: 1fr; } }
/* Masonry fuer unterschiedlich lange Rezensionen: gleicht Spaltenhoehen aus */
.testi-masonry { column-count: 2; column-gap: 28px; }
.testi-masonry .testi { break-inside: avoid; margin-bottom: 28px; display: block; }
@media (max-width: 760px) { .testi-masonry { column-count: 1; } }

/* ---------- Atmosphäre-Band (Bild fadet in den Hintergrund) ---------- */
.walk-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: clamp(340px, 42vw, 460px); display: flex; align-items: center; }
.walk-band .walk-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: var(--veil); z-index: 0; }
.walk-band::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--sand) 0%, color-mix(in srgb, var(--sand) 72%, transparent) 36%, transparent 66%); }
.walk-band .walk-content { position: relative; z-index: 2; max-width: 520px; padding: clamp(30px, 5vw, 60px); }
@media (max-width: 760px) {
  .walk-band { align-items: flex-end; }
  .walk-band::after { background: linear-gradient(to bottom, color-mix(in srgb, var(--sand) 45%, transparent) 0%, color-mix(in srgb, var(--sand) 88%, transparent) 55%, var(--sand) 100%); }
}

/* Walk & Talk als vollflächiges Hintergrundbild (gesamte Sektion eingefärbt) */
.walk-section { position: relative; overflow: hidden; text-align: center; }
.walk-section .walk-section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: var(--veil); z-index: 0; }
.walk-section::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--sand) 66%, transparent) 0%, color-mix(in srgb, var(--sand) 93%, transparent) 48%, color-mix(in srgb, var(--sand) 66%, transparent) 100%); }
.walk-section > .container { position: relative; z-index: 2; }
.walk-section .walk-content { max-width: 620px; margin-inline: auto; }

/* ---------- Steps / process ---------- */
.steps { display: grid; gap: 4px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 30px;
  padding: 32px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-no { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: var(--gold-deep); width: 54px; }
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; max-width: 60ch; }

/* ---------- Journey / Zeitstrahl (Punkte auf einer Schnur) ---------- */
.journey { max-width: 680px; margin-inline: auto; }
.journey-item { position: relative; padding: 0 0 34px 46px; }
.journey-item:last-child { padding-bottom: 0; }
.journey-item::before { content: ""; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.journey-item:first-child::before { top: 12px; }
.journey-item:last-child::before { bottom: auto; height: 12px; }
.journey-item::after { content: ""; position: absolute; left: 3px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); }
.journey-item h3 { font-family: var(--font-display); font-size: 1.32rem; margin-bottom: 6px; }
.journey-item .j-when { font-family: var(--font-sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 4px; }
.journey-item p { margin: 0; color: var(--ink-soft); max-width: 54ch; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: 16px; }
.checklist li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  color: var(--ink); font-size: 1.04rem;
}
.checklist li::before {
  content: ""; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffefb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Book showcase ---------- */
.book-showcase { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.book-cover {
  aspect-ratio: 3 / 4.3; border-radius: 6px 12px 12px 6px;
  background: linear-gradient(135deg, var(--plum), var(--plum-soft));
  box-shadow: -10px 18px 54px rgba(44,35,41,.32), inset 8px 0 18px rgba(0,0,0,.22);
  padding: 42px 36px; color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; max-width: 360px; transform: rotate(-2deg);
  transition: transform .6s var(--ease);
}
.book-cover:hover { transform: rotate(0) translateY(-6px); }
.book-cover::before { content: ""; position: absolute; left: 14px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.16); }
.book-cover .bc-emblem { width: 44px; height: 44px; opacity: .92; }
.book-cover .bc-title { font-family: var(--font-display); font-size: 2rem; line-height: 1.12; font-style: italic; }
.book-cover .bc-author { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; opacity: .85; }

/* echtes Buchcover-Foto (ersetzt das CSS-Mockup, sobald vorhanden) */
.book-cover-photo {
  width: 100%; max-width: 360px;
  border-radius: 6px 12px 12px 6px;
  box-shadow: -10px 18px 54px rgba(44,35,41,.32);
  transform: rotate(-2deg);
  transition: transform .6s var(--ease);
}
.book-cover-photo:hover { transform: rotate(0) translateY(-6px); }

.book-meta { display: flex; gap: 34px; flex-wrap: wrap; margin: 26px 0 32px; }
.book-meta .bm-label { font-family: var(--font-sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-soft); display: block; }
.book-meta .bm-val { font-family: var(--font-display); font-size: 1.25rem; color: var(--plum); display: block; }

/* Schlichte Label/Wert-Liste (z. B. Buch-Fakten auf der Presseseite) */
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; max-width: 52ch; }
.fact-list li { line-height: 1.6; color: var(--ink-soft); }
.fact-list strong { color: var(--plum); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-cards a {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.contact-cards a:hover { transform: translateX(5px); border-color: var(--gold); }
.contact-cards .ci { width: 46px; height: 46px; border-radius: 12px; flex: none; background: var(--sand); color: var(--gold-deep); display: grid; place-items: center; }
.contact-cards .ci svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact-cards .cl { font-family: var(--font-sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); }
.contact-cards .cv { font-family: var(--font-display); font-size: 1.18rem; color: var(--plum); }

form.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .03em; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 24%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-family: var(--font-sans); font-size: .8rem; color: var(--ink-soft); }
.form-success { display: none; background: var(--plum); color: var(--cream); padding: 16px 18px; border-radius: 12px; font-size: .95rem; }
.form-success.show { display: block; }

/* ---------- Banner CTA ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(34px, 4vw, 50px); text-align: center; color: var(--cream);
}
.cta-banner .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: var(--veil); }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(78,12,65,.40), rgba(78,12,65,.58)); z-index: 1; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--cream); margin-bottom: 14px; max-width: 22ch; margin-inline: auto; font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.cta-banner p { color: color-mix(in srgb, var(--cream) 88%, transparent); margin: 0 auto 28px; max-width: 46ch; }

/* ---------- Values icon row ---------- */
.value-row { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px); }
.value { text-align: center; color: var(--gold-deep); }
.value .v-icon { width: 40px; height: 40px; margin: 0 auto 12px; }
.value .v-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
.value span { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--cream) 78%, transparent); padding-block: 66px 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-emblem { width: 32px; height: 32px; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); }
.footer-intro { max-width: 36ch; font-size: .96rem; font-family: var(--font-body); }
.footer-col h2 { color: var(--cream); font-family: var(--font-sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-family: var(--font-sans); font-size: .92rem; color: color-mix(in srgb, var(--cream) 76%, transparent); transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-family: var(--font-sans); font-size: .8rem; color: color-mix(in srgb, var(--cream) 56%, transparent); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding-block: clamp(44px, 6vw, 88px) clamp(34px, 5vw, 58px); text-align: center; }
.page-hero .lead { margin-inline: auto; max-width: 54ch; }
.page-hero .script { margin-bottom: 8px; }

/* ---------- Prose ---------- */
.prose p { margin-bottom: 1.3em; font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose .first-line::first-letter { /* reserved */ }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2em; margin-bottom: .5em; }
.legal h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-top: 1.8em; margin-bottom: .45em; color: var(--mist); }
.legal h4 { font-family: var(--font-sans); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-deep); margin-top: 1.5em; margin-bottom: .4em; }
.legal h2:first-child, .legal h3:first-child { margin-top: 0; }
.legal p { margin-bottom: 1.15em; font-size: 1.04rem; line-height: 1.78; color: var(--ink-soft); }
.legal p.intro { font-size: 1.12rem; color: var(--ink); }
.legal ul { margin: 0 0 1.3em; padding-left: 1.3em; color: var(--ink-soft); }
.legal ul li { margin-bottom: .5em; line-height: 1.7; }
.legal a { color: var(--mist); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal a:hover { color: var(--gold-deep); }
/* Buttons im Rechtstext behalten ihre eigene Schriftfarbe (kein Link-Styling) */
.legal a.btn { color: var(--cream); text-decoration: none; }
.legal a.btn:hover { color: var(--cream); }
.legal .addr { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 1.3em; line-height: 1.7; color: var(--ink); box-shadow: var(--shadow-sm); }
.legal .updated { font-family: var(--font-sans); font-size: .85rem; color: var(--ink-soft); margin-top: 3em; padding-top: 1.4em; border-top: 1px solid var(--line); }
.legal .form-template { font-family: var(--font-sans); font-size: .95rem; background: var(--cream-deep); border-radius: var(--radius); padding: 24px 28px; white-space: pre-wrap; line-height: 1.9; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); transition: transform .3s var(--ease); flex: none; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 24px; margin: 0; color: var(--ink-soft); line-height: 1.8; max-width: 64ch; }

/* ---------- Inline CTA (mid-page) ---------- */
.cta-inline { text-align: center; max-width: 620px; margin-inline: auto; padding: clamp(34px, 5vw, 52px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.cta-inline h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-inline p { max-width: 46ch; margin: 0 auto 24px; color: var(--ink-soft); text-wrap: balance; }

/* CTA mit Bild (zweispaltig) */
.cta-split { display: grid; grid-template-columns: 1fr 0.82fr; align-items: stretch; max-width: 940px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.cta-split .cta-media { display: block; min-height: 100%; }
.cta-split .cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; display: block; }
.cta-split .cta-body { padding: clamp(30px, 4vw, 52px); }
.cta-split .cta-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 12px; }
.cta-split .cta-body p { color: var(--ink-soft); margin-bottom: 24px; text-wrap: balance; }
@media (max-width: 760px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split .cta-media { aspect-ratio: 16 / 10; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-inline: auto; order: -1; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .split--reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split-media { max-width: 480px; margin-inline: auto; }
  .book-showcase { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-meta { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex; position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 16px 26px 24px; box-shadow: var(--shadow-md);
  }
  .nav-links.is-open a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .book-meta { gap: 24px; }
}

/* ============================================================
   Druck-/PDF-Ansicht (nur beim Drucken aktiv)
   Saubere Dokument-Optik: Navigation aus, zentrierter Marken-Footer.
   ============================================================ */
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { background: #fff !important; }

  /* Navigation und CTA weg */
  .site-header, .nav-toggle, .nav-cta { display: none !important; }

  /* Titel kompakter */
  .page-hero { padding: 0 0 10px !important; background: none !important; }
  .page-hero .eyebrow { color: var(--gold) !important; }
  .section--tight { padding: 4px 0 0 !important; }

  /* Überschriften nicht von ihrem Absatz trennen */
  .legal h2, .legal h3 { page-break-after: avoid; break-after: avoid; }
  .legal p, .legal li { orphans: 3; widows: 3; }

  /* Footer: nur zentrierte Marke + Copyright, keine Navigationslinks */
  .site-footer { background: #fff !important; color: var(--ink) !important;
    border-top: 2px solid var(--plum); padding: 16px 0 0 !important; }
  .footer-top { display: block !important; border: 0 !important; padding: 0 !important; text-align: center; }
  .footer-intro, .footer-col { display: none !important; }
  .footer-brand { display: inline-flex !important; justify-content: center; margin: 0 auto 4px !important; }
  .footer-brand .brand-emblem { width: 40px !important; height: 40px !important; }
  .footer-brand .brand-name { color: var(--plum) !important; }
  .footer-bottom { display: block !important; text-align: center; border: 0 !important;
    padding-top: 4px !important; color: var(--ink-soft) !important; }
  .footer-bottom span:last-child { display: none !important; }

  a { color: var(--plum-soft) !important; text-decoration: none; }
}
@page { margin: 16mm 14mm; }
