/* =========================================================================
   Business Council – Gesa Heiten
   Stylesheet
   ========================================================================= */

/* --- Fonts (lokal, DSGVO-konform) ----------------------------------------
   Variable Fonts: eine Datei je Familie deckt alle Gewichte ab.
   Syne: 400–800 · Outfit: 100–900
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Syne';
  src: url('../fonts/syne-v24-latin-variable.woff2') format('woff2-variations'),
       url('../fonts/syne-v24-latin-variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/urbanist-variable.woff2') format('woff2-variations'),
       url('../fonts/urbanist-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-v15-latin-variable.woff2') format('woff2-variations'),
       url('../fonts/outfit-v15-latin-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  --farbe-gold:       #D4A017;
  --farbe-gold-dark:  #B8890F;
  --farbe-gold-hell:  #F0E4C0;
  --farbe-anthrazit:  #1C1C1C;
  --farbe-creme:      #F7F3ED;
  --farbe-weiss:      #FFFFFF;
  --farbe-grau:       #6B6B6B;
  --farbe-grau-hell:  #EBEBEB;
  --farbe-overlay:    rgba(28,28,28,0.55);

  --font-display: 'Urbanist', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --radius:       12px;
  --radius-btn:   6px;
  --max-width:    1100px;
  --section-py:   80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--farbe-anthrazit);
  background: var(--farbe-weiss);
  font-synthesis: weight style;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 0.5em 0;
  color: var(--farbe-anthrazit);
}

p { margin: 0 0 1em 0; }

a {
  color: var(--farbe-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--farbe-gold-dark); }

/* --- Layout Container ---------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--farbe-gold);
  margin-bottom: 18px;
}

.section-head { margin-bottom: 48px; }
.section-head.centered { text-align: center; }

h2.section-title {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 0;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--farbe-gold);
  color: var(--farbe-weiss);
  border-color: var(--farbe-gold);
}
.btn-primary:hover { background: var(--farbe-gold-dark); border-color: var(--farbe-gold-dark); color: var(--farbe-weiss); }

.btn-secondary {
  background: transparent;
  color: var(--farbe-gold);
  border-color: var(--farbe-gold);
}
.btn-secondary:hover { background: var(--farbe-gold-hell); color: var(--farbe-gold-dark); }

.btn-on-dark-primary {
  background: var(--farbe-weiss);
  color: var(--farbe-gold);
  border-color: var(--farbe-weiss);
}
.btn-on-dark-primary:hover { background: var(--farbe-gold-hell); color: var(--farbe-gold-dark); }

.btn-on-dark-secondary {
  background: transparent;
  color: var(--farbe-weiss);
  border-color: var(--farbe-weiss);
}
.btn-on-dark-secondary:hover { background: rgba(255,255,255,0.1); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--farbe-weiss);
}
.link-arrow:hover { color: var(--farbe-gold-hell); }

/* --- Header / Navigation ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--farbe-weiss);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  border-bottom-color: var(--farbe-grau-hell);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.nav-brand img {
  max-height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--farbe-anthrazit);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--farbe-gold); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; }

/* Hamburger (identisch zur Prompt-Spezifikation) */
.hamburger {
  z-index: 1100;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--farbe-anthrazit);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: var(--farbe-weiss);
  padding: 96px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1050;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--farbe-anthrazit);
  border-bottom: 1px solid var(--farbe-grau-hell);
}
.mobile-menu a:hover { color: var(--farbe-gold); }
.mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
  display: flex;
  font-size: 16px;
  padding: 14px 24px;
  white-space: normal;
  text-align: center;
  border-bottom: none;
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--farbe-weiss);
  padding: 120px 0 100px;
  overflow: hidden;
  background: #2A2420;
  background-image: linear-gradient(var(--farbe-overlay), var(--farbe-overlay)), url('../images/hero-steine.webp');
  background-size: cover;
  background-position: center;
}

.hero .container {
  display: block;
  max-width: 820px;
}
.hero-text { max-width: 720px; }

.hero-text .eyebrow {
  color: var(--farbe-gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1.4;
  color: var(--farbe-weiss);
  margin-bottom: 24px;
}

.hero .sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-disclaimer {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hero-portrait {
  display: flex;
  justify-content: center;
}
.hero-portrait img {
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* --- Problem Section ----------------------------------------------------- */
.section-problem { background: var(--farbe-creme); }

.section-problem h2 {
  font-size: clamp(28px, 4vw, 38px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pain-card {
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-grau-hell);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.pain-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--farbe-gold);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 16px;
  color: var(--farbe-anthrazit);
  margin: 0;
  line-height: 1.6;
}

.ueberleitung {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.ueberleitung .line {
  width: 60px;
  height: 2px;
  background: var(--farbe-gold);
}
.ueberleitung p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--farbe-gold);
  max-width: 680px;
  margin: 0;
}

/* --- Solution Section ---------------------------------------------------- */
.section-loesung { background: var(--farbe-weiss); }
.section-loesung .intro-copy {
  max-width: 720px;
  margin: 24px auto 56px;
  text-align: center;
  font-size: 18px;
  color: var(--farbe-anthrazit);
}

.ergebnis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ergebnis-box {
  position: relative;
  background: var(--farbe-weiss);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  overflow: hidden;
}
.ergebnis-box::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--farbe-gold);
}
.ergebnis-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.ergebnis-box p {
  font-size: 16px;
  color: var(--farbe-grau);
  margin: 0;
  line-height: 1.6;
}

/* --- About / Beweis ------------------------------------------------------ */
.section-ueber-mich {
  background: var(--farbe-anthrazit);
  color: var(--farbe-weiss);
}
.section-ueber-mich h2 { color: var(--farbe-weiss); }
.section-ueber-mich .eyebrow { color: var(--farbe-gold); }

.ueber-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: center;
}
.ueber-portrait img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  outline: 3px solid var(--farbe-gold);
  outline-offset: 6px;
  margin: 0 auto;
}
.ueber-text p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
}
.ueber-text .quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--farbe-gold);
  font-style: italic;
  margin-top: 20px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.badge {
  border: 1px solid rgba(212,160,23,0.5);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--farbe-weiss);
  background: rgba(255,255,255,0.03);
}

.ueber-cta { margin-top: 40px; }

/* --- Offer Section ------------------------------------------------------- */
.section-angebot { background: var(--farbe-creme); }

.schritte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.schritt {
  text-align: center;
  position: relative;
}
.schritt-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--farbe-gold);
  margin-bottom: 12px;
  line-height: 1.25;
}
.schritt h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.schritt p {
  font-size: 16px;
  color: var(--farbe-grau);
  margin: 0;
  line-height: 1.6;
}

.trenner {
  width: 80px;
  height: 2px;
  background: var(--farbe-gold);
  margin: 72px auto 32px;
}

.angebot-zwischentitel {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin: 0 0 32px;
}

.leistungen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 900px;
  margin: 0 auto 40px;
  list-style: none;
  padding: 0;
}
.leistungen li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.6;
}
.leistungen li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A017' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.hinweis {
  text-align: center;
  font-size: 15px;
  color: var(--farbe-grau);
  margin-bottom: 32px;
}

.cta-block { text-align: center; }
.cta-block .btn { margin-bottom: 12px; }
.cta-block .cta-sub {
  display: block;
  font-size: 15px;
  color: var(--farbe-grau);
  margin-top: 8px;
}

/* --- FAQ ----------------------------------------------------------------- */
.section-faq { background: var(--farbe-weiss); }

.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--farbe-grau-hell);
}
.faq-item:first-child { border-top: 1px solid var(--farbe-grau-hell); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--farbe-anthrazit);
}
.faq-q:hover { color: var(--farbe-gold); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--farbe-gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--farbe-grau);
  max-width: 720px;
}

/* --- Final CTA ----------------------------------------------------------- */
.section-final-cta {
  background: linear-gradient(135deg, var(--farbe-gold) 0%, var(--farbe-gold-dark) 100%);
  color: var(--farbe-weiss);
  text-align: center;
}
.section-final-cta h2 {
  color: var(--farbe-weiss);
  font-size: clamp(28px, 4.5vw, 40px);
  max-width: 820px;
  margin: 0 auto 20px;
}
.section-final-cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--farbe-anthrazit);
  color: var(--farbe-weiss);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: var(--farbe-gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-brand img { display: none; }
.footer-brand::before {
  content: "Gesa Heiten";
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.35;
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 15px; margin: 0; }

.footer-nav ul, .footer-kontakt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-kontakt a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}
.footer-nav a:hover, .footer-kontakt a:hover { color: var(--farbe-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--farbe-gold); }

/* --- Cookie Banner ------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--farbe-anthrazit);
  color: var(--farbe-weiss);
  padding: 20px 24px;
  z-index: 1200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  border-top: 3px solid var(--farbe-gold);
  font-family: var(--font-body);
}
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-buttons .btn { padding: 10px 18px; font-size: 14px; }

/* --- Über-Seite ---------------------------------------------------------- */
.ueber-hero {
  background: var(--farbe-creme);
  padding: 80px 0 60px;
  text-align: center;
}
.ueber-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
}
.ueber-zweispaltig {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 24px;
}
.ueber-zweispaltig .portrait img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.ueber-zweispaltig p { font-size: 17px; color: var(--farbe-anthrazit); }

.ueber-zitat {
  background: var(--farbe-creme);
  border-left: 4px solid var(--farbe-gold);
  padding: 24px 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--farbe-anthrazit);
  line-height: 1.4;
}
.ueber-zitat cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--farbe-grau);
  margin-top: 12px;
}

.qualifikationen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.qualifikation {
  border: 1px solid var(--farbe-grau-hell);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.5;
  background: var(--farbe-weiss);
}
.qualifikation strong {
  display: block;
  color: var(--farbe-gold);
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 4px;
}

/* --- Magazin ------------------------------------------------------------- */
.magazin-hero {
  background: var(--farbe-creme);
  padding: 80px 0 40px;
}
.magazin-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
}
.magazin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.magazin-card {
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-grau-hell);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.magazin-card .magazin-thumb {
  display: block;
  margin: -32px -32px 8px -32px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--farbe-creme);
}
.magazin-card .magazin-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.magazin-card:hover .magazin-thumb img {
  transform: scale(1.03);
}
.magazin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.magazin-card .date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--farbe-gold);
}
.magazin-card h2 {
  font-size: 22px;
  margin: 0;
}
.magazin-card p {
  color: var(--farbe-grau);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.magazin-card .weiterlesen {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--farbe-gold);
  margin-top: 8px;
}

/* --- Presse -------------------------------------------------------------- */
.presse-hero {
  background: var(--farbe-creme);
  padding: 80px 0 40px;
}
.presse-hero h1 { font-size: clamp(32px, 5vw, 48px); }

.presse-section { padding: 60px 0; }
.presse-section h2 { font-size: 28px; margin-bottom: 16px; }
.presse-subtext { color: var(--farbe-grau); max-width: 720px; margin-bottom: 32px; }

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.download-card {
  border: 1px solid var(--farbe-grau-hell);
  border-radius: var(--radius);
  background: var(--farbe-weiss);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.download-preview {
  aspect-ratio: 4 / 3;
  background: var(--farbe-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.download-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download-preview.logo-preview img {
  object-fit: contain;
  padding: 24px;
}
.download-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.download-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
}
.download-body .format {
  font-size: 14px;
  color: var(--farbe-grau);
}
.download-body .btn {
  margin-top: auto;
  padding: 10px 16px;
  font-size: 14px;
}

.presse-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
.presse-kontakt address,
.presse-beleg {
  background: var(--farbe-creme);
  border-radius: var(--radius);
  padding: 28px;
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
}
.presse-beleg h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

/* --- Blog-Platzhalter ---------------------------------------------------- */
.blog-placeholder {
  padding: 120px 0;
  text-align: center;
}
.blog-placeholder .container {
  max-width: 720px;
}
.blog-placeholder .eyebrow {
  margin-bottom: 16px;
}
.blog-placeholder h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.blog-placeholder .teaser {
  font-size: 18px;
  color: var(--farbe-grau);
  margin-bottom: 32px;
}
.blog-placeholder .hinweis-box {
  border: 1px solid var(--farbe-gold);
  border-radius: var(--radius);
  background: var(--farbe-gold-hell);
  padding: 20px 24px;
  color: var(--farbe-anthrazit);
  margin-bottom: 32px;
}

/* --- Blog-Artikel -------------------------------------------------------- */
.article-image {
  margin: 0;
  background: var(--farbe-creme);
  line-height: 0;
}
.article-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.article-hero {
  background: var(--farbe-creme);
  padding: 72px 0 48px;
}
.article-image + .article-hero {
  padding-top: 48px;
}
.article-hero .container { max-width: 820px; }
.article-hero .eyebrow { margin-bottom: 16px; }
.article-hero h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.4;
  margin-bottom: 20px;
}
.article-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--farbe-grau);
  font-family: var(--font-body);
}
.article-hero .article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-hero .article-meta strong { color: var(--farbe-anthrazit); font-weight: 500; }

.article-body { padding: 48px 0 64px; background: var(--farbe-weiss); }
.article-body .container { max-width: 720px; }

.article-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--farbe-anthrazit);
  font-weight: 500;
  margin: 0 0 32px;
}

.toc {
  background: var(--farbe-creme);
  border-left: 3px solid var(--farbe-gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 48px;
}
.toc h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--farbe-gold);
  margin: 0 0 14px;
}
.toc ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc li { font-size: 15px; line-height: 1.5; }
.toc a {
  color: var(--farbe-anthrazit);
  border-bottom: 1px solid transparent;
}
.toc a:hover { color: var(--farbe-gold); border-bottom-color: var(--farbe-gold); }

.article-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 48px 0 16px;
  scroll-margin-top: 90px;
}
.article-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--farbe-anthrazit);
  margin: 0 0 18px;
}
.article-content ul,
.article-content ol {
  font-size: 17px;
  line-height: 1.75;
  color: var(--farbe-anthrazit);
  margin: 0 0 24px;
  padding-left: 22px;
}
.article-content li { margin-bottom: 8px; }
.article-content a {
  color: var(--farbe-gold);
  border-bottom: 1px solid var(--farbe-gold-hell);
}
.article-content a:hover {
  color: var(--farbe-gold-dark);
  border-bottom-color: var(--farbe-gold);
}
.article-content blockquote {
  border-left: 3px solid var(--farbe-gold);
  margin: 28px 0;
  padding: 8px 0 8px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--farbe-anthrazit);
  font-style: italic;
}

.article-faq {
  margin: 56px 0 0;
  padding-top: 48px;
  border-top: 1px solid var(--farbe-grau-hell);
}
.article-faq h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
.article-faq details {
  border-bottom: 1px solid var(--farbe-grau-hell);
  padding: 16px 0;
}
.article-faq details:first-of-type { border-top: 1px solid var(--farbe-grau-hell); }
.article-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--farbe-anthrazit);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: '+';
  font-family: var(--font-display);
  color: var(--farbe-gold);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.article-faq details[open] summary::after { content: '−'; }
.article-faq summary:hover { color: var(--farbe-gold); }
.article-faq details p {
  margin: 12px 0 4px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--farbe-grau);
}

.article-cta {
  margin: 56px 0 0;
  padding: 36px;
  background: var(--farbe-creme);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h2 {
  font-size: 24px;
  margin: 0 0 12px;
}
.article-cta p {
  color: var(--farbe-grau);
  margin: 0 0 20px;
  font-size: 16px;
}
.article-cta .btn { margin: 0; }

.article-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--farbe-grau-hell);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 520px) {
  .article-cta { padding: 24px 20px; }
  .article-lead { font-size: 18px; }
}

/* --- Impressum / Datenschutz -------------------------------------------- */
.legal-page {
  padding: 80px 0;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 36px; margin-bottom: 32px; }
.legal-page h2 { font-size: 22px; margin: 40px 0 12px; }
.legal-page p, .legal-page li { font-size: 16px; line-height: 1.7; color: var(--farbe-anthrazit); }
.legal-page ul { padding-left: 22px; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .nav-links,
  .nav-cta .btn { display: none; }
  .hamburger { display: block; }

  .hero { padding: 80px 0 72px; }

  .pain-grid,
  .ergebnis-grid,
  .schritte,
  .leistungen,
  .badges,
  .magazin-grid,
  .download-grid,
  .qualifikationen,
  .ueber-grid,
  .ueber-zweispaltig,
  .presse-kontakt-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .badges { gap: 10px; }

  .ueber-portrait img { max-width: 280px; }

  .trenner { margin: 48px auto 24px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 32px; }
  .hero .sub { font-size: 16px; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .final-cta-buttons { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-buttons .btn { flex: 1; }
}

/* ========================================================
   PRESSEMITTEILUNG – Detailseiten und Übersichts-Cards
   ======================================================== */
.pm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: rgba(28,28,28,0.7);
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28,28,28,0.12);
}
.pm-meta strong { color: var(--farbe-anthrazit); font-weight: 600; }
.pm-meta span { display: inline-flex; align-items: center; gap: 6px; }

.pm-boilerplate {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--farbe-creme);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}
.pm-boilerplate h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--farbe-anthrazit);
}
.pm-boilerplate p { margin: 0 0 10px; font-size: 16px; color: var(--farbe-anthrazit); }
.pm-boilerplate p:last-child { margin-bottom: 0; }

.pm-pressekontakt {
  margin-top: 24px;
  padding: 24px 32px;
  border: 1px solid rgba(28,28,28,0.12);
  border-radius: 4px;
}
.pm-pressekontakt h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--farbe-anthrazit);
}
.pm-pressekontakt address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--farbe-anthrazit);
}
.pm-pressekontakt a { color: var(--gold); text-decoration: none; }
.pm-pressekontakt a:hover { text-decoration: underline; }

/* Übersichts-Liste auf presse/index.html */
.pm-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.pm-list-card {
  display: block;
  padding: 24px 28px;
  background: var(--farbe-weiss);
  border: 1px solid rgba(28,28,28,0.10);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pm-list-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.pm-list-card .pm-date {
  font-size: 13px;
  color: rgba(28,28,28,0.6);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.pm-list-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin: 8px 0 10px;
  color: var(--farbe-anthrazit);
}
.pm-list-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(28,28,28,0.8);
}
.pm-list-card .pm-readmore {
  display: inline-block;
  margin-top: 14px;
  font-weight: 500;
  color: var(--gold);
}

/* Zurück-Link auf Detailseiten */
.pm-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(28,28,28,0.7);
  text-decoration: none;
}
.pm-back:hover { color: var(--gold); }

@media (max-width: 520px) {
  .pm-boilerplate, .pm-pressekontakt { padding: 20px 22px; }
  .pm-list-card { padding: 20px 22px; }
  .pm-list-card h3 { font-size: 19px; }
}

/* =========================================================================
   BUCH-LP — Erweiterungen Setup 06-2026
   ========================================================================= */

/* --- Hero Buch (zweispaltig: Cover-Platzhalter + Text) -------------------- */
.hero-buch {
  background: linear-gradient(180deg, var(--farbe-creme) 0%, #FAF6EE 100%);
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-buch .hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-buch .hero-text h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.35;
  margin-bottom: 18px;
}
.hero-buch .hero-text .sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(28,28,28,0.85);
  margin-bottom: 26px;
  max-width: 560px;
}
.hero-buch .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}
.hero-buch .hero-disclaimer {
  font-size: 14px;
  color: rgba(28,28,28,0.6);
  margin: 0;
}

/* Buchcover-Platzhalter — Buchformat 2:3 in CI-Gold */
/* Vorläufiges Buch-Cover mit Steinkreis-Motiv */
.book-cover {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.book-cover-inner {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 3px 7px 7px 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 42px 30px 34px;
  color: #fff;
  font-family: var(--font-display);
  background-image:
    linear-gradient(180deg, rgba(28,28,28,0.58) 0%, rgba(28,28,28,0.32) 42%, rgba(28,28,28,0.82) 100%),
    url('../images/hero-steine.webp');
  background-size: cover;
  background-position: center;
  box-shadow:
    0 26px 60px rgba(28,28,28,0.30),
    0 10px 22px rgba(28,28,28,0.16);
}
/* Buchrücken-Schatten links */
.book-cover-inner::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 16px;
  background: linear-gradient(90deg, rgba(0,0,0,0.34), rgba(0,0,0,0));
  pointer-events: none;
}
.book-cover .bc-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--farbe-gold-hell);
}
.book-cover .bc-title-wrap {
  margin-top: auto;
  margin-bottom: auto;
}
.book-cover .bc-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.book-cover .bc-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--farbe-gold);
  margin: 16px 0;
}
.book-cover .bc-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  color: rgba(255,255,255,0.92);
}
.book-cover .bc-author {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
/* Diagonal-Ribbon „Vorläufiges Cover" */
.book-cover .bc-ribbon {
  position: absolute;
  top: 44px;
  right: -46px;
  background: var(--farbe-gold);
  color: var(--farbe-anthrazit);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 48px;
  transform: rotate(38deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  z-index: 2;
}
.book-cover .bc-caption {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(28,28,28,0.6);
}

/* --- Sektion Worum es geht (intro + 2-spaltig "Was du findest / Was nicht") --- */
.section-buch-worum { background: var(--farbe-weiss); }
.section-buch-worum .intro-copy {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(28,28,28,0.88);
}
.findest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}
.findest-box {
  padding: 32px 30px;
  border-radius: 10px;
  border: 1px solid rgba(28,28,28,0.10);
  background: var(--farbe-creme);
}
.findest-box.no {
  background: #fff;
  border-style: dashed;
  border-color: rgba(28,28,28,0.18);
}
.findest-box h3 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--farbe-anthrazit);
}
.findest-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.findest-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.55;
}
.findest-box.yes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--farbe-gold);
  font-weight: 700;
}
.findest-box.no li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(28,28,28,0.35);
  font-weight: 700;
}

/* --- Inhalt im Überblick — 7 Kapitel als nummerierte Karten ------------- */
.section-kapitel { background: var(--farbe-creme); }
.kapitel-liste {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.kapitel-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
  background: var(--farbe-weiss);
  border-radius: 8px;
  border: 1px solid rgba(28,28,28,0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.kapitel-item:hover { border-color: var(--farbe-gold); transform: translateY(-1px); }
.kapitel-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--farbe-gold);
  line-height: 1;
  padding-top: 6px;
}
.kapitel-num.vorwort {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--farbe-gold-dark);
  padding-top: 12px;
}
.kapitel-body h3 {
  font-size: 20px;
  margin: 0 0 6px 0;
  color: var(--farbe-anthrazit);
}
.kapitel-body p {
  margin: 0;
  font-size: 15.5px;
  color: rgba(28,28,28,0.78);
  line-height: 1.55;
}

/* --- Pull Quotes ---------------------------------------------------------- */
.section-zitate {
  background: var(--farbe-anthrazit);
  color: var(--farbe-weiss);
}
.section-zitate .eyebrow { color: var(--farbe-gold-hell); }
.section-zitate h2 { color: var(--farbe-weiss); }
.zitat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.zitat-card {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--farbe-gold);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
}
.zitat-card p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  color: var(--farbe-weiss);
}
.zitat-card .zitat-q {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  font-style: normal;
  display: block;
  font-family: var(--font-body);
}

/* --- Brücke zum Council-Format ------------------------------------------ */
.section-bruecke { background: var(--farbe-gold-hell); }
.section-bruecke .container { max-width: 920px; }
.section-bruecke .section-head h2 { color: var(--farbe-anthrazit); }
.bruecke-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(28,28,28,0.88);
}
.bruecke-merkmale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.bruecke-merkmal {
  text-align: center;
  padding: 22px 18px;
  background: rgba(255,255,255,0.55);
  border-radius: 8px;
}
.bruecke-merkmal strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--farbe-gold-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.bruecke-merkmal span {
  font-size: 14.5px;
  color: rgba(28,28,28,0.78);
  line-height: 1.5;
}
.bruecke-cta {
  text-align: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Beweis-Block (Autorin) Buch-Variante ------------------------------- */
.section-buch-autorin .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}
.section-buch-autorin .badge {
  font-size: 13.5px;
  padding: 8px 16px;
  background: var(--farbe-gold-hell);
  color: var(--farbe-gold-dark);
  border-radius: 999px;
  font-weight: 500;
  font-family: var(--font-body);
}
.huether-hinweis {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--farbe-creme);
  border-left: 3px solid var(--farbe-gold);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(28,28,28,0.85);
}
.huether-hinweis strong { color: var(--farbe-gold-dark); }

/* --- Über-Seite (schlanke Variante) ------------------------------------- */
.section-ueber-page { padding: 70px 0 90px; }
.section-ueber-page .ueber-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.section-ueber-page .ueber-portrait img {
  width: 100%;
  border-radius: 8px;
}
.section-ueber-page h1 {
  font-size: clamp(28px, 3.8vw, 38px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-ueber-page .vita p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(28,28,28,0.88);
}
.section-ueber-page .vita .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--farbe-gold-dark);
  border-left: 3px solid var(--farbe-gold);
  padding-left: 18px;
  margin: 24px 0;
}
.section-ueber-page .ueber-link {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 24px;
  border: 2px solid var(--farbe-gold);
  color: var(--farbe-gold);
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.section-ueber-page .ueber-link:hover {
  background: var(--farbe-gold);
  color: var(--farbe-weiss);
}

/* --- Magazin-Übersicht (V1 mit Platzhalter) ----------------------------- */
.section-magazin-uebersicht { padding: 70px 0 90px; }
.magazin-empty {
  text-align: center;
  max-width: 580px;
  margin: 56px auto 0;
  padding: 36px 32px;
  background: var(--farbe-creme);
  border-radius: 10px;
  border: 1px dashed rgba(28,28,28,0.18);
}
.magazin-empty h3 {
  font-size: 22px;
  color: var(--farbe-anthrazit);
  margin-bottom: 12px;
}
.magazin-empty p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(28,28,28,0.75);
}

/* --- Social-Icons im Footer --------------------------------------------- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(28,28,28,0.04);
  color: var(--farbe-anthrazit);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--farbe-gold); color: var(--farbe-weiss); }
.footer-social svg { width: 18px; height: 18px; }

/* --- Service-Link Lead Butler im Footer --------------------------------- */
.footer-service {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(28,28,28,0.55);
}
.footer-service a {
  color: rgba(28,28,28,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-service a:hover { color: var(--farbe-gold-dark); }

/* =========================================================================
   LEGAL-PAGES (Impressum + Datenschutz via easyrechtssicher-Widget)
   <body class="legal-page"> ist der Marker — NICHT am <main>!
   ========================================================================= */
body.legal-page main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-family: var(--font-body);
  color: var(--farbe-anthrazit);
  line-height: 1.7;
}
body.legal-page main h1 {
  font-size: clamp(28px, 3.6vw, 34px);
  margin-bottom: 28px;
}
body.legal-page main h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}
body.legal-page main p { margin: 0 0 12px 0; }
body.legal-page main a {
  color: var(--farbe-gold);
  text-decoration: underline;
}

/* Responsive Anpassungen Buch-LP ----------------------------------------- */
@media (max-width: 860px) {
  /* F1 (Audit 18.06): Cover bleibt zuerst, aber kompakter — H1 + Warteliste-CTA
     mobil ohne langes Scrollen erreichbar (primärer CTA näher an die Falz). */
  .hero-buch { padding-top: 36px; padding-bottom: 56px; }
  .hero-buch .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-buch .hero-grid .book-cover { order: -1; max-width: 196px; }
  .section-ueber-page .ueber-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-ueber-page .ueber-portrait { max-width: 320px; margin: 0 auto; }
  .zitat-grid { grid-template-columns: 1fr; }
  .findest-grid { grid-template-columns: 1fr; }
  .bruecke-merkmale { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  /* F1: auf dem Handy Cover weiter verkleinern, damit H1 + CTA in den ersten
     Viewport rücken. Cover-zuerst bleibt erhalten (bei einem Buch legitim). */
  .hero-buch .hero-grid .book-cover { max-width: 158px; }
  .book-cover-inner { padding: 24px 20px 22px; }
  .book-cover .bc-title { font-size: 26px; }
  .book-cover .bc-sub { font-size: 12px; }
  .book-cover .bc-ribbon { top: 32px; right: -42px; padding: 4px 42px; font-size: 9px; }
  .book-cover .bc-caption { font-size: 11.5px; }
  .kapitel-item { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 22px; }
  .kapitel-num { font-size: 26px; }
  .zitat-card { padding: 22px 24px; }
  .zitat-card p { font-size: 17px; }
}
