:root {
    --color-warm: #F5F0EB;
    --color-cream: #FDF8F3;
    --color-text: #1A1A1A;
    --color-text-light: #3D3D3D;
    --color-muted: #7A7A7A;
    --color-accent: #D4793A;
    --color-accent-hover: #C06A2E;
    --color-accent-soft: #F0DCC8;
    --color-heart: #E25555;
    --color-hope: #5B8C5A;
    --color-hope-soft: #E8F0E8;
    --color-border: #E0D6CC;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-warm);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-warm) 50%, var(--color-accent-soft) 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 121, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { max-width: 800px; padding: 60px 30px; text-align: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; background: var(--color-heart); color: white;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 30px;
    animation: pulse-soft 3s ease-in-out infinite;
}
@keyframes pulse-soft { 0%,100% { transform: scale(1);} 50% { transform: scale(1.03);} }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700; line-height: 1.25; color: var(--color-text); margin-bottom: 20px;
}
.hero h1 span { color: var(--color-accent); }
.hero-subtitle {
    font-size: 1.15rem; color: var(--color-text-light);
    max-width: 560px; margin: 0 auto 40px; font-weight: 300; line-height: 1.8;
}
.hero-photo {
    width: 280px; height: 280px; border-radius: 50%; object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 35px;
}
.photo-placeholder {
    width: 280px; height: 280px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-soft), var(--color-border));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 35px; border: 6px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    font-size: 1rem; color: var(--color-text-light); font-style: italic;
}

.cta-button {
    display: inline-block; background: var(--color-accent); color: white;
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
    padding: 16px 45px; border-radius: 50px; text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 121, 58, 0.3);
    border: none; cursor: pointer;
}
.cta-button:hover {
    background: var(--color-accent-hover); transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 121, 58, 0.35);
}
.cta-button.large { font-size: 1.15rem; padding: 18px 55px; }

/* SECTIONS */
.section { padding: 80px 30px; max-width: 780px; margin: 0 auto; }
.section-label {
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 12px;
}
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700; line-height: 1.35; margin-bottom: 25px; color: var(--color-text);
}
.section p { margin-bottom: 18px; color: var(--color-text-light); font-weight: 400; font-size: 1.05rem; }
.section p strong { color: var(--color-text); font-weight: 600; }

/* COSTS */
.costs-section { background: var(--color-cream); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.cost-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px; margin-top: 35px;
}
.cost-card {
    background: white; border-radius: 16px; padding: 30px 25px; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid var(--color-border);
}
.cost-card .amount {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
    color: var(--color-accent); margin-bottom: 8px;
}
.cost-card .label { font-size: 0.9rem; color: var(--color-text-light); font-weight: 400; }
.cost-card .amount-note { display: inline-block; margin-top: 4px; font-size: 0.75rem; color: var(--color-heart); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

/* HERO CTA Row */
.hero-cta-row { display: flex; gap: 22px; align-items: center; justify-content: center; flex-wrap: wrap; }
.cta-link {
    color: var(--color-text-light); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    padding: 8px 4px; border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ============ STORY SECTION ============ */
.story-section {
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 70px 30px;
}
.story-inner { max-width: 720px; margin: 0 auto; }
.story-inner > h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.3; margin-bottom: 32px; }

/* TL;DR */
.tldr-box {
    background: white;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 0 0 50px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.tldr-box h3 { margin: 0 0 16px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); }
.tldr-tag { display: inline-block; }
.tldr-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tldr-list li {
    color: var(--color-text-light); font-size: 1rem; line-height: 1.6;
    padding-left: 18px; position: relative;
}
.tldr-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--color-accent);
}
.tldr-list strong { color: var(--color-text); font-weight: 700; }

/* Kapitel */
.chapter { margin: 0 0 36px; }
.chapter h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 700; line-height: 1.35;
    color: var(--color-text);
    margin: 0 0 18px;
    position: relative;
    padding-left: 18px;
}
.chapter h3::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 4px; border-radius: 4px; background: var(--color-accent);
}
.chapter p {
    color: var(--color-text-light); font-size: 1.06rem;
    line-height: 1.8; margin-bottom: 16px;
}
.chapter p strong { color: var(--color-text); font-weight: 600; }
.chapter p em { font-style: italic; color: var(--color-text); }
.chapter .lede {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 22px;
}

/* Pull Quote */
.pullquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 2.6vw, 1.55rem);
    line-height: 1.5;
    color: var(--color-text);
    text-align: center;
    margin: 50px auto;
    padding: 30px 28px;
    max-width: 600px;
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.pullquote::before {
    content: '„';
    font-size: 4rem; line-height: 0;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
    font-style: normal;
}
.pullquote-counter {
    display: flex; flex-direction: column; gap: 18px;
    text-align: center;
    background: linear-gradient(180deg, white 0%, var(--color-cream) 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
}
.pullquote-counter::before { display: none; }
.pullquote-counter .pullquote-mark {
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-weight: 400;
}
.pullquote-counter .pullquote-answer {
    font-size: 1.1rem;
    font-style: normal;
    font-family: var(--font-body);
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.6;
    border-top: 1px solid var(--color-border);
    padding-top: 18px;
}
.pullquote-counter .pullquote-answer em {
    font-family: var(--font-display); font-style: italic;
    color: var(--color-accent); font-weight: 700;
}

/* Timeline */
.timeline {
    list-style: none; padding: 0; margin: 28px 0 10px;
    position: relative;
}
.timeline::before {
    content: ''; position: absolute;
    left: 32px; top: 8px; bottom: 8px;
    width: 2px; background: var(--color-border);
}
.timeline-item {
    position: relative; padding: 0 0 28px 84px;
    min-height: 70px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    position: absolute; left: 0; top: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase; letter-spacing: 0.5px;
    line-height: 1.1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.timeline-marker span { font-size: 0.7rem; font-weight: 500; color: var(--color-muted); margin-top: 2px; }
.timeline-critical .timeline-marker { background: var(--color-heart); border-color: var(--color-heart); color: white; }
.timeline-critical .timeline-marker span { color: rgba(255,255,255,0.85); }
.timeline-now .timeline-marker {
    background: var(--color-accent); border-color: var(--color-accent);
    color: white; font-size: 0.72rem; letter-spacing: 1px;
    animation: pulse-soft 2.5s ease-in-out infinite;
}
.timeline-content { padding-top: 6px; }
.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    margin: 0 0 6px;
    color: var(--color-text);
}
.timeline-content p {
    color: var(--color-text-light);
    font-size: 1rem; line-height: 1.7;
    margin: 0 0 8px;
}
.timeline-content p strong { color: var(--color-text); font-weight: 600; }
.timeline-list {
    margin: 8px 0 0; padding-left: 18px;
    color: var(--color-text-light); font-size: 0.97rem; line-height: 1.7;
}
.timeline-list li { margin-bottom: 4px; }

/* Sign-off & Footnote */
.signoff {
    text-align: right;
    margin: 50px 0 12px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}
.signature {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 600;
}
.footnote {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--color-border);
    font-size: 0.85rem;
    color: var(--color-muted);
    font-style: italic;
    line-height: 1.6;
}
.footnote a { color: var(--color-accent); }

@media (max-width: 600px) {
    .story-section { padding: 50px 20px; }
    .tldr-box { padding: 22px 22px; }
    .timeline::before { left: 24px; }
    .timeline-item { padding-left: 68px; }
    .timeline-marker { width: 50px; height: 50px; font-size: 0.7rem; }
    .timeline-marker span { font-size: 0.62rem; }
}

/* QUOTE */
.quote-section {
    text-align: center; padding: 70px 30px;
    background: linear-gradient(180deg, var(--color-warm) 0%, var(--color-hope-soft) 100%);
}
blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-style: italic; color: var(--color-text);
    max-width: 600px; margin: 0 auto 15px; line-height: 1.6;
}
blockquote::before {
    content: '„'; font-size: 3rem; color: var(--color-accent);
    display: block; margin-bottom: -10px; font-style: normal;
}
.quote-attribution { font-size: 0.95rem; color: var(--color-text-light); font-weight: 400; }

/* NEWS / UPDATES */
.news-section { background: var(--color-cream); padding: 60px 30px 80px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 40px auto 0;
}
.news-card {
    background: white; border-radius: 18px; overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.news-image { aspect-ratio: 16 / 10; background: var(--color-accent-soft); overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.news-date {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--color-accent);
}
.news-card h3 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    line-height: 1.35; color: var(--color-text);
}
.news-text { color: var(--color-text-light); font-size: 1rem; line-height: 1.7; }
.news-empty {
    grid-column: 1/-1;
    text-align: center; padding: 50px 20px;
    color: var(--color-text-light); font-style: italic;
    background: white; border-radius: 18px; border: 1px dashed var(--color-border);
    max-width: 1100px; margin: 40px auto 0;
}

/* VEREIN */
.verein-section { background: white; border-top: 1px solid var(--color-border); }
.verein-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--color-hope-soft); color: var(--color-hope);
    font-weight: 600; font-size: 0.9rem;
    padding: 10px 20px; border-radius: 50px; margin-bottom: 20px;
}

/* FINAL CTA */
.final-cta {
    text-align: center; padding: 80px 30px 100px;
    background: linear-gradient(180deg, var(--color-warm) 0%, var(--color-accent-soft) 100%);
}
.final-cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 15px; }
.final-cta p { font-size: 1.1rem; color: var(--color-text-light); max-width: 500px; margin: 0 auto 35px; font-weight: 300; }
.share-links { margin-top: 25px; font-size: 0.9rem; color: var(--color-text-light); }
.share-links a { color: var(--color-accent); text-decoration: none; font-weight: 600; }
.share-links a:hover { text-decoration: underline; }

/* FOOTER */
footer {
    text-align: center; padding: 30px;
    font-size: 0.8rem; color: var(--color-text-light);
    border-top: 1px solid var(--color-border); background: var(--color-cream);
}
footer a { color: var(--color-accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-legal { margin-top: 10px; font-size: 0.78rem; }
.footer-legal a { margin: 0 4px; }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 70px 30px 80px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.legal-page .legal-sub { color: var(--color-text-light); margin-bottom: 30px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 30px 0 10px; }
.legal-page p, .legal-page li { color: var(--color-text-light); font-size: 1rem; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page address { font-style: normal; line-height: 1.7; margin-bottom: 12px; }
.legal-back { display: inline-block; margin-bottom: 24px; font-size: 0.9rem; color: var(--color-accent); }
.legal-back:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero { min-height: 75vh; }
    .hero-content { padding: 40px 20px; }
    .photo-placeholder, .hero-photo { width: 200px; height: 200px; }
    .section { padding: 50px 20px; }
    .cost-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
}

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO SPLIT (Vorher/Nachher Slider)
   ============================================================ */
.hero.hero-split {
    position: relative;
    padding: 0;
    min-height: min(720px, 92vh);
    overflow: hidden;
    background: #1a1a1a;
}
.compare {
    position: absolute;
    inset: 0;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    touch-action: none;
}
.compare-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.compare-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
.compare-before {
    clip-path: inset(0 45% 0 0);
    will-change: clip-path;
}
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    width: 4px;
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}
.compare-handle-line {
    position: absolute;
    inset: 0;
}
.compare-handle-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    color: var(--color-accent, #D4793A);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.compare-label {
    position: absolute;
    top: 18px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.compare-label-before { left: 18px; }
.compare-label-after  { right: 18px; }
.compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
    pointer-events: none;
}
.compare-range:focus-visible {
    opacity: 0.001;
    outline: none;
}
.compare-range:focus-visible ~ .compare-handle-knob,
.compare:focus-within .compare-handle-knob {
    outline: 3px solid var(--color-accent, #D4793A);
    outline-offset: 3px;
}

/* Hero overlay (text on top of slider) */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
    padding: 30px 20px 70px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.55) 100%
    );
}
.hero-overlay .hero-content {
    pointer-events: auto;
    max-width: 720px;
    text-align: center;
    color: white;
}
.hero-overlay .hero-badge {
    background: var(--color-heart, #E25555);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 16px;
}
.hero-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: white;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.hero-overlay h1 span {
    color: var(--color-accent, #D4793A);
    font-style: italic;
}
.hero-overlay .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 22px;
}
.hero-overlay .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
}
.hero-overlay .cta-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}
.hero-overlay .cta-link:hover { border-bottom-color: white; }

@media (max-width: 600px) {
    .hero.hero-split { min-height: 88vh; }
    .compare-handle-knob { width: 44px; height: 44px; font-size: 1.15rem; }
    .compare-label { font-size: 0.7rem; padding: 4px 10px; top: 12px; }
}

/* ============================================================
   STORY FIGURES
   ============================================================ */
.story-figure {
    margin: 40px 0;
}
.story-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
}
.story-figure figcaption {
    text-align: center;
    font-style: italic;
    color: var(--color-muted, #7A7A7A);
    font-size: 0.92rem;
    margin-top: 12px;
    line-height: 1.5;
}
.story-figure-pair .story-figure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.story-figure-single img {
    aspect-ratio: 16 / 10;
    max-height: 520px;
}
.story-figure-careful img {
    /* keep the careful photo a touch smaller / not full bleed */
    aspect-ratio: 4 / 3;
    max-height: 460px;
}
@media (max-width: 600px) {
    .story-figure-pair .story-figure-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section .video-wrap {
    margin: 36px auto 0;
    max-width: 880px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    background: black;
    aspect-ratio: 16 / 9;
}
.video-section video {
    width: 100%;
    height: 100%;
    display: block;
    background: black;
}

/* ============================================================
   EVIDENCE / BELEGE
   ============================================================ */
.evidence-section {
    background: var(--color-cream, #FBF7F0);
}
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.evidence-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: stretch;
    text-align: left;
    background: white;
    border: 1px solid var(--color-border, #E5DDD0);
    border-radius: 14px;
    padding: 16px;
    cursor: zoom-in;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    font: inherit;
    color: inherit;
}
.evidence-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent, #D4793A);
}
.evidence-thumb {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-cream, #FBF7F0);
    border: 1px solid var(--color-border, #E5DDD0);
    aspect-ratio: 1 / 1.2;
}
.evidence-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: blur(0.4px);
}
.evidence-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.evidence-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent, #D4793A);
}
.evidence-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text, #2A2520);
    line-height: 1.3;
}
.evidence-desc {
    font-size: 0.95rem;
    color: var(--color-text-light, #5A544D);
    line-height: 1.55;
}
.evidence-note {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--color-muted, #7A7A7A);
    text-align: center;
    font-style: italic;
}
@media (max-width: 720px) {
    .evidence-grid { grid-template-columns: 1fr; }
    .evidence-card { grid-template-columns: 110px 1fr; gap: 14px; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-section {
    padding: 80px 0;
    background: white;
}
.gallery-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 0;
}
.gallery-tab {
    background: transparent;
    border: 1.5px solid var(--color-border, #E5DDD0);
    color: var(--color-text-light, #5A544D);
    padding: 10px 22px;
    border-radius: 999px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}
.gallery-tab:hover {
    border-color: var(--color-accent, #D4793A);
    color: var(--color-accent, #D4793A);
}
.gallery-tab.is-active {
    background: var(--color-accent, #D4793A);
    border-color: var(--color-accent, #D4793A);
    color: white;
}
.gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 30px;
    padding: 0 max(20px, 5vw);
}
.gallery-grid.is-visible { display: grid; }
.gallery-item {
    border: 0;
    padding: 0;
    background: var(--color-cream, #FBF7F0);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
}
.lightbox-figure img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-figure figcaption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-align: center;
    max-width: 720px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: 0;
    color: white;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background 0.18s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.12); }

@media (prefers-reduced-motion: reduce) {
    .gallery-item img,
    .compare-before,
    .compare-handle { transition: none !important; }
}

.footer-logo { display: block; width: 84px; height: auto; margin: 0 auto 14px; opacity: 0.9; }


/* ============================================================
   HERO — MOBILE FALLBACK (kein Slider auf kleinen Screens)
   ============================================================ */
.hero-mobile-portrait { display: none; }

@media (max-width: 760px) {
    .hero.hero-split {
        min-height: 0;
        background: var(--color-cream, #FBF7F0);
        padding: 50px 22px 40px;
        overflow: visible;
        text-align: center;
    }
    /* Slider komplett ausblenden auf Mobile */
    .hero.hero-split .compare { display: none; }

    /* Rundes Portrait einblenden */
    .hero-mobile-portrait {
        display: block;
        width: min(72vw, 320px);
        aspect-ratio: 1 / 1;
        margin: 0 auto 28px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        border: 6px solid white;
        position: relative;
    }
    .hero-mobile-portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Overlay wird zu normalem Inhalt — kein dunkler Verlauf, dunkler Text */
    .hero.hero-split .hero-overlay {
        position: static;
        inset: auto;
        padding: 0;
        background: none;
        display: block;
        z-index: auto;
    }
    .hero.hero-split .hero-overlay .hero-content {
        max-width: 540px;
        margin: 0 auto;
        color: var(--color-text, #2A2520);
    }
    .hero.hero-split .hero-overlay h1 {
        color: var(--color-text, #2A2520);
        text-shadow: none;
    }
    .hero.hero-split .hero-overlay .hero-subtitle {
        color: var(--color-text-light, #5A544D);
        text-shadow: none;
    }
    .hero.hero-split .hero-overlay .cta-link {
        color: var(--color-accent, #D4793A);
        border-bottom-color: var(--color-accent, #D4793A);
    }
}
	/* =========================================================
   BUGFIXES & ANPASSUNGEN V3
   (Slider, Zitat, Mobile Beweise, Logo, Gallery, Verein)
   ========================================================= */

/* 1. Breite & Scroll-Fix */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 2. Mobile Content Sichtbarkeit (Leerraum-Fix) */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* 3. Slider: Linie durchgehend, Knob oben */
.compare-handle {
    top: 0 !important;
    height: 100% !important;
    transform: translateX(-50%) !important; 
}
.compare-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
}
.compare-handle-knob {
    position: absolute !important;
    top: 20% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* 4. Zitat: Hinteres Anführungszeichen höher setzen */
.quote-box blockquote::after {
    bottom: auto !important;
    top: -10px !important; /* Wert anpassen, falls es noch höher soll */
}

/* 5. Beweise/Arztberichte: Abstand & Mobile Größe */
.evidence-card {
    display: flex;
    flex-direction: column;
}
.evidence-meta {
    margin-top: 18px !important;
}
@media (max-width: 768px) {
    .evidence-card .evidence-image {
        max-width: 75% !important; /* Macht die Berichte auf Mobile kleiner */
        margin: 0 auto !important;
    }
}

/* 6. Footer Logo (Doppelte Größe) */
.footer-logo {
    width: 240px !important;
    height: auto !important;
    margin-bottom: 20px;
}

/* 7. Galerie Desktop-Breite */
@media (min-width: 992px) {
    .gallery-grid {
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* 8. Verein Tierfreiheit Section Styling */
.verein-section {
    background: white !important;
    border-radius: 24px;
    padding: 60px 40px !important;
    margin: 60px auto !important;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    max-width: 700px;
}
.verein-badge {
    display: inline-block;
    background: var(--color-hope-soft, #E8F0E8);
    color: var(--color-hope, #5B8C5A);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}