/* ==========================================================================
   Strong Female Energy — Design System
   Farbwelt und Bildsprache direkt vom Buchcover abgeleitet:
   Blush-Aquarell, Rosé-Schleier, gedecktes Gold, tiefes Pflaume,
   klassische Serifen-Headlines mit Script-Akzent. Light-first,
   eine Theme-Ebene (Cover-Treue schlaegt Theme-Vielfalt).
   ========================================================================== */

/* ---------- Fonts (self-hosted, kein externer Request, DSGVO-konform) ---- */
@font-face {
  font-family: 'SFE Display';
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'SFE Script';
  src: url('../fonts/great-vibes-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'SFE Text';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens --------------------------------------------------------- */
:root {
  /* Cover-Palette */
  --paper: #f8ede9;          /* Blush-Papier, Grundton */
  --paper-2: #f3e2dc;        /* eine Stufe tiefer, Footer/Karten */
  --paper-3: #fdf7f4;        /* fast weiss, Eingabefelder */
  --rose: #d9a3a8;           /* Aquarell-Rose */
  --rose-soft: #ecc9c9;      /* zarter Rosa-Schleier */
  --mauve: #a2626f;          /* dunkle Beere fuer Akzente */
  --plum: #5c2e46;           /* Cover-Typo, Headlines */
  --plum-deep: #432134;      /* dunkelste Stufe */
  --gold: #b08843;           /* gedecktes Gold */
  --gold-soft: #d3b071;      /* helles Gold fuer Linien */
  --ink: #4a3340;            /* Fliesstext, warmes Dunkelpflaume */
  --ink-soft: #6d5260;       /* sekundaerer Text */
  --muted: #8d6f7d;          /* Metazeilen, Nebentext */
  --line: rgba(92, 46, 70, 0.14);
  --line-strong: rgba(92, 46, 70, 0.26);
  --gold-line: rgba(176, 136, 67, 0.4);

  /* Typo */
  --f-display: 'SFE Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-script: 'SFE Script', 'Great Vibes', 'Snell Roundhand', cursive;
  --f-text: 'SFE Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Rhythmus */
  --measure: 68ch;
  --shell: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Tiefe */
  --glow: 0 0 60px rgba(217, 163, 168, 0.35);
  --shadow: 0 18px 50px -20px rgba(92, 46, 70, 0.35);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Der Cover-Schleier: Aquarell-Woelkchen in Rose und Gold hinter dem
   oberen Seitenbereich, wie die Farbverlaeufe auf dem Buchcover */
body::before {
  content: '';
  position: fixed;
  inset: -20vh 0 auto 0;
  height: 95vh;
  background:
    radial-gradient(55% 45% at 18% 20%, rgba(217, 163, 168, 0.35) 0%, rgba(248, 237, 233, 0) 70%),
    radial-gradient(45% 40% at 85% 12%, rgba(211, 176, 113, 0.22) 0%, rgba(248, 237, 233, 0) 75%),
    radial-gradient(60% 50% at 60% 70%, rgba(236, 201, 201, 0.28) 0%, rgba(248, 237, 233, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--plum);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-top: 2.6em; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.6rem); font-weight: 600; margin-top: 2em; }
h4 { font-size: 1.18rem; font-weight: 700; margin-top: 1.6em; }
h2:first-child, h3:first-child { margin-top: 0; }

p { margin: 0 0 1.15em; }
strong { color: var(--plum); font-weight: 600; }
em { color: var(--mauve); font-style: italic; }

/* Script-Akzent, wie das "Female" auf dem Cover */
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--mauve);
  letter-spacing: 0.01em;
  line-height: 1;
}
h1 .script { font-size: 1.18em; }

a {
  color: var(--mauve);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  border-bottom: 1px solid rgba(162, 98, 111, 0.35);
  transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}
a:hover { color: var(--plum); border-color: var(--plum); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol { margin: 0 0 1.3em; padding-left: 1.35em; }
li { margin-bottom: .55em; }
li::marker { color: var(--gold); }

blockquote { margin: 0; }
hr { border: 0; height: 1px; background: var(--line); margin: 2.5rem 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
  background: rgba(176, 136, 67, .12);
  padding: .15em .4em;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 100;
  background: var(--plum); color: var(--paper-3); padding: .7rem 1.2rem;
  border: 0; border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ---------- Shell -------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 237, 233, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .shell {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--plum);
  border: 0;
  flex-shrink: 0;
}
.brand:hover { color: var(--mauve); }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-line), 0 0 16px -4px rgba(176, 136, 67, .5);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__name--long { font-size: .92rem; letter-spacing: .06em; }
.brand__sub { color: var(--mauve); }
/* Die Autorenzeile: zarte Kursiv-Serife als Gegengewicht zur Wortmarke */
.brand__by {
  font-family: var(--f-script);
  font-weight: 400;
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--gold);
  opacity: .95;
  margin-top: .05rem;
  white-space: nowrap;
}
.brand:hover .brand__by { opacity: 1; }
@media (max-width: 430px) {
  .brand { min-width: 0; flex-shrink: 1; gap: .5rem; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: .88rem; overflow: hidden; text-overflow: ellipsis; }
  .brand__name--long { font-size: .76rem; }
  .brand__by { font-size: .82rem; }
  .site-header .shell { gap: .5rem; padding-inline: .9rem; }
  .nav-toggle { flex: none; padding: .45rem .6rem; }
}
@media (max-width: 380px) {
  .brand__name--long {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.06;
  }
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav a {
  border: 0;
  color: var(--ink-soft);
  font-size: .935rem;
  font-weight: 500;
  padding: .5rem .7rem;
  border-radius: var(--r-sm);
}
.nav a:hover, .nav a[aria-current='page'] {
  color: var(--plum);
  background: rgba(217, 163, 168, .18);
}
.nav a[aria-current='page'] { color: var(--mauve); }

.nav-toggle {
  margin-left: auto;
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: .45rem .7rem;
  font: inherit;
  font-size: .9rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.1rem, 4vw, 2.5rem) 1.1rem;
    margin: 0;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: .7rem .5rem; font-size: 1rem; }
}

/* Sprachwahl (derzeit nur Deutsch aktiv, Stile bleiben fuer spaeter) */
.flag-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.langs {
  display: none;
}

/* ---------- Hero --------------------------------------------------------- */
.hero { padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; }
}
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); }
.hero__lead {
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero__cover {
  border-radius: var(--r-md);
  box-shadow: var(--shadow), var(--glow);
  border: 1px solid var(--gold-line);
  margin-inline: auto;
  max-width: 340px;
  width: 100%;
}

/* Eyebrow / Pill — die Gold-Zeile ueber der Headline */
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--gold);
  font-family: var(--f-text); font-weight: 700;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .42rem 0; border-radius: 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 1.25rem;
}
.pill--ghost {
  background: transparent; color: var(--gold);
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-text); font-weight: 700; font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  text-align: center; line-height: 1.2;
  transition: transform .14s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--plum); color: #fdf3ee;
  box-shadow: 0 12px 30px -12px rgba(92, 46, 70, .55);
}
.btn--primary:hover { background: var(--plum-deep); color: #fdf3ee; box-shadow: 0 16px 40px -14px rgba(92, 46, 70, .65); }
.btn--ghost {
  background: rgba(217, 163, 168, .14); color: var(--plum);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(217, 163, 168, .26); color: var(--plum-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---------- Die Goldnaht: Divider-Motiv vom Cover ------------------------ */
.seam {
  position: relative; height: 1px; margin: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}
.seam::after {
  content: '';
  position: absolute; left: 50%; top: -5px;
  width: 9px; height: 9px; transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 14px 2px rgba(176, 136, 67, .5);
}

/* ---------- Artikel-Layout ---------------------------------------------- */
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 4rem;
}
@media (min-width: 1080px) {
  .article-shell { grid-template-columns: minmax(0, 1fr) 260px; }
  .article-shell > .toc { order: 2; }
  .article-shell > article { order: 1; }
}
.article-shell > * { min-width: 0; }
.article-shell.article-shell--single { grid-template-columns: minmax(0, 1fr); }

.article { max-width: var(--measure); min-width: 0; }
.article > * { max-width: var(--measure); }

.crumbs {
  font-size: .84rem; color: var(--muted); margin: 1.75rem 0 1.25rem;
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  list-style: none; padding: 0;
}
.crumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: '/'; color: rgba(141, 111, 125, .5); }
.crumbs a { color: var(--muted); border: 0; }
.crumbs a:hover { color: var(--mauve); }

.meta {
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem;
  font-size: .845rem; color: var(--muted);
  padding-bottom: 1.6rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.meta a { color: var(--muted); }
.meta strong { color: var(--ink-soft); font-weight: 500; }

.lead {
  font-size: clamp(1.1rem, 2.1vw, 1.24rem);
  line-height: 1.62; color: var(--ink-soft); font-weight: 400;
  margin-bottom: 2rem;
}

/* ---------- GEO/AEO-Bausteine ------------------------------------------- */

/* Der Antwort-Chunk: 40-60 Woerter direkt unter der H2, extrahierbar */
.answer {
  background: linear-gradient(180deg, rgba(236, 201, 201, .38), rgba(236, 201, 201, .18));
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.15rem 1.35rem;
  margin: 0 0 1.75rem;
  font-size: 1.035rem;
}
.answer > *:last-child { margin-bottom: 0; }
.answer__label {
  display: block; font-family: var(--f-text); font-weight: 700;
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .45rem;
}

/* Definitionsbox — fuettert Featured Snippets und LLM-Zitate */
.def {
  background: var(--paper-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 1.3rem 1.45rem;
  margin: 2rem 0;
}
.def dt {
  font-family: var(--f-display); font-weight: 700; color: var(--plum);
  font-size: 1.15rem; margin-bottom: .4rem;
}
.def dd { margin: 0; color: var(--ink-soft); }
.def dd + dt { margin-top: 1.1rem; }

/* Hinweis / Disclaimer */
.note {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  margin: 2rem 0;
  font-size: .95rem; color: var(--ink-soft);
  background: rgba(236, 201, 201, .12);
}
.note strong { color: var(--mauve); }
.note--key {
  border: 1px solid var(--gold);
  border-left-width: 4px;
  background: rgba(211, 176, 113, .12);
  color: var(--ink);
}
.note > *:last-child { margin-bottom: 0; }

/* Buchzitat mit Goldnaht */
.pull {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-family: var(--f-display);
  font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  line-height: 1.42; letter-spacing: .002em; color: var(--plum);
  font-style: italic;
}
.pull::before {
  content: ''; position: absolute; left: 0; top: .25em; bottom: .25em;
  width: 2px; background: linear-gradient(180deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  box-shadow: 0 0 14px 2px rgba(176, 136, 67, .3);
}
.pull cite {
  display: block; font-family: var(--f-text); font-style: normal;
  font-size: .87rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0; margin-top: .7rem;
}

/* Tabellen — immer horizontal scrollbar in eigenem Container */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  -webkit-overflow-scrolling: touch;
  background: var(--paper-3);
}
table { border-collapse: collapse; width: 100%; font-size: .945rem; min-width: 34rem; }
th, td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th {
  background: rgba(217, 163, 168, .22);
  font-family: var(--f-text); font-weight: 700; font-size: .78rem;
  letter-spacing: .07em; text-transform: uppercase; color: var(--mauve);
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(236, 201, 201, .12); }
td strong { color: var(--plum); }

/* Nummerierte Schritte */
.steps { list-style: none; padding: 0; counter-reset: s; margin: 2rem 0; }
.steps > li {
  counter-increment: s;
  position: relative;
  padding-left: 3.1rem;
  margin-bottom: 1.5rem;
}
.steps > li::before {
  content: counter(s);
  position: absolute; left: 0; top: -.1rem;
  width: 2.15rem; height: 2.15rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(211, 176, 113, .16);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem;
}
.steps h3, .steps h4 { margin-top: 0; margin-bottom: .35rem; }

/* Checkliste / Anzeichen */
.checks { list-style: none; padding: 0; margin: 2rem 0; }
.checks > li {
  position: relative; padding-left: 1.9rem; margin-bottom: .85rem;
}
.checks > li::before {
  content: ''; position: absolute; left: .1rem; top: .58em;
  width: .55rem; height: .55rem;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(176, 136, 67, .5);
}

/* Zwei-Spalten-Gegenüberstellung (falsch / richtig) */
.compare { display: grid; gap: 1rem; margin: 2rem 0; }
@media (min-width: 680px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__box {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.15rem 1.25rem; background: var(--paper-3);
}
.compare__box h3 { margin: 0 0 .6rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--f-text); font-weight: 700; }
.compare__box--no { border-color: rgba(162, 98, 111, .4); }
.compare__box--no h3 { color: #a44e4e; }
.compare__box--yes { border-color: var(--gold-line); }
.compare__box--yes h3 { color: var(--gold); }
.compare__box p:last-child { margin-bottom: 0; }
.compare__box p { font-size: .97rem; }

/* Quellen */
.sources {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.sources summary {
  cursor: pointer; font-family: var(--f-text); font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mauve); list-style: none;
}
.sources summary::-webkit-details-marker { display: none; }
.sources summary::before { content: '▸ '; color: var(--gold); }
.sources[open] summary::before { content: '▾ '; }
.sources ol { margin: 1.2rem 0 0; font-size: .89rem; color: var(--muted); }
.sources li { margin-bottom: .7rem; }

/* FAQ */
.faq { margin: 2rem 0; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: .7rem;
  background: var(--paper-3);
}
.faq summary {
  cursor: pointer; padding: 1rem 1.2rem; list-style: none;
  font-family: var(--f-display); font-weight: 600; color: var(--plum);
  font-size: 1.12rem; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq__body { padding: 1.1rem 1.2rem; }
.faq__body > *:last-child { margin-bottom: 0; }

/* ---------- TOC ---------------------------------------------------------- */
.toc { align-self: start; }
@media (min-width: 1080px) {
  .toc { position: sticky; top: 5.75rem; max-height: calc(100vh - 8rem); overflow-y: auto; }
}
.toc__inner {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.2rem;
  background: var(--paper-3);
  font-size: .89rem;
}
.toc__title {
  font-family: var(--f-text); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 .8rem;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: t; }
.toc li { margin-bottom: .1rem; }
.toc a {
  border: 0; color: var(--ink-soft); display: block;
  padding: .38rem .6rem; border-radius: 6px;
  border-left: 2px solid transparent; line-height: 1.4;
}
.toc a:hover { color: var(--plum); background: rgba(236, 201, 201, .18); }
.toc a.is-active {
  color: var(--mauve); border-left-color: var(--gold);
  background: rgba(211, 176, 113, .12);
}

/* ---------- Karten / Artikel-Gitter ------------------------------------- */
.cards {
  display: grid; gap: 1.1rem; margin: 2rem 0;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, rgba(253, 247, 244, .9), rgba(243, 226, 220, .55));
  display: flex; flex-direction: column; gap: .55rem;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(92, 46, 70, .35); }
.card__kicker {
  font-family: var(--f-text); font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.card h3 { margin: 0; font-size: 1.22rem; line-height: 1.3; }
.card h3 a { border: 0; color: var(--plum); }
.card h3 a:hover { color: var(--mauve); }
.card p { margin: 0; font-size: .93rem; color: var(--muted); }

/* Cluster-Ueberschrift */
.cluster-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem;
  margin: 3.5rem 0 1.2rem;
}
.cluster-head h2 { margin: 0; }
.cluster-head p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Buch-CTA ---------------------------------------------------- */
.book-cta {
  margin: 3rem 0;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(236, 201, 201, .5), rgba(253, 247, 244, .9));
  box-shadow: var(--shadow);
  display: grid; gap: 1.6rem; align-items: center;
  max-width: none !important;
}
@media (min-width: 700px) {
  .book-cta { grid-template-columns: 150px 1fr; }
}
.book-cta__cover {
  border-radius: var(--r-sm);
  box-shadow: 0 12px 34px -14px rgba(67, 33, 52, .55);
  border: 1px solid var(--gold-line);
}
.book-cta h2, .book-cta h3 { margin: 0 0 .5rem; font-size: clamp(1.4rem, 2.8vw, 1.8rem); }
.book-cta p { color: var(--ink-soft); font-size: .98rem; }
.book-cta p:last-of-type { margin-bottom: 1.2rem; }
.book-cta__note { font-size: .82rem !important; color: var(--muted) !important; margin: .8rem 0 0 !important; }

/* Naechster-Schritt-Block */
.next {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.next__title {
  font-family: var(--f-text); font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 .9rem;
}
.next ul { list-style: none; padding: 0; margin: 0; }
.next li { margin-bottom: .6rem; padding-left: 1.4rem; position: relative; }
.next li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

/* ---------- Newsletter -------------------------------------------------- */
.optin {
  border: 1px solid var(--gold); border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: radial-gradient(90% 130% at 80% 0%, rgba(236, 201, 201, .55), rgba(253, 247, 244, .95));
  box-shadow: 0 0 0 4px rgba(211, 176, 113, .14), 0 18px 40px -24px rgba(92, 46, 70, .4);
  margin: 3.4rem 0;
}
.optin--full { display: grid; grid-template-columns: minmax(0, 8.5rem) 1fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.optin--full > * { min-width: 0; }
.optin__cover {
  width: 100%; height: auto; border-radius: .5rem;
  box-shadow: 0 12px 30px -12px rgba(67, 33, 52, .5);
  transform: rotate(-2deg);
}
.optin__badge {
  display: inline-block; margin-bottom: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #fdf3ee; background: var(--gold);
  border-radius: var(--r-pill); padding: .28rem .8rem;
}
.optin h3 { font-size: clamp(1.35rem, 2.8vw, 1.7rem); }
@media (max-width: 40rem) {
  .optin--full { grid-template-columns: 1fr; }
  .optin__cover { width: 7.5rem; }
}
.optin h2, .optin h3 { margin-top: 0; }
.optin form { margin-top: 1.2rem; }
.optin__row { display: flex; flex-wrap: wrap; gap: .7rem; }
.optin input[type='email'] {
  flex: 1 1 15rem; font: inherit; font-size: 1rem;
  background: var(--paper-3); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: .9rem 1.3rem;
}
.optin__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.optin__consent {
  display: flex; gap: .7rem; align-items: flex-start;
  margin-top: 1rem; font-size: .88rem; line-height: 1.5; color: var(--ink-soft);
  cursor: pointer;
}
.optin__consent input[type='checkbox'] {
  flex: none; width: 1.15rem; height: 1.15rem; margin-top: .12rem;
  accent-color: var(--mauve); cursor: pointer;
}
.optin__consent input[type='checkbox']:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.optin__consent:hover span { color: var(--ink); }
.optin input[type='email']::placeholder { color: var(--muted); }
.optin input[type='email']:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.optin__legal { font-size: .78rem; color: var(--muted); margin: 1rem 0 0; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: .92rem;
}
.site-footer .shell { display: grid; gap: 2rem; }
@media (min-width: 780px) {
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
.site-footer h3 {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
  font-family: var(--f-text); font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--ink-soft); border: 0; }
.site-footer a:hover { color: var(--mauve); }
.site-footer p { color: var(--muted); font-size: .88rem; }
.footer-legal {
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: baseline;
  color: var(--muted); font-size: .84rem;
}
.footer-legal__note { flex-basis: 100%; font-size: .78rem; opacity: .8; }

/* Buch-CTA ohne Cover */
.book-cta--nocover { grid-template-columns: 1fr !important; }
/* Schmale Fassung fuer das Textende */
.book-cta--strip {
  grid-template-columns: 72px 1fr;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  align-items: start;
}
.book-cta--strip .book-cta__cover { width: 72px; height: auto; margin: 0; }
.book-cta--strip h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.book-cta--strip p { font-size: .92rem; margin-bottom: .9rem; }
.book-cta--strip .book-cta__note { margin-top: .6rem !important; }

/* ---------- Utility ----------------------------------------------------- */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-lg > * + * { margin-top: 1.5rem; }
.full { max-width: none !important; }
.article.full > * { max-width: none; }
.article.full > p, .article.full > .lead { max-width: var(--measure); }
