/* ============================================================
   Glücksrezepte – Dr. Melanie Zandler
   Eigenes, modernes Design-System. Hell · warm · hochwertig ·
   wissenschaftlich · lebensfroh. Kein ZIPP-/hausler-Klon.
   Selbstgehostet (keine Drittanbieter-CDNs → DSGVO-freundlich).
   ============================================================ */

/* ---- Fonts (selbstgehostet) ---- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ---- Design-Tokens ---- */
:root {
  --cream:      #FBF7F0;
  --cream-2:    #F3EADC;
  --surface:    #FFFFFF;
  --ink:        #2A2622;
  --ink-soft:   #574E45;
  --muted:      #71665C;   /* WCAG-AA-tauglich auf Creme/Weiß */
  --primary:    #C0552E;   /* Terracotta – Buttons/Flächen */
  --primary-d:  #A2431F;   /* Terracotta dunkel – Text/Links */
  --accent:     #E0A43B;   /* warmes Gold – NUR Fläche/Deko/Buttons */
  --accent-text:#8A5A05;   /* Gold als TEXT auf hellem Grund (AA) */
  --forest:     #3A5A4E;   /* warmes Grün – Vertrauen/Abschluss-CTA */
  --forest-foot:#2F4A40;   /* Footer minimal tiefer, klare Abgrenzung zur CTA */
  --forest-2:   #32514738;
  --line:       rgba(42,38,34,.12);
  --line-2:     rgba(42,38,34,.08);
  --shadow:     0 1px 2px rgba(42,38,34,.04), 0 8px 30px rgba(42,38,34,.07);
  --shadow-lg:  0 2px 6px rgba(42,38,34,.06), 0 20px 50px rgba(42,38,34,.12);
  --radius:     16px;
  --radius-sm:  10px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-d); text-decoration: none; }
a:hover { color: var(--primary-d); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.6rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.005em; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 4vw + 40px, 104px) 0; }
.section--alt { background: var(--cream-2); }
.section--forest { background: var(--forest); }
.section-head { max-width: 720px; margin: 0 0 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary-d);
  margin: 0 0 .9rem;
}
.section--forest .eyebrow { color: #F5D9A8; }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--forest p { color: #E6DECF; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s;
  line-height: 1; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(192,85,46,.28); }
.btn--primary:hover { background: var(--primary-d); color: #fff; box-shadow: 0 8px 24px rgba(192,85,46,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); background: rgba(42,38,34,.03); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { color: var(--ink); box-shadow: var(--shadow); }
.btn--on-forest { background: var(--accent); color: #2a2113; }
.btn--on-forest:hover { background: #efb552; color: #2a2113; }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: .3em; }
.link-arrow::after { content: "→"; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---- Navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.nav__inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.brand span { color: var(--primary); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  font-family: var(--sans); font-weight: 550; font-size: .98rem; color: var(--ink);
  padding: .5em .8em; border-radius: 8px;
}
.nav__links a:hover { color: var(--primary-d); background: rgba(192,85,46,.06); }
.nav__links a.active { color: var(--primary-d); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---- Hero ---- */
.hero { padding: clamp(36px, 3vw + 24px, 72px) 0 clamp(48px, 4vw, 88px); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero__title { margin-bottom: .35em; }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, .9rem + 1vw, 1.5rem); color: var(--primary-d); margin: 0 0 1.1rem; line-height: 1.3; }
.hero__text { font-size: 1.13rem; max-width: 42ch; margin-bottom: 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero__credentials { font-size: .96rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.1rem; max-width: 46ch; }
.hero__credentials strong { color: var(--ink); font-weight: 600; display: block; font-size: 1.02rem; margin-bottom: .1rem; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 60% center;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: -18px; bottom: 26px; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-lg); max-width: 230px;
  font-size: .9rem; line-height: 1.35;
}
.hero__badge b { font-family: var(--serif); color: var(--primary); font-size: 1.05rem; }
.hero__credit { position: absolute; right: 8px; bottom: 8px; font-size: .68rem; color: rgba(255,255,255,.82); background: rgba(0,0,0,.28); padding: 2px 7px; border-radius: 6px; }

/* ---- Trust row ---- */
.trust { background: var(--surface); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item { padding: 30px 26px; border-left: 1px solid var(--line-2); }
.trust__item:first-child { border-left: 0; }
.trust__item b { font-family: var(--serif); color: var(--ink); font-size: 1.12rem; display: block; margin-bottom: .2rem; }
.trust__item span { font-size: .96rem; color: var(--muted); }

/* ---- Cards (Formate) ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__ico { width: 46px; height: 46px; margin-bottom: 16px; color: var(--primary); }
.card__ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; }
.card__kicker { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .5rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: 1rem; margin-bottom: 1.2rem; }
.card .card__foot { margin-top: auto; }

/* ---- Themenwelten ---- */
.grid-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.theme {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden;
}
.theme::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); opacity: .0; transition: opacity .16s; }
.theme:hover::before { opacity: 1; }
.theme:hover { border-color: var(--line); }
.theme h3 { font-size: 1.16rem; margin-bottom: .4rem; }
.theme h3 .dot { color: var(--primary); }
.theme p { font-size: .98rem; margin: 0; color: var(--ink-soft); }
.themes-note { margin: 2.2rem auto 0; text-align: center; max-width: 620px; }
.themes-note p { color: var(--muted); font-style: italic; margin-bottom: 1.2rem; }

/* ---- Wissenschaft trifft Praxis (split) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.split--science .split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.prose p { font-size: 1.08rem; }
.prose p:first-of-type { font-size: 1.16rem; color: var(--ink); }

/* ---- Melanie in Aktion ---- */
.aktion__head { max-width: 760px; margin-bottom: 2.2rem; }
.aktion__grid { display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 1fr; gap: 18px; }
.aktion__grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
.aktion__grid img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.aktion__grid .tall { grid-row: span 2; }

/* ---- Referenzen ---- */
.refs__list { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: 1.6rem; }
.ref-chip {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5em 1.1em;
}
.refs__note { margin-top: 1.4rem; font-size: .92rem; color: var(--muted); }
.logo-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 2.2rem auto 0; max-width: 1100px; }
.logo-tile { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; height: 150px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; box-shadow: var(--shadow); transition: transform .16s ease, box-shadow .16s ease; }
.logo-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.logo-tile img { max-height: 122px; max-width: 100%; width: auto; }

/* ---- TV & Medien ---- */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.videocard { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.videocard video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #000; display: block; }
.videocard__body { padding: 16px 18px 20px; }
.videocard__tag { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--primary-d); }
.videocard__body h3 { font-size: 1.06rem; margin: .3rem 0 0; }

/* ---- Bücher ---- */
.books { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.book { display: grid; grid-template-columns: 130px 1fr; gap: 22px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); align-items: start; }
.book__cover { width: 130px; border-radius: 8px; box-shadow: var(--shadow-lg); background: var(--cream-2); }
.book h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.book__sub { font-size: .92rem; color: var(--accent-text); font-weight: 600; margin-bottom: .6rem; }
.book p { font-size: .98rem; }

/* ---- Wissen & Impulse ---- */
.impulse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.impulse { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.impulse__top { padding: 22px 24px 0; }
.impulse__num { font-family: var(--serif); font-size: 2rem; color: var(--cream-2); font-weight: 600; line-height: 1; }
.impulse__body { padding: 8px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.impulse__body h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.impulse__body p { font-size: .96rem; }
.impulse__soon { margin-top: auto; font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--cream-2); align-self: flex-start; padding: .3em .8em; border-radius: 999px; }
a.impulse { color: var(--ink-soft); transition: transform .16s ease, box-shadow .16s ease; }
a.impulse:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink-soft); }
a.impulse .link-arrow { margin-top: auto; color: var(--primary-d); }

/* ---- Über Melanie ---- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 3/4; object-fit: cover; width: 100%; }

/* ---- Newsletter ---- */
.newsletter { background: var(--forest); border-radius: var(--radius); padding: clamp(34px, 4vw, 60px); color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #E6DECF; margin-bottom: 0; }
.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__row { display: flex; gap: 10px; }
.newsletter input[type=email] { flex: 1; min-width: 0; padding: .85em 1.1em; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; font-family: var(--sans); }
.newsletter input[type=email]::placeholder { color: rgba(255,255,255,.6); }
.newsletter__hint { font-size: .82rem; color: rgba(230,222,207,.75); }

/* ---- Glücksrezepte live (modular, standard verborgen) ---- */
.live { border: 1.5px dashed var(--line); border-radius: var(--radius); padding: 30px; text-align: center; }

/* ---- Abschluss-CTA ---- */
.final-cta { text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta .btn { margin: .4rem 8px 0; }

/* ---- Kontakt / Formular ---- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-wrap .full { grid-column: 1 / -1; }
.gr-field, .form-wrap select, .form-wrap textarea {
  width: 100%; padding: .8em 1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: #fff; font: inherit; color: var(--ink);
}
.gr-field:focus, .form-wrap select:focus, .form-wrap textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,85,46,.14); }
.form-label { font-size: .92rem; font-weight: 600; color: var(--ink); margin: 0 0 .35rem; display: block; }
.form-check { display: flex; gap: .6em; align-items: flex-start; font-size: .92rem; }
.form-note { font-size: .92rem; color: var(--muted); background: var(--cream-2); border-radius: var(--radius-sm); padding: 14px 16px; }
.alert-ok { background: #e8f3ec; border: 1px solid #bcdcc7; color: #1f5133; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.alert-err { background: #fbeae5; border: 1px solid #f0c3b5; color: #8a2f18; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.errorlist { color: #a2431f; font-size: .86rem; list-style: none; padding: 0; margin: .2rem 0 0; }

/* ---- Footer ---- */
.footer { background: var(--forest-foot); color: #D9D1C2; padding: 56px 0 30px; }
.footer a { color: #E6DECF; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer__brand .brand { color: #fff; }
.footer__brand p { color: #D9D1C2; font-size: .95rem; margin-top: .6rem; max-width: 32ch; }
.footer h2 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; font-size: .96rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: .86rem; color: #D9D1C2; }
.footer__bottom a { color: #D9D1C2; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---- Sticky mobile CTA ---- */
.sticky-cta { display: none; }

/* ---- Radio-Mitschnitte ---- */
.audio-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.audio-list li { padding: .9rem 0; border-bottom: 1px solid var(--line-2); }
.audio-list li:last-child { border-bottom: 0; }
.audio-list .audio-title { display: block; font-weight: 600; color: var(--ink); margin-bottom: .45rem; font-size: .98rem; }
.audio-list .audio-title small { font-weight: 400; color: var(--muted); }
.audio-list audio { width: 100%; height: 36px; }

/* ---- YouTube-Übungsvideos (Zwei-Klick, DSGVO-freundlich) ---- */
.yt-facade { position: relative; border-radius: var(--radius); overflow: hidden; margin: 1.8rem 0; background: #000; box-shadow: var(--shadow); }
.yt-facade img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .85; }
.yt-facade__btn {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  background: var(--primary); color: #fff; border: 0; border-radius: 999px;
  font: 600 1.05rem var(--sans); padding: .9em 1.6em; cursor: pointer; box-shadow: var(--shadow-lg);
}
.yt-facade__btn:hover { background: var(--primary-d); }
.yt-facade__hint { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 10px 16px; font-size: .78rem; color: #fff; background: rgba(0,0,0,.55); }
.yt-facade iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

/* ---- Entwurf „Zum Mitnehmen" ---- */
.draft-banner { background: #8A5A05; color: #fff; text-align: center; padding: 10px 16px; font-weight: 700; letter-spacing: .06em; }
.produkt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.produkt { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.produkt__tag { align-self: flex-start; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 999px; padding: .3em .9em; margin-bottom: .8rem; background: var(--cream-2); color: var(--ink); }
.produkt__tag--free { background: var(--forest); color: #fff; }
.produkt h3 { font-size: 1.2rem; }
.produkt p { font-size: .96rem; }
.produkt__price { margin-top: auto; font-weight: 700; color: var(--ink); }
.stufen { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 2rem 0; }
.stufe { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 14px; text-align: center; font-size: .88rem; position: relative; }
.stufe b { display: block; font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: .2rem; }
@media (max-width: 800px) { .stufen { grid-template-columns: 1fr; } }

/* ---- Utilities ---- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.center { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* Mobil: erst Text + CTA, dann Foto */
  .hero__media { order: 2; max-width: 460px; margin-top: 1.6rem; }
  .hero__badge { left: auto; right: 16px; }
  .grid-3, .media-grid, .impulse-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-themes { grid-template-columns: repeat(2, 1fr); }
  .books { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-left: 0; }
  .split, .about, .newsletter { grid-template-columns: 1fr; }
  .split--science .split__media { max-width: 420px; }
  .about__media { max-width: 340px; }
  .newsletter { text-align: left; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta.desktop-only { display: none; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 12px 18px 20px; gap: 2px; box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav__links a { padding: .8em .6em; border-radius: 8px; }
  .nav[data-open="true"] .nav__links .btn { margin-top: 8px; justify-content: center; }
  .grid-3, .media-grid, .impulse-grid, .grid-themes { grid-template-columns: 1fr; }
  .aktion__grid { grid-template-columns: 1fr 1fr; }
  .aktion__grid .tall { grid-row: span 1; }
  .book { grid-template-columns: 96px 1fr; gap: 16px; padding: 20px; }
  .book__cover { width: 96px; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .newsletter__row { flex-direction: column; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  /* Sticky CTA sichtbar auf Mobil */
  .sticky-cta {
    display: block; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
  }
  .sticky-cta .btn { width: 100%; justify-content: center; box-shadow: var(--shadow-lg); }
  body { padding-bottom: 76px; }
}

/* ============================================================
   Wissen & Impulse – Karten, Kategorien, Lese-Layout
   ============================================================ */
.wi-hero { padding-bottom: 1rem; }
.wi-hero h1 { text-wrap: balance; }

.art-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.art-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease; color: var(--ink-soft);
}
.art-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink-soft); }
.art-card__cat { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-d); }
.art-card h3 { font-size: 1.24rem; margin: .1rem 0 .1rem; color: var(--ink); }
.art-card p { font-size: .98rem; margin: 0; }
.art-card__meta { font-size: .84rem; color: var(--muted); margin-top: .3rem; }
.art-card .link-arrow { margin-top: .4rem; color: var(--primary-d); }
.art-card--feature { border-top: 3px solid var(--accent); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden; color: var(--ink-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}
.cat-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); opacity: 0; transition: opacity .16s; }
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink-soft); }
.cat-card:hover::before { opacity: 1; }
.cat-card h3 { font-size: 1.18rem; margin-bottom: .35rem; color: var(--ink); }
.cat-card p { font-size: .96rem; margin: 0 0 .8rem; }
.cat-card__count { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* --- Artikel-Lesen --- */
.link-back { font-weight: 600; color: var(--muted); }
.link-back:hover { color: var(--primary); }
.article__inner { max-width: 760px; padding-top: 8px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 1rem 0 .8rem; }
.cat-chip { font-size: .8rem; font-weight: 600; color: var(--primary-d); background: rgba(192,85,46,.08); border-radius: 999px; padding: .32em .85em; }
.article__read { font-size: .84rem; color: var(--muted); }
.article__title { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.9rem); text-wrap: balance; margin-bottom: .5rem; }
.article__lead { font-size: 1.28rem; line-height: 1.5; color: var(--ink); font-family: var(--serif); margin: 0 0 1.8rem; }
.article__body { font-size: 1.08rem; }
.article__body > p, .article__body > ul, .article__body > ol { max-width: 68ch; }
.article__body h2 { font-size: 1.6rem; margin: 2.2rem 0 .7rem; }
.article__body h3 { font-size: 1.22rem; margin: 1.7rem 0 .5rem; }
.article__body ul, .article__body ol { padding-left: 1.3em; }
.article__body li { margin-bottom: .4rem; }
.article__body a { text-decoration: underline; text-underline-offset: 2px; }
.article__foot { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }

/* Inhaltsbausteine in Artikeln */
.callout { background: var(--cream-2); border-radius: var(--radius); padding: 22px 26px; margin: 1.8rem 0; }
.callout > :last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; }
.callout--accent { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); }
.callout--note { background: #fff; border: 1px solid var(--line-2); font-size: .98rem; color: var(--ink-soft); }
.steps { counter-reset: step; list-style: none; padding-left: 0; margin: 1.4rem 0; }
.steps li { position: relative; padding-left: 2.6rem; margin-bottom: .9rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -1px; width: 1.8rem; height: 1.8rem; border-radius: 999px;
  background: var(--primary); color: #fff; font-family: var(--sans); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.article-cta { background: var(--forest); color: #fff; border-radius: var(--radius); padding: 28px 30px; margin: 2.4rem 0 .6rem; }
.article-cta h3 { color: #fff; margin-top: 0; }
.article-cta p { color: #E6DECF; }
.article-cta .btn { margin-top: .4rem; }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } .art-cards { grid-template-columns: 1fr; } }

/* Newsletter-CTAs zentral ausblenden, solange Anmeldung nicht funktionsfähig */
.nl-off .nl-gate { display: none; }

/* ============================================================
   Vorträge & Workshops · Über mich
   ============================================================ */
.tw-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tw { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }
.tw h3 { margin-bottom: .4rem; }
.tw p { font-size: .98rem; }
.tw-examples { list-style: none; padding: 0; margin: .6rem 0 0; }
.tw-examples li { position: relative; padding: .3rem 0 .3rem 1.2rem; font-size: .95rem; color: var(--ink-soft); }
.tw-examples li::before { content: "–"; position: absolute; left: 0; color: var(--primary-d); }
.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li { position: relative; padding: .35rem 0 .35rem 1.2rem; font-size: .97rem; }
.plain-list li::before { content: "·"; position: absolute; left: .2rem; color: var(--primary-d); font-weight: 700; }
.pub-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.pub-list li { padding: .8rem 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
.pub-list li:last-child { border-bottom: 0; }
@media (max-width: 800px) { .tw-list { grid-template-columns: 1fr; } }

/* ============================================================
   Bücher & Medien
   ============================================================ */
.bookfull { display: grid; grid-template-columns: 220px 1fr; gap: clamp(22px, 3vw, 44px); background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(22px, 3vw, 40px); box-shadow: var(--shadow); align-items: start; margin-bottom: 26px; }
.bookfull__cover { width: 100%; border-radius: 10px; box-shadow: var(--shadow-lg); }
.bookfull h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.bookfull ul { padding-left: 1.2em; }
.bookfull li { margin-bottom: .4rem; }
.press-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; }
.press-block { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.press-block h3 { margin-bottom: .8rem; }
.press-list { list-style: none; padding: 0; margin: 0; }
.press-list li { padding: .45rem 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
.press-list li:last-child { border-bottom: 0; }
.press-list--cols { columns: 2; column-gap: 28px; }
.press-list--cols li { break-inside: avoid; }
@media (max-width: 800px) {
  .bookfull { grid-template-columns: 1fr; }
  .bookfull__cover { max-width: 200px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-list--cols { columns: 1; }
}

/* ============================================================
   Newsletter-Seite · Glücksrezepte live (Workshop)
   ============================================================ */
.nl-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.nl-intro h1 { text-wrap: balance; }
.nl-rhythm { font-family: var(--serif); font-style: italic; color: var(--primary-d); }
.nl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); position: sticky; top: 96px; }
.nl-form { display: flex; flex-direction: column; gap: 14px; }
.nl-form .opt { color: var(--muted); font-weight: 400; }
.nl-hint { font-size: .86rem; color: var(--muted); margin: 0; }
.nl-survey { display: flex; flex-direction: column; gap: 10px; margin-top: .6rem; }
.nl-survey label { display: flex; align-items: center; gap: .6em; font-size: 1rem; }
.nl-survey input[type=text] { flex: 1; }

.live__meta { color: var(--muted); font-size: .96rem; }

.workshop { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.workshop__main h1 { text-wrap: balance; }
.workshop__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); position: sticky; top: 96px; }
.workshop__facts { margin: 0 0 1.2rem; }
.workshop__facts div { display: flex; justify-content: space-between; gap: 14px; padding: .55rem 0; border-bottom: 1px solid var(--line-2); }
.workshop__facts div:last-child { border-bottom: 0; }
.workshop__facts dt { color: var(--muted); font-size: .92rem; }
.workshop__facts dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

@media (max-width: 900px) {
  .nl-grid, .workshop { grid-template-columns: 1fr; }
  .nl-card, .workshop__card { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
