/* Self-hosted fonts (DSGVO: no request to Google). Variable woff2, latin subset. */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/playfair-display.woff2") format("woff2");
}

:root {
  --rose: #ceb6b1;
  --eggplant: #4c3a4f;
  --mist: #d4dfe0;
  --coral: #e3c981;
  --sage: #afc8a6;
  --cream: #f4efec;
  --gold: #d5b68a;
  --ink: #241c24;
  --muted: #685e66;
  --white: #fffaf7;
  --line: rgba(76, 58, 79, 0.16);

  --radius: 8px;
  --radius-pill: 999px;
  --shadow: 0 12px 32px rgba(76, 58, 79, 0.1);
  --shadow-raised: 0 20px 48px rgba(76, 58, 79, 0.14);
  --shadow-cta: 0 10px 26px rgba(76, 58, 79, 0.2);

  --header-h: 6rem;
  --hero-img-h: clamp(20rem, 84vw, 26rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* Warm, diffuse brand light instead of a hard grid. */
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(58% 48% at 12% 6%, rgba(206, 182, 177, 0.2), transparent 62%),
    radial-gradient(52% 44% at 92% 20%, rgba(175, 200, 166, 0.16), transparent 60%),
    radial-gradient(70% 60% at 50% 108%, rgba(213, 182, 138, 0.12), transparent 64%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0;
}

h1 {
  max-width: 880px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.6rem;
  line-height: 1.2;
  font-size: clamp(1.3rem, 1.05rem + 0.7vw, 1.55rem);
}

p {
  margin-bottom: 1.15rem;
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  background: var(--eggplant);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(160px, 250px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.7rem;
  background: rgba(244, 239, 236, 0.88);
  box-shadow: 0 10px 30px rgba(76, 58, 79, 0.12);
  backdrop-filter: blur(16px);
}

.home-page .site-header.is-scrolled:not(.is-past-hero) {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-grid;
  align-items: center;
}

.brand img {
  grid-area: 1 / 1;
  width: min(230px, 44vw);
  transition: opacity 180ms ease;
}

.home-funnel-page .brand img {
  width: clamp(160px, 18vw, 205px);
  filter: drop-shadow(0 3px 12px rgba(36, 28, 36, 0.18));
}

.brand-logo-cream {
  opacity: 0;
}

.home-page .site-header:not(.is-past-hero) .brand-logo-dark {
  opacity: 0;
}

.home-page .site-header:not(.is-past-hero) .brand-logo-cream {
  opacity: 1;
  filter: drop-shadow(0 3px 10px rgba(36, 28, 36, 0.28));
}

.menu-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(76, 58, 79, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.9);
  color: var(--eggplant);
  box-shadow: 0 10px 26px rgba(76, 58, 79, 0.12);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--white);
  box-shadow: 0 14px 32px rgba(76, 58, 79, 0.16);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(213, 182, 138, 0.66);
  outline-offset: 3px;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-nav.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-nav.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-nav.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 110;
  display: grid;
  gap: 0.35rem;
  width: min(84vw, 340px);
  padding: 0.65rem;
  border: 1px solid rgba(76, 58, 79, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 58px rgba(36, 28, 36, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.menu-nav.is-open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown a {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.35;
  text-decoration: none;
}

.menu-dropdown a:hover,
.menu-dropdown a:focus-visible,
.menu-dropdown a[aria-current="page"] {
  background: rgba(206, 182, 177, 0.22);
}

.menu-dropdown a:focus-visible {
  outline: 2px solid rgba(76, 58, 79, 0.3);
  outline-offset: 2px;
}

.menu-dropdown span {
  font-weight: 700;
}

.menu-dropdown small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-links a {
  /* WCAG 2.5.8: eigenstaendige Navigation braucht 24px Mindestziel.
     Inline-Links im Fliesstext sind davon ausgenommen und bleiben unveraendert. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--eggplant);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--eggplant);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #382a3a;
}

.button-secondary {
  border-color: rgba(76, 58, 79, 0.32);
  background: rgba(255, 250, 247, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--eggplant);
}

.button[disabled] {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.section-cta p {
  max-width: 520px;
  margin: 0;
  color: var(--eggplant);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7rem clamp(1.2rem, 5vw, 5rem) 3.5rem;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../img/newborn-detail.png");
  background-image: image-set(url("../img/newborn-detail.webp") type("image/webp"), url("../img/newborn-detail.png") type("image/png"));
  background-size: cover;
  background-position: center;
  filter: saturate(0.96) sepia(0.08) brightness(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 239, 236, 0.96) 0%, rgba(244, 239, 236, 0.8) 44%, rgba(244, 239, 236, 0.14) 78%),
    linear-gradient(180deg, rgba(213, 182, 138, 0.12), transparent 40%),
    linear-gradient(0deg, rgba(76, 58, 79, 0.2), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-inline: auto;
}

.eyebrow,
.section-kicker,
.offer-label {
  margin-bottom: 1rem;
  color: var(--eggplant);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .hero {
    padding-top: clamp(9.75rem, 10vw, 11rem);
  }
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 1.3rem;
  color: #443740;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-check-explainer {
  width: min(650px, 100%);
  margin-top: 1.35rem;
  margin-bottom: 1.2rem;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--sage);
  background: rgba(255, 250, 247, 0.72);
}

.hero-check-explainer h2 {
  margin-bottom: 0.55rem;
  color: var(--eggplant);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: 0;
}

.hero-check-explainer p {
  margin-bottom: 0.7rem;
  color: #443740;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
}

.hero-check-explainer p:last-child {
  margin-bottom: 0;
}

.hero-prelink {
  width: min(520px, 100%);
  margin: 0 auto 0.85rem;
  color: var(--eggplant);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.hero-click-target {
  position: relative;
  display: grid;
  gap: 0.45rem;
  width: min(520px, 100%);
  min-height: 224px;
  margin: 0 auto 1.35rem;
  padding: 1.55rem 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 247, 0.34);
  border-radius: 8px;
  background: var(--eggplant);
  box-shadow: 0 24px 62px rgba(76, 58, 79, 0.3);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  animation: heroCtaBreath 3.8s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-click-target::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 247, 0.28);
  border-radius: 6px;
  content: "";
}

.hero-click-target:hover {
  transform: translateY(-3px);
  background: #382a3a;
  box-shadow: 0 30px 72px rgba(76, 58, 79, 0.34);
}

.hero-click-label,
.hero-click-sub {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-click-label {
  color: var(--gold);
}

.hero-click-main {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 3.35rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-click-sub {
  align-self: end;
  max-width: 25ch;
  color: rgba(255, 250, 247, 0.84);
}

.hero-click-arrow {
  position: absolute;
  right: 1.45rem;
  bottom: 1.1rem;
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-click-target:hover .hero-click-arrow {
  transform: translateX(5px);
}

.hero-info-actions {
  display: flex;
  margin-bottom: 1.35rem;
}

@keyframes heroCtaBreath {
  0%,
  100% {
    box-shadow: 0 24px 62px rgba(76, 58, 79, 0.3), 0 0 0 0 rgba(213, 182, 138, 0.28);
  }

  50% {
    box-shadow: 0 24px 62px rgba(76, 58, 79, 0.3), 0 0 0 10px rgba(213, 182, 138, 0);
  }
}

.hero-meta {
  display: none;
  margin: 0 0 1.4rem;
  color: var(--eggplant);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  min-height: 104px;
  padding: 1.1rem;
  background: rgba(255, 250, 247, 0.78);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.3rem 0 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

/* ---------- Results ---------- */
.result-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: linear-gradient(160deg, #4c3a4f, #3c2d3f);
  color: var(--white);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}

.result-main-box,
.result-card {
  border: 1px solid rgba(255, 250, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.1);
  box-shadow: 0 18px 52px rgba(36, 24, 38, 0.16);
}

.result-main-box {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
}

.result-main-box .section-kicker {
  color: var(--gold);
}

.result-main-box h2,
.result-card h3 {
  color: var(--white);
}

.result-main-box p {
  max-width: 54ch;
  color: rgba(255, 250, 247, 0.86);
}

.result-actions {
  margin-top: 1.7rem;
}

.result-card-grid {
  display: grid;
  gap: 1rem;
}

.result-card {
  padding: 1.35rem;
}

.result-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.26rem;
}

.result-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 247, 0.82);
  font-size: 0.98rem;
}

/* ---------- Follow product page ---------- */
.follow-page {
  background:
    linear-gradient(135deg, rgba(244, 239, 236, 0.98), rgba(244, 239, 236, 0.86)),
    var(--cream);
}

.follow-main {
  overflow: hidden;
}

.follow-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
}

.home-funnel-page .follow-hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: clamp(390px, 66vh, 720px);
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(244, 239, 236, 0.76) 0%, rgba(244, 239, 236, 0.58) 42%, rgba(244, 239, 236, 0.28) 100%),
    linear-gradient(180deg, rgba(244, 239, 236, 0.08) 0%, rgba(244, 239, 236, 0.4) 62%, rgba(244, 239, 236, 0.96) 100%),
    url("../img/newborn-detail.png") center 31% / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(244, 239, 236, 0.76) 0%, rgba(244, 239, 236, 0.58) 42%, rgba(244, 239, 236, 0.28) 100%),
    linear-gradient(180deg, rgba(244, 239, 236, 0.08) 0%, rgba(244, 239, 236, 0.4) 62%, rgba(244, 239, 236, 0.96) 100%),
    image-set(url("../img/newborn-detail.webp") type("image/webp"), url("../img/newborn-detail.png") type("image/png")) center 31% / cover no-repeat;
  box-shadow: 0 28px 76px rgba(76, 58, 79, 0.1);
  content: "";
}

.follow-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.follow-hero h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
}

.follow-lead {
  max-width: 68ch;
  color: #443740;
  font-size: clamp(1.06rem, 2vw, 1.26rem);
}

.follow-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-raised);
}

.follow-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.97) contrast(1.02);
}

.follow-portrait figcaption {
  padding: 1rem 1.1rem;
  color: var(--eggplant);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.follow-section {
  background: rgba(255, 250, 247, 0.64);
}

.problem-section {
  background:
    linear-gradient(135deg, rgba(206, 182, 177, 0.25), rgba(255, 250, 247, 0.74)),
    var(--cream);
}

.follow-section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.7rem, 4vw, 2.6rem);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.problem-card {
  position: relative;
  min-height: 245px;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.9);
  box-shadow: var(--shadow);
}

.problem-card::before {
  display: block;
  width: 2.8rem;
  height: 3px;
  margin-bottom: 1.2rem;
  background: var(--eggplant);
  content: "";
}

.problem-card p {
  margin-bottom: 0;
}

.proof-section {
  background: var(--cream);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.proof-intro {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.proof-intro p,
.proof-story p {
  font-size: 1.04rem;
}

.proof-story {
  padding-left: clamp(1.2rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
}

.proof-story p:last-child {
  margin-bottom: 0;
}

/* ---------- Memberships ---------- */
.membership-section {
  background:
    linear-gradient(135deg, rgba(175, 200, 166, 0.2), rgba(255, 250, 247, 0.76)),
    var(--cream);
}

.membership-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.membership-copy p {
  max-width: 58ch;
  font-size: 1.04rem;
}

.membership-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.membership-card {
  display: grid;
  align-content: space-between;
  gap: 1.1rem;
  min-height: 230px;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: var(--shadow);
}

.membership-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.membership-card-dhv img {
  width: auto;
  max-width: 110px;
  max-height: 104px;
}

.membership-card p {
  margin-bottom: 0;
  color: var(--eggplant);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.program-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.82), rgba(212, 223, 224, 0.34)),
    var(--cream);
}

.follow-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.follow-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.92);
  box-shadow: var(--shadow);
}

.follow-card span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.follow-card h3,
.follow-card p {
  margin-bottom: 0;
}

.follow-card p {
  color: var(--muted);
}

.follow-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 640px) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  justify-content: space-between;
  align-items: end;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  padding-inline: max(
    clamp(1.2rem, 6vw, 5rem),
    calc((100% - 1180px) / 2)
  );
  background: linear-gradient(160deg, #4c3a4f, #382a3a);
  color: var(--white);
}

.follow-cta-band > div {
  max-width: 640px;
}

.follow-cta-band .section-kicker {
  color: var(--gold);
}

.follow-cta-band h2 {
  color: var(--white);
}

.follow-cta-band p {
  max-width: 62ch;
  color: rgba(255, 250, 247, 0.84);
}

.follow-cta-band .button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(36, 28, 36, 0.28);
}

.follow-cta-band .button-primary:hover {
  background: var(--coral);
}

/* ---------- Menu target pages ---------- */
.content-page .follow-main {
  overflow: visible;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: calc(var(--header-h) + 2.2rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.content-hero-copy {
  max-width: 780px;
}

.content-hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.88);
  box-shadow: var(--shadow-raised);
}

.content-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.01);
}

.content-hero-visual figcaption {
  padding: 0.9rem 1rem;
  color: var(--eggplant);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.content-section-soft {
  background:
    linear-gradient(135deg, rgba(206, 182, 177, 0.26), rgba(255, 250, 247, 0.82)),
    var(--cream);
}

.content-section-muted {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.84), rgba(212, 223, 224, 0.36)),
    var(--cream);
}

.placeholder-grid,
.program-tier-grid,
.current-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.placeholder-card,
.program-tier-card,
.current-offer-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 260px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: var(--shadow);
}

.program-tier-card {
  min-height: 360px;
}

.placeholder-card h3,
.program-tier-card h3,
.current-offer-card h3,
.placeholder-card p,
.program-tier-card p,
.current-offer-card p {
  margin-bottom: 0;
}

.content-tag {
  align-self: flex-start;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(76, 58, 79, 0.16);
  border-radius: 6px;
  background: rgba(175, 200, 166, 0.18);
  color: var(--eggplant);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.program-tier-card ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.program-tier-card li + li {
  margin-top: 0.55rem;
}

.content-note {
  max-width: 760px;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.82);
}

.content-note p:last-child {
  margin-bottom: 0;
}

.section-light {
  background: rgba(255, 250, 247, 0.62);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.split-copy p,
.visual-copy p,
.signup-copy p,
.partner-copy p,
.hypnobirthing-copy p {
  font-size: 1.05rem;
  max-width: 62ch;
}

.workshop-panel {
  display: grid;
  gap: 1rem;
}

.workshop-panel article,
.offer-card,
.next-box,
.signup-form,
.theme-card,
.partner-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: var(--shadow);
}

.workshop-panel article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.35rem;
}

.workshop-panel span {
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.workshop-panel h3,
.workshop-panel p,
.offer-card h3,
.offer-card p {
  margin-bottom: 0.45rem;
}

/* ---------- Visual / method ---------- */
.visual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: stretch;
  padding-block: 0;
  background: var(--mist);
}

.visual-media {
  min-height: clamp(380px, 52vh, 600px);
  overflow: hidden;
}

.visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.visual-copy {
  align-self: center;
  max-width: 650px;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 6vw, 5rem);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(175, 200, 166, 0.22);
  content: "";
}

/* ---------- Partner & Begleitung ---------- */
.section-soft {
  background:
    linear-gradient(135deg, rgba(213, 182, 138, 0.2), rgba(244, 239, 236, 0.72)),
    var(--cream);
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.partner-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.partner-panel .check-list {
  margin-top: 0;
}

/* ---------- Offer ladder ---------- */
.section-deep {
  background: linear-gradient(160deg, #4c3a4f, #3a2b3d);
  color: var(--white);
  border-top: 1px solid rgba(227, 201, 129, 0.32);
}

.section-deep p,
.section-deep .section-kicker {
  color: rgba(255, 250, 247, 0.82);
}

.section-deep .section-kicker {
  color: var(--gold);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 2.25rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.offer-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: var(--ink);
}

.offer-card .offer-label {
  color: var(--eggplant);
}

.offer-card p {
  color: var(--muted);
}

.offer-card a.offer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(76, 58, 79, 0.3);
  border-radius: var(--radius);
  background: rgba(76, 58, 79, 0.08);
  color: var(--eggplant);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.offer-card a.offer-action:hover {
  transform: translateY(-2px);
  border-color: var(--eggplant);
  background: rgba(76, 58, 79, 0.12);
}

/* ---------- Marion ---------- */
.marion-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.marion-layout > div > p {
  max-width: 62ch;
}

.portrait-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--rose), var(--cream));
}

.portrait-mark img {
  width: 88%;
}

.portrait-photo {
  aspect-ratio: 4 / 5;
  align-self: start;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.97) contrast(1.02);
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cred-row span,
.cred-row a {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(76, 58, 79, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(175, 200, 166, 0.28);
  color: var(--eggplant);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.expertise-note {
  margin-top: 1.6rem;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.72);
  box-shadow: var(--shadow);
}

.expertise-note p {
  margin-bottom: 0.7rem;
  max-width: 64ch;
}

.expertise-note p:last-of-type {
  margin-bottom: 0;
}

.expertise-label {
  color: var(--eggplant);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- HypnoBirthing ---------- */
.hypnobirthing-section {
  background:
    linear-gradient(135deg, rgba(175, 200, 166, 0.28), rgba(255, 250, 247, 0.7)),
    var(--cream);
}

.hypnobirthing-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.hypnobirthing-aside {
  position: sticky;
  top: var(--header-h);
}

.hypnobirthing-figure {
  margin: 1.6rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.hypnobirthing-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.98);
}

.hypnobirthing-copy {
  padding-left: clamp(1.2rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
}

.hypnobirthing-copy p:last-child {
  margin-bottom: 0;
}

/* ---------- Testimonials / themes ---------- */
.testimonials-section {
  background:
    linear-gradient(135deg, rgba(206, 182, 177, 0.34), rgba(244, 239, 236, 0.9)),
    var(--cream);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.testimonials-layout h2 {
  color: var(--eggplant);
}

.testimonials-layout p {
  color: #3f343e;
  max-width: 52ch;
}

.testimonial-note {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.theme-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
}

.theme-card .theme-kicker {
  color: var(--eggplant);
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.theme-card h3 {
  margin: 0;
  color: var(--eggplant);
  font-size: 1.28rem;
}

.theme-card p {
  margin: 0;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(76, 58, 79, 0.28);
  box-shadow: var(--shadow);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(76, 58, 79, 0.08);
  color: var(--eggplant);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 200ms ease, background 200ms ease;
}

details[open] summary::after {
  content: "\2013";
  background: rgba(175, 200, 166, 0.32);
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  max-width: 64ch;
}

/* ---------- Signup ---------- */
.signup-section {
  background:
    linear-gradient(135deg, rgba(175, 200, 166, 0.42), rgba(212, 223, 224, 0.5)),
    var(--cream);
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-raised);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--eggplant);
  font-size: 0.84rem;
  font-weight: 700;
}

.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.field-hint {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(76, 58, 79, 0.26);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input {
  min-height: 48px;
  padding: 0 0.9rem;
}

textarea {
  resize: vertical;
  padding: 0.75rem 0.9rem;
}

input:focus,
textarea:focus {
  outline: 3px solid var(--eggplant);
  outline-offset: 2px;
  border-color: var(--eggplant);
}

summary:focus-visible,
.button:focus-visible,
.hero-click-target:focus-visible,
.offer-action:focus-visible,
a:focus-visible {
  outline: 3px solid var(--eggplant);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.button-primary:focus-visible,
.hero-click-target:focus-visible,
.sticky-cta:focus-visible {
  outline-color: var(--gold);
}

.consent {
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: var(--eggplant);
  cursor: pointer;
}

.consent a {
  color: var(--eggplant);
  font-weight: 700;
}

.form-reassure {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Honeypot: off-screen, bots fill it, humans never see it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.25rem clamp(1.2rem, 4vw, 3rem);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 2.4rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-inline: auto;
}

.footer-inner img,
.thanks-logo img {
  width: 210px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---------- Thank-you page ---------- */
.thanks-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.thanks-legal-links a {
  text-decoration: none;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(244, 239, 236, 0.97) 0%, rgba(244, 239, 236, 0.84) 52%, rgba(244, 239, 236, 0.6) 100%),
    url("../img/newborn-detail.png") right center / cover no-repeat;
  background:
    linear-gradient(120deg, rgba(244, 239, 236, 0.97) 0%, rgba(244, 239, 236, 0.84) 52%, rgba(244, 239, 236, 0.6) 100%),
    image-set(url("../img/newborn-detail.webp") type("image/webp"), url("../img/newborn-detail.png") type("image/png")) right center / cover no-repeat;
}

.thanks-shell {
  width: min(980px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 2.5rem 0 4.5rem;
}

.thanks-logo {
  display: inline-block;
  margin-bottom: clamp(2.5rem, 8vw, 6rem);
}

.thanks-hero {
  width: min(780px, 100%);
}

.thanks-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  line-height: 1.12;
}

.thanks-hero > p {
  max-width: 56ch;
  font-size: 1.05rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.next-box {
  width: min(700px, 100%);
  margin-top: 3rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.9);
  box-shadow: var(--shadow);
}

.next-box h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.next-box ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.next-box li {
  margin-bottom: 0.5rem;
}

.next-box li:last-child {
  margin-bottom: 0;
}

/* ---------- Legal pages ---------- */
.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(244, 239, 236, 0.98), rgba(244, 239, 236, 0.82)),
    url("../img/sleeping-baby.png") center / cover no-repeat;
  background:
    linear-gradient(120deg, rgba(244, 239, 236, 0.98), rgba(244, 239, 236, 0.82)),
    image-set(url("../img/sleeping-baby.webp") type("image/webp"), url("../img/sleeping-baby.png") type("image/png")) center / cover no-repeat;
}

.legal-shell {
  width: min(1040px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 2rem 0 5rem;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 8vw, 5rem);
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-logo img {
  width: 200px;
}

.legal-hero {
  width: min(820px, 100%);
  margin-bottom: 2rem;
  overflow-wrap: anywhere;
}

.legal-hero h1 {
  font-size: clamp(2.1rem, 9vw, 3.4rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-hero p {
  max-width: 64ch;
}

.legal-status {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(76, 58, 79, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.78);
  color: var(--eggplant);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-status-alert {
  color: #b42318;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 3vw, 2rem);
  overflow-wrap: anywhere;
}

.legal-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 6vw, 2rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin-top: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-card code {
  word-break: break-all;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-footer {
  margin-top: 2rem;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .result-layout,
  .content-hero,
  .follow-hero,
  .follow-cta-band,
  .proof-layout,
  .membership-layout,
  .split,
  .visual-section,
  .partner-layout,
  .marion-layout,
  .hypnobirthing-layout,
  .testimonials-layout,
  .faq-layout,
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .hypnobirthing-aside {
    position: static;
  }

  .hypnobirthing-copy {
    padding-left: 0;
    border-left: 0;
  }

  /* Stacked: give the image an explicit bounded height so object-fit:cover
     crops to a band instead of ballooning to the intrinsic image height. */
  .visual-media {
    min-height: 0;
    height: clamp(400px, 58vw, 520px);
  }

  .offer-grid,
  .placeholder-grid,
  .program-tier-grid,
  .current-offer-grid,
  .follow-card-grid,
  .membership-logo-grid,
  .problem-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .placeholder-card,
  .program-tier-card,
  .current-offer-card,
  .follow-card,
  .membership-card,
  .problem-card,
  .theme-card {
    min-height: 0;
  }

  .proof-intro {
    position: static;
  }

  .proof-story {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: 70vh;
    align-items: center;
  }

  /* Let more of the newborn photo show through on tablet. */
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 239, 236, 0.95) 0%, rgba(244, 239, 236, 0.74) 50%, rgba(244, 239, 236, 0.2) 86%),
      linear-gradient(0deg, rgba(76, 58, 79, 0.18), transparent 46%);
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .menu-dropdown {
    top: calc(100% + 0.55rem);
    width: min(88vw, 320px);
  }

  .brand img {
    width: 168px;
  }

  .home-funnel-page .brand img {
    width: 152px;
  }

  .hero {
    display: block;
    min-height: 0;
    align-items: stretch;
    padding: calc(var(--hero-img-h) + 0.95rem) 1.1rem 2.1rem;
  }

  .follow-hero {
    min-height: 0;
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 3rem;
  }

  .content-hero {
    padding-top: calc(var(--header-h) + 1.3rem);
  }

  .home-funnel-page .follow-hero::before {
    height: clamp(330px, 58vh, 470px);
    background:
      linear-gradient(180deg, rgba(244, 239, 236, 0.1) 0%, rgba(244, 239, 236, 0.34) 48%, rgba(244, 239, 236, 0.96) 100%),
      linear-gradient(90deg, rgba(244, 239, 236, 0.46), rgba(244, 239, 236, 0.2)),
      url("../img/newborn-detail.png") center 28% / cover no-repeat;
    background:
      linear-gradient(180deg, rgba(244, 239, 236, 0.1) 0%, rgba(244, 239, 236, 0.34) 48%, rgba(244, 239, 236, 0.96) 100%),
      linear-gradient(90deg, rgba(244, 239, 236, 0.46), rgba(244, 239, 236, 0.2)),
      image-set(url("../img/newborn-detail.webp") type("image/webp"), url("../img/newborn-detail.png") type("image/png")) center 28% / cover no-repeat;
  }

  .follow-cta-band {
    padding-inline: 1.1rem;
  }

  .hero-overlay {
    inset: 0 0 auto;
    height: var(--hero-img-h);
    background:
      linear-gradient(180deg, rgba(244, 239, 236, 0.04) 0%, rgba(244, 239, 236, 0.06) 46%, rgba(244, 239, 236, 0.8) 84%, var(--cream) 100%);
  }

  .hero-bg {
    inset: 0 0 auto;
    height: var(--hero-img-h);
    background-color: var(--cream);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: clamp(34rem, 158vw, 44rem) auto;
    filter: saturate(0.98) sepia(0.06);
    transform: none;
  }

  .hero-facts {
    display: none;
  }

  .hero-meta {
    display: block;
  }

  .hero-click-target {
    width: 100%;
    min-height: 190px;
    padding: 1.35rem 1.2rem;
  }

  .hero-click-main {
    font-size: 2.45rem;
  }

  .hero-click-arrow {
    right: 1.1rem;
    bottom: 1rem;
    font-size: 2rem;
  }

  .workshop-panel article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .button-row .button,
  .section-cta .button,
  .offer-card a.offer-action {
    width: 100%;
  }

  .visual-media {
    height: clamp(380px, 92vw, 460px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* Sticky single CTA — one thumb-reachable next step. */
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
    background: var(--eggplant);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(76, 58, 79, 0.2);
    transform: translateY(0);
    visibility: visible;
    transition: transform 260ms ease, visibility 260ms ease;
  }

  .sticky-cta.is-hidden {
    transform: translateY(130%);
    visibility: hidden;
  }
}

@media (max-width: 380px) {
  .hero-click-main {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Versions-Auswahl. Wird nur auf der Staging-Domain per Skript eingehängt und
   erscheint auf traum-geburt.de deshalb nie. */
.version-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  background: var(--eggplant);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
}

.version-bar-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

.version-bar select {
  /* Keine vw-Einheiten: sie koennen in eingebetteten Ansichten zu 0 aufloesen
     und das Auswahlfeld unbedienbar machen. */
  flex: 1 1 auto;
  min-width: 12rem;
  min-height: 24px;
  max-width: 34rem;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(255, 250, 247, 0.35);
  border-radius: 4px;
  background: rgba(255, 250, 247, 0.1);
  color: var(--cream);
  font: inherit;
}

.version-bar-note {
  font-weight: 400;
  opacity: 0.7;
}

/* Der Seitenkopf ist fixiert. Liegt die Versionsleiste daruber, muss er um
   deren Hoehe nach unten ruecken, sonst verdeckt die Leiste das Logo. */
body.has-version-bar {
  padding-top: var(--version-bar-height, 0px);
}

body.has-version-bar header {
  top: var(--version-bar-height, 0px);
}

/* Rahmen fuer den ausgewaehlten Produktions-Stand. Die Leiste bleibt darueber
   sichtbar, damit man ohne Zurueck-Taste weitervergleichen kann. */
.version-frame {
  position: fixed;
  top: var(--version-bar-height, 0px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  border: 0;
}

body.shows-version > *:not(.version-bar):not(.version-frame) {
  display: none;
}
