/* =========================================================
   Der herrlich unperfekte Familienalltag mit Kind
   Statischer Website-Export – styles.css
   ========================================================= */

:root {
  --color-key1: #B85C38;   /* Terracotta - primaer */
  --color-key2: #7A8B72;   /* Salbeigruen - sekundaer */
  --color-white: #FBF7F1;  /* warmes Off-White */
  --color-black: #2E2A26;
  --color-light: #F7EFE7;
  --color-dark: #241E28;
  --font-header: 'Fraunces', Georgia, serif;
  --font-text: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Reveal-on-scroll (ersetzt framer-motion) ----------
   Sicherheitsnetz: Inhalte sind standardmäßig SICHTBAR. Erst wenn JavaScript
   bestätigt läuft (Klasse "js-ready" auf <html>), werden .reveal-Elemente
   kurz ausgeblendet, um beim Scrollen einzublenden. Falls JS blockiert ist
   oder ein Fehler auftritt, bleibt der komplette Inhalt trotzdem sichtbar. */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(20px); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Basis-Komponenten (siteui-Aequivalente) ---------- */
.title {
  font-family: var(--font-header);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-black);
}
.title-sm { font-size: 1.3rem; }
.title-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.title-lg { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.title-xl { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.title-xxl { font-size: clamp(2.5rem, 5.2vw, 4rem); }
.align-center { text-align: center; }
.italic { font-style: italic; }

.text {
  font-family: var(--font-text);
  line-height: 1.65;
  margin: 0;
  color: var(--color-black);
}
.text-xs { font-size: .78rem; }
.text-sm { font-size: .9rem; }
.text-md { font-size: 1.05rem; }
.text-lg { font-size: 1.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-text);
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-md { padding: 11px 22px; font-size: .95rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-primary { background: var(--color-key1); color: var(--color-white); box-shadow: 0 8px 24px -8px rgba(184,92,56,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(184,92,56,.6); }
.btn-outline { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.85); }
.btn-light { background: var(--color-light); color: var(--color-key1); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -10px rgba(0,0,0,.35); }
.btn:disabled { opacity: .6; cursor: default; transform: none !important; }

.badge {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--color-key1);
}
.badge-key2 { color: var(--color-key2); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-radius: 14px;
  padding: 30px 26px;
}
.card-hover { transition: transform .25s ease, box-shadow .25s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(46,42,38,.3); }

.wrap { max-width: 1250px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav { position: sticky; top: 0; z-index: 40; background: var(--color-white); border-bottom: 1px solid rgba(46,42,38,0.08); }
.nav-container { max-width: 1250px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { text-decoration: none; max-width: 34ch; font-family: var(--font-text); font-weight: 700; font-size: 1.05rem; color: var(--color-black); }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; margin-right: 22px; }
.nav-link { font-family: var(--font-text); font-size: .92rem; color: var(--color-black); text-decoration: none; opacity: .72; padding-bottom: 4px; border-bottom: 2px solid transparent; transition: opacity .2s ease, border-color .2s ease; white-space: nowrap; }
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; border-bottom-color: var(--color-key1); font-weight: 600; }
.nav-cta { flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger-bar { width: 22px; height: 2px; background: var(--color-black); transition: transform .25s ease, opacity .25s ease; display: block; }
.nav-burger.open .bar-top { transform: translateY(7px) rotate(45deg); }
.nav-burger.open .bar-mid { opacity: 0; }
.nav-burger.open .bar-bottom { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { overflow: hidden; max-height: 0; display: flex; flex-direction: column; padding: 0 24px; transition: max-height .25s ease; }
.nav-mobile.open { max-height: 480px; padding-bottom: 12px; }
.nav-mobile-link { font-family: var(--font-text); font-size: 1rem; color: var(--color-black); text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(46,42,38,0.08); }
.nav-mobile-link.active { color: var(--color-key1); font-weight: 600; }
.nav-mobile-cta { display: none; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-cta { display: block; margin: 16px 0 4px; text-align: center; background: var(--color-key1); color: var(--color-white); padding: 12px; border-radius: 999px; text-decoration: none; font-family: var(--font-text); font-weight: 600; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: 84px 24px 88px; background: linear-gradient(165deg, var(--color-dark) 0%, #312838 100%); }
.hero-stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(1.4px 1.4px at 18% 28%, #E8D9C4 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 72% 18%, #E8D9C4 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 42% 12%, #ffffff 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 88% 40%, #E8D9C4 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 30% 62%, #E8D9C4 50%, transparent 51%),
    radial-gradient(1px 1px at 60% 52%, #ffffff 50%, transparent 51%);
}
.hero-container { position: relative; z-index: 1; max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow-line { width: 26px; height: 1px; background: var(--color-key1); display: inline-block; }
.hero-lede { max-width: 34ch; margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cover-stage { display: flex; justify-content: center; perspective: 1400px; }
.hero-cover { width: min(320px, 82%); aspect-ratio: 1410 / 2000; object-fit: cover; border-radius: 8px; transform: rotateY(-13deg) rotateX(3deg); box-shadow: -22px 30px 60px -20px rgba(0,0,0,0.55); transition: transform .5s ease; }
.hero-cover-stage:hover .hero-cover { transform: rotateY(-6deg) rotateX(1deg); }
@media (max-width: 860px) {
  .hero-container { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-eyebrow-row { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-cover-stage { order: -1; }
}

/* =========================================================
   KENNZAHLEN (Stats)
   ========================================================= */
.stats-strip { border-top: 1px solid var(--color-light); border-bottom: 1px solid var(--color-light); padding: 26px 24px; background: var(--color-light); }
.stats-container { max-width: 1250px; margin: 0 auto; display: flex; justify-content: space-around; gap: 24px; flex-wrap: wrap; text-align: center; }
.stats-item { flex: 1; min-width: 120px; }
.stats-label { margin-top: 5px; }
@media (max-width: 860px) {
  .stats-container { gap: 28px 0; }
  .stats-item { flex-basis: 50%; min-width: 0; }
}

/* =========================================================
   WARUM DIESES BUCH
   ========================================================= */
.why { padding: 82px 24px; background: var(--color-white); }
.why-head { width: 100%; }
.why-eyebrow { margin-bottom: 16px; }
.why-intro { margin-top: 20px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.why-card-title { margin-bottom: 9px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   INHALT (Contents)
   ========================================================= */
.toc { padding: 82px 24px; background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%); }
.toc-head { max-width: 60ch; }
.toc-eyebrow { margin-bottom: 16px; }
.toc-intro { margin-top: 20px; }
.toc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; margin-top: 46px; }
.toc-row { display: flex; gap: 16px; align-items: baseline; }
.toc-num { font-family: var(--font-header); font-weight: 600; font-size: 1.05rem; min-width: 24px; color: var(--color-key1); }
.toc-body { flex: 1; }
.toc-item-title { margin-bottom: 3px; }
@media (max-width: 860px) { .toc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   ZITAT (Quote)
   ========================================================= */
.quote { padding: 82px 24px; background: var(--color-dark); }
.quote-container { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-highlight { color: #E9B08F; font-style: normal; }
.quote-src { margin-top: 26px; }

/* =========================================================
   AUTOR (Teaser auf der Startseite)
   ========================================================= */
.authorTeaser { padding: 82px 24px; background: var(--color-white); }
.authorTeaser-container { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.authorTeaser-photo-wrap { display: flex; justify-content: center; }
.authorTeaser-photo { width: 100%; max-width: 380px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.authorTeaser-eyebrow { margin-bottom: 16px; }
.authorTeaser-para { margin-top: 16px; }
@media (max-width: 860px) {
  .authorTeaser-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .authorTeaser-photo-wrap { max-width: 260px; margin: 0 auto; }
}

/* =========================================================
   KAUFEN (Buy)
   ========================================================= */
.buy { padding: 82px 24px; background: linear-gradient(150deg, var(--color-key1) 0%, #8A4B2F 100%); }
.buy-container { max-width: 760px; margin: 0 auto; text-align: center; }
.buy-sub { max-width: 46ch; margin: 18px auto 0; }
.buy-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.buy-note { margin-top: 22px; }
.buy-note a { color: #FBEFE6; text-decoration: underline; }
.buy-note a:hover { color: var(--color-white); }

/* =========================================================
   PRESSE
   ========================================================= */
.press { padding: 82px 24px; background: var(--color-white); }
.press-headline { margin-top: 16px; max-width: 40ch; }
.press-lede { max-width: 56ch; margin-top: 14px; }
.press-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr); gap: 40px; margin-top: 44px; align-items: start; }
.press-left { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.press-facts { border: 1px solid rgba(46,42,38,0.1); border-radius: 14px; padding: 20px 22px; background: var(--color-light); }
.press-fact-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid rgba(46,42,38,0.08); }
.press-fact-row:last-child { border-bottom: none; }
.press-fact-label { font-size: .82rem; color: #8A8178; flex-shrink: 0; }
.press-fact-value { font-size: .9rem; color: var(--color-black); font-weight: 600; text-align: right; min-width: 0; word-break: break-word; }
.press-text-box { border: 1px solid rgba(46,42,38,0.1); border-radius: 14px; padding: 24px 26px; }
.press-para { margin-top: 12px; }
.press-copy-btn { margin-top: 18px; font-family: var(--font-text); font-weight: 600; font-size: .86rem; color: var(--color-white); background: var(--color-key1); border: none; border-radius: 999px; padding: 11px 22px; cursor: pointer; transition: opacity .2s ease; }
.press-copy-btn:hover { opacity: .88; }
.press-right { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.press-download-card { display: flex; align-items: center; gap: 14px; border: 1px solid rgba(46,42,38,0.1); border-radius: 14px; padding: 14px; }
.press-thumb-cover { width: 46px; height: 65px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.press-thumb-photo { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.press-download-btn { flex: 1; text-align: center; white-space: normal; }
.press-contact-box { border-top: 1px solid rgba(46,42,38,0.1); padding-top: 16px; margin-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.press-contact-link { font-size: .94rem; font-weight: 600; color: var(--color-key1); text-decoration: none; }
.press-contact-link:hover { text-decoration: underline; }
@media (max-width: 860px) { .press-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TERMINE (Events)
   ========================================================= */
.events { padding: 82px 24px; background: var(--color-white); }
.events-headline { margin-top: 16px; max-width: 40ch; }
.events-lede { max-width: 56ch; margin-top: 14px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.events-card { height: 100%; box-sizing: border-box; border: 1px solid rgba(46,42,38,0.1); }
.events-status { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.events-status-planned { background: var(--color-light); color: var(--color-key2); }
.events-status-confirmed { background: var(--color-key1); color: var(--color-white); }
.events-card-title { margin-top: 16px; }
.events-card-meta { margin-top: 6px; }
.events-footer { margin-top: 44px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CHECKLISTE (Lead-Magnet)
   ========================================================= */
.lead { padding: 82px 24px; background: var(--color-light); }
.lead-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: start; }
.lead-headline { margin-top: 16px; max-width: 34ch; }
.lead-lede { max-width: 50ch; margin-top: 14px; }
.lead-benefits { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lead-benefit-item { position: relative; padding-left: 22px; }
.lead-benefit-item::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--color-key1); }
.lead-form-card { background: var(--color-white); border-radius: 18px; padding: 32px; box-shadow: 0 30px 60px -35px rgba(46,42,38,0.35); }
.lead-form-title { margin-bottom: 18px; }
.lead-submit-btn { width: 100%; margin-top: 6px; font-family: var(--font-text); font-weight: 600; font-size: .96rem; color: var(--color-white); background: var(--color-key1); border: none; border-radius: 999px; padding: 13px 22px; cursor: pointer; transition: opacity .2s ease; }
.lead-submit-btn:hover { opacity: .9; }
.lead-error-msg { margin-top: 12px; }
.lead-success-head { max-width: 640px; margin: 0 auto; }
.lead-success-intro { margin-top: 12px; }
.lead-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.lead-result-card { height: 100%; box-sizing: border-box; border: 1px solid rgba(46,42,38,0.08); }
.lead-tip-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.lead-tip-item { position: relative; padding-left: 16px; }
.lead-tip-item::before { content: '\2013'; position: absolute; left: 0; top: 0; color: var(--color-key1); }
.lead-pdf-note { max-width: 560px; margin: 36px auto 0; }
.lead-hidden { display: none !important; }
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; } .lead-result-grid { grid-template-columns: 1fr; } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { padding: 82px 24px 96px; background: var(--color-white); }
.contact-grid { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: start; }
.contact-headline { margin-top: 16px; max-width: 30ch; }
.contact-lede { max-width: 48ch; margin-top: 14px; }
.contact-direct-box { margin-top: 30px; display: flex; flex-direction: column; gap: 6px; }
.contact-direct-link { font-size: 1.05rem; font-weight: 600; color: var(--color-key1); text-decoration: none; }
.contact-direct-link:hover { text-decoration: underline; }
.contact-form-card { background: var(--color-light); border-radius: 18px; padding: 32px; }
.contact-form-title { margin-bottom: 18px; }
.contact-submit-btn { width: 100%; margin-top: 6px; font-family: var(--font-text); font-weight: 600; font-size: .96rem; color: var(--color-white); background: var(--color-key1); border: none; border-radius: 999px; padding: 13px 22px; cursor: pointer; transition: opacity .2s ease; }
.contact-submit-btn:hover { opacity: .9; }
.contact-error-msg { margin-top: 12px; }
.contact-success { padding: 20px 4px; }
.contact-success-text { margin-top: 10px; }
.contact-hidden { display: none !important; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FORMFELDER (gemeinsam fuer Checkliste & Kontakt)
   ========================================================= */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-label { font-family: var(--font-text); font-size: .86rem; font-weight: 600; color: var(--color-black); }
.field-input, .field-textarea, .field-select {
  font-family: var(--font-text); font-size: .96rem; color: var(--color-black); background: var(--color-white);
  border: 1.5px solid rgba(46,42,38,0.18); border-radius: 10px; padding: 12px 14px; outline: none;
  transition: border-color .2s ease; width: 100%;
}
.field-textarea { resize: vertical; min-height: 110px; }
.field-input:focus, .field-textarea:focus, .field-select:focus { border-color: var(--color-key1); }
.field-checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.field-checkbox { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--color-key1); flex-shrink: 0; }
.field-checkbox-label { font-family: var(--font-text); font-size: .86rem; line-height: 1.45; color: #5A5450; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding: 52px 24px 40px; background: var(--color-dark); }
.footer-container { max-width: 1250px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand-col { max-width: 40ch; }
.footer-brand { margin-bottom: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; max-width: 30ch; }
.footer-link { font-family: var(--font-text); font-size: .92rem; color: #E9B08F; text-decoration: none; }
.footer-link:hover { text-decoration: underline; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding-top: 22px; }

/* =========================================================
   UEBER DAS BUCH (BookIntro + Themenwelten)
   ========================================================= */
.bookintro { padding: 96px 24px 82px; background: var(--color-white); }
.bookintro-container { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.bookintro-headline { margin: 16px 0 20px; }
.bookintro-para { margin-bottom: 14px; max-width: 52ch; }
.bookintro-facts { display: flex; gap: 28px; margin: 28px 0 30px; flex-wrap: wrap; }
.bookintro-fact-item { display: flex; flex-direction: column; }
.bookintro-fact-value { font-family: var(--font-header); font-size: 1.3rem; font-weight: 700; color: var(--color-key1); }
.bookintro-fact-label { font-size: .78rem; color: #8A8178; margin-top: 2px; }
.bookintro-cover-wrap { display: flex; justify-content: center; }
.bookintro-cover { width: min(420px, 100%); aspect-ratio: 1410 / 2000; object-fit: cover; border-radius: 10px; box-shadow: 0 30px 60px -25px rgba(46,42,38,0.35); }
.bookintro-buy-alt { margin-top: 14px; }
.bookintro-buy-alt a { color: var(--color-key1); font-weight: 600; text-decoration: none; }
.bookintro-buy-alt a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .bookintro-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .bookintro-headline, .bookintro-para { margin-left: auto; margin-right: auto; }
  .bookintro-facts { justify-content: center; }
  .bookintro-fact-item { align-items: center; }
}

.themes { padding: 88px 24px; background: var(--color-light); }
.themes-headline { margin-top: 16px; max-width: 34ch; }
.themes-lede { max-width: 56ch; margin-top: 14px; }
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.themes-index { font-family: var(--font-header); font-size: 1.6rem; font-weight: 700; color: var(--color-key1); opacity: .5; }
.themes-card-title { margin: 10px 0 8px; }
@media (max-width: 900px) { .themes-grid { grid-template-columns: 1fr; } }

/* =========================================================
   DER AUTOR (AuthorStory + Werte)
   ========================================================= */
.authorStory { padding: 96px 24px 88px; background: var(--color-light); }
.authorStory-container { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.authorStory-role { margin-top: 8px; margin-bottom: 4px; }
.authorStory-para { margin-top: 16px; max-width: 56ch; }
.authorStory-quote { margin-top: 24px; max-width: 48ch; }
.authorStory-photo-wrap { display: flex; justify-content: center; order: 2; }
.authorStory-photo { width: 100%; max-width: 380px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 30px 60px -25px rgba(46,42,38,0.35); }
@media (max-width: 860px) {
  .authorStory-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .authorStory-para, .authorStory-quote { margin-left: auto; margin-right: auto; }
  .authorStory-photo-wrap { order: -1; }
}

.values { padding: 20px 24px 96px; background: var(--color-white); }
.values-headline { max-width: 34ch; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.values-card { height: 100%; box-sizing: border-box; text-align: center; background: var(--color-light); }
.values-card-title { margin-bottom: 10px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* Überarbeitung September 2026: kompakter Einstieg und klare Kaufwege. */
.hero { padding: 48px 24px 52px; }
.hero-container { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 48px; max-width: 1180px; }
.hero .title-xxl { font-size: clamp(2.25rem, 4.1vw, 3.3rem); max-width: 21ch; }
.hero-lede { max-width: 49ch; margin: 20px 0 16px; }
.hero-facts { color: #F7EFE7; font-size: 1rem; line-height: 1.6; margin: 0 0 24px; }
.hero .badge { color: #E9B08F; }
.hero-cover { width: min(290px, 90%); }
.buy-facts { color: #fff; font-size: 1.125rem; line-height: 1.6; margin: 24px 0 0; }
.press-teaser { background: var(--color-light); padding: 48px 24px; }
.press-teaser-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.press-teaser h2 { margin: 12px 0; }
.press-teaser .btn { flex-shrink: 0; }
.text-sm, .toc .text-xs { font-size: 1rem; }
.text-xs, .bookintro-fact-label, .press-fact-label { font-size: .875rem; }
.field-input, .field-textarea, .field-select { font-size: 1rem; }
.nav-mobile { visibility: hidden; }
.nav-mobile.open { visibility: visible; }
.nav-burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-logo { min-width: 0; }
section[id], main[id] { scroll-margin-top: 100px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #E9B08F; outline-offset: 4px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 12px 18px; background: var(--color-dark); color: white; }
.skip-link:focus { top: 12px; }
.hero .reveal { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .nav-logo { font-size: .95rem; max-width: calc(100% - 60px); }
  .press-teaser-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 860px) {
  .hero { padding: 32px 24px 40px; }
  .hero-container { grid-template-columns: minmax(0, 1fr); gap: 32px; text-align: left; }
  .hero .title-xxl { font-size: clamp(2rem, 7.8vw, 3rem); max-width: 22ch; }
  .hero-eyebrow-row, .hero-ctas { justify-content: flex-start; }
  .hero-eyebrow-row { margin-bottom: 18px; }
  .hero-lede { margin: 16px 0; }
  .hero .text-lg { font-size: 1rem; }
  .hero-cover-stage { order: 0; }
  .hero-cover { width: 190px; }
  .bookintro, .authorStory { padding-top: 44px; }
  .bookintro-container, .contact-grid, .authorStory-container { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 420px) {
  .nav-container { padding-left: 16px; padding-right: 16px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 13px 18px; font-size: .95rem; }
  .contact-form-card { padding: 22px; }
  .contact-direct-link, .press-contact-link { overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

.sample { padding: 72px 24px; background: var(--color-light); }
.sample-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.sample h2 { margin: 16px 0 20px; }
.sample-meta { color: #5A5450; font-size: .875rem; line-height: 1.6; margin: 20px 0; }
.sample-download { display: block; width: fit-content; margin-top: 16px; color: #8A4B2F; text-underline-offset: 4px; }
.sample-pages { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.sample-pages img { width: 100%; height: auto; border: 1px solid #d8cbbd; box-shadow: 0 12px 28px #241e2814; }
.sample-pages a:nth-child(2) { margin-top: 36px; }
.book-sample-link { display: inline-block; padding: 16px; color: #8A4B2F; text-underline-offset: 4px; }
@media(max-width: 860px) {
 .sample { padding: 48px 24px; }
 .sample-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
/* Das geöffnete Menü verschiebt beim Schließen keine Sprungziele. */
.nav-mobile { position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); }
.title { overflow-wrap: anywhere; }
.press-teaser-row > div { min-width: 0; max-width: 100%; }

/* Footer-Navigation: Links bleiben nebeneinander (05.09.2026). */
.footer-links {
  max-width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 22px;
  overflow-x: auto;
}
.footer-link { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 480px) {
  .footer-links { gap: 14px; }
  .footer-link { font-size: .875rem; }
}

/* Rundes Handlogo im Header. */
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-brand-icon { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; object-fit: contain; }
.nav-brand-text { min-width: 0; }
@media (max-width: 900px) {
 .nav-logo { gap: 9px; }
 .nav-brand-icon { width: 34px; height: 34px; flex-basis: 34px; }
}
