/* =====================================================================
   Design tokens + site styles.
   ===================================================================== */

/* ---- Self-hosted fonts (drop woff2 into /assets/fonts) ------------- */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v20-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---- Design tokens ------------------------------------------------- */
:root {
    /* Brand palette */
    --color-cream:      #f8f3ec;
    --color-cream-dark: #ede5d8;
    --color-blush:      #e8c5b8;
    --color-blush-deep: #c89384;
    --color-charcoal:   #2a2622;
    --color-clay:       #44403b;
    --color-warm-grey:  #6b5d52;
    --color-soft-grey:  #a89d92;
    --color-white:      #ffffff;
    --color-cta:        #E8B45C;
    --color-cta-hover:  #D89F3F;
    --color-link:       #a5614b; /* darker blush family — readable on cream backgrounds */
    --color-divider:    #e8d8d1; /* hairline borders between cards / list rows */

    /* Type */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Manrope', system-ui, sans-serif;

    /* Type scale — single source of truth for every text size.
       Small UI text is fixed; body & headings use clamp() so type scales
       smoothly between mobile and desktop. Decorative one-offs (oversized
       numerals, quote glyphs, icons) keep their own inline sizes. */
    --fs-caption: 0.75rem;                            /* 12 — eyebrows, badges, uppercase micro-labels */
    --fs-fine:    0.8125rem;                          /* 13 — fine print, meta, disclaimers */
    --fs-xs:      0.875rem;                           /* 14 — small text, form labels, footer headings */
    --fs-sm:      0.9375rem;                          /* 15 — nav, buttons, links, helper & footer text */
    --fs-body:    clamp(1rem, 1.1vw, 1.0625rem);      /* 16–17 — running copy */
    --fs-lead:    clamp(1.0625rem, 1.5vw, 1.25rem);   /* 17–20 — hero & section leads */
    --fs-subline: clamp(1.125rem, 1.6vw, 1.375rem);   /* 18–22 — display italic sublines */
    --fs-h6:      1.125rem;                            /* 18 — smallest headings, nav drawer, taglines */
    --fs-h5:      1.25rem;                             /* 20 — minor sub-headings */
    --fs-h4:      clamp(1.375rem, 2vw, 1.625rem);     /* 22–26 — card & section sub-headings */
    --fs-h3:      clamp(1.5rem, 3vw, 2rem);           /* 24–32 */
    --fs-h2:      clamp(2rem, 4.5vw, 3.25rem);        /* 32–52 */
    --fs-h1:      clamp(2.25rem, 6vw, 4.5rem);        /* 36–72 */
    --fs-display:    clamp(2.5rem, 5vw, 3.75rem);     /* 40–60 — price anchor */
    --fs-display-lg: clamp(3.5rem, 7vw, 5.5rem);      /* 56–88 — offer price */
    --fs-display-xl: clamp(4rem, 8vw, 6.5rem);        /* 64–104 — guarantee days */

    /* Spacing scale */
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --maxw:    80rem;
    --maxw-content: 45rem;
    --radius:  10px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-charcoal);
    background: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* Inline links in running text — visibly marked as links.
   Scoped to prose contexts so nav, buttons and card links stay untouched. */
p a, .faq-answer a, .for-you-list a, .includes-list a {
    color: var(--color-link);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
p a:hover, .faq-answer a:hover, .for-you-list a:hover, .includes-list a:hover {
    color: var(--color-charcoal);
}
/* On rosa sections the terracotta tone lacks contrast — use charcoal there */
.section-rosa p a { color: var(--color-charcoal); }
.section-rosa p a:hover { color: var(--color-white); }

/* ---- Typography ---------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 400; }
h4 { font-size: var(--fs-h6); font-weight: 500; }
p  { font-size: var(--fs-body); color: var(--color-warm-grey); }

.eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-caption);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    display: block;
}
/* Subline — a lead sentence that belongs to the headline above it.
   It reads like the body copy (no special face, size or colour); only the
   spacing signals the relationship: it sits tight under the heading (via
   the rule below) and keeps a larger gap to the body that follows. */
.subline,
.content-centered .subline {
    margin-bottom: var(--space-lg);
}
/* Pull the subline as close to its headline as the eyebrow sits above it
   (matches the eyebrow→headline gap = --space-sm). */
.content-centered :is(h1, h2):has(+ .subline) { margin-bottom: var(--space-sm); }
/* Headline accent — display font, upright (no italic per brand preference) */
.accent-italic {
    font-family: var(--font-display);
    color: var(--color-charcoal);
}
em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-charcoal);
}

/* ---- Layout primitives -------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-md);
}
@media (min-width: 768px) {
    .container { padding-inline: var(--space-lg); }
}
section { padding: var(--space-2xl) 0; }
@media (max-width: 767px) {
    section { padding: var(--space-xl) 0; }
}
/* Legacy page wrapper used by inner views */
.page { padding-block: var(--space-xl); }

/* Long-form text pages (legal etc.) — readable measure, left-aligned */
.page-text { max-width: 760px; }
.page-text h1 { margin-bottom: var(--space-lg); }
.page-text h2 { font-size: var(--fs-h4); margin: var(--space-lg) 0 var(--space-sm); }
.page-text p, .page-text li { color: var(--color-warm-grey); line-height: 1.7; margin-bottom: var(--space-sm); }
.page-text h3 { font-size: var(--fs-h5); margin: var(--space-md) 0 var(--space-xs); }
.page-text ul { list-style: disc; padding-left: 1.25rem; margin-bottom: var(--space-sm); }
.page-text strong { color: var(--color-charcoal); }

/* ---- Shared utilities --------------------------------------------- */
/* Dark-cream background used on multiple alternating sections */
.bg-surface { background: var(--color-cream-dark); }

/* Card surface — the shared white panel behind content cards across pages.
   Declared here (before .path-card-primary) so that card's gradient
   background override still wins by source order. Add new card components
   to this list rather than re-declaring background + radius. */
.path-card, .testimonial, .module-card, .for-you-col,
.offer-box, .voice-card, .audio-player, .modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
}

/* Centered section heading block — eyebrow + h2 + optional intro p */
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { margin-bottom: var(--space-sm); }
/* Keep an optional intro paragraph at a comfortable reading measure. */
.section-header p { max-width: 46rem; margin-inline: auto; }
/* When the intro is a multi-paragraph stanza (e.g. "Trag dich ein" on
   /von-frau-zu-frau), restore the same paragraph rhythm as .content-centered.
   :not(:last-child) keeps single-paragraph headers untouched. */
.section-header p:not(:last-child) { margin-bottom: var(--space-md); }

/* Centered content column capped at readable width */
.content-centered {
    max-width: var(--maxw-content);
    margin: 0 auto;
    text-align: center;
}
.content-centered h1,
.content-centered h2 { margin-bottom: var(--space-lg); }
.content-centered p {
    /* No font-size override: inherit the global `p` size so body copy is one
       size site-wide. */
    line-height: 1.8;
    margin-bottom: var(--space-md);
}
/* Lists that flow inside a copy column share the paragraph rhythm on both
   sides, so text before AND after a list keeps an even gap (margins
   collapse with adjacent paragraphs to a single space-md). This is the
   site-wide rule — individual list components set their own inline
   alignment / max-width, but never their flow spacing in this context. */
.content-centered :is(ul, ol) { margin-block: var(--space-md); }

/* ---- Header -------------------------------------------------------- */
:root {
    --header-h: 7.5rem; /* logo 72px + nav padding top/bottom 1.5rem each */
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 243, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 38, 34, 0.06);
}

/* Desktop: fixed bar */
@media (min-width: 968px) {
    .site-header {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }
    /* Compensate for the fixed header pushing content down */
    #main { padding-top: var(--header-h); }
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: var(--maxw);
    margin: 0 auto;
}
@media (min-width: 768px) {
    .site-nav { padding: var(--space-md) var(--space-lg); }
}

/* Logo */
.brand {
    display: inline-flex;
    align-items: center;
    color: var(--color-charcoal);
}
.brand svg {
    height: 56px;
    width: auto;
    display: block;
}
@media (min-width: 768px) { .brand svg { height: 72px; } }
@media (max-width: 480px)  { .brand svg { height: 48px; } }

/* Desktop nav links */
.nav-links {
    display: none;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}
/* Inline desktop nav only when the longer labels fit; below this the
   hamburger drawer takes over (5 items + CTA need the room). */
/* Anchor the nav to the right instead of letting space-between float it
   in the middle — otherwise it re-centers (jumps) when the "Jetzt starten"
   CTA is absent (e.g. on the sales page itself). */
@media (min-width: 1200px) { .nav-links { display: flex; margin-left: auto; } }
/* Tighter gaps on narrower desktops so everything fits without wrapping */
@media (min-width: 1200px) and (max-width: 1400px) { .nav-links { gap: var(--space-md); } }

.nav-links a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-charcoal);
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
    background: var(--color-cta);
    color: var(--color-charcoal) !important;
    padding: .6rem 1.4rem;
    border-radius: 100px;
    font-size: var(--fs-xs);
    font-weight: 500;
    transition: all var(--transition);
}
.nav-cta:hover { background: var(--color-cta-hover); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Right-aligned header actions on mobile: persistent CTA + hamburger */
.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }
/* Persistent header CTA — visible only when the inline nav is collapsed
   (the desktop nav already has its own .nav-cta). */
.header-cta {
    background: var(--color-cta);
    color: var(--color-charcoal) !important;
    padding: .5rem 1.1rem;
    border-radius: 100px;
    font-size: var(--fs-fine);
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition);
}
.header-cta:hover { background: var(--color-cta-hover); }
@media (min-width: 1200px) { .header-cta { display: none; } }
@media (max-width: 360px) { .header-cta { padding: .5rem .9rem; font-size: var(--fs-caption); } }

/* Hamburger toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-charcoal);
    transition: var(--transition);
}
@media (min-width: 1200px) { .menu-toggle { display: none; } }

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 150;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-cream);
    padding: var(--space-2xl) var(--space-lg);
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    z-index: 200;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-menu li:last-child { margin-top: var(--space-md); }
.mobile-menu a { color: var(--color-charcoal); font-size: var(--fs-h6); font-weight: 500; }
.mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
    line-height: 1;
}

/* ---- Buttons ------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--color-cta); color: var(--color-charcoal); }
.btn-primary:hover {
    background: var(--color-cta-hover);
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42,38,34,.18);
}
.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-cta);
}
.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}
.btn-arrow::after {
    content: '→';
    transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-warm-grey);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all var(--transition);
}
.text-link:hover {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-charcoal);
}

/* ---- Hero ---------------------------------------------------------- */
.hero {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero { padding-top: var(--space-xl); padding-bottom: var(--space-3xl); }
}
@media (min-width: 968px) {
    .hero { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); display: flex; align-items: center; }
    .hero .container { width: 100%; }
}
/* Compact mode for 14" laptops and other short-ish viewports.
   A 14" MBP gives ~870px of viewport height; without this, the fixed
   header (120px) + 96px section padding + 72px display type push the
   CTA below the fold. */
@media (min-width: 968px) and (max-height: 920px) {
    :root { --header-h: 5.5rem; } /* slimmer sticky header: 56px logo + 2x16px */
    .brand svg { height: 56px; }
    .site-nav { padding: var(--space-sm) var(--space-lg); }

    h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
    section { padding: var(--space-xl) 0; }

    .hero { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
    .hero-image { max-height: calc(100vh - var(--header-h) - var(--space-3xl)); }

    .sales-hero-sub { margin-bottom: var(--space-md); }
    .price-anchor { margin-bottom: var(--space-md); }
    .price-anchor strong { font-size: clamp(2.25rem, 4vw, 3rem); }
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,197,184,.3) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
}
@media (min-width: 968px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); }
}
.hero-content { animation: fadeInUp 1s ease-out; }
.hero h1 { margin-bottom: var(--space-md); }
.hero h1 .accent-italic {
    display: block;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.2;
    margin-top: .5rem;
    color: var(--color-warm-grey);
}
.hero-subtitle {
    font-size: var(--fs-lead);
    color: var(--color-warm-grey);
    margin-bottom: var(--space-lg);
    max-width: 540px;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}
@media (min-width: 480px) {
    .hero-ctas { flex-direction: row; align-items: center; gap: var(--space-md); }
}
.hero-image-wrap {
    position: relative;
    animation: fadeInUp 1s ease-out .2s backwards;
}
@media (min-width: 968px) {
    .hero-image-wrap { display: flex; justify-content: center; }
}
.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: var(--color-cream-dark);
    box-shadow: 0 30px 60px -20px rgba(42,38,34,.25);
}
@media (min-width: 968px) {
    .hero-image { max-height: calc(100vh - 160px); width: auto; }
}
.hero-image picture,
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
/* Mood/scenery image: keep the full vertical composition centered */
.hero-image--mood img { object-position: center 50%; }
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(42,38,34,.15) 100%);
    pointer-events: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Trust bar ----------------------------------------------------- */
.trust-bar { padding: var(--space-lg) 0; }
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
}
@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
        text-align: left;
    }
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
@media (min-width: 768px) {
    .trust-item { flex-direction: row; align-items: center; gap: var(--space-sm); justify-content: center; }
}
.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.trust-text { font-size: var(--fs-sm); color: var(--color-charcoal); font-weight: 500; }

/* ---- Left-aligned text sections ------------------------------------ */
/* Opt-in treatment (Kathrin's request): the eyebrow, heading and running
   copy share one left edge in a narrow readable column. The heading
   column is wide enough to keep a two-line headline intact; running copy
   is held a bit narrower for comfortable reading. Used by the homepage
   Problem section (.problem) and any section flagged .section-left.
   .content-centered stays centered everywhere else. */
.problem .content-centered,
.section-left .content-centered,
.section-left .section-header {
    text-align: left;
    max-width: 52rem;
    margin-inline: auto;
}
.problem .content-centered > p,
.section-left .content-centered > p {
    max-width: 42rem;
}
.problem p:last-child { color: var(--color-charcoal); font-weight: 500; }
/* Emphasised lines in left-aligned copy read as charcoal, not muted grey. */
.section-left .content-centered p strong { color: var(--color-charcoal); font-weight: 600; }

/* Lists and the disclaimer live inside the copy block and align to its
   left edge (their own max-width keeps a comfortable measure), so they
   line up with the heading and running copy instead of centering. */
.section-left .content-centered :is(.includes-list, .transformation-list, .for-you-list--single, .disclaimer) {
    margin-inline: 0;
}
/* The heading block already provides the gap below it, so the list that
   follows it doesn't add its own top margin (avoids a double gap). */
.section-left .section-header + .content-centered .for-you-list--single {
    margin-top: 0;
}

/* ---- Paths (Hauptweiche) ------------------------------------------ */
.paths { overflow-x: hidden; }
.paths-header { max-width: 600px; margin-inline: auto; }

.paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}
@media (min-width: 968px) {
    .paths-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: stretch;
        max-width: var(--maxw);
    }
}

.path-card {
    padding: var(--space-lg) var(--space-md);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
@media (min-width: 480px) { .path-card { padding: var(--space-xl) var(--space-lg); } }
@media (min-width: 768px) { .path-card { padding: var(--space-2xl) var(--space-xl); } }
.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(42,38,34,.08);
}
.path-card-primary {
    background: linear-gradient(135deg, #fff 0%, #fdf7f2 100%);
    border: 2px solid var(--color-charcoal);
    box-shadow: 0 10px 40px rgba(42,38,34,.10);
}

.path-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: .4rem 1.25rem;
    border-radius: 100px;
    font-size: var(--fs-caption);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}
/* Soft variant for the secondary card so the two badges differ in weight */
.path-badge--soft { background: var(--color-blush); color: var(--color-charcoal); }
.path-card h3 { margin-bottom: var(--space-xs); }
.path-tagline {
    font-family: var(--font-display);
    font-size: var(--fs-h6);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}
.path-description { margin-bottom: var(--space-md); line-height: 1.7; }

.path-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}
.path-features li {
    padding: .625rem 0;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--color-charcoal);
    font-size: var(--fs-sm);
    border-bottom: 1px solid var(--color-divider);
}
.path-features li:last-child { border-bottom: none; }
.path-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--color-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2622' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.path-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: .25rem;
}
.path-price-note { font-size: var(--fs-fine); color: var(--color-warm-grey); margin-bottom: var(--space-md); }
.path-meta { font-size: var(--fs-xs); color: var(--color-warm-grey); margin-bottom: var(--space-md); }

/* ---- About --------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 968px) {
    .about-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-2xl); }
}
.about-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -15px rgba(42,38,34,.2);
}
.about-image picture,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.about-content h1 { margin-bottom: var(--space-md); }
.about-content h2 { margin-bottom: var(--space-md); }
.about-content p { margin-bottom: var(--space-md); line-height: 1.7; }

/* Long intro: keep the portrait at the top instead of vertically centred. */
.about-grid--intro { align-items: start; }

/* Two-line subline under the intro headline. */
.about-subline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-warm-grey);
    font-size: var(--fs-subline);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

/* Book cover — used inside .about-grid; never crop, show full cover */
.book-cover { max-width: 300px; margin: 0 auto; }
.book-cover picture,
.book-cover img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -15px rgba(42,38,34,.25);
}

.about-mallorca-mention {
    display: inline-block;
    background: var(--color-blush);
    color: var(--color-charcoal);
    padding: .25rem .875rem;
    border-radius: 100px;
    font-size: var(--fs-fine);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: var(--space-sm);
    margin-right: var(--space-xs);
}

/* ---- Testimonials -------------------------------------------------- */
.testimonials { position: relative; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}
.testimonial {
    padding: var(--space-lg);
    position: relative;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: .5;
    color: var(--color-blush);
    position: absolute;
    top: 24px;
    left: 24px;
    opacity: .5;
}
.testimonial-text {
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
    margin-top: var(--space-md);
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-divider);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-blush-deep) 100%);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: var(--fs-sm); color: var(--color-charcoal); }
.testimonial-context { font-size: var(--fs-fine); color: var(--color-warm-grey); }
/* Small centered note below CTAs/offers (payment hints, guarantee reminders) */
.fine-print {
    text-align: center;
    color: var(--color-warm-grey);
    margin-top: var(--space-lg);
    font-size: var(--fs-sm);
}
.fine-print--left { text-align: left; }

/* ---- FAQ ----------------------------------------------------------- */
.faq-content { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 500;
    color: var(--color-charcoal);
    transition: color var(--transition);
    list-style: none;
    line-height: 1.3;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-toggle {
    font-size: 1.75rem;
    color: var(--color-charcoal);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1;
}
details[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    padding-bottom: var(--space-md);
    color: var(--color-warm-grey);
    line-height: 1.7;
    /* Match the global body size — .faq-answer is a <div>, so it can't inherit
       the `p` rule; reference the body token explicitly. */
    font-size: var(--fs-body);
}

/* ---- Final CTA ----------------------------------------------------- */
.final-cta {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(232,197,184,.2) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-content { max-width: 640px; margin: 0 auto; position: relative; }
.final-cta h2 { margin-bottom: var(--space-md); }
.final-cta p { font-size: var(--fs-lead); line-height: 1.7; margin-bottom: var(--space-lg); }
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    max-width: 360px;
    margin: 0 auto;
}
.final-cta-buttons .btn { width: 100%; }
@media (min-width: 768px) {
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: none;
    }
    .final-cta-buttons .btn { width: auto; }
}

/* Section colour variant: rosa closing section */
.section-rosa { background: #DBA1A8; }
.section-rosa .eyebrow,
.section-rosa h2,
.section-rosa p { color: var(--color-charcoal); }

/* ---- Footer -------------------------------------------------------- */
.site-footer {
    background: #2e2823;
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); }
}

.footer-brand .brand { color: var(--color-cream-dark); margin-bottom: var(--space-sm); }
.footer-brand .brand svg { height: 72px; }
@media (min-width: 768px) { .footer-brand .brand svg { height: 84px; } }
.footer-brand p { color: var(--color-soft-grey); font-size: var(--fs-sm); line-height: 1.6; max-width: 360px; }

.footer-col h4 {
    color: var(--color-cream);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul a,
.footer-col ul .link-btn { color: var(--color-soft-grey); font-size: var(--fs-sm); text-decoration: none; }
.footer-col ul a:hover,
.footer-col ul .link-btn:hover { color: var(--color-blush); }

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(248,243,236,.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-fine);
    color: var(--color-soft-grey);
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; text-align: left; }
}

/* ---- Contact / Kennenlernen page ---------------------------------- */
.contact-intro { padding-bottom: 0; }

.contact-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.contact-form-header h2 { margin-bottom: var(--space-xs); }
.contact-form-subtitle { font-size: var(--fs-lead); color: var(--color-warm-grey); }

/* Form fields */
.kennenlernen-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.form-row { display: flex; flex-direction: column; gap: var(--space-md); }
@media (min-width: 640px) {
    .form-row--two { flex-direction: row; }
    .form-row--two .form-field { flex: 1; }
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.form-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: .01em;
}
.form-required { color: var(--color-blush-deep); }

.kennenlernen-form input[type="text"],
.kennenlernen-form input[type="email"],
.kennenlernen-form textarea {
    font: inherit;
    font-size: var(--fs-body);
    color: var(--color-charcoal);
    background: var(--color-white);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    padding: .875rem 1rem;
    width: 100%;
    transition: border-color var(--transition);
    resize: vertical;
}
.kennenlernen-form input::placeholder,
.kennenlernen-form textarea::placeholder { color: var(--color-soft-grey); }
.kennenlernen-form input:focus,
.kennenlernen-form textarea:focus {
    outline: none;
    border-color: var(--color-charcoal);
}

.form-field--consent {
    flex-direction: row;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
}
.form-field--consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-charcoal);
    cursor: pointer;
}
.form-field--consent span {
    font-size: var(--fs-sm);
    color: var(--color-warm-grey);
    line-height: 1.5;
}
.form-field--consent a {
    color: var(--color-charcoal);
    text-decoration: underline;
}

.kennenlernen-form .btn { align-self: flex-start; margin-top: var(--space-sm); }


.hp { position: absolute; left: -9999px; }
.form-success { color: #2f7a3f; }
.form-error { color: #b3322c; }

/* ---- Accessibility ------------------------------------------------- */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-cta); color: var(--color-charcoal);
    padding: var(--space-xs) var(--space-sm); border-radius: 0 0 var(--radius) 0;
    z-index: 1000;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--color-cta); outline-offset: 2px; }
.link-btn {
    background: none; border: 0; padding: 0; cursor: pointer;
    font: inherit; color: inherit; text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---- Sales page — LOVE-UP-LADIES ---------------------------------- */

/* Hero: centred, no photo */
/* Split hero: emotional copy on the left, portrait on the right (reuses the
   .hero-grid pattern from the coaching page). Gives the first screen a human
   focal point, fills the empty right side the left-align created, and sets
   the hero apart from the text section below. */
.sales-hero { text-align: left; }
.sales-hero .eyebrow { margin-bottom: var(--space-md); }
.sales-hero h1 {
    margin-bottom: var(--space-md);
    max-width: none;
    margin-inline: 0;
    /* Longer two-sentence headline: a touch smaller than the default h1. */
    font-size: clamp(1.875rem, 4.5vw, 3rem);
}
.sales-hero-sub {
    font-size: var(--fs-lead);
    color: var(--color-warm-grey);
    line-height: 1.65;
    max-width: none;
    margin: 0 0 var(--space-lg);
}
/* Stacked mobile layout: the grid gap alone separates text from the image,
   so drop the sub's bottom margin to avoid a doubled-up gap. */
@media (max-width: 967px) {
    .sales-hero-sub { margin-bottom: 0; }
    .hero .eyebrow,
    .sales-hero .eyebrow { margin-bottom: var(--space-lg); }
    /* Stacked layout: the next section's top padding already sets the gap,
       so the hero's own bottom padding just doubles it. Trim it right down. */
    .hero,
    .sales-hero { padding-bottom: var(--space-md); }
}
/* Global reset zeroes <p> margins — restore the gap between the hero
   intro paragraphs so the Absätze are visible. */
.sales-hero-sub p + p { margin-top: var(--space-md); }
.price-anchor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .75rem;
    margin-bottom: var(--space-lg);
}
.price-anchor strong {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1;
}
.sales-hero-meta {
    font-size: var(--fs-fine);
    color: var(--color-soft-grey);
    letter-spacing: .04em;
    margin-top: var(--space-sm);
}

/* Pain point list */
.symptom-list {
    list-style: none;
    max-width: var(--maxw-content);
    margin: var(--space-lg) auto 0;
    text-align: left;
    display: grid;
    gap: .75rem;
}
@media (min-width: 640px) { .symptom-list { grid-template-columns: 1fr 1fr; } }
.symptom-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--fs-body);
    color: var(--color-warm-grey);
    line-height: 1.55;
}
.symptom-list li::before {
    content: '–';
    color: var(--color-blush-deep);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: .05em;
}

/* Programme mockup — visualises the scope of the online programme.
   The PNG has a transparent background so the devices float on the surface. */
.program-mockup {
    margin-top: var(--space-lg);
    text-align: center;
}
.program-mockup img {
    width: 100%;
    max-width: 760px;
    height: auto;
    margin-inline: auto;
    filter: drop-shadow(0 18px 30px rgba(60, 45, 30, .12));
}

/* Module cards */
.module-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
@media (min-width: 768px) { .module-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); } }
.module-card {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.module-num {
    font-family: var(--font-body);
    font-size: var(--fs-caption);
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-blush-deep);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}
.module-card h3 {
    font-size: var(--fs-h4);
    font-weight: 400;
}
.module-card p { font-size: var(--fs-body); line-height: 1.7; }

/* Includes list */
.includes-list {
    list-style: none;
    max-width: 36rem;
    margin: var(--space-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}
.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: var(--fs-body);
    color: var(--color-warm-grey);
    line-height: 1.6;
}
.includes-list li strong {
    display: block;
    color: var(--color-charcoal);
    margin-bottom: .125rem;
}
.includes-list li::before {
    content: '✦';
    color: var(--color-blush-deep);
    flex-shrink: 0;
    font-size: var(--fs-caption);
    margin-top: .3em;
}

/* For-you comparison */
.for-you-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 56rem;
    margin: var(--space-xl) auto 0;
}
@media (min-width: 640px) { .for-you-grid { grid-template-columns: 1fr 1fr; } }
.for-you-col {
    padding: var(--space-lg) var(--space-xl);
}
.for-you-col h4 {
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-cream-dark);
}
.for-you-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.for-you-list li {
    position: relative;
    padding-left: 1.625rem;
    font-size: var(--fs-body);
    color: var(--color-warm-grey);
    line-height: 1.5;
}
.for-you-list li::before { position: absolute; left: 0; top: .05em; font-weight: 700; }
.for-you-list--yes li::before { content: '✓'; color: #6a9b6a; }
.for-you-list--no li::before { content: '✕'; color: var(--color-soft-grey); }
/* Single centered list (no two-column comparison) */
.for-you-list--single { max-width: 38rem; margin: var(--space-xl) auto 0; text-align: left; }
/* Legal/medical disclaimer note under a section */
.disclaimer {
    max-width: 38rem;
    margin-inline: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-cream-dark);
    font-size: var(--fs-fine);
    line-height: 1.6;
}

/* Guarantee — centered, typography-led */
.guarantee {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}
.guarantee-days {
    font-family: var(--font-display);
    font-size: var(--fs-display-xl);
    font-weight: 300;
    color: var(--color-blush-deep);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-md);
}
.guarantee h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
}
.guarantee p { font-size: var(--fs-body); line-height: 1.75; margin-bottom: var(--space-md); }
.guarantee p:last-child { margin-bottom: 0; }

/* Offer box */
.offer-box {
    padding: var(--space-xl) var(--space-lg);
    max-width: 480px;
    margin: var(--space-xl) auto 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(42,38,34,.12);
}
.offer-box .btn { width: 100%; }
.offer-price {
    font-family: var(--font-display);
    font-size: var(--fs-display-lg);
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-xs);
}
.offer-note {
    font-size: var(--fs-xs);
    color: var(--color-warm-grey);
    margin-bottom: var(--space-lg);
    display: block;
}
.offer-bump {
    background: var(--color-cream-dark);
    border-radius: var(--radius-md);
    padding: .75rem var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--fs-xs);
    color: var(--color-warm-grey);
    text-align: left;
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}
.offer-bump strong { color: var(--color-charcoal); }

/* Spacing utility for follow-up links/elements after a text block */
.mt-lg { margin-top: var(--space-lg); }

/* Row of buttons with consistent wrapping gap */
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* ---- Modal (e.g. form success confirmation) ------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,38,34,.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    z-index: 300;
}
.modal-overlay.is-open { display: flex; }
.modal {
    padding: var(--space-xl) var(--space-lg);
    max-width: 28rem;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(42,38,34,.25);
}
.modal h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}
.modal p { color: var(--color-warm-grey); line-height: 1.7; margin-bottom: var(--space-md); }
.modal-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-soft-grey);
    padding: .25rem .5rem;
}
.modal-close:hover { color: var(--color-charcoal); }

/* Full-bleed image band (scene-setting divider, e.g. Mallorca on the 1:1 page) */
.image-band { padding: 0; line-height: 0; }
.image-band picture,
.image-band img {
    width: 100%;
    height: clamp(300px, 45vh, 520px);
    object-fit: cover;
}


/* Audio player card (e.g. voice-message sample on Von Frau zu Frau) */
.audio-player {
    margin: var(--space-lg) auto 0;
    max-width: 460px;
    padding: var(--space-md);
    box-shadow: 0 10px 30px -12px rgba(42,38,34,.2);
}
.audio-player audio { width: 100%; display: block; }

/* Voice-message archive — chronological list of message cards */
.voice-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.voice-card {
    padding: var(--space-lg);
    box-shadow: 0 10px 30px -15px rgba(42,38,34,.18);
}
.voice-date {
    font-size: var(--fs-caption);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-blush-deep);
    display: block;
    margin-bottom: .4rem;
}
.voice-title { font-size: var(--fs-h4); margin-bottom: var(--space-xs); }
.voice-intro { color: var(--color-warm-grey); line-height: 1.6; margin-bottom: var(--space-md); }
.voice-card audio { width: 100%; display: block; }

/* Numbered process steps (e.g. 1:1 page: Anfrage -> Gespräch -> Entscheidung) */
.steps-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 56rem;
    margin: var(--space-xl) auto 0;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 2.75rem;
    color: var(--color-blush-deep);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-sm);
}
.step h3 { font-size: var(--fs-h5); margin-bottom: var(--space-xs); }
.step p { color: var(--color-warm-grey); line-height: 1.6; font-size: var(--fs-body); }

/* ThriveCart trigger wrapper — must not affect surrounding layout */
.tc-v2-embeddable-trigger { display: contents; }

/* ThriveCart's embed script injects a scoped reset at runtime
   (.tc-v2-embeddable-trigger button { padding:0; color:inherit; ... })
   which beats .btn — re-assert our button styling with higher specificity. */
.tc-v2-embeddable-trigger button.btn {
    padding: 1rem 2rem;
    letter-spacing: .02em;
    line-height: 1.65;
}
.tc-v2-embeddable-trigger button.btn-primary { color: var(--color-charcoal); }

/* Transformation vision list ("Stell dir vor...") */
.transformation-list {
    list-style: none;
    max-width: var(--maxw-content);
    margin: var(--space-xl) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.transformation-list li {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1.4;
    padding-left: var(--space-lg);
    position: relative;
}
.transformation-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blush-deep);
    font-style: normal;
    font-family: var(--font-body);
    font-size: 1rem;
    top: .35em;
}

/* Mid-page CTA strip */
.midpage-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}
.midpage-cta p {
    font-size: var(--fs-lead);
    color: var(--color-warm-grey);
    margin-bottom: var(--space-md);
}
.midpage-cta .midpage-price {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    color: var(--color-soft-grey);
    margin-top: var(--space-sm);
    display: block;
}

/* ---- About page ---------------------------------------------------- */

.about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.375rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1.4;
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    position: relative;
}
.about-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0;
    color: var(--color-blush);
    position: absolute;
    top: var(--space-lg);
    left: 0;
    opacity: .5;
}


/* ---- Scroll-to-top button ------------------------------------------ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-charcoal);
    color: var(--color-cream);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    z-index: 90;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover { background: var(--color-warm-grey); }

/* ── Cookie-Consent-Banner an die Markenpalette angleichen ────────────
   "Alle akzeptieren" ist der primäre CTA in Marken-Gold; "Nur
   notwendige" bleibt als gleich großer, klar sichtbarer Button daneben.
   Bewusst KEIN Dark Pattern: Ablehnen ist gleich prominent erreichbar
   (equal prominence), nur farblich weniger betont — DSGVO-konform.
   Scoped auf #cc-main, damit die Overrides die :root-Defaults der
   vendored Library schlagen, egal in welcher Reihenfolge das CSS lädt. */
#cc-main {
    --cc-font-family: var(--font-body);
    --cc-bg: var(--color-cream);
    --cc-primary-color: var(--color-charcoal);
    --cc-secondary-color: var(--color-warm-grey);
    --cc-link-color: var(--color-link);
    --cc-btn-border-radius: var(--radius);
    --cc-modal-border-radius: var(--radius-lg);

    /* Primär – "Alle akzeptieren" */
    --cc-btn-primary-bg: var(--color-cta);
    --cc-btn-primary-color: var(--color-charcoal);
    --cc-btn-primary-border-color: var(--color-cta);
    --cc-btn-primary-hover-bg: var(--color-cta-hover);
    --cc-btn-primary-hover-color: var(--color-charcoal);
    --cc-btn-primary-hover-border-color: var(--color-cta-hover);

    /* Sekundär – "Nur notwendige" / "Einstellungen": dezent, aber gleichwertig */
    --cc-btn-secondary-bg: transparent;
    --cc-btn-secondary-color: var(--color-clay);
    --cc-btn-secondary-border-color: var(--color-divider);
    --cc-btn-secondary-hover-bg: var(--color-cream-dark);
    --cc-btn-secondary-hover-color: var(--color-charcoal);
    --cc-btn-secondary-hover-border-color: var(--color-soft-grey);

    /* Toggles im "an"-Zustand in Marken-Gold */
    --cc-toggle-on-bg: var(--color-cta);
}

/* Kompaktes, dezentes Kärtchen unten links — soll die Salespage nicht
   dominieren. Nur das erste Banner (.cm) wird verschlankt; der
   Einstellungen-Dialog (.pm) bleibt unverändert lesbar. */
#cc-main .cm {
    max-width: 20rem;
    box-shadow: 0 6px 24px rgba(42, 38, 34, .12);
}
#cc-main .cm__title {
    font-size: var(--fs-sm);
    font-weight: 600;
}
#cc-main .cm__desc {
    font-size: var(--fs-fine);
    line-height: 1.5;
    color: var(--color-warm-grey);
}
#cc-main .cm__btn {
    font-size: var(--fs-fine);
}
