/* ──────────────────────────────────────────────────────────────
   Apple-inspired design system
   - SF Pro / system fonts, light/regular/semibold weights
   - Soft 16-24px radii, layered subtle shadows
   - Generous whitespace, refined typography
   ────────────────────────────────────────────────────────────── */

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

:root {
    /* Palette */
    --accent:        #0071e3;      /* Apple blue */
    --accent-hover:  #0077ed;
    --ink:           #1d1d1f;      /* Apple near-black */
    --ink-soft:      #424245;
    --muted:         #6e6e73;      /* Apple secondary text */
    --hairline:      rgba(0,0,0,.08);
    --hairline-soft: rgba(0,0,0,.04);
    --bg:            #ffffff;
    --bg-elev:       #fbfbfd;      /* Apple secondary surface */
    --bg-tint:       #f5f5f7;      /* Apple tertiary surface */
    --surface:       rgba(255,255,255,.72);
    --nav-bg:        rgba(255,255,255,.72);

    /* AfD brand */
    --afd-blue:        #009ee0;
    --afd-blue-dark:   #0086c2;
    --afd-blue-darker: #006a9b;

    /* Shadows (layered soft) */
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.08), 0 30px 80px rgba(0,0,0,.10);

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;

    /* Layout */
    --max-w: 1140px;
    --pad:   1.5rem;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue",
                 Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    letter-spacing: -.01em;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .15s var(--ease);
}
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Layout ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

main.site-main { min-height: calc(100vh - 96px); }

/* ─── Header (AfD blue, taller) ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--afd-blue) 0%, var(--afd-blue-dark) 100%);
    box-shadow:
        0 1px 0 rgba(0,0,0,.06),
        0 6px 20px rgba(0,106,155,.18);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 96px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity .15s var(--ease);
}

.site-logo:hover { opacity: .9; }

.site-logo-img {
    height: 76px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

.main-nav { margin-left: auto; }

.main-nav ul {
    display: flex;
    gap: .15rem;
}

.main-nav a {
    color: rgba(255,255,255,.88);
    font-size: .92rem;
    font-weight: 500;
    padding: .55rem .95rem;
    border-radius: 999px;
    letter-spacing: -.005em;
    transition: background .2s var(--ease), color .2s var(--ease);
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,.22);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    margin-left: auto;
    padding: .4rem .65rem;
    border-radius: 8px;
}
.nav-toggle:hover { background: rgba(255,255,255,.15); }

/* ─── Hero ─── */
.hero {
    background:
        radial-gradient(ellipse at 30% -20%, rgba(0,113,227,.10), transparent 60%),
        radial-gradient(ellipse at 80% 120%, rgba(0,113,227,.06), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
    text-align: center;
    padding: 6rem 1.5rem 5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
    background: linear-gradient(180deg, var(--ink), #5a5a5e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    letter-spacing: -.005em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--accent);
    line-height: 1;
}

.hero-stat span {
    display: block;
    font-size: .85rem;
    color: var(--muted);
    margin-top: .35rem;
    font-weight: 500;
}

/* ─── Sections ─── */
section { padding: 5rem 0; }
section.bg-tint { background: var(--bg-tint); }
section.bg-elev { background: var(--bg-elev); }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.022em;
    color: var(--ink);
    margin-bottom: .5rem;
}

.section-lede {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 640px;
    font-weight: 400;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: .75rem;
}

.section-header .more-link {
    font-size: .95rem;
    font-weight: 500;
    color: var(--accent);
}
.section-header .more-link:hover { text-decoration: underline; }

/* ─── Platform grid ─── */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.platform-card {
    background: var(--bg);
    border: 1px solid var(--hairline-soft);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    font: inherit;
    color: inherit;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,113,227,.22);
}

.platform-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: .9rem 0 .15rem;
}

.platform-subtitle {
    font-size: .82rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: .65rem !important;
}

.platform-readmore {
    margin-top: 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--accent);
    transition: gap .15s var(--ease);
}

.platform-card:hover .platform-readmore { text-decoration: underline; }

.platform-card .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), #4ba3ff);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.platform-card p {
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.5;
}

/* ─── News cards ─── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.news-card {
    background: var(--bg);
    border: 1px solid var(--hairline-soft);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--bg-tint);
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.news-card:hover .news-card-image img { transform: scale(1.04); }

.news-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
}

.tag {
    display: inline-block;
    background: rgba(0,113,227,.08);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 600;
    padding: .2em .65em;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.015em;
    margin-bottom: .75rem;
    color: var(--ink);
}

.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--accent); }

.news-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
    flex: 1;
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1.25rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--accent);
}

.news-card .read-more:hover { gap: .5rem; }

/* ─── Article detail ─── */
.article-header {
    background: linear-gradient(180deg, var(--bg-elev), var(--bg));
    padding: 4rem 1.5rem 3rem;
    border-bottom: 1px solid var(--hairline-soft);
}

.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.15;
    color: var(--ink);
    max-width: 820px;
    margin: 0 auto .75rem;
}

.article-meta {
    max-width: 820px;
    margin: 0 auto;
    font-size: .9rem;
    color: var(--muted);
}
.article-meta a { color: var(--accent); font-weight: 500; }

.article-hero-image {
    max-width: 880px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
}

.article-body {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.article-body h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; color: var(--ink); font-weight: 600; letter-spacing: -.015em; }
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--ink); font-weight: 600; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .4rem; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-back { margin-top: 2.5rem; }

/* ─── Councillors ─── */
.councillor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.councillor-card {
    background: var(--bg);
    border: 1px solid var(--hairline-soft);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}

.councillor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.councillor-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--bg-tint);
    overflow: hidden;
    position: relative;
}

.councillor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s var(--ease);
}

.councillor-card:hover .councillor-photo img { transform: scale(1.03); }

.councillor-body {
    padding: 1.75rem;
}

.councillor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: .25rem;
}

.councillor-role {
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -.005em;
}

.councillor-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.councillor-card .label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink);
    margin-top: 1.25rem;
    margin-bottom: .35rem;
}

/* compact card on home */
.councillor-card.compact .councillor-photo { aspect-ratio: 1 / 1; }
.councillor-card.compact .councillor-body { padding: 1.25rem; text-align: center; }
.councillor-card.compact h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.councillor-card.compact .councillor-role { margin-bottom: .25rem; font-size: .8rem; }
.councillor-card.compact .councillor-meta { font-size: .82rem; color: var(--muted); }

/* ─── Anträge table ─── */
.antraege-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg);
    border: 1px solid var(--hairline-soft);
    border-radius: var(--r-lg);
    overflow: hidden;
    font-size: .94rem;
    box-shadow: var(--shadow-sm);
}

.antraege-table th {
    background: var(--bg-tint);
    color: var(--ink-soft);
    text-align: left;
    padding: .9rem 1.25rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    border-bottom: 1px solid var(--hairline-soft);
}

.antraege-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--hairline-soft);
    vertical-align: top;
    color: var(--ink-soft);
}

.antraege-table tr:last-child td { border-bottom: none; }
.antraege-table tr:hover td { background: var(--bg-elev); }

.antraege-table strong { color: var(--ink); font-weight: 600; }
.antraege-table .row-excerpt { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

.badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: .25em .7em;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.badge-antrag        { background: rgba(0,113,227,.10); color: var(--accent); }
.badge-anfrage       { background: rgba(48,209,88,.12);  color: #1f8b3a; }
.badge-dringlichkeit { background: rgba(255,69,58,.10);  color: #c5221f; }

.status-angenommen  { color: #1f8b3a; font-weight: 600; }
.status-abgelehnt   { color: #c5221f; font-weight: 600; }
.status-beantwortet { color: var(--muted); font-weight: 500; }
.status-eingereicht { color: var(--accent); font-weight: 600; }

.pdf-btn {
    font-size: .8rem;
    padding: .42rem 1rem;
    background: var(--ink);
    color: #fff;
}
.pdf-btn:hover { background: #000; color: #fff; }

/* ─── PDF preview modal ─── */
.pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pdf-modal.open { display: flex; }

.pdf-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 30, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn .2s var(--ease);
}

.pdf-modal-frame {
    position: relative;
    background: var(--bg);
    width: min(1100px, 100%);
    height: min(90vh, 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: popIn .25s var(--ease);
}

.pdf-modal-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.25rem;
    background: var(--bg-tint);
    border-bottom: 1px solid var(--hairline-soft);
}

.pdf-modal-title {
    flex: 1;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdf-modal-action {
    font-size: .85rem;
    font-weight: 500;
    color: var(--accent);
    padding: .35rem .8rem;
    border-radius: 999px;
    transition: background .15s var(--ease);
}
.pdf-modal-action:hover { background: rgba(0,113,227,.08); text-decoration: none; }

.pdf-modal-close {
    background: var(--bg);
    border: 1px solid var(--hairline);
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s var(--ease), color .15s var(--ease);
}
.pdf-modal-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdf-modal iframe {
    flex: 1;
    width: 100%;
    border: none;
    background: var(--bg-tint);
}

/* Generic content modal body (HTML programme details, etc.) */
.content-modal .pdf-modal-frame { max-width: 720px; height: auto; max-height: 90vh; }

.content-modal-body {
    padding: 2rem 2.25rem 2.5rem;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.content-modal-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin: 1.5rem 0 .5rem;
    letter-spacing: -.012em;
}
.content-modal-body h3:first-child { margin-top: 0; }
.content-modal-body p { margin-bottom: .85rem; }
.content-modal-body strong { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
    .content-modal-body { padding: 1.25rem 1.25rem 1.75rem; font-size: .95rem; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
    .pdf-modal { padding: 0; }
    .pdf-modal-frame {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .pdf-modal-bar { padding: .65rem .9rem; gap: .5rem; }
    .pdf-modal-action {
        font-size: .8rem;
        padding: .35rem .65rem;
        white-space: nowrap;
    }
    .pdf-modal iframe {
        /* iOS only ever shows a stub PDF preview inside iframes anyway,
           but if the browser does show it, allow native zoom. */
        touch-action: manipulation;
    }
}

/* ─── Page hero ─── */
.page-hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0,113,227,.06), transparent 60%),
        var(--bg-elev);
    padding: 4.5rem 1.5rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--hairline-soft);
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: .5rem;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

/* ─── Kontakt ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-box {
    background: var(--bg);
    border: 1px solid var(--hairline-soft);
    border-radius: var(--r-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.contact-box h2 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.contact-box p, .contact-box address {
    font-size: .98rem;
    line-height: 1.75;
    color: var(--ink-soft);
    font-style: normal;
}

.contact-box a { color: var(--accent); font-weight: 500; }
.contact-box strong { color: var(--ink); font-weight: 600; }

.contact-form label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--ink);
    letter-spacing: -.005em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--hairline);
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
    margin-bottom: 1.1rem;
    background: var(--bg);
    color: var(--ink);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,113,227,.15);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 500;
    font-size: .95rem;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: -.005em;
    transition: background .15s var(--ease), transform .15s var(--ease);
}

.btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--bg-tint);
    color: var(--muted);
    margin-top: 5rem;
    border-top: 1px solid var(--hairline-soft);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.logo-tile-lg {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    padding: 8px;
}

.site-footer h4 {
    color: var(--ink);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.site-footer p, .site-footer address { font-size: .88rem; line-height: 1.75; }

.site-footer ul li { margin-bottom: .4rem; }
.site-footer a { color: var(--muted); font-size: .88rem; }
.site-footer a:hover { color: var(--ink); }

.social-links { display: flex; flex-direction: column; gap: .4rem; }

.footer-bottom {
    border-top: 1px solid var(--hairline-soft);
    text-align: center;
    padding: 1.25rem 1.5rem;
    font-size: .82rem;
    color: var(--muted);
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ─── Coming soon (leerer Pressebereich) ─── */
.coming-soon {
    max-width: 640px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: var(--bg, #fff);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
}

.coming-soon h2 {
    margin: 1rem 0 .75rem;
    font-size: 1.6rem;
    letter-spacing: -.02em;
    color: var(--ink);
}

.coming-soon p {
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: .9rem;
}

.coming-soon .btn { margin-top: .75rem; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .coming-soon { padding: 2.5rem 1.5rem; }
    .main-nav {
        display: none;
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, var(--afd-blue-dark) 0%, var(--afd-blue-darker) 100%);
        border-bottom: 1px solid rgba(0,0,0,.1);
        padding: 1rem 1.5rem 1.25rem;
        box-shadow: 0 8px 20px rgba(0,106,155,.18);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: .2rem; }
    .main-nav a { display: block; padding: .75rem 1rem; }
    .header-inner { position: relative; height: 96px; }
    .site-logo-img { height: 64px; }

    .contact-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    section { padding: 3.5rem 0; }
    .hero { padding: 4rem 1.5rem 3.5rem; }

    .antraege-table thead { display: none; }
    .antraege-table { display: block; background: transparent; border: none; box-shadow: none; }
    .antraege-table tbody, .antraege-table tr, .antraege-table td { display: block; }
    .antraege-table tr {
        background: var(--bg);
        border: 1px solid var(--hairline-soft);
        border-radius: var(--r-md);
        padding: 1rem 1.25rem;
        margin-bottom: .75rem;
        box-shadow: var(--shadow-sm);
    }
    .antraege-table td { padding: .25rem 0; border: none; }
    .antraege-table tr:hover td { background: transparent; }
}

@media (prefers-color-scheme: dark) {
    /* Optional: keep light for now — feel free to flip values for dark mode */
}
