/* ===============================================================
   Katrin Swart – The Way Back to Happiness
   Gemeinsames Stylesheet für alle Seiten
   =============================================================== */

/* ---------------------------------------------------------------
   Lokale Schriften (self-hosted / woff2) – DSGVO-freundlich,
   keine Übertragung an Google beim Seitenaufruf
   --------------------------------------------------------------- */
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/lato-v25-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/lato-v25-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/lato-v25-latin-italic.woff2') format('woff2'); }

@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/playfair-display-v40-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 700; font-display: swap; src: url('fonts/playfair-display-v40-latin-700italic.woff2') format('woff2'); }

@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'); }

@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/dancing-script-v29-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/dancing-script-v29-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/dancing-script-v29-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/dancing-script-v29-latin-700.woff2') format('woff2'); }

/* ---------------------------------------------------------------
   Design Tokens
   --------------------------------------------------------------- */
:root {
  /* Markenfarben */
  --sand:        #EFE3CF;   /* Hintergründe, Flächen (~50%) */
  --sand-deep:   #E9DBC3;   /* sanfter Cremeton – weicher Wechsel zu Sand */
  --petrol:      #235A6B;   /* Headlines, Buttons, Akzente (~20%) */
  --petrol-dark: #1B4A58;   /* Hover für Buttons */
  --ink:         #233238;   /* Fließtext, Ränder (~15%) */
  --aqua:        #5E9AA0;   /* Links, Hover, freundliche Akzente (~10%) */
  --gold:        #C9A24B;   /* Highlights, Sterne, CTA-Akzent (~5%) */
  --gold-deep:   #9A7B2E;   /* dunkleres Gold für Text auf hellem Grund */

  --white:       #FBF7EF;   /* sehr helles Sand-Weiß für Karten */

  /* Schriften */
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', 'Segoe Script', cursive;

  /* Maße */
  --maxw: 1080px;
  --radius: 20px;
  --shadow-soft: 0 18px 50px -22px rgba(35, 50, 56, 0.28);
  --shadow-card: 0 14px 38px -24px rgba(35, 50, 56, 0.32);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--aqua); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--petrol); text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-head); color: var(--petrol); font-weight: 600; line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); }

p { margin: 0 0 1.1em; }

/* Sichtbarer, ruhiger Fokuszustand (Tastatur) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Für Screenreader, optisch versteckt */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--petrol); color: #fff; padding: 0.7em 1.1em;
  z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------
   Layout-Helfer
   --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section-sand-deep { background: var(--sand-deep); }
.section-petrol { background: var(--petrol); color: var(--white); }
.section-petrol h2,
.section-petrol h3 { color: var(--white); }

.center { text-align: center; }
.measure { max-width: 56ch; margin-left: auto; margin-right: auto; }

.kicker {
  font-family: var(--font-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--aqua);
  margin: 0 0 1rem;
}
.section-petrol .kicker { color: var(--gold); }

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1;
}

/* dezente goldene Trennzierde */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; color: var(--gold); margin: 1.2rem 0 0;
}
.ornament::before,
.ornament::after {
  content: ""; height: 1px; width: 48px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament .star { font-size: 0.9rem; display: inline-flex; align-items: center; line-height: 0; }
.ornament .star svg { display: block; }
.ornament-top { margin: 0 0 1.1rem; }

/* „Methode" gesperrt in Gold unter der Programm-Überschrift */
.method-word {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.92rem;
  margin: -0.2rem 0 0;
}

/* ---------------------------------------------------------------
   Buttons / CTA
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--petrol);
  color: #fff;
  box-shadow: 0 8px 22px -12px rgba(35, 90, 107, 0.9);
}
.btn-primary:hover {
  background: var(--petrol-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(35, 90, 107, 0.95);
}
.btn-primary .star { color: var(--gold); }
/* goldener 5-Zack-Stern (SVG) in Buttons sauber ausrichten */
.btn .star, .footer-cta .star { display: inline-flex; align-items: center; }
.btn .star svg, .footer-cta .star svg { display: block; }

/* Auf petrolfarbenem Grund bleibt der Petrol-Button durch goldenen Rand sichtbar */
.section-petrol .btn-primary {
  border-color: var(--gold);
  box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
  padding: 0.6em 1.2em;
  font-size: 0.85rem;
}
.btn-ghost:hover { background: var(--petrol); color: #fff; text-decoration: none; }

/* ---------------------------------------------------------------
   Platzhalter-Bildflächen
   --------------------------------------------------------------- */
.ph-image {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  background:
    linear-gradient(135deg, rgba(94,154,160,0.16), rgba(35,90,107,0.20)),
    var(--sand-deep);
  border: 1px dashed rgba(35, 90, 107, 0.4);
  border-radius: var(--radius);
  color: var(--petrol);
  text-align: center;
  padding: 1.5rem;
  min-height: 240px;
  overflow: hidden;
}
.ph-image .ph-star { font-size: 1.6rem; color: var(--gold); }
.ph-image .ph-text {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  max-width: 24ch;
  line-height: 1.5;
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   Header & Navigation
   --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 227, 207, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(35, 90, 107, 0.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  max-width: var(--maxw); margin: 0 auto;
}

/* Text-Wortmarke (zweizeilig) */
.wordmark { line-height: 1.05; text-decoration: none; display: block; }
.wordmark:hover { text-decoration: none; }
.wordmark .name {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--petrol);
  display: block;
}
.wordmark .sub {
  font-family: var(--font-script);
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--aqua);
  display: block;
  line-height: 1.1;
  margin-top: 0.1rem;
}
/* Namenslogo als Bild im Header */
.brand-logo { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo img { height: 80px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo img { height: 58px; } }

/* Scharfe Text-Wortmarke im Header (Logo-Stil) */
.wortmarke {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 0.25em; text-decoration: none; line-height: 1;
}
.wortmarke:hover { text-decoration: none; }
.wm-name {
  display: inline-flex; align-items: flex-start; gap: 0.12em;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--petrol);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.wm-star { margin-top: -0.35em; }
.wm-star svg { display: block; }
.wm-sub {
  font-family: var(--font-head);
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--petrol);
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
  padding-bottom: 0.28em;
  border-bottom: 1.6px solid var(--gold);
}
.wm-dot { color: var(--gold); }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0.15rem; }
.main-nav .nav-link {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--petrol);
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav .nav-link:hover { background: rgba(35, 90, 107, 0.1); color: var(--petrol); text-decoration: none; }
/* Header-CTA nutzt exakt denselben Button-Stil wie alle anderen (.btn .btn-primary) */
.main-nav .nav-cta {
  margin-left: 0.5rem;
  white-space: nowrap;
}

/* Hamburger-Button */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 0.5rem; color: var(--petrol);
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Navigation (Hamburger) */
@media (max-width: 1039px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0.2rem;
    background: var(--sand);
    border-bottom: 1px solid rgba(35, 90, 107, 0.14);
    box-shadow: var(--shadow-soft);
    padding: 0.6rem 1.4rem 1.1rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { padding: 0.75rem 0.6rem; border-radius: 8px; font-size: 1rem; }
  .main-nav .nav-cta { margin: 0.5rem 0 0; width: 100%; }
}

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-anrede {
  font-family: var(--font-script);
  color: var(--aqua);
  font-size: clamp(1.5rem, 4.2vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
}
.hero h1 { margin-bottom: 0.5em; }
.hero .subline {
  font-size: 1.1rem;
  max-width: 50ch;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.hero .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.hero .script-line { margin-top: 0.6rem; }

/* einzeilige Script-Zeile (darf nicht umbrechen) */
.script-oneline {
  white-space: nowrap;
  font-size: clamp(0.9rem, 4vw, 1.65rem);
}

.hero-figure { margin: 0; max-width: 420px; justify-self: center; }
.hero-figure .ph-image { min-height: 320px; }

/* Gemeinsamer Bildrahmen: festes Seitenverhältnis 4:5, Bild mittig zugeschnitten */
.img-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 2px solid var(--petrol);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
}

/* ---------------------------------------------------------------
   Einfühlung – Liste mit Sternen
   --------------------------------------------------------------- */
.feel-list {
  list-style: none; padding: 0; margin: 2rem auto 1.6rem;
  max-width: 60ch;
  display: grid; gap: 0.9rem;
}
.feel-list li {
  position: relative;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: left;
}
.feel-list li::before {
  content: "✦";
  position: absolute; left: 1.1rem; top: 0.9rem;
  color: var(--gold);
  font-size: 1rem;
}
.feel-closing {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--petrol);
  max-width: 48ch;
  margin: 0 auto;
}

/* ---------------------------------------------------------------
   Hoffnung / Wende (petrol)
   --------------------------------------------------------------- */
.hope-text {
  font-size: 1.2rem;
  max-width: 54ch;
  margin: 0 auto;
}
.hope-text .next-line {
  display: block;
  font-weight: 400;
}
/* persönlicher, emotionaler Einstieg (Hoffnungs-Sektion) */
.hope-intro {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 1.6rem;
}
/* kurze warme Zeile über dem Abschluss-Button */
.cta-lead {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

/* ---------------------------------------------------------------
   Über mich
   --------------------------------------------------------------- */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.about-figure { margin: 0; max-width: 420px; }
.about-figure figcaption {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.6rem;
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1;
}
@media (min-width: 820px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
  .about-figure { justify-self: center; }
}

/* ---------------------------------------------------------------
   Leistungen – „Was dich auf diesem Weg trägt"
   --------------------------------------------------------------- */
/* Zwischenüberschrift als breites Banner (Sektions-Überschrift, kein Button) */
.section-banner {
  display: block;
  width: 100%;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--petrol);
  text-align: center;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius);
  margin: 0 0 1.4rem;
  /* bewusst ohne Hover/Cursor – es ist eine Überschrift, kein Button */
}

/* Leistungen mit zartem Steg-Hintergrundbild */
.leistungen {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 3rem;
}
.leistungen::before {
  content: "";
  position: absolute; inset: 0;
  background: url('steg_hintergrund.jpg') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
/* heller Sand-Verlauf darüber, damit der Text klar lesbar bleibt */
.leistungen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(239,227,207,0.55), rgba(239,227,207,0.25));
  pointer-events: none;
}
.leistungen > * { position: relative; z-index: 1; }

.benefits {
  display: grid; gap: 1.7rem;
  grid-template-columns: 1fr;
  margin-top: 2.4rem;
  text-align: left;
}
/* Reihe 1: vier Standard-Leistungen */
@media (min-width: 560px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .benefits { grid-template-columns: repeat(4, 1fr); } }

/* Reihe 2: drei geschenkte Leistungen (Add-ons), zentriert */
.benefits-addons {
  display: grid; gap: 1.7rem;
  grid-template-columns: 1fr;
  margin-top: 1.7rem;
  text-align: left;
}
@media (min-width: 560px) { .benefits-addons { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) {
  .benefits-addons {
    grid-template-columns: repeat(3, 1fr);
    max-width: 810px; margin-left: auto; margin-right: auto;
  }
}

.benefit {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 0.6rem;
  border: 1.5px solid transparent;
}
/* Icon + Titel nebeneinander in einer Kopfzeile */
.benefit .benefit-head {
  display: flex; align-items: center; gap: 0.8rem;
}
.benefit .b-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(35, 90, 107, 0.1);
  color: var(--petrol);
}
.benefit .b-icon svg { width: 23px; height: 23px; }
.benefit h3 { margin: 0; font-size: 1.15rem; line-height: 1.15; }
.benefit p { margin: 0; font-size: 1.0625rem; font-family: var(--font-body); }

/* Add-ons hervorheben (Gold) */
.benefit.is-addon {
  border-color: rgba(201, 162, 75, 0.55);
  background: linear-gradient(180deg, rgba(201,162,75,0.10), rgba(251,247,239,1) 60%);
}
.benefit.is-addon .b-icon {
  background: rgba(201, 162, 75, 0.2);
  color: var(--gold-deep);
}
.addon-label {
  align-self: flex-end;
  margin: -0.3rem -0.3rem 0 0;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  color: var(--ink);
  background: var(--gold);
  padding: 0.28em 0.7em;
  border-radius: 999px;
}

/* ---------------------------------------------------------------
   Module – „Dein Weg zurück, Schritt für Schritt"
   --------------------------------------------------------------- */
.cards {
  display: grid; gap: 1.7rem;
  grid-template-columns: 1fr;
  margin-top: 2.4rem;
}
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--aqua);
  display: flex; flex-direction: column;
  overflow: hidden;
  text-align: left;
}
.card.is-bonus { border-top-color: var(--gold); }
.card .module-label {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--petrol);
  margin: -1.3rem -1.3rem 1rem;
  padding: 0.7rem 1.3rem;
  background: rgba(35, 90, 107, 0.08);
  border-bottom: 1px solid rgba(35, 90, 107, 0.14);
}
.card.is-bonus .module-label {
  color: var(--gold-deep);
  background: rgba(201, 162, 75, 0.14);
  border-bottom-color: rgba(201, 162, 75, 0.28);
}
/* Kopfzeile: Icon + kursive Frage nebeneinander */
.card .module-head {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.card .m-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(35, 90, 107, 0.1);
  color: var(--petrol);
}
.card .m-icon svg { width: 22px; height: 22px; }
.card.is-bonus .m-icon { background: rgba(201, 162, 75, 0.18); color: var(--gold-deep); }
.card .quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--petrol);
  margin: 0;
  line-height: 1.25;
}
/* gesamter dunkler Fließtext in den Kacheln = Lato, einheitliche Größe */
.card p { font-family: var(--font-body); font-size: 1.0625rem; }
.card .senses { margin-bottom: 0.5rem; }
.card .senses strong { font-family: var(--font-body); font-weight: 700; color: var(--petrol); }
.card .result {
  padding-top: 0.3rem;
}
.card .result strong { font-family: var(--font-body); font-weight: 700; color: var(--aqua); }
.card.is-bonus .result strong { color: var(--gold-deep); }

/* ---------------------------------------------------------------
   So funktioniert's – Schritte
   --------------------------------------------------------------- */
.steps {
  display: grid; gap: 1.6rem; grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.step .num {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--petrol);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  box-shadow: 0 6px 16px -8px rgba(35, 90, 107, 0.8);
}
.step h3 { font-size: 1.2rem; }
.steps-cta { margin-top: 2.5rem; }

/* ---------------------------------------------------------------
   Für wen – Checkliste
   --------------------------------------------------------------- */
.for-list {
  list-style: none; padding: 0; margin: 2rem auto 0;
  max-width: 62ch;
  display: grid; gap: 0.85rem;
  text-align: left;
}
.for-list li {
  position: relative;
  padding-left: 2.4rem;
}
.for-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0.05rem;
  width: 1.6rem; height: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(94, 154, 160, 0.18);
  color: var(--petrol);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */
.faq { max-width: 740px; margin: 2.5rem auto 0; }
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  position: relative;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--petrol);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.4rem 1.3rem; }
.faq .faq-body p { margin: 0; }

/* ---------------------------------------------------------------
   Abschluss-CTA
   --------------------------------------------------------------- */
.final-cta .container { position: relative; }
.final-cta .btn { margin-top: 0.6rem; }
.final-cta .script-line { margin-top: 1.2rem; }

/* ---------------------------------------------------------------
   Inhaltsseiten (Über mich, Buch, Kontakt)
   --------------------------------------------------------------- */
.page-hero { padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.2rem); }
.page-hero .kicker { margin-bottom: 0.6rem; }
.prose { max-width: 64ch; margin: 0 auto; }
.prose.left { margin-left: 0; }
.prose p { margin: 0 0 1.2em; }
.prose-figure { margin: 0 0 2rem; }
.prose-figure .ph-image { min-height: 280px; }

.info-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  margin: 2rem auto 0;
  max-width: 64ch;
}

/* kompakteres Petrol-Band (nicht so hoch wie eine volle Sektion) */
.petrol-band { padding-top: clamp(2.6rem, 5vw, 3.6rem); padding-bottom: clamp(2.6rem, 5vw, 3.6rem); }

/* Hervorgehobene Aussage in Petrol-Bändern (Unterseiten) */
.band-statement {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: #fff;
  max-width: 46ch;
  margin: 0 auto;
}
/* Links in Petrol-Abschnitten gut sichtbar */
.section-petrol a { color: var(--gold); }
.section-petrol a:hover { color: #fff; }

/* Buch-Kopf: kleines Lato-Label ganz oben */
.book-toplabel {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--aqua);
  margin: 0 0 0.6rem;
}

/* Kontakt: E-Mail hell auf Petrol */
.contact-email-light {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  margin: 0.6rem 0 0.3rem;
}
.contact-email-light a { color: var(--gold); }
.contact-email-light a:hover { color: #fff; }

/* Newsletter-Box (Buchseite) */
.newsletter {
  max-width: 560px; margin: 3rem auto 0;
  background: var(--sand-deep);
  border: 1px solid rgba(35, 90, 107, 0.16);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
}
.newsletter h3 { margin-top: 0; }
.newsletter form { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.1rem; }
.newsletter input[type="email"] {
  flex: 1 1 240px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(35, 90, 107, 0.28);
  border-radius: 10px; background: var(--white);
}
.newsletter input[type="email"]:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(94,154,160,0.25); }
.newsletter .form-note { font-size: 0.82rem; color: rgba(35, 50, 56, 0.7); margin: 0.9rem 0 0; }
.info-box h3 { margin-top: 0; }

/* Kontaktformular */
.contact-form {
  max-width: 560px; margin: 2.4rem auto 0;
  display: grid; gap: 1rem;
  text-align: left;
}
.contact-form label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--petrol);
  display: block;
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(35, 90, 107, 0.28);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(94, 154, 160, 0.25);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: rgba(35,50,56,0.7); margin: 0; }

.contact-email {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--petrol);
}

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.82);
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.footer-wordmark { display: block; text-decoration: none; line-height: 1.1; margin-bottom: 0.4rem; }
.footer-wordmark:hover { text-decoration: none; }
.footer-wordmark .name { font-family: var(--font-head); color: var(--sand); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; display: block; }
.footer-wordmark .sub { font-family: var(--font-script); color: var(--gold); font-size: 1.2rem; display: block; line-height: 1.1; margin-top: 0.1rem; }
.footer-grid {
  display: grid; gap: 1.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
}
.site-footer a { color: var(--aqua); }
.site-footer a:hover { color: var(--gold); }
.footer-heading {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: rgba(251, 247, 239, 0.55);
  margin-bottom: 0.8rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: 1rem;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.85rem;
  color: #fff;
  background: var(--petrol);
  border: 1.5px solid var(--gold);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
}
.footer-cta .star { color: var(--gold); }
.footer-cta:hover { background: var(--petrol-dark); color: #fff; text-decoration: none; }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(251, 247, 239, 0.14);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem;
  align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(251, 247, 239, 0.55);
}
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------
   Mobiler fixierter CTA
   --------------------------------------------------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0));
  background: rgba(239, 227, 207, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(35, 90, 107, 0.18);
  box-shadow: 0 -8px 24px -18px rgba(35, 50, 56, 0.6);
}
.mobile-cta .btn { width: 100%; }
@media (min-width: 760px) { .mobile-cta { display: none; } }
/* etwas Luft am Seitenende, damit der fixe Button nichts verdeckt */
@media (max-width: 759px) { body { padding-bottom: 5rem; } }
