:root {
    --blue: #1D5FB5;
    --blue-dark: #164A8F;
    --blue-deep: #0E3B77;
    --blue-soft: #E8F1FB;
    --gold: #F5C518;
    --gold-soft: #FDF3CC;
    --green: #2FA246;
    --green-soft: #E4F4E8;
    --ink: #1C2230;
    --ink-soft: #3A4355;
    --muted: #5A6474;
    --muted-soft: #8A93A3;
    --surface: #FFFFFF;
    --bg: #F8F9FB;
    --bg-alt: #F2F5F9;
    --border: rgba(29, 95, 181, 0.14);
    --border-strong: rgba(29, 95, 181, 0.28);
    --shadow-sm: 0 1px 2px rgba(14, 59, 119, 0.06), 0 1px 3px rgba(14, 59, 119, 0.04);
    --shadow-md: 0 4px 12px rgba(14, 59, 119, 0.08), 0 2px 6px rgba(14, 59, 119, 0.04);
    --shadow-lg: 0 16px 48px rgba(14, 59, 119, 0.12), 0 6px 16px rgba(14, 59, 119, 0.06);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--blue-dark); }
a:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 100;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; color: #fff; }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 14px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-decoration: none;
}
.brand__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand__text strong { font-size: 1rem; color: var(--blue); }
.brand__text span { font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.primary-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.primary-nav a:hover { background: var(--blue-soft); color: var(--blue); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px !important;
    background: var(--blue);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 880px) {
    .primary-nav {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    }
    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .primary-nav a { padding: 12px 16px; }
    .nav-toggle { display: inline-flex; }
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29, 95, 181, 0.10), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(47, 162, 70, 0.08), transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 30%, rgba(245, 197, 24, 0.06), transparent 60%),
        linear-gradient(180deg, #FAFCFF 0%, var(--bg) 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 80%);
    opacity: 0.7;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(29, 95, 181, 0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.hero__eyebrow::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(47, 162, 70, 0.15);
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 20px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin: 0 0 32px;
    max-width: 560px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: inherit;   /* <button> erbt die Seitenschrift nicht von selbst */
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--blue-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn--ghost {
    background: transparent;
    color: var(--blue);
    border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--blue-soft); color: var(--blue-dark); }

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__logo-card {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 197, 24, 0.15), transparent 50%),
        linear-gradient(135deg, #FFFFFF 0%, #F0F6FE 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    border: 1px solid var(--border);
    overflow: hidden;
}
.hero__logo-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        repeating-linear-gradient(45deg, transparent 0 22px, rgba(29, 95, 181, 0.04) 22px 24px);
    pointer-events: none;
}
.hero__logo-card img {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(29, 95, 181, 0.22));
}

.hero__badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__badge {
    position: absolute;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero__badge--1 { top: 10%; left: -4%; }
.hero__badge--2 { bottom: 12%; right: -2%; }
.hero__badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
}
.hero__badge--1 .dot { background: var(--gold); }
.hero__badge--2 .dot { background: var(--green); }

@media (max-width: 880px) {
    .hero { padding: 56px 0 72px; }
    .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: left; }
    .hero__visual { order: -1; }
    .hero__logo-card { width: min(320px, 80%); }
    .hero__badge--1, .hero__badge--2 { display: none; }
}

/* ─── Sections ─────────────────────────────────────────── */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head__eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
}
.section-head p {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin: 0;
}

.section--alt { background: var(--surface); }

/* ─── Cards Grid ───────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    position: relative;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}
.card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--blue-soft);
    color: var(--blue);
}
.card--gold .card__icon { background: var(--gold-soft); color: #8A6D00; }
.card--green .card__icon { background: var(--green-soft); color: #15703A; }
.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── About Split ──────────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.split__body h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 20px;
}
.split__body p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin: 0 0 14px;
}
.split__body p.lead {
    font-size: 1.15rem;
    color: var(--ink);
}
.split__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.split__stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.split__stat span {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
}

.split__visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.split__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 197, 24, 0.35), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(47, 162, 70, 0.35), transparent 40%);
}
.split__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px);
}
.split__visual img {
    position: relative;
    width: 70%;
    max-width: 360px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

@media (max-width: 880px) {
    .split { grid-template-columns: 1fr; gap: 48px; }
    .split__visual { max-width: 420px; margin: 0 auto; }
    .split__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .split__stat strong { font-size: 1.4rem; }
}

/* ─── Events teaser ────────────────────────────────────── */
.events-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 36px;
    text-align: center;
    background: var(--surface);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
}
.events-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.events-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}
.events-empty p {
    color: var(--muted);
    margin: 0;
}

/* ─── Events list ──────────────────────────────────────── */
.events-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.event-item {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.event-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}
.event-item__date {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}
.event-item__day {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.event-item__month {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.event-item__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2px 0 4px;
}
.event-item__meta {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 8px;
}
.event-item__desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ─── Contact ──────────────────────────────────────────── */
.contact {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(29, 95, 181, 0.06), transparent 70%),
        linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.contact__panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact__panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.18), transparent 70%);
    pointer-events: none;
}
.contact__panel::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(circle, rgba(47, 162, 70, 0.2), transparent 70%);
    pointer-events: none;
}
.contact__panel h2 {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}
.contact__panel p {
    position: relative;
    opacity: 0.9;
    margin: 0 0 28px;
    font-size: 1.05rem;
}
.contact__options {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.contact__options .btn--primary {
    background: #fff;
    color: var(--blue);
}
.contact__options .btn--primary:hover { background: var(--gold-soft); color: var(--blue-dark); }
.contact__options .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.contact__options .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* ─── Kontaktformular ──────────────────────────────────── */
/* Liegt im dunkelblauen Kontakt-Panel: helle Felder, weiße Beschriftungen.
   Die Regeln sind auf .contact-form bzw. .contact__panel gescoped, weil
   „.contact__panel p" sonst Fehlertexte und Hinweise überschreibt. */
.contact-form {
    position: relative;
    z-index: 1;   /* über die dekorativen ::before/::after des Panels heben */
    text-align: left;
}
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-form .field--wide { grid-column: 1 / -1; }

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.field__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.field__input {
    font: inherit;
    width: 100%;
    padding: 13px 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
textarea.field__input {
    min-height: 150px;
    line-height: 1.6;
    resize: vertical;
}
.field__input::placeholder { color: var(--muted-soft); }
.field__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.6);
}
.field__input--invalid {
    border-color: #C4362B;
    box-shadow: 0 0 0 3px rgba(253, 236, 234, 0.5);
}
.contact-form .field__error {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: 1;
    color: #FFDAD5;
}
.contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}
.contact-form .btn--primary { background: #fff; color: var(--blue); }
.contact-form .btn--primary:hover { background: var(--gold-soft); color: var(--blue-dark); }
.contact-form .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.contact-form .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.contact-form .form-note {
    margin: 18px 0 0;
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.85;
}
.contact-form .form-note a { color: #fff; text-decoration: underline; }
.contact-form .form-note a:hover { color: var(--gold-soft); }

/* Honeypot: für Menschen unsichtbar, für Bots ein verlockendes Feld.
   Bewusst kein display:none — das erkennen viele Bots. */
.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 16px 18px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.55;
}
.form-alert--ok    { background: var(--green-soft); color: #14532D; border: 1px solid #A9DCB6; }
.form-alert--error { background: #FDECEA;           color: #8A1C13; border: 1px solid #F3B7B0; }
.contact__panel .form-alert p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    opacity: 1;
    color: inherit;
}
.form-alert:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .contact-form__grid { grid-template-columns: 1fr; }
    .contact-form__actions .btn { width: 100%; }
}

/* ─── Footer ───────────────────────────────────────────── */
.site-footer {
    padding: 56px 0 32px;
    background: #0E1827;
    color: #B4BECD;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.site-footer .brand__text strong { color: #fff; }
.site-footer .brand__text span { color: #8A93A3; }
.site-footer__about p {
    margin: 16px 0 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #8A93A3;
    max-width: 340px;
}
.site-footer__socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
}
.site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.94rem;
}
.site-footer__social svg { flex-shrink: 0; }
.site-footer h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 6px 0 18px;
    font-weight: 700;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer a { color: #B4BECD; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #6A7687;
}

@media (max-width: 720px) {
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    section { padding: 64px 0; }
}

/* ─── Mitglieder ───────────────────────────────────────── */
.member-card {
    display: flex;
    flex-direction: column;
}
.member-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.member-card__logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.member-card__fallback {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-card__head h3 {
    margin: 0;
    font-size: 1.15rem;
}
.member-card__city {
    font-size: 0.85rem;
    color: var(--muted);
}
.member-card__offers-label {
    margin: 16px 0 0 !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-soft) !important;
}
.member-card__offers {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.member-card__offers li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}
.member-card__offers li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.member-card__footer {
    margin-top: auto;
    padding-top: 20px;
}
.member-card__footer .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ─── Legal pages (Impressum / Datenschutz) ────────────── */
.legal {
    padding: 64px 0 96px;
    background: var(--bg);
}
.legal__container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
    text-decoration: none;
}
.legal__back:hover { color: var(--blue); }
.legal__back::before { content: "←"; }

.legal__eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(29, 95, 181, 0.08);
    color: var(--blue);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.legal h1 {
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 6px;
}
.legal__meta {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0 0 40px;
}

.legal section {
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.legal h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.legal p {
    color: var(--ink-soft);
    margin: 0 0 12px;
    font-size: 0.97rem;
    line-height: 1.7;
}
.legal p:last-child { margin-bottom: 0; }
.legal ul {
    color: var(--ink-soft);
    padding-left: 22px;
    margin: 0 0 12px;
    font-size: 0.97rem;
    line-height: 1.7;
}
.legal ul li { margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .placeholder {
    background: var(--gold-soft);
    color: #8A6D00;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 0.88em;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    border: 1px dashed rgba(138, 109, 0, 0.4);
}

/* ─── Aktuelles (Nachrichtenseite, nutzt das Legal-Layout) ─── */
.news .legal__container { max-width: 860px; }
.news-figure {
    margin: 22px 0 0;
}
.news-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-alt);
}
.news-figure figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}
.news section a { color: var(--blue); }

/* ─── Öffentlicher Standplan (plan.php, plan.js) ───────────────────────────
   Karte in Metern (viewBox), Aussehen nur über Klassen — die CSP erlaubt keine
   style-Attribute. Kategorien unterscheiden sich durch Farbe UND Symbol/Text. */
.plan { padding: 24px 0 64px; background: var(--bg); }
.plan > * { max-width: 1100px; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }
.pl-kopf h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 4px; }
.pl-intro { color: var(--muted); margin: 0 0 12px; }
.pl-werkzeuge { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; position: sticky; top: 0; z-index: 5; background: var(--bg); padding-top: 8px; padding-bottom: 8px; }
.pl-suche input { width: min(100%, 320px); padding: 9px 12px; border: 1px solid var(--border-strong); border-radius: 10px; font: inherit; background: var(--surface); }
.pl-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.pl-filter__knopf { padding: 7px 12px; min-height: 40px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); font: inherit; font-size: 0.9rem; cursor: pointer; }
.pl-filter__knopf[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.pl-kartenrahmen { position: relative; background: #eef1f4; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; touch-action: none; }
#pl-karte { display: block; width: 100%; height: min(70vh, 640px); min-height: 360px; cursor: grab; user-select: none; }
#pl-karte.pl-zieht { cursor: grabbing; }
.pl-grund { fill: #f7f5f0; }
.pl-zoom { position: absolute; right: 10px; top: 10px; display: flex; flex-direction: column; gap: 4px; }
.pl-zoom button { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--surface); font-size: 1.3rem; cursor: pointer; }
.pl-hinweis { color: var(--muted); font-size: 0.9rem; }
.pl-leer { font-size: 1.1rem; color: var(--ink-soft); }
/* Stände */
.pl-stand { cursor: pointer; outline: none; }
.pl-treffer { fill: transparent; stroke: none; }
.pl-form { stroke: #333; stroke-width: 0.15; fill: #d9d9d9; }
.pl-nr { font-family: system-ui, sans-serif; font-weight: 700; fill: #111; text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.pl-stand:focus-visible .pl-form, .pl-stand.pl-gewaehlt .pl-form { stroke: var(--blue); stroke-width: 0.5; }
.pl-stand.pl-treffer-aktiv .pl-form { stroke: #1a7f37; stroke-width: 0.5; }
.pl-stand.pl-abgeblendet { opacity: 0.25; }
.pl-cat-essen .pl-form         { fill: #f08a8a; } .pl-cat-getraenke .pl-form     { fill: #6ec6ea; }
.pl-cat-suesses .pl-form       { fill: #f7c5e0; } .pl-cat-kunsthandwerk .pl-form { fill: #f5e663; }
.pl-cat-verein .pl-form        { fill: #6fcf6f; } .pl-cat-gewerbe .pl-form       { fill: #c9d6df; }
.pl-cat-kinder .pl-form        { fill: #ffb703; }
.pl-infra .pl-form             { fill: #fff; stroke-width: 0.3; }
.pl-cat-wc .pl-form, .pl-cat-wc_barrierefrei .pl-form { fill: #b8d4f0; }
.pl-cat-sanitaet .pl-form { stroke: #c1121f; } .pl-cat-sanitaet .pl-nr { fill: #c1121f; }
.pl-cat-buehne .pl-form { fill: #e9c46a; } .pl-cat-info .pl-form { fill: #4cc9f0; }
/* Linien */
.pl-f-form { stroke-linejoin: round; stroke-linecap: round; }
.pl-f-fluchtweg .pl-f-form { stroke: #1a7f37; stroke-width: 0.6; } .pl-pfeil-form { fill: #1a7f37; }
.pl-f-rettungsweg .pl-f-form { stroke: #c1121f; stroke-width: 0.6; stroke-dasharray: 1.5 0.8; }
.pl-f-freiflaeche .pl-f-form { fill: rgba(193,18,31,0.12); stroke: #c1121f; stroke-width: 0.25; }
.pl-f-absperrung .pl-f-form { stroke: #111; stroke-width: 0.5; }
.pl-f-label { font-family: system-ui, sans-serif; font-weight: 600; fill: #222; text-anchor: middle; paint-order: stroke; stroke: #fff; stroke-width: 0.35; pointer-events: none; }
/* Karte am unteren Rand */
.pl-info { position: fixed; left: 12px; right: 12px; bottom: 12px; max-width: 560px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 14px; box-shadow: var(--shadow-md); padding: 14px 48px 14px 16px; z-index: 20; }
.pl-info p { margin: 0 0 2px; } .pl-info__nr { font-weight: 800; color: var(--blue); } .pl-info__name { font-weight: 700; font-size: 1.05rem; }
.pl-info__angebot { color: var(--ink-soft); } .pl-info__kat { color: var(--muted); font-size: 0.9rem; }
.pl-info__zu { position: absolute; right: 8px; top: 8px; width: 36px; height: 36px; border: none; background: transparent; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
/* Listen */
.pl-listen h2 { font-size: 1.2rem; margin: 24px 0 8px; }
.pl-liste { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.pl-liste li { display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; padding: 8px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; }
.pl-liste li.pl-abgeblendet { display: none; }
.pl-liste li.pl-gewaehlt { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(29,95,181,0.2); }
.pl-liste a { font-weight: 700; text-decoration: none; color: var(--blue); }
.pl-liste__name { font-weight: 600; } .pl-liste__angebot { color: var(--ink-soft); }
.pl-liste__kat { margin-left: auto; font-size: 0.8rem; padding: 2px 8px; border-radius: 999px; background: var(--bg-alt); color: var(--muted); }
.pl-fuss { color: var(--muted); font-size: 0.85rem; margin-top: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
