/* ============================================================
   SaunaFan.de — Master Stylesheet
   ============================================================ */

/* ── 0. CSS Variables ─────────────────────────────────────── */
:root {
  /* Design tokens */
  --wood:         #2b1a10;
  --wood-mid:     #3d2618;
  --cream:        #faf7f1;
  --cream-deep:   #f5ede0;
  --birch:        #d9c9a8;
  --stone:        #a8998a;
  --ember:        #e87a2b;

  /* Legacy aliases — keep for any inline styles */
  --color-dark:   #2b1a10;
  --color-mid:    #3d2618;
  --color-accent: #e87a2b;
  --color-warm:   #faf7f1;
  --color-light:  #f5ede0;
  --color-ember:  #e87a2b;
  --color-text:   #2b1a10;
  --color-muted:  #a8998a;
  --color-border: #d9c9a8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-width: 1200px;
  --gutter:    clamp(1rem, 4vw, 2rem);
  --radius:    6px;
  --shadow:    0 4px 24px rgba(43, 26, 16, 0.08);
  --shadow-hover: 0 8px 36px rgba(43, 26, 16, 0.15);
  --transition: 0.22s ease;
}

/* ── 1. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--wood);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ember); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--wood-mid); }

ul, ol { padding-left: 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--wood);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 2. Layout Helpers ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--dark  { background: var(--wood); color: var(--cream); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--cream); }
.section--light { background: var(--cream-deep); }
.section--warm  { background: var(--cream); }

.text-centre { text-align: center; }
.text-muted  { color: var(--stone); }

.section-title-wrap { margin-bottom: 2.5rem; }
.section-title-wrap.centred { text-align: center; }
.section-title-wrap.centred .section-intro { margin-left: auto; margin-right: auto; }

.divider {
  border: none;
  border-top: 1px dashed var(--birch);
  margin: 2.5rem 0;
}

.mt-4 { margin-top: 2.5rem; }

/* ── 3. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--ember);
  color: #fff;
  border-color: var(--ember);
  box-shadow: 0 6px 20px rgba(232, 122, 43, 0.28);
}
.btn--primary:hover {
  background: #d06b22;
  border-color: #d06b22;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 122, 43, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--wood);
  border-color: rgba(43, 26, 16, 0.3);
}
.btn--outline:hover {
  border-color: var(--wood);
  color: var(--ember);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ember);
  border-color: var(--ember);
}
.btn--outline-dark:hover {
  background: var(--ember);
  color: #fff;
}

.btn--large { padding: 16px 32px; font-size: 1.05rem; }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }

/* ── 4. Navigation ────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  border-bottom: 1px solid rgba(217, 201, 168, 0.6);
  transition: box-shadow 0.22s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(43, 26, 16, 0.12);
}

/* Top eyebrow strip */
.nav-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 8px 80px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8998a;
  border-bottom: 1px dashed rgba(217, 201, 168, 0.8);
  white-space: nowrap;
  overflow: hidden;
}
.nav-eyebrow > span { white-space: nowrap; }
.nav-eyebrow-dot { color: #d9c9a8; }
.nav-eyebrow-live {
  color: #3d2618;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-eyebrow-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e87a2b;
  box-shadow: 0 0 8px #e87a2b;
  animation: nav-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes nav-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) { .nav-eyebrow-live::before { animation: none; } }
@media (max-width: 960px) { .nav-eyebrow { display: none; } }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 960px) { .nav-inner { padding: 14px 24px; } }

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 500;
  font-style: normal;
  color: #2b1a10;
  text-decoration: none;
  letter-spacing: -0.6px;
  line-height: 1;
}
.nav-logo em  { font-style: italic; color: #e87a2b; }
.nav-logo-tld { color: #a8998a; }
.nav-logo:hover { opacity: 0.82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 960px) { .nav-links { gap: 20px; } }

.nav-links li a:not(.nav-cta) {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: #2b1a10;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
  padding-bottom: 4px;
  transition: color 140ms ease;
}
.nav-links li a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #e87a2b;
  transition: width 200ms ease;
}
.nav-links li a:not(.nav-cta):hover { color: #e87a2b; }
.nav-links li a:not(.nav-cta):hover::after { width: 20px; }

.nav-meta {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a8998a;
}

/* CTA pill button */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #2b1a10;
  color: #faf7f1 !important;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: 'JetBrains Mono', monospace !important;
  font-style: normal !important;
  font-size: 11.5px !important;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 120ms ease;
  border: none;
}
.nav-cta:hover { background: #e87a2b; color: #faf7f1 !important; }
.nav-cta:active { transform: translateY(1px); }
.nav-cta::after { display: none !important; }
.nav-cta-price { opacity: 0.65; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2b1a10;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 241, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.active { display: flex; }
.nav-overlay a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 500;
  color: #2b1a10;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-overlay a:hover { color: #e87a2b; }
.nav-overlay a.nav-cta {
  font-style: normal;
  font-size: 1rem;
}

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  background: none;
  border: none;
  color: #2b1a10;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links   { display: none; }
}


/* ── 5. Footer (V3 Lean — Birch & Linen) ─────────────────── */
.site-footer {
  background: #f5ede0;
  color: #2b1a10;
  font-family: var(--font-body);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 0;
  border-top: 1px solid #d9c9a8;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand-logo {
  font-family: 'Cormorant Garamond', var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #2b1a10;
  text-decoration: none;
  display: inline-block;
}
.footer-brand-logo em  { color: var(--color-accent); font-style: italic; }
.footer-brand-logo span { color: #a8998a; }
.footer-brand p {
  margin: 1rem 0 0;
  font-size: 0.925rem;
  color: #3d2618;
  opacity: 0.78;
  max-width: 400px;
  line-height: 1.65;
}

.footer-col h3 {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2b1a10;
  position: relative;
  padding-bottom: 0.65rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 20px; height: 1px;
  background: var(--color-accent);
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: #3d2618;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  transition: color 0.14s ease;
}
.footer-col a:hover { color: var(--color-accent); }

.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: #a8998a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-divider {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  height: 1px;
  background: #d9c9a8;
}

.footer-legal {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  font-size: 0.775rem;
  color: #3d2618;
  padding-bottom: 1rem;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: #3d2618;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.14s, color 0.14s;
}
.footer-legal-links a:hover { opacity: 1; color: var(--color-accent); }
.footer-legal-sep { color: #d9c9a8; }

.footer-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.675rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8998a;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: footer-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes footer-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-status-dot { animation: none; }
}

.footer-sig {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8998a;
  opacity: 0.7;
  padding: 1rem 0 2rem;
  border-top: 1px dashed #d9c9a8;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* ── 6. Hero (Homepage) ───────────────────────────────────── */
.hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--birch);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(232,122,43,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}

.hero-content h1 {
  color: var(--wood);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-shadow: none;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--ember);
}

.hero-subhead {
  color: var(--wood-mid);
  opacity: 0.82;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

/* Book cover mockup */
.cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cover-mockup {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  box-shadow:
    0 2px 4px rgba(43,26,16,0.08),
    0 30px 60px -20px rgba(43,26,16,0.3),
    0 12px 24px -10px rgba(43,26,16,0.18);
  transform: rotate(-1.5deg);
}
.cover-fallback {
  background: linear-gradient(160deg, var(--wood-mid), var(--wood));
  color: var(--cream);
  padding: 3rem 2rem;
  font-family: var(--font-display);
  text-align: center;
  border-radius: 6px;
  max-width: 280px;
  width: 100%;
  box-shadow: 0 30px 60px -20px rgba(43,26,16,0.35);
  transform: rotate(-1.5deg);
}
.cover-fallback .cover-year {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}
.cover-fallback h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 0.5rem; line-height: 1.2; }
.cover-fallback .cover-sub { color: rgba(250,247,241,0.65); font-size: 0.9rem; font-style: italic; margin-bottom: 1.5rem; }
.cover-fallback .cover-price { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 500; color: var(--ember); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-subhead { max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .cover-wrap { order: -1; }
  .cover-fallback, .cover-mockup { margin: 0 auto; transform: none; }
}

/* ── 7. Value Pillars ─────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--birch);
  border-bottom: 3px solid var(--ember);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pillar-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  color: var(--ember);
}
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.pillar-card p  { font-size: 0.95rem; color: var(--stone); margin: 0; }

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ── 8. Section Typography & Chapter Grid ─────────────────── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--stone);
  margin-bottom: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-intro {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.chapter-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--birch);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.chapter-card:hover {
  border-left-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.chapter-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.chapter-card h3 { font-size: 1rem; margin-bottom: 0.4rem; font-style: italic; }
.chapter-card p  { font-size: 0.88rem; color: var(--stone); margin: 0; line-height: 1.55; }

@media (max-width: 900px) { .chapter-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chapter-grid { grid-template-columns: 1fr; } }

/* ── 9. Article Cards ─────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--birch);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.article-card-img {
  width: 100%; height: 200px;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
}
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--birch) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card-img-placeholder svg {
  width: 48px; height: 48px;
  color: var(--stone);
  fill: currentColor;
}
.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body h3 {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.article-card-body p {
  color: var(--stone);
  font-size: 0.9rem;
  flex: 1;
  line-height: 1.6;
}
.article-card-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.article-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.article-link:hover { color: var(--wood); gap: 0.5rem; }

@media (max-width: 900px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .article-grid { grid-template-columns: 1fr; } }

/* ── 10. Lead Magnet Strip ────────────────────────────────── */
.lead-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--birch);
  border-bottom: 1px solid var(--birch);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}
.lead-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--ember);
}
.lead-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-strip h2 { font-style: italic; margin-bottom: 0.5rem; }
.lead-strip p  { color: var(--stone); margin-bottom: 0; }
.lead-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lead-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 1px solid var(--birch);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--wood);
  transition: border-color var(--transition);
}
.lead-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232,122,43,0.12);
}

@media (max-width: 768px) {
  .lead-strip-inner { grid-template-columns: 1fr; }
  .lead-form { flex-direction: column; }
  .lead-form input { min-width: 0; }
}

/* ── 11. Stats Bar ────────────────────────────────────────── */
.stats-bar {
  background: var(--wood);
  padding: 3rem 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ember);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
  margin-top: 0.4rem;
}

/* ── 12. Sales Page ───────────────────────────────────────── */
.sales-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--birch);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.sales-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.sales-hero h1 {
  color: var(--wood);
  font-style: italic;
  margin-bottom: 1rem;
}
.sales-hero .section-eyebrow { margin-bottom: 1rem; }
.sales-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ember);
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}
.sales-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.sales-payment-note {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sales-payment-note svg { color: var(--stone); flex-shrink: 0; }

@media (max-width: 900px) {
  .sales-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .cover-wrap { order: -1; }
  .sales-payment-note { justify-content: center; }
}

/* Problem block */
.problem-block {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--wood-mid);
}
.problem-block p + p { margin-top: 1.25rem; }

/* Chapter accordion list */
.chapter-list { list-style: none; padding: 0; }
.chapter-item {
  border-left: 3px solid var(--birch);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color var(--transition);
}
.chapter-item:hover { border-left-color: var(--ember); }
.chapter-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}
.chapter-item-num {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.chapter-item-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--wood);
}
.chapter-item-desc {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Stat boxes */
.stat-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  background: var(--cream-deep);
  border: 1px solid var(--birch);
  border-bottom: 3px solid var(--ember);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
}
.stat-box .stat-number {
  font-size: 2.2rem;
  font-style: italic;
  color: var(--ember);
}
.stat-box .stat-label { color: var(--stone); font-size: 0.82rem; }

@media (max-width: 700px) { .stat-boxes { grid-template-columns: repeat(2, 1fr); } }

/* Science pull quotes */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.science-quote {
  background: #fff;
  border-left: 3px solid var(--ember);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  border-top: 1px solid var(--birch);
  border-bottom: 1px solid var(--birch);
  border-right: 1px solid var(--birch);
}
.science-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--wood);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.science-quote cite {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}
@media (max-width: 600px) { .science-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--birch);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--ember);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.25rem;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--wood);
  padding-top: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 1rem;
}
@media (max-width: 768px) { .testimonials { grid-template-columns: 1fr; } }

/* Guarantee */
.guarantee-box {
  background: var(--cream-deep);
  border: 1px solid var(--birch);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
}
.guarantee-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  color: var(--ember);
}
.guarantee-box h3 { font-size: 1.2rem; margin-bottom: 0.4rem; font-style: italic; }
.guarantee-box p  { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* FAQ */
.faq-list { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--birch);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--birch); }
.faq-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--wood);
  margin-bottom: 0.5rem;
}
.faq-answer {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── 13. Blog Index ───────────────────────────────────────── */
.blog-header {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--birch);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.blog-header h1 { font-style: italic; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* article header / hero (blog articles — keep editorial dark) */
.article-header {
  background: var(--wood);
  color: var(--cream);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(217,201,168,0.2);
}
.article-header h1 { color: var(--cream); font-style: italic; }
.article-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* Article hero (full-bleed with optional image) */
.article-hero {
  background: var(--wood);
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(217,201,168,0.2);
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.article-hero .container { position: relative; z-index: 1; }
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin: 0.75rem 0 0;
  max-width: 800px;
}
.article-hero .article-meta { color: rgba(217,201,168,0.75); }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--ember); }

/* Article prose content */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--wood-mid);
}
.article-content h2 {
  font-style: italic;
  margin: 2.5rem 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--birch);
}
.article-content h3 { font-style: italic; margin: 2rem 0 0.6rem; }
.article-content blockquote {
  border-left: 3px solid var(--ember);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.article-content ul, .article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}
.article-content li { margin-bottom: 0.375rem; }

/* Article CTA box */
.article-cta-box {
  background: var(--cream-deep);
  border: 1px solid var(--birch);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta-box h3 { font-style: italic; margin-bottom: 0.5rem; }
.article-cta-box p { color: var(--stone); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ── 14. Lead Capture (gratis-kapitel / danke) ────────────── */
.lead-page-body {
  background: var(--cream-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lead-card {
  background: #fff;
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 12px 48px rgba(43,26,16,0.10);
  border: 1px solid var(--birch);
}
.lead-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 400;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.875rem;
}
.lead-card h1 {
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}
.lead-card-lede {
  color: var(--stone);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.form-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-benefits li {
  font-size: 0.9rem;
  color: var(--wood-mid);
  padding-left: 1.25rem;
  position: relative;
}
.form-benefits li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 1px;
  background: var(--ember);
}
.form-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-stacked input {
  padding: 13px 18px;
  border: 1px solid var(--birch);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--wood);
  transition: border-color var(--transition);
}
.form-stacked input:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232,122,43,0.12);
}
.form-stacked .btn {
  text-align: center;
  justify-content: center;
  padding: 15px;
}
.form-legal {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.55;
}
.form-legal a { color: var(--ember); }

/* Chapter preview list (on gratis page) */
.chapter-preview-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chapter-preview-list li {
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  border-left: 3px solid var(--ember);
  color: var(--wood);
  border-top: 1px solid var(--birch);
  border-bottom: 1px solid var(--birch);
  border-right: 1px solid var(--birch);
}

/* ── 15. Legal Pages (Impressum / Datenschutz) ────────────── */
.legal-content h1 { font-style: italic; margin-bottom: 2rem; }
.legal-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.97rem;
  color: var(--wood-mid);
  line-height: 1.75;
}
.legal-content ul { margin-bottom: 1rem; }
.legal-content section { margin-bottom: 2.5rem; }

/* ── 16. Misc utilities ───────────────────────────────────── */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* Form inputs global */
input[type="text"], input[type="email"], textarea {
  font-family: var(--font-body);
  color: var(--wood);
}
input::placeholder { color: var(--stone); }

/* ── 17. Blog Article Prose ───────────────────────────────── */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--wood-mid);
}
.article-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--ember);
  margin: 0 0 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--birch);
  line-height: 1.2;
}
/* No top separator before the very first section heading */
.article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 1.25rem;
}
.article-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wood);
  margin: 1.75rem 0 0.5rem;
}
.article-body p { margin-bottom: 1.2rem; }
.article-body strong { color: var(--wood); }
.article-body ul,
.article-body ol  { margin-bottom: 1rem; padding-left: 1.75rem; }
.article-body li  { margin-bottom: 0.375rem; }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--ember);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wood);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}

/* Stat highlight block */
.stat-highlight {
  background: var(--wood);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.sh-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  color: var(--ember);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-highlight p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240,235,227,0.8);
  margin: 0.3rem 0 0;
}

/* Weiterlesen (upsell) box */
.weiterlesen-box {
  background: var(--cream-deep);
  border: 1px solid var(--birch);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.weiterlesen-box strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wood);
  display: block;
  margin-bottom: 0.25rem;
}
.weiterlesen-box p {
  color: var(--stone);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

/* Blog sidebar (index page only) */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
}
.blog-sidebar .sidebar-book {
  background: var(--cream-deep);
  border: 1px solid var(--birch);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 5rem;
}
.blog-sidebar .sidebar-book h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wood);
  margin-bottom: 0.5rem;
}
.blog-sidebar .sidebar-book p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.blog-sidebar .sidebar-book .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--ember);
  display: block;
  margin-bottom: 1rem;
}
/* On article pages the layout is always single-column (aside removed) */
.blog-layout:not(:has(aside)) {
  display: block;
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar .sidebar-book { position: static; }
}
@media (max-width: 600px) {
  .stat-highlight { flex-direction: column; gap: 0.5rem; }
  .weiterlesen-box { flex-direction: column; }
}
