/* ============================================================
   herzimbauch — Doula Kira · Stylesheet
   Warme, ruhige Gestaltung: Creme, Lehm/Ton, Salbei
   ============================================================ */

:root {
  /* --- Farbwelt: Ton/Lehm (Standard) --- */
  --bg:        #F6EFE4;
  --bg-warm:   #F1E7D7;
  --surface:   #FBF6EE;
  --ink:       #3A322B;
  --ink-soft:  #6B6055;
  --line:      #E2D6C4;

  --accent:        #BD7B53;   /* Lehm / Terrakotta */
  --accent-deep:   #9C6440;
  --accent-soft:   #EBD4C0;
  --second:        #8B9A78;   /* Salbei */
  --second-deep:   #6E7C5C;
  --rose:          #D29F94;

  --shadow: 28px 28px 60px -32px rgba(58,50,43,.30);
  --shadow-sm: 12px 14px 30px -20px rgba(58,50,43,.30);

  /* --- Typografie (per Tweak umschaltbar) --- */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;

  /* --- Bildform (per Tweak umschaltbar) --- */
  --img-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;  /* Bogen */
  --img-radius-soft: 140px;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 72px);
}

/* Farbwelt: Salbei */
[data-palette="sage"] {
  --bg: #EEF0E6;
  --bg-warm: #E4E8D6;
  --surface: #F7F8F0;
  --ink: #323629;
  --ink-soft: #5E6451;
  --line: #D6DBC4;
  --accent: #7C8C62;
  --accent-deep: #5F6E48;
  --accent-soft: #DCE3C9;
  --second: #C08A63;
  --second-deep: #9F6E49;
  --rose: #C99A8E;
}

/* Farbwelt: Rosé */
[data-palette="rose"] {
  --bg: #F6ECE8;
  --bg-warm: #F1DFD8;
  --surface: #FCF5F2;
  --ink: #423030;
  --ink-soft: #74605E;
  --line: #E8D2CA;
  --accent: #C2766D;
  --accent-deep: #A0584F;
  --accent-soft: #EFD3CC;
  --second: #9AA383;
  --second-deep: #788066;
  --rose: #D9A79C;
}

/* Bildformen */
[data-shape="soft"] { --img-radius: var(--img-radius-soft); }
[data-shape="edge"] { --img-radius: 10px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--font-body);
  margin: 0 0 10px;
  line-height: 1;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.serif-it { font-style: italic; font-family: var(--font-display); }

/* Abstand zwischen großer Headline und folgendem Fließtext */
h2 + p { margin-top: 28px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand b {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 600; letter-spacing: .01em;
  color: var(--ink);
}
.brand span {
  font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px; font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 600; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em; text-align: center;
  background: var(--accent); color: #fff !important;
  padding: 12px 24px; border-radius: 100px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px var(--gut) 80px; position: relative; }
.hero-grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  margin-bottom: 26px;
  max-width: 14ch;
}
.hero h1 em { color: var(--accent-deep); }
.hero-lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); max-width: 30em; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: var(--shadow);
}
.hero-blob {
  position: absolute; inset: -8% -6% auto auto; width: 62%; aspect-ratio: 1;
  background: var(--accent-soft); border-radius: 50%; z-index: -1;
  filter: blur(2px);
}
.hero-badge {
  position: absolute; left: -26px; bottom: 40px;
  background: var(--surface); border-radius: 18px; padding: 16px 22px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px;
}
.hero-badge b { font-family: var(--font-display); font-size: 34px; color: var(--accent-deep); line-height: 1; }
.hero-badge span { font-size: 13px; color: var(--ink-soft); line-height: 1.3; }
.hero-badge .dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; }

/* marquee strip */
.strip {
  margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0;
}
.strip-track { display: flex; gap: 32px; white-space: nowrap; animation: scroll-x 38s linear infinite; }
.strip-track span {
  font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 32px;
}
.strip-track span::after { content: "✶"; color: var(--accent); font-style: normal; font-size: 16px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .strip-track { animation: none; } }

/* ============================================================
   SECTION BASICS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-head { max-width: 42em; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 58px); margin: 0; }
.section-head > p { margin-top: 26px; }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.about-figure img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow); }
.about-figure { position: relative; }
.about-frame { position: absolute; inset: 22px -22px -22px 22px; border: 1.5px solid var(--accent); border-radius: var(--img-radius); z-index: -1; }
.about-frame.mirror { inset: 22px 22px -22px -22px; }
/* "Was ist eine Doula" — Text links, Bild rechts (wie Über mich, gespiegelt) */
.doula-grid { grid-template-columns: 1.1fr .9fr; }
#img-doula { object-position: left bottom; }
#img-svc-wb { object-position: left center; }
#ang-img-wb { object-position: center center; }
#img-about { object-position: center 30%; }
/* Über mich: Bild mit der unteren Kante bündig zum Textblock */
#about .about-grid { align-items: end; }
#about .about-figure { align-self: end; }
.about-grid h2 { font-size: clamp(32px, 4.2vw, 52px); }
.about-grid p { color: var(--ink-soft); margin: 20px 0; }
.stats { display: flex; gap: 38px; margin-top: 30px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 44px; color: var(--accent-deep); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--ink-soft); }

/* What is a doula — quote band */
.band { background: var(--bg-warm); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.band-figure img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--img-radius-soft); box-shadow: var(--shadow); }
.band blockquote { margin: 0; }
.band blockquote p {
  font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 40px); line-height: 1.25;
  color: var(--ink); font-weight: 500;
}
.band blockquote p em { color: var(--accent-deep); }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services { background: var(--ink); color: var(--bg); }
.services .eyebrow { color: var(--accent-soft); margin-bottom: 22px; }
.services .eyebrow::before { background: var(--accent-soft); }
.services .section-head h2 { color: var(--bg); }
.services-intro { color: color-mix(in srgb, var(--bg) 80%, transparent); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
.svc {
  background: color-mix(in srgb, var(--bg) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.svc:hover { transform: translateY(-6px); background: color-mix(in srgb, var(--bg) 11%, transparent); border-color: var(--accent); }
.svc-img { aspect-ratio: 16/11; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-num { font-family: var(--font-display); font-size: 15px; color: var(--accent-soft); font-style: italic; }
.svc h3 { font-size: 26px; color: var(--bg); }
.svc p { font-size: 15px; color: color-mix(in srgb, var(--bg) 72%, transparent); line-height: 1.6; margin: 0; }
.svc-more { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 6vw, 80px); }
.contact-grid h2 { font-size: clamp(34px, 4.6vw, 58px); margin-top: 0; }
.contact-grid > div > p { color: var(--ink-soft); max-width: 32em; margin: 28px 0 30px; }
.contact-list { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; }
.contact-list a {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 600;
  transition: padding-left .3s ease, color .3s ease;
}
.contact-list a:hover { padding-left: 12px; color: var(--accent-deep); }
.contact-list .ic {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center;
}
.contact-list .ic svg { width: 19px; height: 19px; }
.contact-list small { display: block; font-weight: 500; font-size: 13px; color: var(--ink-soft); letter-spacing: .04em; }

.form { background: var(--surface); border-radius: 26px; padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: .02em; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field.invalid input, .field.invalid textarea { border-color: #c2554b; }
.field .err { color: #c2554b; font-size: 12.5px; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form .form-err { display: none; text-align: center; margin-top: 14px; }
.form .form-err.show { display: block; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok {
  display: none; text-align: center; padding: 30px 10px;
}
.form-ok.show { display: block; }
.form-ok .check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--second); color: #fff; display: grid; place-items: center;
}
.form-ok h3 { font-size: 30px; margin-bottom: 8px; }
.form-ok p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-warm); padding: 70px var(--gut) 36px; border-top: 1px solid var(--line); }
.footer-grid { max-width: var(--maxw); margin-inline: auto; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand b { font-size: 30px; }
.footer p { color: var(--ink-soft); max-width: 22em; margin: 16px 0 0; font-size: 15px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 15px; padding: 5px 0; font-weight: 600; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-base { max-width: var(--maxw); margin: 50px auto 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   LEGAL — Datenschutz & Impressum
   ============================================================ */
.legal-hero { padding: 150px var(--gut) 40px; text-align: center; }
.legal-hero .eyebrow { justify-content: center; }
.legal-hero h1 { font-size: clamp(38px, 5.4vw, 68px); margin: 12px 0 0; }
.legal { padding: 30px 0 clamp(70px, 9vw, 120px); }
.legal .wrap { max-width: 760px; }
.legal h2 { font-size: clamp(24px, 2.8vw, 34px); margin: 56px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.legal h2:first-of-type { margin-top: 8px; border-top: none; padding-top: 0; }
.legal h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2vw, 23px); margin: 32px 0 0; color: var(--accent-deep); }
.legal h4 { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin: 24px 0 0; }
.legal p { color: var(--ink-soft); margin: 14px 0 0; line-height: 1.75; }
.legal ul { color: var(--ink-soft); margin: 14px 0 0; padding-left: 22px; display: grid; gap: 10px; line-height: 1.7; }
.legal a { color: var(--accent-deep); word-break: break-word; }
.legal .legal-emph { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin-top: 18px; font-size: 13.5px; letter-spacing: .02em; color: var(--ink-soft); line-height: 1.7; }
.legal address { font-style: normal; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; margin-top: 16px; color: var(--ink); line-height: 1.8; }
.legal .legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-weight: 600; text-decoration: none; color: var(--accent-deep); }
.legal .legal-back svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* ============================================================
   ANGEBOTE-SEITE
   ============================================================ */
.page-hero { padding: 160px var(--gut) 84px; text-align: center; }
.page-hero .inner { max-width: 880px; margin-inline: auto; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(42px, 6.4vw, 86px); margin: 0; }
.page-hero h1 em { color: var(--accent-deep); }
.page-hero .lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); max-width: 40em; margin: 26px auto 0; }

/* Angebots-Block (alternierend) */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.offer + .offer { margin-top: clamp(60px, 8vw, 110px); }
.offer.rev .offer-figure { order: 2; }
.offer-figure { position: relative; }
.offer-figure img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow); }
.offer-figure .tag {
  position: absolute; right: -14px; top: 28px;
  background: var(--surface); color: var(--accent-deep);
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  padding: 12px 20px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.offer-content h2 { font-size: clamp(30px, 4vw, 48px); }
.offer-content > p:not(.eyebrow) { color: var(--ink-soft); margin: 22px 0 0; }
.includes { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.includes li { display: flex; align-items: flex-start; gap: 13px; font-weight: 500; }
.includes li svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 1px; }
.offer-foot { display: flex; align-items: center; gap: 18px 24px; margin-top: 30px; flex-wrap: wrap; justify-content: space-between; }
.price {
  display: inline-flex; flex-direction: column; line-height: 1.25; flex: none;
}
.price b { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); }
.price span { font-size: 13px; color: var(--ink-soft); letter-spacing: .03em; }

/* Ergänzende Angebote — nutzt .svc-grid auf hellem Grund */
.add-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 14px; }
.add {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 30px 32px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.add:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.add .add-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.add .add-ic svg { width: 22px; height: 22px; }
.add h3 { font-size: 25px; }
.add p { color: var(--ink-soft); font-size: 15.5px; margin: 0; flex: 1; }
.add .price b { font-size: 16px; }
.add .price { margin-top: 4px; }

/* Ablauf-Timeline */
.ablauf { background: var(--bg-warm); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 14px; counter-reset: step; }
.step { position: relative; }
.step .no {
  font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; margin-bottom: 20px;
}
.step h3 { font-size: 23px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 64px; right: -13px; height: 1.5px;
  background: var(--line);
}

/* Stimmen / Testimonials */
.stimmen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
.quote {
  background: var(--surface); border-radius: 22px; padding: 32px 30px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px;
}
.quote .mark { font-family: var(--font-display); font-size: 56px; line-height: .5; color: var(--accent); height: 26px; }
.quote p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-family: var(--font-display); font-size: 19px; }
.quote .who b { font-size: 15px; }
.quote .who small { display: block; color: var(--ink-soft); font-size: 13px; }
.placeholder-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 22px; font-style: italic; }

/* CTA-Band */
.cta-band { background: var(--accent); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4.4vw, 54px); color: #fff; }
.cta-band h2 em { font-style: italic; }
.cta-band p { color: color-mix(in srgb, #fff 86%, transparent); max-width: 36em; margin: 22px auto 32px; }
.cta-band .btn { background: #fff; color: var(--accent-deep) !important; }
.cta-band .btn:hover { background: var(--surface); }
.cta-band .btn-ghost { background: transparent; color: #fff !important; border-color: color-mix(in srgb, #fff 70%, transparent); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); color:#fff !important; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Ergänzende Angebote — flexibler Raster */
.add-grid { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   PAKETE / PREISE
   ============================================================ */
.pakete { background: var(--bg-warm); }
.pak-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; align-items: stretch; }
.pak-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; margin-top: 46px; }
.pak {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 30px 32px; display: flex; flex-direction: column;
  position: relative; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pak:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.pak.feature { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.pak.feature::before {
  content: "Beliebt"; position: absolute; top: -13px; left: 30px;
  background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}
.pak-no { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-deep); }
.pak h3 { font-size: 28px; margin: 8px 0 0; }
.pak-price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.pak-price b { font-family: var(--font-display); font-size: 46px; font-weight: 600; color: var(--accent-deep); line-height: 1; }
.pak-price span { font-size: 14px; color: var(--ink-soft); }
.pak-list { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; flex: 1; }
.pak-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.5; }
.pak-list li svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 3px; }
.pak .btn { width: 100%; justify-content: center; margin-top: 26px; }
.pak.feature .btn { background: var(--accent); }
.pak-note { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: 14.5px; }
.pak-note em { font-family: var(--font-display); font-style: italic; font-size: 1.15em; color: var(--accent-deep); }

/* ============================================================
   BLESSINGWAY
   ============================================================ */
.blessing { overflow: hidden; }
.blessing-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 6vw, 80px); align-items: start; }
.blessing-intro h2 { font-size: clamp(32px, 4.4vw, 56px); }
.blessing-intro > p { color: var(--ink-soft); margin: 24px 0 0; }
.blessing-price {
  display: inline-flex; align-items: baseline; gap: 8px; margin-top: 28px;
  background: var(--accent-soft); color: var(--accent-deep);
  padding: 12px 22px; border-radius: 100px; font-weight: 700;
}
.blessing-price b { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.blessing-goals { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; }
.blessing-goals li { display: flex; align-items: flex-start; gap: 13px; color: var(--ink); }
.blessing-goals li svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 3px; }
.ritual-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(28px, 3.4vw, 40px); box-shadow: var(--shadow-sm);
}
.ritual-card > p.eyebrow { margin-bottom: 18px; }
.ritual-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 0; }
.ritual-list li { padding: 18px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: start; }
.ritual-list li:first-child { border-top: none; padding-top: 0; }
.ritual-list .r-ic { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.ritual-list .r-ic svg { width: 19px; height: 19px; }
.ritual-list h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 21px; font-weight: 500; }
.ritual-list p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.ritual-foot { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-style: italic; color: var(--ink-soft); font-family: var(--font-display); font-size: 19px; line-height: 1.4; }

.nav .btn { min-width: 100px; justify-content: center; text-align: center; }

/* Pakete als eigener Abschnitt — farblich abgesetzt */
.pakete-band { background: var(--accent-soft); }

/* Einheitlicher Abstand der Abschnitts-Eyebrows zum Folgetext (Angebote-Seite) */
.ablauf .section-head .eyebrow,
.pakete-band .section-head .eyebrow,
.offer-content .eyebrow,
.blessing-intro .eyebrow,
[data-screen-label="Ergänzende Angebote"] .section-head .eyebrow,
[data-screen-label="Stimmen"] .section-head .eyebrow {
  margin-bottom: 24px;
}

/* Ritual-Liste ohne Beschreibung — nur Icon + Titel */
.ritual-list.compact li { grid-template-columns: 40px 1fr; align-items: center; padding: 13px 0; }
.ritual-list.compact h4 { margin: 0; font-size: 20px; }

/* Blessingway — vertiefter Grünton zur Abgrenzung */
.blessing.blessing-deep { background: var(--accent-deep); color: #EDF0E2; }
.blessing-deep .eyebrow { color: #C6D2A8; }
.blessing-deep .blessing-intro h2 { color: #fff; }
.blessing-deep .blessing-intro > p { color: #DCE3C9; }
.blessing-deep .blessing-intro em { color: #fff; }
.blessing-deep .blessing-goals li { color: #EDF0E2; }
.blessing-deep .blessing-goals li svg { color: #C6D2A8; }
.blessing-deep .blessing-price { background: rgba(255,255,255,.16); color: #fff; }
.blessing-deep .blessing-note { color: #CBD3B5 !important; }
/* Ritual-Karte bleibt hell — Text dunkel halten (erbt sonst die helle Sektionsfarbe) */
.blessing-deep .ritual-card { color: var(--ink); }
.blessing-deep .ritual-card .eyebrow { color: var(--accent-deep); }
.blessing-deep .ritual-list.compact h4 { color: var(--accent-deep); }
.blessing-deep .ritual-foot { color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .band-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-figure { order: -1; max-width: 460px; }
  .about-figure { max-width: 460px; }
  .band-figure { max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-frame { inset: 16px -14px -14px 16px; }
  .about-frame.mirror { inset: 16px 16px -14px -14px; }
  .doula-grid .about-figure { order: -1; }
  .offer { grid-template-columns: 1fr; gap: 30px; }
  .offer.rev .offer-figure { order: -1; }
  .offer-figure { order: -1; max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 26px; }
  .step:nth-child(2)::after { display: none; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .pak-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pak-grid.two { grid-template-columns: 1fr; max-width: 460px; }
  .add-grid { grid-template-columns: repeat(2, 1fr); }
  .blessing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px var(--gut) 30px; box-shadow: var(--shadow-sm);
  }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { left: 10px; }
  .add-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
}
