/* =================================================================
   KREATIV FACTORY — styles.css
   Kopf aus, Herz an.
   ================================================================= */

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

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2A2522;
    background: #FAF7F2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ----- Layout-Container ------------------------------------------- */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
}

/* ----- Typografie ------------------------------------------------- */
h1, h2, h3, h4, .brand-name, .section-title, .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: #2A2522;
    margin: 0;
}

p {
    margin: 0 0 1em;
}

.heart {
    color: #E74C3C;
    display: inline-block;
}

/* Weiße Umrandung für Herzen auf farbigen Buttons (Lesbarkeit auf Orange/Terrakotta) */
.btn .heart,
.btn-primary .heart,
.btn-hero-cta .heart,
.btn-buchen .heart,
.federleicht-final-btn .heart {
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0   -1.5px 0 #fff,
         0    1.5px 0 #fff,
        -1.5px 0   0 #fff,
         1.5px 0   0 #fff;
}

.accent-terracotta {
    color: #D97757;
}

/* Federleicht-Hauptkarte: Aquarell-Bild als Header */
.program-main-image {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
    margin: 0 auto 28px;
    border-radius: 18px;
}


/* Akzent für wichtige Wörter (du, dein, dir) — extra dick + dezenter Schatten */
.akzent {
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(217, 119, 87, 0.22);
    letter-spacing: 0.2px;
}

/* Dezenter Sub-Satz unter den Video-Testimonials */
.testimonials-soft-note {
    margin-top: 48px;
    text-align: center;
    font-size: clamp(16px, 1.4vw, 19px);
    color: #6B6259;
    font-style: italic;
    margin-bottom: 0;
}

/* dunklere Variante des sekundären Hero-CTA (für helle Sektionen) */
.btn-hero-cta-secondary--dark {
    color: #2A2522 !important;
    border-color: #2A2522 !important;
    text-shadow: none !important;
}

.btn-hero-cta-secondary--dark:hover {
    background: #2A2522 !important;
    color: #FFFFFF !important;
}

/* Rainbow-Wort: keine extra Styles nötig, Farben kommen inline */
.rainbow-word {
    font-style: italic;
    display: inline-block;
}

/* ----- Buttons ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: #D97757;
    color: #fff;
    box-shadow: 0 6px 18px rgba(217, 119, 87, 0.28);
}

.btn-primary:hover {
    background: #C26649;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(194, 102, 73, 0.32);
}

.btn-outline {
    background: transparent;
    color: #2A2522;
    border: 1.5px solid #2A2522;
}

.btn-outline:hover {
    background: #2A2522;
    color: #FAF7F2;
}

.btn-pill {
    padding: 10px 22px;
    font-size: 14px;
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn:hover .arrow {
    transform: translateX(3px);
}

/* ----- Pills ------------------------------------------------------ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 33px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 999px;
    letter-spacing: 0.2px;
}

.pill-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    color: #6B6259;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pill-soft {
    background: #fff;
    color: #6B6259;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.slogan-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 18px 0 28px;
    padding: 10px 22px;
    background: #fff;
    color: #2A2522;
    font-weight: 500;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* ============================================================== */
/*  1. STICKY HEADER                                                */
/* ============================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 14px 0;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #2A2522;
}

.brand-slogan {
    font-size: 16px;
    color: #6B6259;
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    color: #2A2522;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D97757;
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 4px;
}

/* Mobile-Burger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2A2522;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================== */
/*  2. HERO                                                         */
/* ============================================================== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    isolation: isolate;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 245, 0.55);
    z-index: -1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 600;
    margin: 24px 0 22px;
    line-height: 1.02;
    letter-spacing: -0.5px;
    word-break: keep-all;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.hero-title-line {
    display: block;
}

.hero-title .rainbow-word {
    font-size: 1em;
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.hero-title-tail {
    font-style: italic;
    color: #2A2522;
    display: inline-block;
    margin-left: 8px;
}

.hero-sub {
    max-width: 720px;
    font-size: clamp(20px, 1.9vw, 26px);
    font-weight: 500;
    color: #6B6259;
    line-height: 1.55;
    margin: 0 auto;
}

.hero-sub .accent-terracotta {
    font-weight: 600;
}

/* Hero-Promise — Ergebnislücke direkt unter Hero-Sub */
.hero-promise {
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    color: #2A2522;
    max-width: 760px;
    margin: 24px auto 8px;
    text-align: center;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 90px;
}

/* Prominenter Hero-CTA: weißer Hintergrund, knallig oranges Text */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    color: #FF5A1F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    padding: 22px 48px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(255, 90, 31, 0.22), 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.25s ease, color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: 2px solid #FFFFFF;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    color: #E64810;
    box-shadow: 0 16px 38px rgba(255, 90, 31, 0.32), 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .btn-hero-cta {
        padding: 18px 32px;
        font-size: 18px;
    }
}

/* Sekundärer Hero-CTA: transparent mit weißem Rand — für WhatsApp-Community */
.btn-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: 2px solid #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.btn-hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .btn-hero-cta-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Hero Mini-Karten */
.hero-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(42, 37, 34, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(42, 37, 34, 0.14);
}

.mini-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

/* Mini-Karten-Tönungen (Hero) */
.mini-card--federleicht {
    background: linear-gradient(180deg, rgba(253, 236, 234, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%);
}
.mini-icon--federleicht {
    background: #FDECEA;
    color: #E74C3C;
}

.mini-card--haengematte {
    background: linear-gradient(180deg, rgba(225, 240, 250, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%);
}
.mini-icon--haengematte {
    background: #E1F0FA;
    color: #3498DB;
}

.mini-card--stille {
    background: linear-gradient(180deg, rgba(255, 248, 214, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%);
}
.mini-icon--stille {
    background: #FFF1D6;
    color: #D4A017;
}

.mini-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.mini-card p {
    font-size: 14px;
    color: #6B6259;
    margin: 0;
}

.scroll-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B6259;
    margin-top: 8px;
}

.scroll-more .arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================================== */
/*  2.5  PAIN-SECTION „Kennst du das?"                              */
/* ============================================================== */
.pain-section {
    position: relative;
    background-image: url('assets/aquarell-landschaft.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-margin-top: 100px;
    isolation: isolate;
}

.pain-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 252, 248, 0.78);
    z-index: -1;
}

.pain-section .section-head {
    margin-bottom: 56px;
}

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

.pain-card {
    background: #FFF9F0;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 6px 22px rgba(42, 37, 34, 0.05);
    border: 1px solid rgba(217, 119, 87, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pain-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.pain-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 500;
    color: #2A2522;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.1px;
}

/* Warme Töne — Karten 1–3 */
.pain-card.tone-warm-1 {
    border-color: rgba(231, 76, 60, 0.18);
}
.pain-card.tone-warm-1 .pain-icon {
    background: #FDECEA;
}

.pain-card.tone-warm-2 {
    border-color: rgba(230, 126, 34, 0.18);
}
.pain-card.tone-warm-2 .pain-icon {
    background: #FFF1D6;
}

.pain-card.tone-warm-3 {
    border-color: rgba(241, 196, 15, 0.22);
}
.pain-card.tone-warm-3 .pain-icon {
    background: #FFF8D6;
}

/* Kühlere Töne — Karten 4–6 */
.pain-card.tone-cool-1 {
    border-color: rgba(39, 174, 96, 0.18);
}
.pain-card.tone-cool-1 .pain-icon {
    background: #E2F4E5;
}

.pain-card.tone-cool-2 {
    border-color: rgba(52, 152, 219, 0.18);
}
.pain-card.tone-cool-2 .pain-icon {
    background: #E1F0FA;
}

.pain-card.tone-cool-3 {
    border-color: rgba(155, 89, 182, 0.18);
}
.pain-card.tone-cool-3 .pain-icon {
    background: #EFE5FF;
}

/* Tone 7 — frisches Grün passend zum Sprössling 🌱 */
.pain-card.tone-cool-4 {
    border-color: rgba(39, 174, 96, 0.22);
}
.pain-card.tone-cool-4 .pain-icon {
    background: #E2F4E5;
}

.pain-outro {
    text-align: center;
    margin-top: 56px;
}

.pain-outro-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px);
    color: #2A2522;
    font-weight: 500;
    line-height: 1.4;
    margin: 50px auto 14px;
    max-width: 720px;
    text-align: center;
}

.pain-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #D97757;
    padding: 8px 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pain-cta:hover {
    color: #C26649;
    border-bottom-color: #C26649;
    transform: translateY(2px);
}

.pain-cta .arrow {
    animation: bounce 2s infinite;
}

/* Responsive */
@media (max-width: 980px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        padding: 26px 24px;
    }

    .pain-card p {
        font-size: 17px;
    }
}

/* ============================================================== */
/*  2.7  TESTIMONIALS OBEN — zwischen Pain & Über mich              */
/* ============================================================== */
.testimonials-top {
    background: #FFFCF8;
    padding: 70px 0 80px;
    scroll-margin-top: 100px;
}

.testimonials-top-head {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1020px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 34px rgba(42, 37, 34, 0.07);
    border: 1px solid rgba(217, 119, 87, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.testimonial-card .quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 60px;
    line-height: 0.5;
    color: #D97757;
    display: block;
    margin: 8px 0 -10px;
}

.testimonial-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    color: #2A2522;
    line-height: 1.6;
    margin: 0;
}

/* Video-Testimonial-Karte (obere Stimmen-Sektion) */
.testimonial-video-card {
    padding: 28px;
    gap: 18px;
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #F5EFE6;
    box-shadow: 0 8px 24px rgba(42, 37, 34, 0.10);
    aspect-ratio: 16 / 9;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-video-card .testimonial-author {
    align-items: center;
    gap: 12px;
    padding: 0 4px;
}

.testimonial-video-card .quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    line-height: 0.5;
    color: #D97757;
    display: block;
    margin: 6px 0 -6px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FBE3D6 0%, #E1F0FA 100%);
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(42, 37, 34, 0.08);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2A2522;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 13px;
    color: #6B6259;
    line-height: 1.3;
}

/* ============================================================== */
/*  4.5  TESTIMONIALS KARUSSELL — vor "Bereit für deine Pause?"     */
/* ============================================================== */
.testimonials-carousel {
    background: linear-gradient(180deg, #E8F1DA 0%, #DFEBCB 60%, #E8F1DA 100%);
    padding: 100px 0 60px;
    scroll-margin-top: 100px;
    overflow: hidden;
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 30px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 420px;
    max-width: 88vw;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 26px;
    padding: 44px 40px;
    box-shadow: 0 14px 40px rgba(42, 37, 34, 0.08);
    border: 1px solid rgba(217, 119, 87, 0.06);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.carousel-card:first-child { margin-left: max(24px, calc(50% - 210px)); }
.carousel-card:last-child { margin-right: max(24px, calc(50% - 210px)); }

@media (max-width: 640px) {
    .carousel-card { flex-basis: min(300px, 86vw); padding: 32px 26px; }
    .carousel-card:first-child { margin-left: max(16px, calc(50% - 150px)); }
    .carousel-card:last-child { margin-right: max(16px, calc(50% - 150px)); }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #D97757;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(217, 119, 87, 0.32);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 10px 24px rgba(217, 119, 87, 0.42); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.96); }
.carousel-arrow-prev { left: calc(50% - 280px); }
.carousel-arrow-next { right: calc(50% - 280px); }

@media (max-width: 900px) {
    .carousel-arrow-prev { left: 12px; }
    .carousel-arrow-next { right: 12px; }
}

@media (max-width: 640px) {
    .carousel-arrow { width: 42px; height: 42px; font-size: 18px; }
    .carousel-arrow-prev { left: 6px; }
    .carousel-arrow-next { right: 6px; }
}

/* Pills auf Mobile sanfter (sonst sind 22px Schrift zu wuchtig) */
@media (max-width: 640px) {
    .pill {
        font-size: 17px;
        padding: 11px 22px;
        gap: 8px;
    }
}

.carousel-card .quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 66px;
    line-height: 0.5;
    color: #D97757;
    display: block;
    margin: 8px 0 -10px;
}

.carousel-card .testimonial-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18.5px;
    line-height: 1.55;
    color: #2A2522;
}

/* Initial-Avatare im Karussell */
.testimonial-avatar--initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
    background: #6B6259;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(42, 37, 34, 0.10);
}

.avatar-wolfgang {
    background: #4A6582;
}

.avatar-katrin {
    background: #D97757;
}

.avatar-anonym {
    background: #E8A1B8;
    font-size: 26px;
}

/* Foto-Avatar (z. B. Katrin) — kreisrund mit dezentem Terrakotta-Ring */
.testimonial-avatar--photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #D97757;
    box-shadow: 0 4px 12px rgba(42, 37, 34, 0.10);
    background: none;
    padding: 0;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(217, 119, 87, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
    background: #D97757;
    transform: scale(1.2);
}

.carousel-swipe-hint {
    text-align: center;
    font-size: 13px;
    color: #6B6259;
    margin-top: 14px;
    letter-spacing: 0.5px;
    display: none;
}

@media (max-width: 768px) {
    .testimonials-top-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .testimonial-card {
        padding: 32px 26px;
    }

    .testimonial-video-card {
        padding: 22px;
    }

    .testimonial-text {
        font-size: 16.5px;
    }

    .carousel-card {
        padding: 36px 28px;
    }

    .carousel-card .testimonial-text {
        font-size: 18px;
    }

    .carousel-swipe-hint {
        display: block;
    }
}

/* ============================================================== */
/*  3. ÜBER MICH                                                    */
/* ============================================================== */
.about {
    background: #FAF7F2;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-title {
    font-size: clamp(38px, 5.5vw, 60px);
    margin: 22px 0 18px;
    font-weight: 600;
    line-height: 1.1;
}

.section-title .rainbow-word {
    font-weight: 700;
}

.section-sub {
    font-size: clamp(17px, 1.4vw, 19px);
    color: #4F4842;
    line-height: 1.55;
    max-width: 620px;
    margin: 14px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: start;
}

/* Linke Spalte: Bild + Zitat */
.about-visual {
    position: relative;
    padding-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(42, 37, 34, 0.14);
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg);
}

.about-image-inner {
    border-radius: 16px;
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-quote {
    position: absolute;
    bottom: 0;
    right: -20px;
    max-width: 280px;
    background: #fff;
    padding: 22px 24px 20px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(42, 37, 34, 0.12);
    transform: rotate(2deg);
}

.about-quote .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 0.4;
    color: #D97757;
    display: block;
    margin-bottom: 10px;
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: #2A2522;
    margin: 0;
    line-height: 1.5;
}

/* Rechte Spalte: Text */
.about-text p {
    font-size: 17.5px;
    color: #4A413A;
    line-height: 1.78;
    margin-bottom: 18px;
}

.about-text p:first-child {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 23px;
    color: #2A2522;
    line-height: 1.4;
    margin-bottom: 24px;
}

.about-text .accent-terracotta strong {
    color: #D97757;
    font-weight: 600;
}

/* Stat-Karten */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.stat-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(42, 37, 34, 0.06);
    border: 1px solid rgba(217, 119, 87, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(42, 37, 34, 0.1);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1;
    color: #D97757;
    margin-bottom: 4px;
}

.stat-title {
    font-weight: 500;
    color: #6B6259;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 15px;
}

.stat-text {
    font-size: 14.5px;
    color: #6B6259;
    line-height: 1.55;
}

/* ============================================================== */
/*  4. KURSE & PROGRAMME                                            */
/* ============================================================== */
.courses {
    position: relative;
    background-color: #F5EFE6;
    background-image:
        linear-gradient(rgba(245, 239, 230, 0.85), rgba(245, 239, 230, 0.85)),
        url('assets/aquarell-palette.jpg');
    background-size: auto, 350px auto;
    background-repeat: no-repeat, no-repeat;
    background-position: center, left center;
}

/* Scroll-Anker-Offset wegen Sticky-Header */
#kurs-federleicht,
#kurs-haengematte,
#kurs-stille {
    scroll-margin-top: 100px;
}

.program-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px 48px 50px;
    box-shadow: 0 16px 40px rgba(42, 37, 34, 0.07);
    position: relative;
    margin-bottom: 32px;
}

.badge-orange {
    display: inline-block;
    background: #FBE3D6;
    color: #D97757;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.program-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.program-title {
    font-size: clamp(38px, 4vw, 52px);
    margin-bottom: 4px;
    line-height: 1.05;
}

.program-subtitle {
    color: #D97757;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 22px;
}

.program-text {
    font-size: 16px;
    color: #4A413A;
    line-height: 1.75;
    margin-bottom: 24px;
}

.program-quote {
    margin: 0;
    padding: 22px 26px;
    background: #FAF5EE;
    border-left: 4px solid #D97757;
    border-radius: 0 14px 14px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #2A2522;
    line-height: 1.55;
    position: relative;
}

.program-quote .quote-mark {
    color: #D97757;
    font-size: 42px;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

.program-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #4A413A;
    line-height: 1.5;
}

.feat-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #FBE3D6;
    color: #D97757;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Zwei kleinere Karten */
.program-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.program-card-small {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 10px 28px rgba(42, 37, 34, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(42, 37, 34, 0.1);
}

.small-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.program-card-small h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.program-card-small p {
    font-size: 15px;
    color: #6B6259;
    line-height: 1.65;
    margin: 0;
}

/* Kleine Programm-Karte MIT Bild-Header (z. B. "Malen & Entspannen") */
.program-card-small--with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-card-small__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 4px 14px rgba(42, 37, 34, 0.06);
}

.program-card-small__body {
    padding: 32px 32px 36px;
}

.program-card-small--with-image .small-icon {
    margin-top: 0;
}

/* Programm-Karten — Untertitel unter dem Titel */
.program-card-small__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #D97757;
    margin: -4px 0 14px;
    line-height: 1.4;
}

/* Tönungen der kleinen Programm-Karten-Icons */
.small-icon--haengematte {
    background: #E1F0FA;
    color: #3498DB;
}

.small-icon--stille {
    background: #FFF1D6;
    color: #D4A017;
}

/* ============================================================== */
/*  3.7  KONZEPT-SEKTION — Jackys Skizze der 3 Säulen               */
/* ============================================================== */
.konzept-section {
    padding: 90px 0;
    background: #FFFCF8;
    text-align: center;
    scroll-margin-top: 100px;
}

.konzept-section .section-title {
    margin: 18px auto 14px;
}

.konzept-section .section-subtitle {
    font-size: clamp(16px, 1.4vw, 18px);
    color: #6B6259;
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto;
}

.konzept-skizze {
    max-width: 720px;
    margin: 32px auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(42, 37, 34, 0.08);
}

.konzept-skizze img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.konzept-text {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #4A413A;
}

.konzept-text strong {
    color: #D97757;
    font-weight: 600;
}

@media (max-width: 600px) {
    .konzept-section {
        padding: 70px 0;
    }

    .konzept-skizze {
        padding: 16px;
        margin: 24px auto;
    }

    .konzept-text {
        font-size: 16.5px;
    }
}

/* CTA Sektion (steht nach Testimonial-Karussell) */
.cta-section {
    background: #F5EFE6;
    padding: 0 0 110px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 0 80px;
    }
}

/* CTA Karte */
.cta-card {
    background: #FFF9F0;
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    color: #2A2522;
    box-shadow: 0 16px 40px rgba(42, 37, 34, 0.10);
}

.cta-card h3 {
    color: #2A2522;
    font-size: 34px;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 17px;
    color: #6B6259;
    margin-bottom: 26px;
}

/* ============================================================== */
/*  2.3  FÜR DICH GEMACHT, WENN DU ...                              */
/* ============================================================== */
.fuer-dich-section {
    padding: 110px 0;
    background: #FAF7F2;
}

.fuer-dich-section .container {
    text-align: center;
}

.fuer-dich-section .section-title {
    margin: 22px auto 32px;
}

.fuer-dich-intro {
    max-width: 760px;
    margin: 18px auto 36px;
    text-align: center;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.55;
    color: #2A2522;
    font-weight: 500;
}

.fuer-dich-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}

.fuer-dich-list li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.55;
    color: #2A2522;
    padding: 18px 0;
    border: none;
    letter-spacing: -0.1px;
}

.fuer-dich-list li + li {
    border-top: 1px solid rgba(217, 119, 87, 0.15);
}

.fuer-dich-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-weight: 600;
    color: #D97757;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.35;
    margin: 50px auto 0;
    max-width: 720px;
    text-align: center;
}

/* ============================================================== */
/*  3.5  AQUARELL-BANNER (vollbreit)                                */
/* ============================================================== */
.art-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.art-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: cover;
    object-position: center;
}

/* ============================================================== */
/*  5. FOOTER                                                       */
/* ============================================================== */
.rainbow-divider {
    display: flex;
    width: 100%;
    height: 4px;
}

.rainbow-divider span {
    flex: 1;
    display: block;
}

.site-footer {
    background: #2A2522;
    color: #E8DCC5;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #FAF7F2;
}

.footer-brand-slogan {
    font-size: 12px;
    color: rgba(250, 247, 242, 0.7);
    margin-top: 2px;
}

.footer-text {
    color: rgba(250, 247, 242, 0.7);
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #FAF7F2;
    margin: 0 0 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(250, 247, 242, 0.72);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #D97757;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.12);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(250, 247, 242, 0.6);
}

/* ============================================================== */
/*  RESPONSIVE                                                      */
/* ============================================================== */
@media (max-width: 980px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-quote {
        right: 0;
        max-width: 320px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 22px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav .nav-link {
        padding: 12px 4px;
        border-bottom: 1px solid #F0EAE0;
    }

    .site-nav .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 12px;
        align-self: flex-start;
    }

    .hero-cards,
    .about-cards,
    .program-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        margin-bottom: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .program-card {
        padding: 36px 28px;
    }

    .about-image {
        transform: rotate(0deg);
    }

    .about-quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -20px;
        margin-left: 20px;
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8.5vw, 3rem);
        word-break: keep-all;
        overflow-wrap: anywhere;
        hyphens: auto;
        max-width: 100%;
        letter-spacing: -0.3px;
    }

    .hero-sub {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
    }

    .courses {
        background-size: auto, 220px auto;
        background-position: center, left top;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
        word-break: keep-all;
        overflow-wrap: anywhere;
        hyphens: auto;
        max-width: 100%;
    }

    .hero-sub {
        font-size: 16px;
    }

    .section-title {
        font-size: 34px;
    }

    .program-title {
        font-size: 32px;
    }

    .cta-card {
        padding: 38px 24px;
    }

    .cta-card h3 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .brand-logo {
        height: 42px;
    }

    .brand-name {
        font-size: 17px;
    }
}

/* ============================================================== */
/*  3.5  WAS DU MITNIMMST — Ergebnis-Sektion                        */
/* ============================================================== */
.ergebnis-section {
    background: #FFFCF8;
    text-align: center;
    scroll-margin-top: 100px;
}

.ergebnis-section .section-title {
    margin: 18px auto 14px;
}

.ergebnis-section .section-sub {
    margin: 14px auto 0;
}

.ergebnis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.ergebnis-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 10px 28px rgba(42, 37, 34, 0.07);
    text-align: left;
}

.ergebnis-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.ergebnis-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: #2A2522;
}

.ergebnis-card p {
    font-size: 16.5px;
    line-height: 1.65;
    color: #4F4842;
    margin: 0;
}

@media (max-width: 768px) {
    .ergebnis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ergebnis-card {
        padding: 30px 26px;
    }
}

/* ============================================================== */
/*  Federleicht — Meta-Zeile (Dauer · Preis · Format)               */
/* ============================================================== */
.program-meta {
    font-size: 16px;
    font-weight: 500;
    color: #6B6259;
    margin: 4px 0 18px;
    letter-spacing: 0.2px;
}

.program-meta strong {
    color: #D97757;
    font-weight: 700;
}

/* ============================================================== */
/*  4.55 WHATSAPP-COMMUNITY-SEKTION                                 */
/* ============================================================== */
.whatsapp-section {
    background: #FFFCF8;
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.whatsapp-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9EF 100%);
    border-radius: 28px;
    padding: 56px 44px;
    box-shadow: 0 14px 40px rgba(42, 37, 34, 0.08);
}

.whatsapp-emoji {
    font-size: 56px;
    margin-bottom: 10px;
    line-height: 1;
}

.whatsapp-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 38px);
    margin: 10px 0 18px;
    color: #2A2522;
}

.whatsapp-box p {
    font-size: 18px;
    line-height: 1.65;
    color: #4F4842;
    max-width: 540px;
    margin: 0 auto 28px;
}

.whatsapp-note {
    font-size: 14px;
    color: #6B6259;
    margin-top: 24px;
    font-style: italic;
}

@media (max-width: 600px) {
    .whatsapp-section {
        padding: 60px 0;
    }

    .whatsapp-box {
        padding: 42px 26px;
    }

    .whatsapp-box p {
        font-size: 16.5px;
    }
}

/* ============================================================== */
/*  LEGAL PAGES (Impressum + Datenschutz)                         */
/* ============================================================== */
.legal-page {
    padding: 160px 24px 100px;
    max-width: 820px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-top: 56px;
    margin-bottom: 18px;
    color: #2A2522;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #4F4842;
    line-height: 1.75;
    margin-bottom: 1em;
}

.legal-page ul {
    color: #4F4842;
    line-height: 1.75;
    padding-left: 20px;
    margin-bottom: 1em;
}

.legal-page li {
    margin-bottom: 0.5em;
}

.legal-page a {
    color: #D97757;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page strong {
    color: #2A2522;
}

/* Kleine Meta-Zeile im Footer mit Impressum/Datenschutz */
.footer-meta a {
    color: inherit;
}

.footer-meta a:hover {
    color: #D97757;
}

/* ============================================================== */
/*  POINTE-SATZ — "Was du mitnimmst" Schluss-Akkord                 */
/* ============================================================== */
.section-pointe {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 600;
    color: #D97757;
    text-align: center;
    margin: 60px auto 0;
    max-width: 760px;
    line-height: 1.35;
}

/* ============================================================== */
/*  HAUPTPROGRAMM-BADGE (Federleicht Mini-Karte im Hero)            */
/* ============================================================== */
.hauptprogramm-badge {
    background: #FFFAEC;
    color: #C26649;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 6px;
}

/* Federleicht-Mini-Karte als Hauptprodukt hervorheben */
.mini-card--federleicht {
    box-shadow: 0 12px 32px rgba(217, 119, 87, 0.18);
    border: 2px solid rgba(217, 119, 87, 0.25);
}

/* ============================================================== */
/*  BUCHEN-BUTTON (Federleicht-Anmeldung)                           */
/* ============================================================== */
.btn-buchen {
    margin-top: 24px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
}

/* ============================================================== */
/*  WHATSAPP-FEATURES-LISTE (3-Punkte-Vorschau)                     */
/* ============================================================== */
.whatsapp-features {
    list-style: none;
    padding: 0;
    margin: 20px auto 32px;
    text-align: left;
    max-width: 540px;
}

.whatsapp-features li {
    padding: 12px 0;
    font-size: 16.5px;
    line-height: 1.55;
    color: #2A2522;
    border-bottom: 1px solid rgba(217, 119, 87, 0.12);
}

.whatsapp-features li:last-child {
    border-bottom: none;
}

.whatsapp-features strong {
    color: #2A2522;
    font-weight: 700;
}

/* ============================================================== */
/*  SCROLL-TO-TOP BUTTON (floating)                                 */
/* ============================================================== */
.scroll-top-btn {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D97757;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(217, 119, 87, 0.45), 0 4px 10px rgba(0,0,0,0.10);
    opacity: 0.92;
    visibility: visible;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
    z-index: 1000;
    animation: scrolltop-pulse 2.6s ease-in-out infinite;
}

.scroll-top-btn:hover {
    background: #C26649;
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 18px 42px rgba(194, 102, 73, 0.5), 0 6px 14px rgba(0,0,0,0.12);
}

@keyframes scrolltop-pulse {
    0%, 100% { box-shadow: 0 14px 36px rgba(217, 119, 87, 0.45), 0 4px 10px rgba(0,0,0,0.10), 0 0 0 0 rgba(217, 119, 87, 0); }
    50%      { box-shadow: 0 14px 36px rgba(217, 119, 87, 0.45), 0 4px 10px rgba(0,0,0,0.10), 0 0 0 14px rgba(217, 119, 87, 0); }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        top: auto;
        bottom: 24px;
        right: 18px;
        transform: none;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    .scroll-top-btn:hover {
        transform: scale(1.08);
    }
}

/* ============================================================== */
/*  FAQ                                                            */
/* ============================================================== */
.faq-section {
    background: #FFFCF8;
    scroll-margin-top: 100px;
}

.faq-list {
    max-width: 760px;
    margin: 50px auto 0;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(42, 37, 34, 0.04);
    overflow: hidden;
    border: 1px solid rgba(217, 119, 87, 0.08);
    transition: box-shadow 0.25s ease;
}

.faq-item[open] {
    box-shadow: 0 8px 28px rgba(42, 37, 34, 0.08);
    border-color: rgba(217, 119, 87, 0.18);
}

.faq-item summary {
    padding: 22px 28px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    color: #2A2522;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 56px;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: #D97757;
    transition: transform 0.25s ease, content 0.25s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "\2212";
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: #D97757;
}

.faq-item p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 16.5px;
    line-height: 1.65;
    color: #4F4842;
}

@media (max-width: 480px) {
    .faq-item summary { padding: 18px 22px; padding-right: 48px; font-size: 16.5px; }
    .faq-item summary::after { right: 20px; font-size: 24px; }
    .faq-item p { padding: 0 22px 20px; font-size: 15.5px; }
}

/* ============================================================== */
/*  COMMUNITY-DETAIL (Ein Geschenk vorab)                          */
/* ============================================================== */
.community-detail-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFCF8 0%, #FFF7EE 100%);
    scroll-margin-top: 100px;
    text-align: center;
}

.community-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.community-detail-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 36px 28px;
    box-shadow: 0 10px 30px rgba(42, 37, 34, 0.07);
    text-align: left;
}

.community-detail-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.community-detail-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    margin: 0 0 12px;
    color: #2A2522;
}

.community-detail-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4F4842;
    margin: 0;
}

.community-detail-cta {
    margin-top: 56px;
    text-align: center;
}

.btn-community-detail {
    font-size: clamp(16px, 1.4vw, 18px);
    padding: 18px 36px;
}

.community-detail-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6B6259;
    font-style: italic;
}

@media (max-width: 900px) {
    .community-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================== */
/*  FEDERLEICHT FINAL CTA (prominente End-CTA)                     */
/* ============================================================== */
.federleicht-final-cta {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #FAF7F2 0%, #FFF6E5 60%, #FAF7F2 100%);
    scroll-margin-top: 100px;
}

.federleicht-final-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: #FFFFFF;
    border-radius: 32px;
    padding: 60px 56px;
    box-shadow: 0 24px 60px rgba(217, 119, 87, 0.20), 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(217, 119, 87, 0.16);
}

.federleicht-final-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: #2A2522;
    line-height: 1.1;
    font-size: clamp(32px, 4vw, 48px) !important;
    margin: 18px 0 14px !important;
}

.federleicht-final-sub {
    font-size: clamp(17px, 1.5vw, 20px);
    color: #4F4842;
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.5;
}

.federleicht-final-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 36px;
    max-width: 480px;
    text-align: left;
}

.federleicht-final-list li {
    padding: 10px 0;
    font-size: 16.5px;
    color: #2A2522;
    border-bottom: 1px solid rgba(217, 119, 87, 0.12);
}

.federleicht-final-list li:last-child { border-bottom: none; }

.federleicht-final-knappheit {
    max-width: 580px;
    margin: 0 auto 28px;
    padding: 16px 24px;
    background: rgba(217, 119, 87, 0.08);
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #2A2522;
    border-left: 4px solid #D97757;
    text-align: left;
}

.federleicht-final-knappheit strong {
    color: #D97757;
    font-weight: 700;
}

.federleicht-final-btn {
    margin-top: 8px;
    padding: 24px 56px !important;
    font-size: clamp(20px, 2vw, 26px) !important;
}

.federleicht-final-note {
    margin-top: 22px;
    font-size: 14.5px;
    color: #6B6259;
    font-style: italic;
}

@media (max-width: 640px) {
    .federleicht-final-cta { padding: 70px 0 80px; }
    .federleicht-final-box { padding: 44px 26px; border-radius: 24px; }
    .federleicht-final-btn { padding: 20px 36px !important; font-size: 18px !important; }
}

/* ============================================================== */
/*  MINI-CTAs — dezente Klick-Brücken in der Mitte der Seite      */
/* ============================================================== */
.mini-cta-strip {
    margin: 60px auto 0;
    text-align: center;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.mini-cta-text {
    font-size: clamp(17px, 1.5vw, 20px);
    color: #2A2522;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.mini-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #D97757;
    border: 2px solid #D97757;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(217, 119, 87, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.mini-cta-btn:hover {
    background: #D97757;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(217, 119, 87, 0.28);
}

@media (max-width: 480px) {
    .mini-cta-strip { margin-top: 44px; }
    .mini-cta-btn { padding: 12px 22px; font-size: 14.5px; }
}
