/* =================================================================
   Brabbelwald – Front-Design-System
   Weiche Pastelltöne, runde Formen, verspielt & freundlich.
   ================================================================= */

/* ---------- Design-Tokens ---------- */
:root {
    --purple:        #6B4FD8;
    --purple-dark:   #5230b8;
    --purple-soft:   #efe9fc;
    --mint:          #79cdbd;
    --mint-dark:     #5fbCaa;
    --mint-soft:     #e4f5f0;

    --pink:   #f7c9d9;
    --yellow: #fce5a8;
    --green:  #bfe3c9;
    --blue:   #c9ddf7;
    --lilac:  #e5dbf8;

    --ink:        #43434f;
    --ink-soft:   #6c6c7a;
    --muted:      #9a9aa6;
    --white:      #ffffff;

    --bg-top:     #eef8f3;
    --bg-bottom:  #fbf7f0;

    --radius-lg:  28px;
    --radius-md:  20px;
    --radius-sm:  14px;
    --radius-pill: 999px;

    --shadow-sm: 0 6px 18px rgba(80, 60, 140, 0.06);
    --shadow-md: 0 14px 40px rgba(80, 60, 140, 0.10);
    --shadow-lg: 0 24px 60px rgba(80, 60, 140, 0.14);

    --container: 1180px;
    --font-head: 'Fredoka', 'Trebuchet MS', sans-serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--purple);
    line-height: 1.12;
    margin: 0 0 .5em;
    font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

a { color: var(--purple); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--purple-dark); }

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

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

.section { position: relative; padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }

.eyebrow {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .82rem;
    font-weight: 600;
    color: var(--purple);
    opacity: .8;
    margin-bottom: .6rem;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.text-center { text-align: center; }
.section__head { max-width: 640px; margin: 0 auto 48px; }
.section__head.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1.02rem;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    text-decoration: none;
    line-height: 1;
}
.btn--primary {
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(95, 188, 170, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(95, 188, 170, 0.45); color:#fff; }
.btn--purple {
    background: linear-gradient(135deg, #7a5ce0 0%, var(--purple-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(82, 48, 184, 0.30);
}
.btn--purple:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(82, 48, 184, 0.40); color:#fff; }
.btn--ghost {
    background: #fff;
    color: var(--purple);
    box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Dekorative Blasen ---------- */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .55;
    animation: float 9s ease-in-out infinite;
}
.bubble--pink   { background: radial-gradient(circle at 35% 35%, #ffd9e6, var(--pink)); }
.bubble--yellow { background: radial-gradient(circle at 35% 35%, #fff0c4, var(--yellow)); }
.bubble--green  { background: radial-gradient(circle at 35% 35%, #d7f0de, var(--green)); }
.bubble--blue   { background: radial-gradient(circle at 35% 35%, #ddeafb, var(--blue)); }
.bubble--lilac  { background: radial-gradient(circle at 35% 35%, #f0e9fc, var(--lilac)); }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-22px) translateX(10px); }
}

.section > .container { position: relative; z-index: 1; }

/* ---------- Header / Navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 0;
}
.brand {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand:hover { color: var(--purple); }
.brand img { height: 38px; width: auto; }
/* Bild-Logo (Schriftzug mit Blasen) braucht mehr Breite/Höhe.
   Die Höhe wird im Admin gesetzt (inline style); hier nur Fallback + Schutz. */
.brand--logo { padding: 0; }
.brand--logo img { height: 104px; width: auto; display: block; max-width: 58vw; object-fit: contain; }
.brand--logo-sm img { height: 56px; max-width: 200px; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}
.nav__item { position: relative; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink);
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    background: none;
    border: none;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover,
.nav__item.is-active > .nav__link { color: var(--purple); background: var(--purple-soft); }
.nav__link .caret {
    width: 9px; height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s var(--ease);
    margin-top: -3px;
}
.nav__item.is-open .nav__link .caret { transform: rotate(-135deg); margin-top: 2px; }

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    z-index: 50;
}
.nav__item:hover > .nav__dropdown,
.nav__item.is-open > .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 400;
    font-size: .98rem;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__dropdown a:hover { background: var(--mint-soft); color: var(--purple-dark); }

.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}
.nav__toggle span {
    width: 26px; height: 3px; border-radius: 3px;
    background: var(--purple);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 90px); }
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero__title { margin-bottom: .35em; }
.hero__subtitle { font-size: 1.2rem; color: var(--purple); max-width: 30ch; margin-bottom: 2rem; font-weight: 600; }

/* Bild-Collage */
.collage { position: relative; min-height: 420px; }
.collage__circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 7px solid #fff;
}
.collage__circle img { width: 100%; height: 100%; object-fit: cover; }
.collage__circle--1 { width: 56%; aspect-ratio: 1; top: 0; left: 8%; }
.collage__circle--2 { width: 42%; aspect-ratio: 1; bottom: 4%; right: 4%; }
.collage__circle--3 { width: 34%; aspect-ratio: 1; bottom: 0; left: 0; }

/* ---------- Feature-Reihe ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature__icon {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-family: var(--font-head); font-weight: 500; color: var(--ink); margin: 4px 0 2px; }
.feature__text { font-size: .92rem; color: var(--muted); margin: 0; }

/* Icon-Farben */
.ic-pink   { color: #e87da3; }
.ic-purple { color: var(--purple); }
.ic-green  { color: #5bb878; }
.ic-yellow { color: #e8b73c; }

/* ---------- Cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}
.card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px 24px 26px; }
.card__badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--lilac);
    color: var(--purple-dark);
    margin-bottom: 12px;
}
.card__title { font-size: 1.15rem; margin-bottom: .4rem; }
.card__text { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.card__meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: .85rem; color: var(--muted);
    border-top: 1px solid #f0eef7; padding-top: 12px;
}
.card__more { font-family: var(--font-head); font-weight: 500; }

/* Icon-Cards (Betreuung) */
.icard {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px 26px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icard__icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center; margin-bottom: 18px;
}
.icard__icon svg { width: 28px; height: 28px; }
.bg-mint   { background: var(--mint-soft); }
.bg-pink   { background: #fce4ec; }
.bg-yellow { background: #fdf3d6; }
.bg-lilac  { background: var(--lilac); }
.bg-green  { background: #e1f3e6; }
.bg-blue   { background: #e2edfb; }
.icard__title { font-size: 1.18rem; margin-bottom: .4rem; }
.icard__text { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- Split-Section (Über uns) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .round {
    border-radius: 46% 54% 50% 50% / 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid #fff;
    aspect-ratio: 1.1;
}
.split__media .round img { width: 100%; height: 100%; object-fit: cover; }

.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0 30px; }
.mini-feature__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 8px; }
.mini-feature__icon svg { width: 20px; height: 20px; }
.mini-feature h4 { font-size: 1rem; margin-bottom: 2px; }
.mini-feature p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- Kontakt-CTA ---------- */
.cta-box {
    background: linear-gradient(135deg, #efe9fc 0%, #f6e9f3 100%);
    border-radius: var(--radius-lg);
    padding: clamp(34px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 14px; }
.cta-list li { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.cta-list .ci {
    width: 40px; height: 40px; border-radius: 12px; background: #fff;
    display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-sm);
}
.cta-list .ci svg { width: 20px; height: 20px; color: var(--purple); }
.cta-box__media .round { border-radius: 50%; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lg); aspect-ratio: 1; }
.cta-box__media .round img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Seiten-Header (Unterseiten) ---------- */
.page-hero {
    position: relative;
    text-align: center;
    padding: clamp(50px, 8vw, 96px) 0 clamp(30px, 5vw, 56px);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero p { max-width: 60ch; margin: 0 auto; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Rich-Text (WYSIWYG-Inhalt) ---------- */
.rich { max-width: 760px; margin: 0 auto; }
.rich h2 { margin-top: 1.6em; }
.rich h3 { margin-top: 1.4em; color: var(--ink); }
.rich img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin: 1.2em 0; }
.rich ul, .rich ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.rich li { margin-bottom: .5em; }
.rich a { text-decoration: underline; }
.rich blockquote {
    border-left: 4px solid var(--mint);
    background: var(--mint-soft);
    margin: 1.4em 0; padding: 14px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--ink-soft);
}

/* ---------- Kontaktformular ---------- */
.form { max-width: 620px; margin: 0 auto; display: grid; gap: 18px; }
.form label { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; margin-bottom: 6px; }
.form input, .form textarea {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 2px solid #ece9f5; background: #fff; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    transition: border-color .2s var(--ease);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--mint); }
.form textarea { min-height: 150px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; margin-top: 40px; padding: 56px 0 28px; box-shadow: 0 -10px 40px rgba(80,60,140,.05); }
.footer__grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }
.footer__nav a { font-family: var(--font-head); font-weight: 400; color: var(--ink-soft); }
.footer__nav a:hover { color: var(--purple); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: var(--purple-soft); color: var(--purple); transition: transform .2s var(--ease);
}
.footer__social a:hover { transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
    margin-top: 30px; padding-top: 22px; border-top: 1px solid #f0eef7;
    display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: center;
    font-size: .88rem; color: var(--muted); text-align: center;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--purple); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .hero__grid { grid-template-columns: 1fr; }
    .collage { min-height: 340px; max-width: 460px; margin: 0 auto; }
    .features { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .split { grid-template-columns: 1fr; gap: 34px; }
    .split--reverse .split__media { order: 0; }
    .cta-box { grid-template-columns: 1fr; }
    .cta-box__media { max-width: 260px; }

    /* Wichtig: backdrop-filter macht den Header sonst zum Containing-Block
       für das fixierte Menü → dieses würde nach dem Scrollen im Header
       „eingesperrt". Auf Mobil daher deckenden Hintergrund statt Blur. */
    .site-header.is-scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }

    .nav__toggle { display: flex; position: relative; z-index: 120; }
    .nav__cta { display: none; }
    .nav__menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 360px);
        height: 100dvh;
        z-index: 110;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 90px 20px 30px;
        margin: 0;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        overflow-y: auto;
    }
    .nav__menu.is-open { transform: translateX(0); }
    .nav__link { width: 100%; justify-content: space-between; font-size: 1.1rem; }
    .nav__dropdown {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0 0 6px 12px; min-width: 0;
        max-height: 0; overflow: hidden;
        transition: max-height .3s var(--ease);
    }
    .nav__item.is-open > .nav__dropdown { max-height: 500px; }
    .nav__item:hover > .nav__dropdown { opacity: 1; } /* Hover-Trigger auf Mobile aus */
}

@media (max-width: 560px) {
    .features { grid-template-columns: 1fr; }
    .mini-features { grid-template-columns: 1fr; }
    .footer__grid { justify-content: center; text-align: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .bubble { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* ================= Shortcode-Komponenten ================= */
.rich-note { color: var(--muted); font-style: italic; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin: 1.6em 0; }
.gallery__item { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(30,22,55,.88); display: flex; align-items: center; justify-content: center; z-index: 300; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__btn { position: absolute; background: rgba(255,255,255,.16); color: #fff; border: none; width: 54px; height: 54px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__btn:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Karte */
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin: 1.4em 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-embed__link { font-size: .9rem; margin-top: -.6em; }

/* Downloads */
.download-list { list-style: none; padding: 0; margin: 1.4em 0; display: grid; gap: 10px; }
.download-list a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); color: var(--ink); text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.download-list a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--purple-dark); }
.download-list svg { width: 22px; height: 22px; color: var(--purple); flex: 0 0 auto; }

/* Eltern-Stimmen */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 1.6em 0; }
.testimonial { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 26px; margin: 0; position: relative; }
.testimonial blockquote { margin: 0 0 14px; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.testimonial blockquote::before { content: '\201C'; font-family: var(--font-head); color: var(--mint); font-size: 2.4rem; line-height: 0; vertical-align: -.35em; margin-right: 4px; }
.testimonial figcaption { font-family: var(--font-head); font-weight: 500; color: var(--purple); }
.testimonial figcaption span { color: var(--muted); font-weight: 400; }

/* Belegungs-Badge */
.avail { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 500; font-size: .92rem; padding: 7px 16px; border-radius: var(--radius-pill); }
.avail__dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(255,255,255,.5); }
.avail--free { background: #e1f3e9; color: #3f9c6d; }
.avail--wait { background: #fdf3d6; color: #b07d1a; }
.avail--full { background: #fbe7e1; color: #c0563a; }
.hero__badge { margin-bottom: 18px; }

/* Cookie-Banner */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 560px; margin: 0 auto; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 20px 22px; z-index: 250; display: none; }
.cookie.is-visible { display: block; animation: cookieIn .4s var(--ease); }
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie p { margin: 0 0 14px; font-size: .94rem; color: var(--ink-soft); }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Datenschutz-Zustimmung im Kontaktformular */
.form__privacy { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.form__privacy input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--mint-dark); cursor: pointer; }
.form__privacy a { text-decoration: underline; }
