/* ============================================================
   Vollwerth-Apotheke – Haupt-Stylesheet (Relaunch 2026)
   Farbkonzept: Grüntöne aus dem Logo als Primärfarbe
   Goldbraun bleibt als warmer Akzent erhalten
   ============================================================ */

/* Schriften lokal einbinden */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS-Variablen */
:root {
    /* Grün-Palette (Primär) */
    --green-deep:    #2a5c3f;
    --green-mid:     #3d7a55;
    --green-herb:    #4e9a69;
    --green-sage:    #b8d4b8;
    --green-mint:    #e0efe3;
    --green-mist:    #f0f7f1;
    --green-dark:    #1a2e22;

    /* Warm-Akzente */
    --gold:          #93783d;
    --gold-dark:     #7a6330;
    --cream:         #f8f4ec;
    --cream-dark:    #ede5d2;

    /* Text */
    --text:          #2d3f30;
    --text-light:    #5a7060;
    --white:         #ffffff;

    /* Schatten & Utility */
    --shadow-sm:  0 2px 8px rgba(42,92,63,.10);
    --shadow-md:  0 4px 20px rgba(42,92,63,.14);
    --shadow-lg:  0 8px 40px rgba(42,92,63,.18);
    --radius:     10px;
    --radius-lg:  18px;
    --font:       'Inter', system-ui, -apple-system, sans-serif;
    --max-w:      1200px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger-Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Barrierefreiheit: Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    background: #fff;
    color: var(--green-deep);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 0 rgba(42,92,63,.12), 0 2px 12px rgba(42,92,63,.08);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(42,92,63,.14);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; width: auto; }

/* Nav Desktop */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.2rem;
}
.main-nav a {
    display: block;
    padding: 0.5rem 0.9rem;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 6px;
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--transition), background var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--green-herb);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left center;
}
.main-nav a:hover { color: var(--green-herb); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green-mid); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO – HOMEPAGE (Parallax)
   ============================================================ */
.hero-home {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}
.hero-home__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero1.webp');
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll; /* JS übernimmt Parallax */
    will-change: transform;
}
.hero-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,46,34,0.82) 0%,
        rgba(42,92,63,0.70) 50%,
        rgba(26,46,34,0.75) 100%
    );
}

/* Floating Blätter-Dekoration */
.hero-home__leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.leaf {
    position: absolute;
    opacity: 0.12;
    animation: float-leaf var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes float-leaf {
    0%, 100% { transform: translateY(0) rotate(var(--rot-start, 0deg)); }
    33%       { transform: translateY(-16px) rotate(var(--rot-mid, 5deg)); }
    66%       { transform: translateY(-8px) rotate(var(--rot-end, -3deg)); }
}

.hero-home__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0 4rem;
}
.hero-home__text { color: var(--white); }
.hero-home__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-sage);
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(184,212,184,0.35);
    border-radius: 50px;
}
.hero-home__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.hero-home__title em {
    font-style: normal;
    color: var(--green-sage);
}
.hero-home__tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.hero-home__address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 1.5rem;
}
.hero-home__address a { color: var(--green-sage); text-decoration: none; }
.hero-home__cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce-arrow 2s ease-in-out infinite;
}
@keyframes bounce-arrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-indicator svg { width: 20px; height: 20px; }

/* Öffnungszeiten-Widget – Glassmorphismus */
.hero-oz-card {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: var(--white);
}
.hero-oz-card .oz-widget { color: var(--white); }

/* ============================================================
   VERTRAUENS-STRIP
   ============================================================ */
.trust-strip {
    background: var(--green-dark);
    padding: 3rem 0;
}
.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.trust-strip__icon {
    width: 56px;
    height: 56px;
    background: rgba(78,154,105,0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.trust-strip__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.trust-strip__sub {
    font-size: 0.82rem;
    color: var(--green-sage);
    opacity: 0.85;
}

/* ============================================================
   SEKTIONEN – ALLGEMEIN
   ============================================================ */
.section { padding: 4.5rem 0; }
.section--mist    { background: var(--green-mist); }
.section--mint    { background: var(--green-mint); }
.section--sage    { background: var(--green-sage); }
.section--cream   { background: var(--cream); }
.section--white   { background: var(--white); }
.section--dark    { background: var(--green-dark); color: var(--white); }
.section--deep    { background: var(--green-deep); color: var(--white); }

.section__header { margin-bottom: 2.5rem; }
.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-herb);
    margin-bottom: 0.5rem;
}
.section--dark .section__eyebrow,
.section--deep .section__eyebrow { color: var(--green-sage); }
.section__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.section--dark .section__title,
.section--deep .section__title { color: var(--white); }
.section__subtitle { color: var(--text-light); font-size: 1rem; max-width: 600px; }
.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }
.section__cta { margin-top: 2.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                box-shadow var(--transition), transform var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
    box-shadow: 0 4px 16px rgba(61,122,85,.30);
}
.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(42,92,63,.35);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}
.btn-outline:hover {
    background: var(--green-deep);
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-text {
    color: var(--green-mid);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition), gap var(--transition);
}
.btn-text:hover { color: var(--green-deep); gap: 0.6rem; }
.btn-text-light {
    color: var(--green-sage);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition), gap var(--transition);
}
.btn-text-light:hover { color: var(--white); gap: 0.6rem; }

/* ============================================================
   ARTIKEL-KARTEN (Kolumnen-Grid – Homepage)
   ============================================================ */
.magazine-grid {
    display: grid;
    gap: 1.5rem;
}
.magazine-grid--featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}
.magazine-grid--sub {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Featured Card */
.article-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}
.article-card--featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.card-img-wrap {
    overflow: hidden;
    position: relative;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.article-card:hover .card-img-wrap img,
.article-card--featured:hover .card-img-wrap img { transform: scale(1.07); }

.card-img-wrap--gradient {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img-wrap--gradient svg { opacity: 0.3; width: 80px; height: 80px; fill: white; }

.article-card--featured .card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

/* Standard Card */
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
    border: 1px solid rgba(184,212,184,0.3);
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.article-card .card-img-wrap { height: 200px; }
.article-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

/* Card gemeinsame Elemente */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    background: var(--green-mint);
    color: var(--green-deep);
    width: fit-content;
}
.card-badge--gold { background: rgba(147,120,61,.12); color: var(--gold-dark); }
.card-badge--new  { background: rgba(78,154,105,.15); color: var(--green-mid); }

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--green-dark);
}
.card-title a { text-decoration: none; color: inherit; }
.card-title a:hover { color: var(--green-mid); }

.card-title--lg {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-teaser {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.card-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-light);
    flex-wrap: wrap;
    align-items: center;
}
.card-meta .dot { color: var(--green-sage); }

/* Grüner Akzent-Balken oben */
.card--accent-top {
    border-top: 3px solid var(--green-herb);
}

/* ============================================================
   BERATUNGS-TEASER (Feature-Cards)
   ============================================================ */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184,212,184,0.4);
    transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--green-mint);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.feature-card:hover .feature-card__icon { background: var(--green-sage); }
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
}
.feature-card__text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; flex: 1; }

/* ============================================================
   SERVICE-KACHELN
   ============================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.service-tile {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184,212,184,0.3);
    transition: box-shadow var(--transition), transform var(--transition),
                background var(--transition);
}
.service-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--green-mint);
    color: var(--green-deep);
}
.service-tile__icon {
    width: 64px;
    height: 64px;
    background: var(--green-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}
.service-tile:hover .service-tile__icon {
    background: var(--green-sage);
    animation: icon-bounce 0.5s ease;
}
@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    30%       { transform: scale(1.25); }
    60%       { transform: scale(0.92); }
    80%       { transform: scale(1.08); }
}
.service-tile__icon svg { width: 32px; height: 32px; }
.service-tile__label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
}
.service-tile:hover .service-tile__label { color: var(--green-deep); }

/* ============================================================
   DWD GESUNDHEITSWETTER
   ============================================================ */
.dwd-splitscreen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.dwd-splitscreen__img {
    background: url('/images/kraeuterfoto.webp') center/cover no-repeat;
    background-color: var(--green-mid);
    min-height: 360px;
    position: relative;
}
.dwd-splitscreen__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,92,63,0.35) 0%, transparent 60%);
}
.dwd-splitscreen__content {
    background: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.dwd-header { display: flex; align-items: center; gap: 0.75rem; }
.dwd-header svg { width: 24px; height: 24px; color: var(--green-mid); }
.dwd-card-title { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.dwd-region { font-size: 0.8rem; color: var(--text-light); }

/* UV-Ring */
.uv-ring-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.uv-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.uv-ring__bg { fill: none; stroke: var(--green-mint); stroke-width: 6; }
.uv-ring__arc { fill: none; stroke-width: 6; stroke-linecap: round;
    transition: stroke-dasharray 0.8s ease, stroke 0.8s ease; }
.uv-ring__text { font-size: 1.3rem; font-weight: 700; fill: var(--green-dark);
    dominant-baseline: middle; text-anchor: middle; }
.uv-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); }
.uv-info p  { font-size: 0.8rem; color: var(--text-light); }

/* Pollen-Kacheln */
.pollen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
}
.pollen-item {
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    transition: transform var(--transition);
}
.pollen-item:hover { transform: scale(1.04); }
.pollen-name { font-weight: 700; color: var(--text); }
.pollen-val  { font-size: 0.74rem; color: var(--text-light); margin-top: 0.1rem; }
.pollen-0 { background: #e8f5e9; }
.pollen-1 { background: #fff9c4; }
.pollen-2 { background: #ffe0b2; }
.pollen-3 { background: #ffccbc; }
.dwd-source { font-size: 0.72rem; color: var(--text-light); }
.dwd-na { color: var(--text-light); font-style: italic; font-size: 0.88rem; }

/* ============================================================
   ÜBER UNS TEASER
   ============================================================ */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-teaser__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-teaser__img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.about-teaser__img-wrap::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 60%;
    height: 60%;
    background: var(--green-sage);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}
.about-teaser--reverse { direction: rtl; }
.about-teaser--reverse > * { direction: ltr; }
.about-teaser__text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-teaser__quote {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 4px solid var(--green-herb);
}

/* Mini-Cards */
.mini-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.mini-card {
    background: var(--green-mist);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid rgba(184,212,184,0.4);
}
.mini-card:hover { background: var(--green-mint); transform: translateX(4px); color: var(--green-deep); }
.mini-card__title { font-size: 0.9rem; font-weight: 600; }
.mini-card__arrow { margin-left: auto; color: var(--green-herb); transition: transform var(--transition); }
.mini-card:hover .mini-card__arrow { transform: translateX(4px); }

/* ============================================================
   AKTUELLES + RSS + INFORMATIONEN (3-Spalten)
   ============================================================ */
.news-tricolumn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.news-col__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-herb);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green-mint);
    margin-bottom: 1.25rem;
}
/* Aktuelles Timeline */
.aktuelles-timeline { list-style: none; display: flex; flex-direction: column; gap: 0; }
.aktuelles-item {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--green-mint);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    align-items: start;
}
.aktuelles-item:last-child { border-bottom: none; }
.aktuelles-date-badge {
    background: var(--green-deep);
    color: var(--white);
    border-radius: 6px;
    padding: 0.3rem 0.4rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    flex-shrink: 0;
}
.aktuelles-date-badge__day { font-size: 1.1rem; display: block; }
.aktuelles-date-badge__mon { font-size: 0.65rem; opacity: 0.8; display: block; }
.aktuelles-item a { text-decoration: none; font-size: 0.9rem; color: var(--text); font-weight: 600; }
.aktuelles-item a:hover { color: var(--green-mid); }

/* RSS */
.rss-list { list-style: none; }
.rss-item { padding: 0.75rem 0; border-bottom: 1px solid var(--green-mint); }
.rss-item:last-child { border-bottom: none; }
.rss-item a { text-decoration: none; font-weight: 600; color: var(--text); font-size: 0.88rem; line-height: 1.4; }
.rss-item a:hover { color: var(--green-mid); }
.rss-desc { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }
.rss-source, .rss-na { font-size: 0.75rem; color: var(--text-light); font-style: italic; margin-top: 0.75rem; }

/* Informationen-Links */
.info-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.info-links li {
    border-bottom: 1px solid var(--green-mint);
}
.info-links li:last-child { border-bottom: none; }
.info-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition), padding-left var(--transition);
}
.info-links a:hover { color: var(--green-mid); padding-left: 6px; }
.info-links a::before {
    content: '→';
    color: var(--green-herb);
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* ============================================================
   KATEGORIE-HERO (allgemein)
   ============================================================ */
.cat-hero {
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.cat-hero--kolumne   { background: var(--green-dark); color: var(--white); }
.cat-hero--beratung  { background: var(--green-mint); }
.cat-hero--service   { background: var(--green-dark); color: var(--white); }
.cat-hero--info      { background: var(--cream); }
.cat-hero--ueberuns  { background: var(--green-deep); color: var(--white); }
.cat-hero--aktuelles { background: var(--green-sage); }

.cat-hero__leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cat-hero__content { position: relative; z-index: 1; max-width: 700px; }
.cat-hero__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}
.cat-hero--kolumne .cat-hero__eyebrow,
.cat-hero--service  .cat-hero__eyebrow,
.cat-hero--ueberuns .cat-hero__eyebrow {
    background: rgba(255,255,255,0.12);
    color: var(--green-sage);
    border: 1px solid rgba(255,255,255,0.2);
}
.cat-hero--beratung .cat-hero__eyebrow,
.cat-hero--info     .cat-hero__eyebrow,
.cat-hero--aktuelles .cat-hero__eyebrow {
    background: rgba(42,92,63,0.10);
    color: var(--green-mid);
}
.cat-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.cat-hero--kolumne .cat-hero__title,
.cat-hero--service  .cat-hero__title,
.cat-hero--ueberuns .cat-hero__title { color: var(--white); }
.cat-hero--beratung .cat-hero__title,
.cat-hero--info     .cat-hero__title,
.cat-hero--aktuelles .cat-hero__title { color: var(--green-dark); }
.cat-hero__sub {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 540px;
}
.cat-hero--kolumne .cat-hero__sub,
.cat-hero--service  .cat-hero__sub,
.cat-hero--ueberuns .cat-hero__sub { color: rgba(255,255,255,0.72); }
.cat-hero--beratung .cat-hero__sub,
.cat-hero--info     .cat-hero__sub,
.cat-hero--aktuelles .cat-hero__sub { color: var(--text-light); }

/* ============================================================
   KATEGORIE KOLUMNE – Masonry-Grid
   ============================================================ */
.kolumne-featured {
    margin-bottom: 2.5rem;
}
.kolumne-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}
.kolumne-masonry .article-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: block;
}
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.filter-chip {
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--green-mint);
    color: var(--green-deep);
    text-decoration: none;
    border: 1px solid rgba(184,212,184,0.4);
    transition: background var(--transition), color var(--transition);
}
.filter-chip:hover,
.filter-chip.active { background: var(--green-mid); color: var(--white); }

/* ============================================================
   KATEGORIE BERATUNG – Card-Grid
   ============================================================ */
.beratung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.beratung-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184,212,184,0.3);
    transition: box-shadow var(--transition), transform var(--transition);
    perspective: 800px;
    position: relative;
    overflow: hidden;
}
.beratung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-herb), var(--green-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.beratung-card:hover::before { transform: scaleX(1); }
.beratung-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px) rotateX(1deg);
}
.beratung-card__icon {
    width: 72px;
    height: 72px;
    background: var(--green-mist);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--transition);
}
.beratung-card:hover .beratung-card__icon { background: var(--green-mint); }
.beratung-card__icon svg { width: 36px; height: 36px; }
.beratung-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}
.beratung-card__text { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.5rem; }

/* Zitat-Block Beratung */
.beratung-quote {
    background: var(--green-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}
.beratung-quote__text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
}
.beratung-quote__author {
    font-size: 0.85rem;
    color: var(--green-sage);
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
}
.beratung-quote__img {
    border-radius: var(--radius);
    overflow: hidden;
}
.beratung-quote__img img { width: 100%; height: 200px; object-fit: cover; }

/* ============================================================
   KATEGORIE SERVICE – Icon-Grid
   ============================================================ */
.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-icon-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184,212,184,0.3);
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.service-icon-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--green-mist);
}
.service-icon-card:hover .service-tile__icon { animation: icon-bounce 0.5s ease; }
.service-icon-card__title { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); }
.service-icon-card__desc  { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.service-icon-card__img-wrap {
    width: 100%;
    height: 120px;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    margin-bottom: .75rem;
}
.service-icon-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-icon-card:hover .service-icon-card__img-wrap img { transform: scale(1.06); }

/* Notdienst Puls */
.notdienst-card {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 2rem;
}
.notdienst-card__body h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.notdienst-pulse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4caf50;
    position: relative;
    flex-shrink: 0;
    margin-top: .35rem;
}
.notdienst-pulse::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(76,175,80,0.3);
    animation: pulse-ring 1.8s ease-in-out infinite;
}
@keyframes pulse-ring {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Notdienst Widget – Apothekenliste */
.notdienst-widget { width: 100%; }
.notdienst-updated {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .75rem;
}
.notdienst-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.notdienst-item {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .6rem .85rem;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius);
    border-left: 3px solid #4caf50;
}
.notdienst-item strong {
    color: var(--white);
    font-size: .9rem;
}
.notdienst-item span {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
}
.notdienst-link {
    display: inline-block;
    margin-top: .25rem;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    text-decoration: underline;
}
.notdienst-link:hover { color: var(--white); }
.notdienst-hint {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    margin-bottom: 1rem;
}
.notdienst-btn { margin-top: .25rem; }
.notdienst-widget--fallback { width: 100%; }

/* ============================================================
   KATEGORIE INFORMATIONEN – Editorial + Sidebar
   ============================================================ */
.info-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}
.info-sidebar {
    position: sticky;
    top: 90px;
    background: var(--green-mist);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(184,212,184,0.4);
}
.info-sidebar__title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-herb); margin-bottom: 1rem; }
.alpha-tabs { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.25rem; }
.alpha-tab {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid var(--green-mint);
    transition: background var(--transition), color var(--transition);
}
.alpha-tab:hover { background: var(--green-mid); color: var(--white); }

.info-search { margin-bottom: 1rem; }
.info-search input {
    width: 100%;
    padding: 0.55rem 0.9rem;
    border: 2px solid var(--green-mint);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font);
    background: var(--white);
}
.info-search input:focus { outline: none; border-color: var(--green-mid); }

.info-article-list { list-style: none; }
.info-article-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--green-mint);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.info-article-item:last-child { border-bottom: none; }
.info-article-item h2 { font-size: 1.1rem; }
.info-article-item h2 a { text-decoration: none; color: var(--green-dark); }
.info-article-item h2 a:hover { color: var(--green-mid); }
.info-article-item .readtime {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.info-article-item .readtime::before { content: '⏱'; font-size: 0.7rem; }

/* ============================================================
   KATEGORIE ÜBER UNS – Storytelling
   ============================================================ */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-sage);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-herb);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green-herb);
}
.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-herb);
    margin-bottom: 0.3rem;
}
.timeline-text { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

.werte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.wert-card {
    background: var(--green-mist);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(184,212,184,0.4);
}
.wert-card__emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.wert-card__title { font-weight: 700; color: var(--green-dark); margin-bottom: 0.4rem; }
.wert-card__text { font-size: 0.88rem; color: var(--text-light); }

.pull-quote {
    background: var(--green-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.pull-quote__text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.pull-quote__author { font-size: 0.9rem; color: var(--green-sage); font-style: normal; font-weight: 600; }

/* ============================================================
   KATEGORIE AKTUELLES – News-Feed
   ============================================================ */
.aktuelles-feed { display: flex; flex-direction: column; gap: 1.5rem; }
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(184,212,184,0.3);
    transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.news-card__img-wrap { overflow: hidden; position: relative; min-height: 160px; }
.news-card__img-wrap img { width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease; }
.news-card:hover .news-card__img-wrap img { transform: scale(1.08); }
.news-card__img-wrap--gradient {
    background: linear-gradient(135deg, var(--green-mint) 0%, var(--green-sage) 100%);
}
.news-card__body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}
.news-card__date-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
}
.news-badge-new {
    display: inline-block;
    background: var(--green-herb);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}
.news-card__title { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); line-height: 1.35; }
.news-card__title a { text-decoration: none; color: inherit; }
.news-card__title a:hover { color: var(--green-mid); }
.news-card__teaser { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   ARTIKEL-EINZELSEITE
   ============================================================ */
.article-hero {
    background: var(--green-deep);
    color: var(--white);
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.article-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.02);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.article-hero__cat {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-sage);
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.article-hero__cat:hover { color: var(--white); }
.article-hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    max-width: 800px;
    margin-bottom: 1rem;
}
.article-hero__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    align-items: center;
}
.article-hero__meta .readtime {
    color: var(--green-sage);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
}
.article-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--green-mint);
    line-height: 1.7;
}
.article-body { line-height: 1.85; }
.article-body h2 { font-size: 1.3rem; color: var(--green-dark); margin: 2rem 0 0.75rem; }
.article-body h3 { font-size: 1.1rem; color: var(--green-dark); margin: 1.5rem 0 0.5rem; }
.article-body p  { margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: 0.75rem 0 1rem 1.5rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0;
    box-shadow: var(--shadow-sm); }
.article-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid var(--green-mint); }

.article-sidebar { position: sticky; top: 90px; }
.sidebar-box {
    background: var(--green-mist);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(184,212,184,0.4);
}
.sidebar-box--cta {
    background: var(--green-deep);
    color: var(--white);
}
.sidebar-box--cta .sidebar-title { color: var(--white); }
.sidebar-box--cta p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 1rem; }
.sidebar-title { font-size: 0.85rem; font-weight: 700; color: var(--green-dark);
    margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid rgba(184,212,184,0.4); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { display: block; padding: 0.6rem 0; font-size: 0.88rem;
    color: var(--text-light); text-decoration: none; }
.sidebar-list a:hover { color: var(--green-mid); }

/* ============================================================
   STATISCHE SEITEN
   ============================================================ */
.static-page { max-width: 800px; padding: 3rem 0; }
.static-page h1 { font-size: 2rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.page-content { line-height: 1.85; }
.page-content h2, .page-content h3 { color: var(--green-dark); margin: 1.75rem 0 0.75rem; }
.page-content p { margin-bottom: 1rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-mid); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--green-sage); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--green-mint);
}
.pagination-btn {
    background: var(--green-mid);
    color: var(--white);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition);
}
.pagination-btn:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }
.pagination-info { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   ÖFFNUNGSZEITEN WIDGET
   ============================================================ */
.oz-widget { color: var(--white); }
.oz-status {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}
.oz-dot { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.oz-open .oz-dot      { color: #6ee06e; }
.oz-open-duty .oz-dot { color: #ffd54f; }
.oz-duty .oz-dot      { color: #ffb74d; }
.oz-closed .oz-dot    { color: rgba(255,255,255,.4); }
.oz-duty-info { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; padding-left: 1.5rem; }
.oz-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.oz-table td { padding: 0.25rem 0.5rem 0.25rem 0; color: rgba(255,255,255,.75); }
.oz-table .oz-day { font-weight: 600; color: rgba(255,255,255,0.9); width: 90px; }
.oz-table .oz-today td { color: var(--white); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--green-dark);
    color: var(--green-sage);
    padding: 3.5rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(184,212,184,0.12);
}
.footer-col { font-size: 0.9rem; }
.footer-col strong {
    display: block;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}
.footer-col address { font-style: normal; line-height: 1.7; color: rgba(184,212,184,0.7); }
.footer-col p { line-height: 1.7; color: rgba(184,212,184,0.7); }
.footer-col a { color: var(--green-sage); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.78rem;
    color: rgba(184,212,184,0.35);
    text-align: center;
}

/* ============================================================
   404
   ============================================================ */
.page-404-content { text-align: center; padding: 6rem 1rem; }
.page-404-content h1 { font-size: 2rem; color: var(--green-dark); margin-bottom: 1rem; }
.page-404-content p  { color: var(--text-light); margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .service-grid          { grid-template-columns: repeat(2, 1fr); }
    .service-icon-grid     { grid-template-columns: repeat(2, 1fr); }
    .magazine-grid--sub    { grid-template-columns: repeat(2, 1fr); }
    .news-tricolumn        { grid-template-columns: 1fr 1fr; }
    .news-tricolumn > :last-child { grid-column: span 2; }
    .trust-strip__grid     { gap: 1rem; }
    .kolumne-masonry       { column-count: 2; }
}

@media (max-width: 900px) {
    .hero-home__content    { grid-template-columns: 1fr; }
    .dwd-splitscreen       { grid-template-columns: 1fr; }
    .dwd-splitscreen__img  { min-height: 220px; }
    .about-teaser          { grid-template-columns: 1fr; }
    .about-teaser__img-wrap::before { display: none; }
    .article-layout        { grid-template-columns: 1fr; }
    .article-sidebar       { display: none; }
    .info-layout           { grid-template-columns: 1fr; }
    .info-sidebar          { position: static; }
    .beratung-grid         { grid-template-columns: 1fr; }
    .beratung-quote        { grid-template-columns: 1fr; }
    .beratung-quote__img   { display: none; }
    .werte-grid            { grid-template-columns: 1fr; }
    .footer-inner          { grid-template-columns: 1fr 1fr; }
    .feature-cards         { grid-template-columns: 1fr; }
    .news-tricolumn        { grid-template-columns: 1fr; }
    .news-tricolumn > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(42,92,63,.15);
        border-top: 1px solid rgba(42,92,63,.10);
    }
    .main-nav.open { display: block; }
    .main-nav ul   { flex-direction: column; gap: 0; }
    .main-nav a    { padding: 0.9rem 1rem; font-size: 1rem; color: var(--green-deep); }
    .main-nav a::after { display: none; }
    .footer-inner          { grid-template-columns: 1fr; }
    .article-card--featured { grid-template-columns: 1fr; }
    .service-grid          { grid-template-columns: repeat(2, 1fr); }
    .service-icon-grid     { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid     { grid-template-columns: 1fr; }
    .hero-home__content    { padding: 3rem 0 2.5rem; }
    .news-card             { grid-template-columns: 1fr; }
    .kolumne-masonry       { column-count: 1; }
    .cat-hero              { padding: 3rem 0 2.5rem; }
}

/* ============================================================
   POLLEN-HERO (Unterseite /pollenflug)
   ============================================================ */
.pollen-hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
    color: #fff;
    padding: 4rem 0 3.5rem;
    overflow: hidden;
    text-align: center;
}
.pollen-hero__leaf-deco {
    position: absolute;
    right: -60px;
    top: -40px;
    width: 320px;
    height: 320px;
    color: #fff;
    pointer-events: none;
}
.pollen-hero__inner { position: relative; z-index: 1; }
.pollen-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,.9);
}
.pollen-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .75rem;
}
.pollen-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto .75rem;
    line-height: 1.6;
}
.pollen-hero__updated {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-top: .5rem;
}

/* ============================================================
   POLLEN-GAUGE (großer SVG-Kreis)
   ============================================================ */
.pollen-gauge-section { padding-bottom: 3.5rem; }
.pollen-gauge-wrap {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}
.pollen-gauge {
    display: flex;
    justify-content: center;
}
.pollen-gauge__svg {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 4px 16px rgba(42,92,63,.15));
}
.pollen-gauge__arc {
    transition: stroke-dasharray 1.2s cubic-bezier(.4,0,.2,1);
}

/* Legende */
.pollen-legend-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .75rem;
}
.pollen-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .5rem;
    border-radius: 6px;
    margin-bottom: .2rem;
    transition: background var(--transition);
}
.pollen-legend-item--active {
    background: var(--green-mint);
    font-weight: 700;
}
.pollen-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pollen-legend-num {
    font-size: .85rem;
    font-weight: 700;
    min-width: 16px;
    color: var(--text);
}
.pollen-legend-lbl {
    font-size: .85rem;
    color: var(--text-light);
}

/* 3-Tage-Vorschau */
.pollen-forecast__title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .75rem;
}
.pollen-forecast__days {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.pollen-forecast__day {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    background: var(--green-mist);
    transition: background var(--transition);
}
.pollen-forecast__day--active {
    background: var(--green-mint);
    font-weight: 600;
}
.pollen-forecast__label {
    font-size: .9rem;
    min-width: 80px;
    color: var(--text);
}
.pollen-forecast__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pollen-forecast__val {
    font-size: .85rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .pollen-gauge-wrap {
        grid-template-columns: 1fr 1fr;
    }
    .pollen-gauge { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .pollen-gauge-wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   POLLEN-PFLANZEN-GRID
   ============================================================ */
.pollen-plants-section { padding-bottom: 3.5rem; }
.pollen-plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.pollen-plant-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.pollen-plant-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.pollen-plant-card--none {
    opacity: .55;
}
.pollen-plant-card__icon {
    font-size: 2rem;
    margin-bottom: .5rem;
    display: block;
}
.pollen-plant-card__name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .65rem;
}
.pollen-plant-card__bar-wrap {
    height: 6px;
    background: #e8f0ea;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: .5rem;
}
.pollen-plant-card__bar {
    height: 100%;
    border-radius: 3px;
    min-width: 2px;
    transition: width 1s ease;
}
.pollen-plant-card__label {
    font-size: .78rem;
    font-weight: 700;
}
.pollen-plant-card__offseason {
    font-size: .7rem;
    color: var(--text-light);
    margin-top: .25rem;
}

/* ============================================================
   POLLEN-KARTE (Leaflet)
   ============================================================ */
.pollen-map-section { padding-bottom: 3.5rem; }
.pollen-map-wrap { margin-top: 1.5rem; }
.pollen-map {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(42,92,63,.10);
}
.pollen-map__hint {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--text-light);
    margin-top: .6rem;
}
.pollen-map__hint a { color: var(--green-herb); }

/* ============================================================
   POLLEN-INFO-GRID (Beratung-CTA)
   ============================================================ */
.pollen-info-section { padding-bottom: 4rem; }
.pollen-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: .5rem;
}
.pollen-info-block {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.pollen-info-block__icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    display: block;
}
.pollen-info-block__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: .5rem;
}
.pollen-info-block__text {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .pollen-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .pollen-info-grid { grid-template-columns: 1fr; }
    .pollen-map { height: 300px; }
}

/* ============================================================
   POLLEN-TEASER (Homepage, Feb–Okt)
   ============================================================ */
.pollen-teaser { padding: 4rem 0; }
.pollen-teaser__inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: center;
}
.pollen-teaser__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .5rem;
}
.pollen-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #fff;
    border: 2px solid var(--badge-color, var(--green-herb));
    border-radius: 100px;
    padding: .3rem .8rem;
    font-size: .82rem;
    color: var(--text);
    box-shadow: 0 1px 4px rgba(42,92,63,.10);
}
.pollen-badge strong {
    color: var(--badge-color, var(--green-herb));
    font-weight: 700;
}
.pollen-teaser__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}
.pollen-teaser__circle-wrap {
    text-align: center;
}
.pollen-teaser__circle {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 4px 12px rgba(42,92,63,.15));
}
.pollen-teaser__circle-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: .35rem;
}
.pollen-teaser__fallback-icon {
    font-size: 5rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .pollen-teaser__inner {
        grid-template-columns: 1fr;
    }
    .pollen-teaser__visual { order: -1; }
}

/* ============================================================
   NEWS-TWOCOLUMN (Homepage Sektion 8)
   ============================================================ */
.news-twocolumn {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 1rem;
}

/* Aktuelles-Cards auf Homepage */
.aktuelles-home-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.aktuelles-home-card {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(42,92,63,.10);
}
.aktuelles-home-card:first-child { padding-top: 0; }
.aktuelles-home-card:last-child { border-bottom: none; }
.aktuelles-home-card__date {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-herb);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.aktuelles-home-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: .4rem;
}
.aktuelles-home-card__title a {
    color: var(--text);
    text-decoration: none;
}
.aktuelles-home-card__title a:hover { color: var(--green-herb); }
.aktuelles-home-card__teaser {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: .5rem;
}

/* Datum in Aktuelles-Kategorie-Cards */
.news-card__meta-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .5rem;
}
.news-card__date {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-herb);
    letter-spacing: .04em;
}

@media (max-width: 900px) {
    .news-twocolumn { grid-template-columns: 1fr; gap: 2rem; }
}

/* Featured Image auf Artikel-Detailseite */
.article-featured-img {
    margin-bottom: 1.75rem;
    border-radius: 12px;
    overflow: hidden;
}
.article-featured-img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════
   KOLUMNE – Kategorie-Layout mit Sidebar
   ═══════════════════════════════════════════════ */
.kolumne-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}
.kolumne-main { min-width: 0; }

.kolumne-sidebar .sidebar-box { margin-bottom: 0; }

/* Sidebar ranked list (Meistgelesen) */
.sidebar-ranked-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-ranked-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--mint);
    font-size: .875rem;
    line-height: 1.4;
}
.sidebar-ranked-list li:last-child { border-bottom: none; }
.sidebar-rank {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--green-herb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    margin-top: .1rem;
}
.sidebar-ranked-list a { color: var(--text); text-decoration: none; }
.sidebar-ranked-list a:hover { color: var(--green-herb); }

/* Sidebar list mit Datum */
.sidebar-list li { padding: .4rem 0; border-bottom: 1px solid var(--mint); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-date {
    display: block;
    font-size: .72rem;
    color: var(--text-light);
    margin-top: .15rem;
}

/* Messungen-Intro */
.messungen-intro {
    background: var(--sage-pale, #f0f7f2);
    border-left: 4px solid var(--green-herb);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    margin-bottom: .5rem;
}
.messungen-intro p {
    margin: 0 0 .75rem;
    color: var(--text);
    line-height: 1.8;
}
.messungen-intro p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   KOLUMNE – Artikel-Detailseite (professionell)
   ═══════════════════════════════════════════════ */

/* Autor-Header */
.author-hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
    color: #fff;
    padding: 2rem 0;
}
.author-hero__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.author-hero__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.35);
    flex-shrink: 0;
}
.author-hero__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.author-hero__role {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    margin-top: .2rem;
}
.author-hero__details {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .5rem;
    flex-wrap: wrap;
}
.author-hero__details time,
.author-hero__details span { font-size: .82rem; color: rgba(255,255,255,.75); }
.article-badge {
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 4px;
}

/* Zweispalten-Layout Kolumne-Artikel */
.kolumne-article-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2.5rem;
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.kolumne-main-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--green-deep);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.kolumne-right-sidebar { position: sticky; top: 80px; }

/* Shop-CTA Banner */
.shop-cta-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f0f9f3, #e0efe3);
    border: 1px solid var(--sage);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}
.shop-cta-banner__icon { font-size: 2rem; flex-shrink: 0; }
.shop-cta-banner__text { flex: 1; }
.shop-cta-banner__text strong { display: block; color: var(--green-deep); font-size: 1rem; }
.shop-cta-banner__text p { margin: .2rem 0 0; font-size: .875rem; color: var(--text-light); }
.shop-cta-banner .btn { flex-shrink: 0; }

/* Quellenangaben */
.article-sources {
    border-top: 2px solid var(--sage);
    margin-top: 2rem;
    padding-top: 1.25rem;
}
.article-sources h3 {
    font-size: .95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.article-sources p, .article-sources br + br { font-size: .83rem; color: var(--text-light); }

/* Stern-Bewertung */
.article-rating {
    background: var(--sage-pale, #f0f7f2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}
.rating-label {
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: .75rem;
    font-size: 1rem;
}
.rating-stars {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-bottom: .75rem;
}
.rating-star {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
    transition: color .15s, transform .15s;
    padding: 0 .1rem;
    line-height: 1;
}
.rating-star:hover,
.rating-star.hover,
.rating-star.selected { color: #f5a623; transform: scale(1.15); }
.rating-result {
    font-size: .9rem;
    color: var(--text-light);
    display: block;
}
.rating-count { margin-left: .35rem; }
.rating-star.voted { color: #f5a623; cursor: default; transform: none; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .kolumne-layout { grid-template-columns: 1fr; }
    .kolumne-sidebar { margin-top: 2rem; }
    .kolumne-article-layout { grid-template-columns: 1fr; }
    .kolumne-right-sidebar { position: static; }
    .shop-cta-banner { flex-direction: column; text-align: center; }
    .shop-cta-banner .btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   JUBILÄUMS-ANIMATIONEN
   ════════════════════════════════════════════════════════════════ */
@keyframes jubiFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px) rotate(1deg); }
}
@keyframes jubiSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes jubiBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50%       { transform: scale(1.06) translateY(-6px); }
}

/* ════════════════════════════════════════════════════════════════
   JUBILÄUMS-TEASER (Homepage) — Split-Layout mit PNG-Mosaik
   ════════════════════════════════════════════════════════════════ */
.jubileum-teaser {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a2a 100%);
    overflow: hidden;
    position: relative;
}
.jubileum-teaser__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 380px;
    position: relative;
    z-index: 1;
}
.jubileum-teaser__left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.jubileum-eyebrow {
    color: var(--gold) !important;
    border-color: rgba(147,120,61,.4) !important;
}
.jubileum-teaser__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}
.jubileum-teaser__title em {
    font-style: normal;
    color: var(--gold);
}
.jubileum-teaser__lead {
    font-size: 1rem;
    color: rgba(255,255,255,.80);
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}
.jubileum-teaser__lead strong { color: var(--white); }
.jubileum-teaser__cta { align-self: flex-start; }
.jubileum-teaser__right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.jubileum-teaser__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 340px;
    width: 100%;
}
.jubileum-teaser__mosaic-img {
    width: 100%;
    max-width: 145px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.30));
    animation: jubiFloat 3s ease-in-out infinite;
    cursor: default;
}
.jubileum-teaser__mosaic-img--kuchen   { animation-delay: 0s; }
.jubileum-teaser__mosaic-img--geschenk { animation-delay: 0.6s; }
.jubileum-teaser__mosaic-img--gluecksrad {
    animation-delay: 1.2s;
}
.jubileum-teaser__mosaic-img--gluecksrad:hover {
    animation: jubiSpin 0.7s ease forwards;
}
.jubileum-teaser__mosaic-img--wuerfel  { animation-delay: 1.8s; }

@media (max-width: 1024px) {
    .jubileum-teaser__mosaic-img { max-width: 120px; }
}
@media (max-width: 900px) {
    .jubileum-teaser__split {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    .jubileum-teaser__mosaic {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 0.75rem;
    }
    .jubileum-teaser__mosaic-img { max-width: 100px; }
}
@media (max-width: 640px) {
    .jubileum-teaser__mosaic { grid-template-columns: repeat(2, 1fr); }
    .jubileum-teaser__mosaic-img { max-width: 110px; }
}

/* ════════════════════════════════════════════════════════════════
   JUBILÄUMSSEITE /25jahre
   ════════════════════════════════════════════════════════════════ */
.jubileum-hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 60%, #231805 100%);
    color: var(--white);
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}
.jubileum-hero__deco {
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 480px; height: 480px;
    border-radius: 50%;
    border: 2px solid rgba(147,120,61,.18);
    pointer-events: none;
}
.jubileum-hero__deco::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 2px solid rgba(147,120,61,.12);
}
.jubileum-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.jubileum-hero__num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 8px 32px rgba(147,120,61,.40);
    margin-bottom: 1.5rem;
}
.jubileum-hero__num-badge span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.jubileum-hero__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(147,120,61,.4);
    border-radius: 50px;
}
.jubileum-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--white);
}
.jubileum-hero__title em { font-style: normal; color: var(--gold); }
.jubileum-hero__motto {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green-sage);
    margin: 0 0 1rem;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    line-height: 1.6;
}
.jubileum-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin: 0 0 2rem;
}
.jubileum-hero__sub strong { color: var(--white); }

/* Programm-Karten */
.jubileum-programm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.jubileum-day-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    border: 1px solid rgba(184,212,184,.25);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.jubileum-day-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.jubileum-day-card__header {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.jubileum-day-card__header--mo { background: linear-gradient(135deg, #2a5c3f, #3d7a55); }
.jubileum-day-card__header--di { background: linear-gradient(135deg, #6b3a7a, #9b6dab); }
.jubileum-day-card__header--mi { background: linear-gradient(135deg, #2a5c6b, #3d7a8a); }
.jubileum-day-card__header--do { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.jubileum-day-card__wochentag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
.jubileum-day-card__datum {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}
.jubileum-day-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}
.jubileum-day-card__thema {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.35;
    margin: 0;
}
.jubileum-day-card__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.jubileum-day-card__list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}
.jubileum-day-card__list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}
.jubileum-day-card__list s { opacity: 0.6; }
.jubileum-day-card__gutschein {
    display: inline-block;
    background: rgba(147,120,61,.10);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    border: 1px dashed rgba(147,120,61,.35);
}

/* Gutschein-Highlight */
.jubileum-gutschein {
    position: relative;
    border: 2px dashed var(--gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-width: 760px;
    margin: 0 auto;
}
.jubileum-gutschein__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}
.jubileum-gutschein__inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.jubileum-gutschein__pct {
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}
.jubileum-gutschein__pct span {
    font-size: 2.5rem;
    vertical-align: super;
}
.jubileum-gutschein__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 0.75rem;
}
.jubileum-gutschein__text p { margin: 0 0 0.5rem; line-height: 1.65; }
.jubileum-gutschein__fine {
    font-size: 0.82rem !important;
    color: var(--text-light) !important;
}

/* CTA-Banner */
.jubileum-cta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.jubileum-cta__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.jubileum-cta__sub {
    color: rgba(255,255,255,.70);
    line-height: 1.7;
    margin: 0;
}
.jubileum-cta__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Responsive: Jubiläumsseite */
@media (max-width: 1024px) {
    .jubileum-programm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .jubileum-gutschein__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .jubileum-gutschein { padding: 2.5rem 1.5rem; }
}
@media (max-width: 640px) {
    .jubileum-programm { grid-template-columns: 1fr; }
    .jubileum-hero { padding: 3.5rem 0 3rem; }
    .jubileum-gutschein__pct { font-size: 3.5rem; }
    .jubileum-cta__btns .btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   JUBILÄUMSSEITE – PNG-ILLUSTRATIONEN IN KARTEN
   ════════════════════════════════════════════════════════════════ */

/* Illustration-Wrapper oberhalb des farbigen Headers */
.jubileum-day-card__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 0.5rem;
    background: var(--white);
}
.jubileum-day-card__img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.15));
    animation: jubiFloat 3.5s ease-in-out infinite;
    display: block;
}
.jubileum-day-card:hover .jubileum-day-card__img {
    animation: jubiBounce 0.6s ease-in-out;
}

/* Footer mit Akzent-Icon + Gutschein-Badge */
.jubileum-day-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.jubileum-day-card__accent {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

/* Hero: schwebende Deko-PNGs */
.jubileum-hero__deco {
    position: absolute;
    right: 0; top: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.jubileum-hero__deco-img {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.22));
    pointer-events: none;
}
.jubileum-hero__deco-img--kuchen {
    width: 190px;
    height: 190px;
    right: 90px;
    top: 50%;
    transform: translateY(-70%);
    animation: jubiFloat 4s ease-in-out infinite;
}
.jubileum-hero__deco-img--geschenk {
    width: 130px;
    height: 130px;
    right: 20px;
    top: 50%;
    transform: translateY(10%);
    animation: jubiFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Gutschein-Sektion: Deko-Bild */
.jubileum-gutschein__deco-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
    animation: jubiBounce 3s ease-in-out infinite;
}

/* Kolumnen-Grid: fixiere auf 3 Spalten */
.magazine-grid--sub {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Responsive: PNG-Deko im Hero */
@media (max-width: 1024px) {
    .jubileum-hero__deco-img--kuchen { width: 150px; height: 150px; right: 50px; }
    .jubileum-hero__deco-img--geschenk { width: 100px; height: 100px; }
}
@media (max-width: 900px) {
    .jubileum-hero__deco { display: none; }
    .jubileum-day-card__img { width: 72px; height: 72px; }
    .magazine-grid--sub { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    .jubileum-day-card__illustration { padding: 1rem 1rem 0.25rem; }
    .jubileum-day-card__img { width: 60px; height: 60px; }
}

/* ================================================================
   JUBILÄUMSSEITE 2026 – Styleguide-Redesign
   Gescoped auf body.page-jubileum — keine anderen Seiten betroffen
   ================================================================ */

body.page-jubileum {
    --jubi-bg:    #F5F3ED;
    --jubi-green: #2E5A39;
    --jubi-sage:  #A7BC9F;
    --jubi-gold:  #D4AF37;
    --jubi-serif: 'Playfair Display', Georgia, serif;
    background: var(--jubi-bg);
}

/* --- Hero -------------------------------------------------------- */
.jubi26-hero {
    position: relative;
    background: var(--jubi-bg);
    padding: 5rem 0 5.5rem;
    overflow: hidden;
    text-align: center;
}
.jubi26-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.jubi26-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--jubi-green);
    color: #fff;
    font-family: var(--jubi-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(46,90,57,.25);
}
.jubi26-hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--jubi-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.jubi26-hero__title {
    font-family: var(--jubi-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--jubi-green);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.jubi26-hero__title em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.7;
}
.jubi26-hero__sub {
    color: #4a6250;
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Ginkgo floating SVGs */
.jubi26-ginkgo {
    position: absolute;
    pointer-events: none;
    color: var(--jubi-sage);
}
.jubi26-ginkgo--1 {
    width: 110px; top: -15px; left: 4%;
    animation: jubiFloat 5s ease-in-out infinite;
    transform: rotate(-20deg);
}
.jubi26-ginkgo--2 {
    width: 75px; top: 18%; right: 5%;
    animation: jubiFloat 6s ease-in-out infinite;
    animation-delay: 1s;
    transform: rotate(28deg);
}
.jubi26-ginkgo--3 {
    width: 90px; bottom: 8%; left: 10%;
    animation: jubiFloat 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
    transform: rotate(12deg);
}
.jubi26-ginkgo--4 {
    width: 58px; bottom: 20%; right: 8%;
    animation: jubiFloat 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
    transform: rotate(-14deg);
}
.jubi26-ginkgo--5 {
    width: 80px; top: 48%; left: 1%;
    animation: jubiFloat 7s ease-in-out infinite;
    animation-delay: 2s;
    transform: rotate(6deg);
}

/* --- Dauer-Angebote -------------------------------------------- */
.jubi26-offers {
    background: #fff;
    padding: 5rem 0;
}
.jubi26-offers__header {
    text-align: center;
    margin-bottom: 3rem;
}
.jubi26-offers__eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--jubi-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.jubi26-offers h2 {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0;
}
.jubi26-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.jubi26-offer-card {
    background: var(--jubi-bg);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(167,188,159,.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.jubi26-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(46,90,57,.13);
}
.jubi26-offer-card__icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: block;
}
.jubi26-offer-card__name {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.jubi26-offer-card__desc {
    font-size: 0.85rem;
    color: #5a7060;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.jubi26-offer-card__price-now {
    font-family: var(--jubi-serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--jubi-green);
    line-height: 1;
}
.jubi26-offer-card__price-was {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
    margin-top: 0.2rem;
}
.jubi26-offer-card__save {
    display: inline-block;
    margin-top: 0.75rem;
    background: var(--jubi-gold);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 20px;
}

/* --- Programm --------------------------------------------------- */
.jubi26-programm {
    background: var(--jubi-bg);
    padding: 5.5rem 0;
}
.jubi26-programm__header {
    text-align: center;
    margin-bottom: 4rem;
}
.jubi26-programm__eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--jubi-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.jubi26-programm h2 {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0;
}
.jubi26-day {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
    border-top: 1px solid rgba(167,188,159,.45);
}
.jubi26-day:last-child {
    border-bottom: 1px solid rgba(167,188,159,.45);
}
.jubi26-day__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.jubi26-day__icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(167,188,159,.25);
    border: 2px solid var(--jubi-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}
.jubi26-day__img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(46,90,57,.18));
    animation: jubiFloat 4s ease-in-out infinite;
}
.jubi26-day__eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jubi-gold);
    font-weight: 600;
    margin-bottom: 0.45rem;
}
.jubi26-day__title {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.jubi26-day__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.jubi26-day__list li {
    padding-left: 1.3rem;
    position: relative;
    color: #3d4f3e;
    font-size: 0.95rem;
    line-height: 1.55;
}
.jubi26-day__list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--jubi-sage);
    font-size: 0.6rem;
    top: 0.4em;
}
.jubi26-day__list s {
    opacity: 0.55;
    font-size: 0.88em;
}

/* --- Würfeln ---------------------------------------------------- */
.jubi26-dice {
    background: #fff;
    padding: 5.5rem 0;
    text-align: center;
}
.jubi26-dice__inner {
    max-width: 560px;
    margin: 0 auto;
}
.jubi26-dice__img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(46,90,57,.2));
    animation: jubiBounce 2.5s ease-in-out infinite;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.jubi26-dice h2 {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.jubi26-dice__text {
    color: #4a6250;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.jubi26-dice__range {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--jubi-bg);
    border: 2px solid var(--jubi-sage);
    border-radius: 40px;
    padding: 0.5rem 1.75rem;
    font-family: var(--jubi-serif);
    font-size: 1.2rem;
    color: var(--jubi-green);
    font-weight: 700;
}

/* --- Gutschein-Wallet-Sektion ----------------------------------- */
.jubi26-wallet-section {
    background: var(--jubi-bg);
    padding: 5.5rem 0;
}
.jubi26-wallet-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}
.jubi26-wallet-title {
    font-family: var(--jubi-serif);
    color: var(--jubi-green);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.jubi26-wallet-intro p {
    color: #5a7060;
    font-size: .9rem;
    margin: 0;
}

/* Orange Gutschein-Ticket */
.jubi26-ticket {
    max-width: 700px;
    margin: 0 auto;
    background: #E4681F;
    border-radius: 18px;
    padding: 5px;
    box-shadow: 0 20px 60px rgba(228,104,31,.42), 0 6px 20px rgba(0,0,0,.12);
}
.jubi26-ticket__inner {
    border: 2.5px dashed rgba(255,255,255,.72);
    border-radius: 13px;
    padding: 2.75rem 2.5rem 2rem;
    text-align: center;
}
.jubi26-ticket__label {
    font-family: var(--jubi-serif);
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    font-weight: 700;
    letter-spacing: .07em;
    margin: 0 0 .5rem;
}
.jubi26-ticket__pct {
    font-family: var(--jubi-serif);
    color: #fff;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    margin: .2rem 0;
}
.jubi26-ticket__sub {
    font-family: var(--jubi-serif);
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    margin: 0 0 2rem;
}
.jubi26-ticket__fine {
    color: rgba(255,255,255,.88);
    font-size: .78rem;
    line-height: 1.6;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,.3);
    padding-top: 1rem;
    margin: 0;
}

/* Smartphone-Tipp */
.jubi26-phone-tip {
    max-width: 700px;
    margin: 2.25rem auto 0;
    text-align: center;
}
.jubi26-phone-tip__lead {
    font-size: .95rem;
    color: #4a6250;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.jubi26-phone-tip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.jubi26-phone-tip__item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(167,188,159,.4);
    padding: 1.25rem 1rem;
    text-align: left;
}
.jubi26-phone-tip__icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: .4rem;
}
.jubi26-phone-tip__item strong {
    display: block;
    color: var(--jubi-green);
    margin-bottom: .35rem;
}
.jubi26-phone-tip__item p {
    font-size: .82rem;
    color: #5a7060;
    line-height: 1.55;
    margin: 0;
}

/* Share-Buttons */
.jubi26-share-row {
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}
.jubi26-share-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 40px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
}
.jubi26-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.jubi26-share-btn--wa    { background: #25D366; color: #fff; }
.jubi26-share-btn--email { background: var(--jubi-green); color: #fff; }

/* --- Würfel-Regeln ---------------------------------------------- */
.jubi26-dice__rules {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: 1.25rem auto 1rem;
    max-width: 360px;
    text-align: left;
}
.jubi26-dice__rule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--jubi-bg);
    border-radius: 8px;
    padding: .5rem 1rem;
    font-size: .9rem;
    border-left: 3px solid var(--jubi-sage);
}
.jubi26-dice__rule--mid     { border-color: var(--jubi-gold); }
.jubi26-dice__rule--high    { border-color: #c07830; }
.jubi26-dice__rule--jackpot { border-color: var(--jubi-green); background: rgba(46,90,57,.06); }
.jubi26-dice__rule-val   { font-weight: 700; color: var(--jubi-green); }
.jubi26-dice__rule-label { color: #4a6250; }
.jubi26-dice__fine {
    font-size: .78rem;
    color: #7a9080;
    margin-top: .5rem;
    line-height: 1.55;
}

/* --- Preis pro Liter ------------------------------------------- */
.jubi26-offer-card__price-liter {
    font-size: .72rem;
    color: #7a9080;
    margin-top: .15rem;
}

/* --- CTA / Anfahrt + HWG --------------------------------------- */
.jubi26-footer {
    background: var(--jubi-green);
    color: #fff;
    padding: 4.5rem 0 3rem;
    text-align: center;
}
.jubi26-footer h2 {
    font-family: var(--jubi-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.jubi26-footer__sub {
    color: rgba(255,255,255,.75);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}
.jubi26-footer__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.jubi26-footer__hwg {
    max-width: 680px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 0.71rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}

/* --- Responsive ------------------------------------------------- */
@media (max-width: 900px) {
    .jubi26-offers__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .jubi26-day {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.5rem 0;
    }
    .jubi26-day__visual {
        flex-direction: row;
        justify-content: center;
    }
    .jubi26-day__img { width: 100px; height: 100px; }
    .jubi26-ginkgo--3, .jubi26-ginkgo--5 { display: none; }
}
@media (max-width: 640px) {
    .jubi26-hero { padding: 3.5rem 0 4rem; }
    .jubi26-ginkgo--2, .jubi26-ginkgo--4 { display: none; }
    .jubi26-ticket__inner { padding: 2rem 1.25rem 1.5rem; }
    .jubi26-phone-tip__grid { grid-template-columns: 1fr; }
    .jubi26-offers__grid { grid-template-columns: 1fr; }
    .jubi26-day__img { width: 80px; height: 80px; }
    .jubi26-share-btn { padding: .6rem 1.1rem; font-size: .85rem; }
}

/* ═══════════════════════════════════════════════════
   Vorbestellformular
   ═══════════════════════════════════════════════════ */
.vorbestell-form-wrap {
    background: var(--green-mist);
    border: 1px solid var(--green-sage);
    border-radius: 12px;
    padding: 2rem 2.25rem;
    margin: 2rem 0;
}
.vorbestell-form-wrap h2 {
    font-size: 1.35rem;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
}
.vf-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.vf-row--2 { grid-template-columns: 1fr 1fr; }
.vf-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.vf-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .75rem; }
.vf-label { font-size: .9rem; font-weight: 600; color: var(--green-dark); }
.vf-req { color: var(--green-herb); }
.vf-input {
    padding: .6rem .85rem;
    border: 1.5px solid var(--green-sage);
    border-radius: 7px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.vf-input:focus { outline: none; border-color: var(--green-mid); }
.vf-textarea { resize: vertical; min-height: 130px; }
.vf-input-suffix { display: flex; align-items: center; gap: .5rem; }
.vf-input-suffix .vf-input { flex: 1; }
.vf-suffix { font-size: .9rem; color: var(--text-light); white-space: nowrap; }
.vf-dse { margin: 1.25rem 0 .75rem; }
.vf-check-label {
    display: flex; gap: .65rem; align-items: flex-start;
    font-size: .85rem; color: var(--text-dark); cursor: pointer; line-height: 1.5;
}
.vf-check-label input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem;
    accent-color: var(--green-mid);
}
.vf-required-note { font-size: .78rem; color: var(--text-light); margin-bottom: 1.25rem; }
.vorbestell-success, .vorbestell-error {
    display: flex; gap: .75rem; align-items: flex-start;
    padding: 1rem 1.25rem; border-radius: 8px;
    margin-bottom: 1.25rem; font-size: .95rem; line-height: 1.5;
}
.vorbestell-success {
    background: #d4edda; color: #1a5c2e;
    border: 1px solid #b8d4c0;
}
.vorbestell-success svg { color: #1a5c2e; flex-shrink: 0; margin-top: .2rem; }
.vorbestell-error {
    background: #fff3cd; color: #7a5c00;
    border: 1px solid #e5d38a;
}
@media (max-width: 640px) {
    .vf-row--2, .vf-row--3 { grid-template-columns: 1fr; }
    .vorbestell-form-wrap { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   COOKIE-CONSENT-BANNER
   ============================================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-top: 3px solid var(--green-herb);
    box-shadow: 0 -4px 24px rgba(42,92,63,.16);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity  0.35s ease;
    opacity: 0;
}

.cookie-banner--visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Trick: display:block setzt JS, Transition braucht nächsten Frame */
.cookie-banner--visible {
    animation: cookieBannerIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cookieBannerIn {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner__text {
    flex: 1;
    font-size: .875rem;
    color: var(--text);
}

.cookie-banner__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: .3rem;
}

.cookie-banner__link {
    display: inline-block;
    margin-top: .4rem;
    font-size: .8rem;
    color: var(--green-mid);
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: .75rem;
}

.cookie-banner__btn {
    padding: .6rem 1.2rem;
    border: 2px solid var(--green-herb);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background: var(--green-herb);
    color: var(--white);
}

.cookie-banner__btn--primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.cookie-banner__btn--secondary {
    background: transparent;
    color: var(--green-deep);
}

.cookie-banner__btn--secondary:hover {
    background: var(--green-mist);
}

@media (max-width: 700px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cookie-banner__actions {
        flex-direction: column-reverse;
    }
    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}
