/* =============================================
   DIE KRÜCKE – Landingpage Stylesheet
   ============================================= */

/* Barrierefreiheit: sichtbare Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Lokale Schriften */
@font-face {
    font-family: 'Patua One';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/PatuaOne-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/open-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/open-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --gelb:   #f9d316;
    --lila:   #76316a;
    --gruen:  #00aaaa;
    --gruen-dunkel: #008888;
    --weiss:  #FFFFFF;
    --text:   #2a2a2a;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Patua One', serif;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-left {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.45);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--lila);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 28px;
    display: block;
}

/* Fallback falls Logo-Bild fehlt */
.nav-logo {
    color: var(--gelb);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gelb);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    background-image: url('../Inhalte/familienberatung-die-kruecke-hero.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 120px 24px 70px;
}

.hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-block;
    background-color: var(--gruen);
    color: #fff;
    padding: 14px 34px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 26px;
    transition: background-color 0.2s;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background-color: var(--gruen-dunkel);
}

/* =============================================
   INTRO (Lila)
   ============================================= */
.intro-section {
    background-color: var(--lila);
    color: #fff;
    padding: 64px 24px;
}

.intro-section h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.intro-sub {
    font-size: 1.05rem;
    font-weight: 400;
}

/* =============================================
   ERKENNUNGS-ABSCHNITT (Weiß)
   ============================================= */
.recognition-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.recognition-section h3 {
    color: var(--gruen);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.recognition-section ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 44px;
}

.recognition-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* =============================================
   URSACHE (Grün)
   ============================================= */
.cause-section {
    background-color: var(--gruen);
    color: #fff;
    padding: 64px 24px;
}

.cause-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cause-section p {
    font-size: 1.05rem;
    line-height: 1.75;
}

.cause-section .btn-primary {
    background-color: #fff;
    color: var(--gruen);
}

.cause-section .btn-primary:hover {
    background-color: #eee;
}

/* =============================================
   ERSTGESPRÄCH (Weiß)
   ============================================= */
.meeting-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.meeting-section h3 {
    color: var(--gruen);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.meeting-section p {
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

/* =============================================
   MAIKE + VERTRAUEN – Zweispalter
   ============================================= */
.maike-trust-section {
    display: flex;
    min-height: 480px;
}

.maike-photo-col {
    flex: 0 0 42%;
    background-color: var(--lila);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.maike-photo-col img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 4px 4px 0 0;
}

.maike-trust-col {
    flex: 0 0 58%;
    background-color: var(--lila);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
}

.maike-trust-col h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.maike-trust-col p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.maike-trust-col .btn-primary {
    align-self: flex-start;
    margin-top: 8px;
}

/* =============================================
   FINALER CTA (Weiß)
   ============================================= */
.final-cta-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.final-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
}

/* =============================================
   FOOTER (Gelb)
   ============================================= */
.footer {
    background-color: var(--gelb);
    padding: 36px 24px;
    text-align: center;
}

.footer-instagram {
    display: inline-block;
    color: #333;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.footer-instagram:hover {
    color: #000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: text-decoration 0.2s;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE – Tablet & Mobile
   ============================================= */
/* =============================================
   IMPRESSUM / DATENSCHUTZ (Rechtstexte)
   ============================================= */
.legal-page {
    padding-top: 56px;
    min-height: 80vh;
    background-color: var(--weiss);
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    color: var(--gruen);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: var(--gruen);
    font-size: 1.2rem;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--gruen);
    text-decoration: none;
}

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

.legal-source {
    margin-top: 48px;
    font-size: 0.85rem;
    color: #888;
}

/* =============================================
   KONTAKT SEITE
   ============================================= */

/* Header: Kontakt + Bild */
.kontakt-hero-section {
    display: flex;
    padding-top: 56px;
    min-height: 380px;
}

.kontakt-info-col {
    flex: 0 0 50%;
    background-color: var(--weiss);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
}

.kontakt-info-col h1 {
    color: var(--gruen);
    font-size: 3rem;
    margin-bottom: 24px;
}

.kontakt-details {
    margin-bottom: 28px;
}

.kontakt-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.kontakt-details a {
    color: var(--gruen);
    text-decoration: none;
}

.kontakt-details a:hover {
    text-decoration: underline;
}

.kontakt-image-col {
    flex: 0 0 50%;
    overflow: hidden;
}

.kontakt-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Formular */
.kontakt-form-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.kontakt-form-section h2 {
    color: var(--gruen);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.kontakt-form-sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 36px;
}

.kontakt-form {
    max-width: 860px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 180px;
}

.form-group--wide {
    flex: 1;
    min-width: 260px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gruen);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--checkbox {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #2a2a2a;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--gruen);
    text-decoration: underline;
}

.form-message {
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-success {
    background: #e6f4ea;
    color: #2d6a3f;
    border: 1px solid #a8d5b5;
}

.form-error {
    background: #fdecea;
    color: #9b2335;
    border: 1px solid #f1b0b7;
}

/* Karten-Sektionen */
.map-section {
    padding: 56px 24px;
}

.map-section--lila {
    background-color: var(--lila);
    color: #fff;
}

.map-section--gelb {
    background-color: var(--gelb);
    color: var(--text);
}

.map-section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.map-section--gelb h2 {
    color: var(--text);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.map-consent-inner {
    text-align: center;
    color: #fff;
    padding: 24px;
}

.map-consent-inner p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.map-address {
    font-size: 0.95rem;
    line-height: 1.8;
}

.map-section--lila .map-address a {
    color: var(--gelb);
}

.map-section--gelb .map-address a {
    color: var(--gruen);
}

/* Outlined Button Variante für dunklen Hintergrund */
.btn-outline--dark {
    border-color: var(--text);
    color: var(--text);
}

.btn-outline--dark:hover {
    background-color: var(--text);
    color: var(--gelb);
}

@media (max-width: 768px) {
    .kontakt-hero-section {
        flex-direction: column;
    }

    .kontakt-info-col {
        flex: none;
        padding: 48px 24px;
    }

    .kontakt-info-col h1 {
        font-size: 2.2rem;
    }

    .kontakt-image-col {
        flex: none;
        height: 260px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }
}

/* =============================================
   DIE KRÜCKE UND ICH
   ============================================= */
.hero-und-ich {
    background-image: url('../Inhalte/familienberatung-friedrichstadt-husum.jpg');
}

.hero-und-ich .hero-content {
    padding-bottom: 60px;
}

.und-ich-text-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.und-ich-subheading {
    font-family: 'Patua One', serif;
    font-weight: 400;
    color: var(--gruen);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.und-ich-text-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 700px;
}

.und-ich-portrait-section {
    display: flex;
    background-color: var(--weiss);
    padding: 48px 24px 64px;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.und-ich-photo-col {
    flex: 0 0 320px;
}

.und-ich-photo-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.und-ich-bio-col {
    flex: 1;
}

.und-ich-bio-col p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.und-ich-cta-section {
    background-color: var(--lila);
    padding: 64px 24px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 13px 34px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--lila);
}

@media (max-width: 768px) {
    .und-ich-portrait-section {
        flex-direction: column;
        gap: 32px;
        padding: 48px 24px;
    }

    .und-ich-photo-col {
        flex: none;
        width: 100%;
        max-width: 320px;
    }
}

/* =============================================
   PREISE SEITE
   ============================================= */
.preise-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 56px;
}

.preise-text-col {
    flex: 0 0 50%;
    background-color: var(--weiss);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 64px 60px;
}

.preise-text-col h1 {
    color: var(--gruen);
    font-size: 3rem;
    margin-bottom: 40px;
}

.preise-item {
    margin-bottom: 28px;
}

.preise-item p {
    font-size: 1rem;
    line-height: 1.75;
}

.preise-note {
    font-size: 0.9rem;
    color: #666;
}

.offer-section .preise-note {
    color: rgba(255, 255, 255, 0.85);
}

.preise-image-col {
    flex: 0 0 50%;
    overflow: hidden;
}

.preise-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .preise-layout {
        flex-direction: column;
        min-height: auto;
    }

    .preise-text-col {
        flex: none;
        padding: 48px 24px;
    }

    .preise-text-col h1 {
        font-size: 2.2rem;
    }

    .preise-image-col {
        flex: none;
        height: 300px;
    }
}

/* =============================================
   HOMEPAGE: PROBLEM SECTION (Weiß)
   ============================================= */
.problem-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.problem-section h2 {
    color: var(--gruen);
    font-size: 2rem;
    margin-bottom: 28px;
    line-height: 1.3;
}

.problem-section p {
    max-width: 680px;
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.75;
}

/* =============================================
   HOMEPAGE: ANGEBOT ZWEISPALTER (Grün)
   ============================================= */
.offer-section {
    background-color: var(--gruen);
    color: #fff;
    padding: 64px 24px;
}

.offer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.offer-text-col {
    flex: 1;
}

.offer-text-col h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.offer-text-col p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.offer-text-col ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 24px;
}

.offer-text-col ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.offer-closing {
    font-size: 1rem;
    line-height: 1.75;
}

.offer-cta-col {
    flex-shrink: 0;
    text-align: center;
}

.btn-white {
    background-color: #fff;
    color: var(--gruen);
}

.btn-white:hover {
    background-color: #eee;
    color: var(--gruen);
}

/* =============================================
   HOMEPAGE: VERTRAUEN (Weiß)
   ============================================= */
.trust-white-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.trust-white-section h2 {
    color: var(--gruen);
    font-size: 1.9rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-white-section p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 700px;
}

/* Gelbe Zwischen-Überschriften */
.sub-yellow {
    font-family: 'Patua One', serif;
    font-weight: 400;
    color: var(--gelb);
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 14px;
}

/* =============================================
   HOMEPAGE: STIMMEN (Lila)
   ============================================= */
.testimonials-section {
    background-color: var(--lila);
    color: #fff;
    padding: 64px 24px;
}

.testimonials-section .sub-yellow {
    font-size: 1.35rem;
    margin-top: 0;
    margin-bottom: 36px;
}

/* Auf weißem Hintergrund: gelb nicht lesbar → lila */
.trust-white-section .sub-yellow,
.how-section .sub-yellow {
    color: var(--lila);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 860px;
    margin: 0 0 40px;
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.testimonial-item cite {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* =============================================
   HOMEPAGE: WIE ICH BERATE (Weiß)
   ============================================= */
.how-section {
    background-color: var(--weiss);
    padding: 64px 24px;
}

.how-section h2 {
    color: var(--gruen);
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.how-section p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 700px;
}

/* =============================================
   HOMEPAGE: WIE ICH UNTERSTÜTZE (Grün)
   ============================================= */
.support-section {
    background-color: var(--gruen);
    color: #fff;
    padding: 64px 24px;
}

.support-section h2 {
    font-size: 1.9rem;
    margin-bottom: 36px;
}

.support-list {
    list-style: none;
    padding: 0;
    max-width: 680px;
    margin: 0;
    text-align: left;
}

.support-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    line-height: 1.65;
}

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

.support-list strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #1e1e1e;
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-family: 'Patua One', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gelb);
}

.cookie-banner-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #ccc;
}

.cookie-banner-text a {
    color: var(--gelb);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn-accept {
    background-color: var(--gruen);
    color: #fff;
}

.cookie-btn-necessary {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn-necessary:hover {
    border-color: #aaa;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.92);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Sektionen */
    .intro-section h2,
    .cause-section h2,
    .maike-trust-col h2 {
        font-size: 1.55rem;
    }

    .recognition-section h3,
    .meeting-section h3 {
        font-size: 1.2rem;
    }

    /* Maike + Vertrauen: auf Mobile stapeln */
    .maike-trust-section {
        flex-direction: column;
    }

    .maike-photo-col {
        flex: none;
        height: auto;
        padding: 40px 24px;
        justify-content: center;
    }

    .maike-photo-col picture {
        display: block;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .maike-photo-col img {
        width: 100%;
        height: auto;
        object-fit: initial;
        display: block;
    }

    .maike-trust-col {
        flex: none;
        padding: 48px 24px;
    }

    /* Angebot Zweispalter: auf Mobile stapeln */
    .offer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .offer-cta-col {
        width: 100%;
        text-align: left;
    }

    .btn-primary {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .intro-section h2,
    .cause-section h2,
    .maike-trust-col h2 {
        font-size: 1.35rem;
    }

    .maike-photo-col {
        height: auto;
    }

    /* Homepage: Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Homepage: Sektions-Überschriften */
    .problem-section h2,
    .offer-text-col h2,
    .trust-white-section h2,
    .how-section h2,
    .support-section h2 {
        font-size: 1.55rem;
    }

    /* Cookie Banner Mobile */
    .cookie-banner-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 20px;
    }

    .cookie-banner-actions {
        flex-direction: row;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ── Buchungs-Consent Mini-Modal ─────────────────────────────── */
#dk-booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#dk-booking-modal.visible {
    display: flex;
}
.dk-bm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.dk-bm-box {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.dk-bm-box h4 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    color: var(--lila);
}
.dk-bm-box p {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
}
.dk-bm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}
.dk-bm-btn-secondary {
    background: none;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text);
    transition: border-color 0.2s;
}
.dk-bm-btn-secondary:hover {
    border-color: var(--lila);
}
.dk-bm-btn-primary {
    background: var(--gruen);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}
.dk-bm-btn-primary:hover {
    background: var(--gruen-dunkel);
}
