/* ============================================================
   global.css – Massageschule Baumann
   Gemeinsames CSS für alle neuen Design-Seiten
   ============================================================ */

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

:root {
  --dark:    #1c2b1e;
  --dark2:   #243028;
  --gold:    #e8b86d;
  --gold2:   #d4a255;
  --gold3:   #c49040;
  --cream:   #faf9f7;
  --warm:    #f5f0e8;
  --text:    #1a1a1a;
  --muted:   #6b6457;
  --border:  #e0d8cc;
  --bg2:     #f0ede6;
  --green:   #2d6a4f;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── NAVIGATION ─────────────────────────────────────── */
nav {
  background: var(--dark);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(232,184,109,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  transition: color 0.2s;
  padding: 6px 10px;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--warm); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 2px;
  font-size: 13px;
  margin-left: 8px;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(245,240,232,0.7);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* Mobile Menu – aufgeklappt */
.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(232,184,109,0.15);
  padding: 12px 0 16px;
  gap: 2px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-links.nav-open li { width: 100%; }
.nav-links.nav-open a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: rgba(245,240,232,0.8);
  border-radius: 0;
}
.nav-links.nav-open a:hover { color: var(--warm); background: rgba(255,255,255,0.04); }
.nav-links.nav-open .nav-cta {
  margin: 8px 24px 0;
  display: block;
  text-align: center;
  padding: 12px 24px !important;
}

/* Burger → X Animation */
.nav-mobile-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.is-open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--warm);
  padding: 84px 24px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,184,109,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,109,0.3), transparent);
  z-index: 1;
}
.hero > *:not(.hero-video) {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232,184,109,0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5.5vw, 54px);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 22px;
  color: var(--warm);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 300;
  color: rgba(245,240,232,0.68);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.hero-sub strong { color: rgba(245,240,232,0.88); font-weight: 600; }

.hero-location {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245,240,232,0.5);
}
.trust-item strong { color: rgba(245,240,232,0.75); font-weight: 600; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--warm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 28px;
  border: 1px solid rgba(245,240,232,0.25);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(245,240,232,0.55); }

.btn-dark {
  background: var(--dark);
  color: var(--warm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark2); }

.btn-ghost {
  background: transparent;
  color: var(--gold2);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid var(--gold2);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
  gap: 8px;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* ── SHARED SECTION LAYOUT ───────────────────────────── */
.section { padding: 68px 24px; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--muted);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 17px;
  color: #4a4237;
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── KURSE GRID ──────────────────────────────────────── */
.kurse-section { background: #fff; }
.kurse-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 680px) { .kurse-intro { grid-template-columns: 1fr; gap: 24px; } }

.kurse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.kurs-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 18px;
  transition: all 0.2s;
  display: block;
}
.kurs-card:hover { border-color: var(--gold); background: #fff; transform: translateY(-2px); }
.kurs-icon { font-size: 22px; margin-bottom: 10px; }
.kurs-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.kurs-dauer { font-size: 12px; color: var(--muted); }

/* ── ANGEBOT ─────────────────────────────────────────── */
.angebot { background: var(--dark); color: var(--warm); text-align: center; }
.angebot-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.angebot-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
}
.angebot-sub { color: rgba(245,240,232,0.6); max-width: 500px; margin: 0 auto 28px; font-size: 16px; }
.angebot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto 32px;
  overflow: hidden;
}
.angebot-feature { padding: 16px 20px; text-align: left; background: rgba(28,43,30,0.6); }
.angebot-feature-icon { font-size: 18px; margin-bottom: 6px; }
.angebot-feature-title { font-size: 14px; font-weight: 600; color: var(--warm); margin-bottom: 3px; }
.angebot-feature-desc { font-size: 12px; color: rgba(245,240,232,0.5); }

.angebot-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(232,184,109,0.3);
  padding: 7px 16px;
  border-radius: 2px;
}
.spot-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.preis-block { margin-bottom: 28px; }
.preis-alt { font-size: 14px; color: rgba(245,240,232,0.35); text-decoration: line-through; margin-bottom: 6px; }
.preis-row { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 8px; }
.preis-main { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.preis-badge { background: var(--gold); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 2px; white-space: nowrap; }
.preis-note { font-size: 13px; color: rgba(245,240,232,0.45); }
.preis-note strong { color: rgba(245,240,232,0.65); }
.preis-rate { font-size: 12px; color: rgba(245,240,232,0.3); margin-top: 4px; }

/* ── AWARD ───────────────────────────────────────────── */
.award { background: var(--bg2); }
.award-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 640px) { .award-grid { grid-template-columns: 1fr; gap: 32px; } }

.trophy-box {
  background: var(--dark);
  border-radius: 4px;
  padding: 44px 32px;
  text-align: center;
  color: var(--warm);
  position: relative;
  overflow: hidden;
}
.trophy-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,184,109,0.08), transparent 65%);
}
.trophy-num { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.trophy-title { font-size: 16px; color: rgba(245,240,232,0.85); margin-bottom: 8px; font-weight: 600; }
.trophy-sub { font-size: 12px; color: rgba(245,240,232,0.35); letter-spacing: 0.1em; text-transform: uppercase; }
.trophy-divider { width: 40px; height: 1px; background: rgba(232,184,109,0.3); margin: 16px auto; }

/* ── TERMINE ─────────────────────────────────────────── */
.termine { background: #fff; }
.termine-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.termine-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; margin-bottom: 28px; }
.termin-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.termin-card:hover { border-color: var(--gold); background: #fff; }
.termin-date { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 3px; letter-spacing: 0.04em; }
.termin-name { font-size: 15px; font-weight: 600; color: var(--dark); }
.termin-tag {
  font-size: 11px; color: var(--green);
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.15);
  padding: 2px 8px; border-radius: 2px; font-weight: 600; margin-top: 4px; display: inline-block;
}
.termin-btn {
  font-size: 12px; color: var(--gold2); font-weight: 600;
  white-space: nowrap; margin-left: 12px;
  border: 1px solid var(--gold2); padding: 6px 14px; border-radius: 2px; flex-shrink: 0; transition: all 0.2s;
}
.termin-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── ABOUT ───────────────────────────────────────────── */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: start; }
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } }

.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 4px; }
.about-award-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; padding: 10px 14px; border-radius: 2px; text-align: center; line-height: 1.4;
}
.about-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.about-tag { background: #fff; border: 1px solid var(--border); font-size: 12px; color: var(--muted); padding: 5px 12px; border-radius: 2px; }

/* ── STANDORTE ───────────────────────────────────────── */
.standorte { background: #fff; }
.standorte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 24px; }
.standort-card { border: 1px solid var(--border); border-radius: 4px; padding: 28px 24px; }
.standort-city { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.standort-addr { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.standort-info { font-size: 13px; color: #4a4237; line-height: 1.65; }

/* ── BONUS CARDS ─────────────────────────────────────── */
.bonus { background: var(--cream); }
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-bottom: 28px; }
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: var(--gold); }
.bonus-icon { font-size: 22px; margin-bottom: 12px; }
.bonus-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.bonus-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { background: var(--dark); color: var(--warm); }
.reviews .section-label { color: rgba(232,184,109,0.6); }
.reviews .section-title { color: var(--warm); }

.stars-hero { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.stars-big { color: var(--gold); font-size: 26px; letter-spacing: 2px; }
.stars-score { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--warm); }
.stars-count { font-size: 13px; color: rgba(245,240,232,0.4); margin-bottom: 36px; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-bottom: 28px; }
.review-card {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 4px;
  padding: 22px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(232,184,109,0.3); }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: rgba(245,240,232,0.75); font-style: italic; line-height: 1.65; margin-bottom: 14px; }
.review-meta { display: flex; justify-content: space-between; align-items: baseline; }
.review-author { font-size: 12px; font-weight: 600; color: rgba(245,240,232,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.review-kurs { font-size: 11px; color: rgba(232,184,109,0.5); }

/* ── ZAHLEN ──────────────────────────────────────────── */
.zahlen { background: var(--bg2); }
.zahlen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 36px; }
.zahl-card { border: 1px solid var(--border); background: #fff; border-radius: 4px; padding: 28px 16px; text-align: center; transition: border-color 0.2s; }
.zahl-card:hover { border-color: var(--gold); }
.zahl-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.zahl-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  font-size: 16px; font-weight: 600; color: var(--dark);
  padding: 20px 36px 20px 0;
  cursor: pointer; position: relative; list-style: none; user-select: none; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--gold); transition: transform 0.25s; line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--dark); }
.faq-item p { font-size: 15px; color: #4a4237; line-height: 1.75; padding: 0 0 20px; }
.faq-item p a { color: var(--dark); font-weight: 600; border-bottom: 1px solid var(--border); }

/* ── FOTOS ───────────────────────────────────────────── */
.fotos { background: var(--bg2); }
.foto-label { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.foto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.foto-grid img { border-radius: 4px; width: 100%; height: 200px; object-fit: cover; transition: opacity 0.2s; }
.foto-grid img:hover { opacity: 0.9; }

/* ── CTA FINAL ───────────────────────────────────────── */
.cta-final {
  background: var(--dark);
  text-align: center;
  color: var(--warm);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,184,109,0.07), transparent 65%);
}
.cta-final h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 44px); font-weight: 700; margin-bottom: 14px; }
.cta-final p { font-size: 17px; color: rgba(245,240,232,0.55); max-width: 480px; margin: 0 auto 36px; }
.cta-guarantees { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 32px; }
.cta-guarantee { font-size: 13px; color: rgba(245,240,232,0.4); display: flex; align-items: center; gap: 6px; }
.cta-guarantee::before { content: '✓'; color: var(--gold); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #111a12;
  color: rgba(245,240,232,0.45);
  padding: 48px 24px 32px;
  font-size: 13px;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 36px;
}
footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.25); margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(245,240,232,0.45); transition: color 0.2s; }
footer a:hover { color: var(--gold); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 15px; color: rgba(245,240,232,0.5); font-weight: 700; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-bottom {
  max-width: 960px; margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.05);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px;
}

/* ── BLOG ────────────────────────────────────────────── */
.blog-article { max-width: 720px; margin: 0 auto; padding: 48px 0 64px; }
.blog-article h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 28px; }
.blog-article h2 { font-family: 'Playfair Display', serif; font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--dark); margin: 40px 0 16px; line-height: 1.25; }
.blog-article h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.blog-article h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 20px 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-article p { font-size: 16px; color: #3a342e; line-height: 1.8; margin-bottom: 18px; }
.blog-article ul, .blog-article ol { padding-left: 22px; margin-bottom: 18px; }
.blog-article li { font-size: 16px; color: #3a342e; line-height: 1.75; margin-bottom: 6px; }
.blog-article hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.blog-cta { background: var(--warm); border: 1px solid var(--border); border-radius: 4px; padding: 32px; margin: 0 auto 64px; max-width: 720px; text-align: center; }
.blog-cta h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.blog-cta p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

/* ── BLOG INDEX GRID ─────────────────────────────────── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.bonus-grid a.bonus-card {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--dark);
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.4;
}
.bonus-grid a.bonus-card::before { content: '→'; color: var(--gold); font-size: 14px; flex-shrink: 0; }
.bonus-grid a.bonus-card:hover { border-color: var(--gold); background: #fff; }
