/* =========================================================================
   Zolderkolder - hoofdstijl
   Kleuren: bordeauxrood, crème, goud - een warme, theatrale uitstraling.
   ========================================================================= */

:root {
    --rood:        #8a1f2b;
    --rood-donker: #6c141e;
    --rood-licht:  #b14250;
    --op-rood:        #ffffff; /* tekstkleur op de hoofdkleur (auto via beheer) */
    --op-rood-donker: #ffffff;
    --goud:        #c79a3c;
    --goud-licht:  #e6c87a;
    --creme:       #f7f3ec;
    --creme-donker:#ece4d6;
    --inkt:        #261b1b;
    --grijs:       #6f6760;
    --wit:         #ffffff;
    --schaduw:     0 12px 34px rgba(38, 27, 27, .12);
    --radius:      14px;
    --container:   1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
    margin: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--inkt);
    background: var(--creme);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--rood); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section-tint { background: var(--creme-donker); }
.section-dark { background: var(--rood-donker); color: var(--op-rood-donker); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--op-rood-donker); }
/* Zelfde achtergrond als de hero — volgt de huisstijlkleur uit het beheer */
.section-brand { background-color: var(--rood); color: var(--op-rood); }
.section-brand h1, .section-brand h2, .section-brand h3 { color: var(--op-rood); }

.lead { font-size: 1.15rem; color: var(--grijs); max-width: 40rem; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-block;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--goud);
    margin-bottom: .75rem;
}

/* ---------- Knoppen ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: .8rem 1.6rem;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    text-decoration: none;
    line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--rood); color: var(--op-rood); }
.btn-primary:hover { background: var(--rood-donker); color: var(--op-rood-donker); box-shadow: var(--schaduw); }
.btn-gold { background: var(--goud); color: var(--inkt); }
.btn-gold:hover { background: var(--goud-licht); }
.btn-outline { border-color: currentColor; color: var(--rood); background: transparent; }
.btn-outline-light { border-color: var(--op-rood); color: var(--op-rood); background: transparent; }
.btn-outline-light:hover { background: var(--op-rood); color: var(--rood-donker); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 236, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--creme-donker);
}
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 56px; width: auto; display: block; }
@media (max-width: 760px) { .brand-logo { height: 44px; } }
.brand-mark,
svg.brand-mark {
    width: 44px; height: 44px;
    display: block; flex-shrink: 0;
    border-radius: 10px;
    box-sizing: border-box;
}
.brand-mark-nav { height: 44px; width: 44px; }
.brand-text strong { display: block; font-family: 'Fraunces', serif; color: var(--inkt); font-size: 1.15rem; line-height: 1; }
.brand-text small { color: var(--grijs); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: var(--inkt); font-weight: 500; }
.site-nav a:hover { color: var(--rood); text-decoration: none; }
.site-nav a.active { color: var(--rood); }
.site-nav a.btn { color: #fff; }
.site-nav .social-links-compact { margin-left: .15rem; gap: .35rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { width: 26px; height: 3px; background: var(--rood); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
    background-color: var(--rood);
    background-image: none;
    color: var(--creme);
    padding: clamp(1.4rem, 3vw, 2.4rem) 0;
}
.hero::before,
.hero::after {
    content: none;
    display: none;
}
.hero .container { max-width: 720px; }
.hero h1 { color: var(--op-rood); }
.hero p { color: var(--op-rood); opacity: .88; font-size: 1.2rem; }
.hero-logo { max-width: 440px; width: 100%; height: auto; margin: 0 0 .9rem; display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }

/* ---------- Kaarten / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
    background: var(--wit);
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(38,27,27,.18); }
.afdeling-kaart { text-decoration: none; color: inherit; }
.afdeling-kaart h3 { color: var(--inkt); }
.card-media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--rood), var(--rood-licht));
    display: grid; place-items: center;
    color: var(--goud-licht);
    font-family: 'Fraunces', serif; font-size: 2rem;
    position: relative;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* Homepage: compactere foto; tekst blijft zichtbaar (vaste hoogte voorkomt dat grote uploads de kaart opblazen) */
.card-home .card-media {
    position: relative;
    flex: 0 0 145px;
    height: 145px;
    max-height: 145px;
    overflow: hidden;
    font-size: 1.5rem;
}
.card-home .card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-home .card-body {
    flex: 1 1 auto;
}
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .35rem; }
.card-body p { color: var(--grijs); font-size: .96rem; }
.card-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }

/* Voorstellingenlijst: compacte flyer links, tekst rechts (zoals eerder) */
.voorstelling-lijst { display: flex; flex-direction: column; gap: 1.15rem; }
.card-rij { flex-direction: row; align-items: stretch; }
.card-rij .card-media {
    aspect-ratio: 16 / 9;
    flex: 0 0 280px;
    width: 280px;
    min-height: 0;
    background: #1a1515;
}
.card-rij .card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1515;
}
.card-rij .card-body { flex: 1; padding: 1.05rem 1.25rem 1.1rem; }
.card-rij .card-body h3 { font-size: 1.3rem; }
.card-rij .card-body p { font-size: .92rem; }
@media (max-width: 680px) {
    .card-rij { flex-direction: column; }
    .card-rij .card-media { flex: none; width: 100%; aspect-ratio: 16 / 10; }
}

.badge {
    display: inline-block;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .3rem .7rem; border-radius: 999px;
}
.badge-jeugd { background: #e7f1e8; color: #1c7a3f; }
.badge-volwassenen { background: #e7f0fa; color: var(--rood); }
.badge-speciaal { background: #f6ecd6; color: #8a5a00; }
.badge-gold { background: var(--goud-licht); color: var(--inkt); }
.badge-muted { background: var(--creme-donker); color: var(--grijs); }

/* ---------- Speeldata / lijst ---------- */
.datum-lijst { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.datum-rij {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1rem; background: var(--wit); border-radius: 12px; padding: 1rem 1.25rem;
    box-shadow: var(--schaduw);
}
.datum-info strong { font-size: 1.05rem; }
.datum-info span { color: var(--grijs); font-size: .9rem; }
.vrij-pill { font-size: .85rem; color: var(--grijs); }
.vrij-pill.vol { color: var(--rood); font-weight: 600; }

/* ---------- Formulieren ---------- */
.form-card {
    background: var(--wit);
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-row { display: grid; gap: 1.1rem; }
.form-grid-2 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field .hint { font-size: .82rem; color: var(--grijs); font-weight: 400; }
.field input, .field select, .field textarea {
    font-family: inherit; font-size: 1rem;
    padding: .75rem .85rem;
    border: 1.5px solid var(--creme-donker);
    border-radius: 10px;
    background: #fff;
    color: var(--inkt);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--rood-licht);
    box-shadow: 0 0 0 3px rgba(177,66,80,.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 1.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.form-avg-field { margin-top: 1.1rem; }
.form-avg {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .92rem; font-weight: 400; line-height: 1.55; cursor: pointer;
}
.form-avg input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; width: 1rem; height: 1rem; }
.form-avg a { color: var(--rood); text-decoration: underline; }
.form-avg a:hover { color: var(--rood-donker, #8b1a1a); }

.diner-personen { display: grid; gap: .85rem; }
.diner-persoon {
    background: var(--creme, #f7f3ee);
    border: 1px solid rgba(38,27,27,.08);
    border-radius: 12px;
    padding: .9rem 1rem;
}
.diner-persoon-titel { display: block; font-size: .92rem; margin-bottom: .55rem; }
.diner-menu-opties { display: flex; flex-wrap: wrap; gap: .45rem .7rem; margin-bottom: .65rem; }
.diner-menu-optie {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .9rem; cursor: pointer; margin: 0;
}
.diner-dieet-label { display: block; font-size: .82rem; color: var(--grijs); margin-bottom: .25rem; }
.diner-persoon input[type="text"] { width: 100%; margin-bottom: .35rem; }

.form-info {
    margin: 0 0 1.25rem;
    padding: .85rem 1rem;
    background: var(--creme-donker);
    border-radius: 10px;
    font-size: .95rem;
    color: var(--inkt);
}
fieldset { border: 0; padding: 0; margin: 0 0 1.25rem; }

/* Klassiek formulier (label links, veld rechts) */
.form-classic {
    background: var(--creme-donker);
    border: 1px solid #d4cdc2;
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    max-width: 640px;
    margin: 0 auto;
}
.form-classic .form-line {
    display: grid;
    grid-template-columns: minmax(130px, 42%) 1fr;
    gap: .65rem 1rem;
    align-items: center;
    margin-bottom: .85rem;
}
.form-classic .form-line > label { font-weight: 400; font-size: .95rem; margin: 0; }
.form-classic .form-line .req { color: var(--rood); }
.form-classic .form-line input[type="text"],
.form-classic .form-line input[type="email"],
.form-classic .form-line input[type="tel"] {
    font-family: inherit;
    font-size: 1rem;
    padding: .45rem .6rem;
    border: 1px solid #8a8278;
    border-radius: 2px;
    background: #fff;
    color: var(--inkt);
    width: 100%;
}
.form-classic .form-line input:focus {
    outline: none;
    border-color: var(--rood);
    box-shadow: 0 0 0 2px rgba(138,31,43,.12);
}
.form-classic .form-checks {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: .35rem 0 .85rem;
    padding-left: 0;
}
.form-classic .form-checks label {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-weight: 400;
    font-size: .95rem;
    cursor: pointer;
}
.form-classic .form-checks input { margin-top: .2rem; flex-shrink: 0; }
.form-classic .form-submit { text-align: center; margin-top: 1.25rem; }
.form-classic .form-submit .btn { min-width: 140px; letter-spacing: .06em; text-transform: uppercase; font-size: .9rem; }
@media (max-width: 560px) {
    .form-classic .form-line { grid-template-columns: 1fr; gap: .35rem; }
}

/* Donateur / sponsor aanmeldformulieren (één tegelijk via #anker in de URL) */
.steun-formulieren-zone { margin-bottom: 3rem; }
.steun-form-panel {
    display: none;
    scroll-margin-top: 5rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.steun-form-panel:target,
.steun-form-panel.is-active {
    display: block;
}
.steun-form-titel {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}
.steun-formulieren-zone:has(#form-donateur:target) #form-sponsor:not(:target):not(.is-active),
.steun-formulieren-zone:has(#form-sponsor:target) #form-donateur:not(:target):not(.is-active) {
    display: none;
}

.radio-cards { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.radio-card {
    border: 1.5px solid var(--creme-donker);
    border-radius: 12px; padding: 1rem 1.1rem; cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.radio-card:hover { border-color: var(--rood-licht); }
.radio-card input { margin-right: .5rem; }
.radio-card strong { display: block; }
.radio-card small { color: var(--grijs); }
.radio-card:has(input:checked) { border-color: var(--rood); background: #eef4fb; }

/* ---------- Flash / meldingen ---------- */
.flash { padding: 1rem 1.25rem; border-radius: 12px; margin: 1.5rem 0 0; font-weight: 500; }
.flash-succes { background: #e7f4ec; color: #1c6b3a; border: 1px solid #b7e0c6; }
.flash-fout   { background: #fdecea; color: #a3231b; border: 1px solid #f3c2bd; }
.flash-info   { background: #eef2fb; color: #2f4a8a; border: 1px solid #c5d2ef; }

.fout-melding { color: #a3231b; font-size: .88rem; }

/* ---------- Galerij ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; box-shadow: var(--schaduw); aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery a:hover img { transform: scale(1.06); }

/* Voorstellingpagina: volle breedte, 4 grote foto's (2 op mobiel) */
.voorstelling-fotos {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--creme-donker);
}
.voorstelling-fotos h2 { margin-bottom: 1rem; }
.gallery-voorstelling {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-voorstelling a { aspect-ratio: 4 / 3; }

/* Galerijfoto's: opslaan/kopiëren bemoeilijken (niet 100% waterdicht) */
.gallery,
.lightbox,
[data-lightbox] {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.gallery img,
.lightbox img,
[data-lightbox] img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* eenvoudige lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(20,12,12,.9);
    display: none; place-items: center; z-index: 100; padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.45); }
.lightbox-close {
    position: absolute; top: 1.2rem; right: 1.6rem; color: #fff; font-size: 2rem;
    cursor: pointer; line-height: 1; user-select: none;
}
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 2.4rem; line-height: 1; width: 3rem; height: 3rem;
    border-radius: 50%; cursor: pointer; display: grid; place-items: center;
    transition: background .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
@media (max-width: 640px) {
    .lightbox-nav { width: 2.5rem; height: 2.5rem; font-size: 2rem; }
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
}

/* ---------- Sponsorlogo's ---------- */
.container-sponsors {
    max-width: min(1480px, 100%);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.sponsor-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem 1.5rem;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
}
.sponsor-strip .sponsor-item {
    background: #fff; border-radius: 12px; padding: 1.1rem 1.25rem; box-shadow: var(--schaduw);
    font-weight: 600; color: var(--grijs);
    display: flex; align-items: center; justify-content: center;
    min-width: 0; min-height: 88px; width: 100%;
}
.sponsor-strip .sponsor-item img {
    max-height: 80px; max-width: 100%; width: auto; object-fit: contain;
}
.sponsor-strip a.sponsor-item { text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.sponsor-strip a.sponsor-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(38,27,27,.16); }

@media (min-width: 900px) {
    .sponsor-strip {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .sponsor-strip .sponsor-item { min-height: 100px; padding: 1.25rem 1.5rem; }
    .sponsor-strip .sponsor-item img { max-height: 96px; }
}

/* ---------- Statistiek / highlights ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--goud); }
.stat span { color: var(--op-rood-donker); opacity: .85; }
.section-brand .stat span { color: var(--op-rood); opacity: .88; }

/* ---------- Footer ---------- */
.site-footer { background: var(--inkt); color: #d9cfc6; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
.footer-grid h4 { color: #fff; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-grid a { color: #d9cfc6; }
.footer-grid a:hover { color: var(--goud-licht); }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #b7aaa0; }
.footer-admin { font-size: .82rem; opacity: .7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; font-size: .85rem; color: #b7aaa0; }

/* ---------- Detail-layout ---------- */
.detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.detail-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--rood), var(--rood-licht)); display: grid; place-items: center; color: var(--goud-licht); font-family:'Fraunces',serif; font-size: 3rem; }
.detail-media img { width: 100%; height: 100%; object-fit: contain; background: #1a1515; }

/* Kop van de detailpagina: flyer breed zoals op de kaarten, zodat de hele poster past */
.voorstelling-kop { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 1.5rem; }
.voorstelling-foto {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw);
    background: #1a1515;
    display: grid; place-items: center; color: var(--goud-licht);
    font-family: 'Fraunces', serif; font-size: 2rem;
}
.voorstelling-foto img { width: 100%; height: 100%; object-fit: contain; }
.voorstelling-kop-tekst { flex: 1; min-width: 0; }
.voorstelling-kop-tekst h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
@media (max-width: 560px) {
    .voorstelling-foto { aspect-ratio: 16 / 10; }
}

.aside-card { background: var(--wit); border-radius: var(--radius); box-shadow: var(--schaduw); padding: 1.5rem; position: sticky; top: 90px; }

.breadcrumb { font-size: .9rem; color: var(--grijs); margin-bottom: 1rem; }
.breadcrumb a { color: var(--grijs); }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--grijs); }

/* ---------- Responsief ---------- */
@media (max-width: 860px) {
    .detail-grid { grid-template-columns: 1fr; }
    .aside-card { position: static; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .gallery-voorstelling { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
    .datum-rij { flex-direction: column; align-items: flex-start; gap: .45rem; }
    .datum-rij .vrij-pill { align-self: flex-start; }
}

@media (max-width: 760px) {
    .container { padding: 0 1rem; }
    .header-inner { padding: .75rem 1rem; }
    .section { padding: 2rem 0; }
    .hero { padding: 1.25rem 0; }
    .hero p { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; width: 100%; }
    .lead { font-size: 1.05rem; }

    .nav-toggle {
        display: flex; align-items: center; justify-content: center;
        min-width: 44px; min-height: 44px;
    }
    .site-nav {
        position: absolute; top: 100%; left: -1rem; right: -1rem;
        flex-direction: column; align-items: stretch;
        background: var(--creme); padding: .75rem 1rem 1.25rem;
        border-bottom: 1px solid var(--creme-donker);
        box-shadow: 0 12px 24px rgba(38, 27, 27, .08);
        display: none; gap: .15rem;
    }
    body.nav-open { overflow: hidden; }
    body.nav-open .site-nav { display: flex; }
    .site-nav a {
        padding: .75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .site-nav a.btn {
        justify-content: center;
        width: 100%;
        margin-top: .5rem;
        min-height: 44px;
    }
    .site-nav .social-links-compact {
        justify-content: center;
        width: 100%;
        padding: .5rem 0 .25rem;
        margin: 0;
    }
    .site-nav .social-links-compact .social-link {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    .social-feeds-section { padding: 1.25rem 0 1.75rem; }
    .social-feeds-grid { grid-template-columns: 1fr; max-width: 340px; }
    .social-feed-instagram iframe { height: 260px; }

    .field input, .field select, .field textarea { font-size: 16px; }
    .btn { min-height: 44px; }
    .card-foot { flex-direction: column; align-items: stretch; }
    .card-foot .btn { width: 100%; justify-content: center; }
    .form-actions { flex-direction: column; align-items: stretch; }
    .form-actions .btn { width: 100%; justify-content: center; }
    .radio-cards { grid-template-columns: 1fr; }

    .betaal-notice { font-size: .88rem; padding: .7rem .85rem; }
    .betaal-blok { padding: 1.15rem 1.1rem; }
    .betaal-detail li span { flex: 0 0 100%; margin-bottom: .15rem; }

    .footer-grid { padding: 2rem 1rem 1.5rem; }
    .lightbox { padding: 1rem; }
}

/* ---- Vooraf betalen: melding + instructieblok ---- */
.betaal-notice {
    background: #fff3da; color: #6f4a00; border: 1px solid #f0d9a6;
    border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1rem; font-size: .92rem;
}
.betaal-blok {
    background: var(--wit); border: 1px solid var(--creme-donker);
    border-left: 5px solid var(--rood);
    border-radius: var(--radius); box-shadow: var(--schaduw);
    padding: 1.5rem 1.75rem; margin-bottom: 2rem;
    scroll-margin-top: 5rem;
}
.betaal-blok h2 { margin: 0 0 .5rem; }
.betaal-detail { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.betaal-detail li {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem;
    padding: .55rem 0; border-bottom: 1px solid var(--creme-donker);
}
.betaal-detail li:last-child { border-bottom: 0; }
.betaal-detail li span { flex: 0 0 9rem; color: var(--grijs); font-size: .9rem; }
.betaal-detail li strong { font-size: 1.05rem; }
.betaal-detail li em { color: var(--grijs); font-style: normal; font-size: .88rem; }
.betaal-instructie { margin-top: 1rem; color: var(--grijs); font-size: .95rem; }
.betaal-fallback {
    margin: .75rem 0 0; text-align: center; font-size: .82rem; color: var(--grijs);
}
.betaal-fallback-link {
    background: none; border: 0; padding: 0; font: inherit; color: var(--grijs);
    text-decoration: underline; cursor: pointer;
}
.betaal-fallback-link:hover { color: var(--inkt); }

.footer-bottom a { color: #b7aaa0; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Social media ---------- */
.social-links { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.social-links-compact { margin-top: 0; flex-wrap: nowrap; }
.social-link {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .45rem .85rem; border-radius: 999px;
    background: rgba(255,255,255,.08); color: #d9cfc6;
    font-size: .88rem; font-weight: 500; text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.social-links-compact .social-link {
    padding: .45rem;
    border-radius: 50%;
    background: var(--wit);
    color: var(--inkt);
    box-shadow: 0 1px 0 rgba(38, 27, 27, .06);
    border: 1px solid var(--creme-donker);
}
.social-links-compact .social-link:hover {
    background: var(--creme-donker);
    color: var(--rood);
}
.social-link:hover { background: rgba(255,255,255,.16); color: #fff; text-decoration: none; }
.site-footer .social-link { background: rgba(255,255,255,.08); }
.site-footer .social-links-compact .social-link {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    color: #d9cfc6;
}
.site-footer .social-links-compact .social-link:hover { color: #fff; }
.empty-state .social-link {
    background: var(--wit); color: var(--inkt); box-shadow: var(--schaduw);
}
.empty-state .social-link:hover { background: var(--creme-donker); }

.social-feeds-section {
    padding: 1.75rem 0 2.25rem;
    border-top: 1px solid var(--creme-donker);
}
.social-feeds-intro {
    text-align: center;
    margin-bottom: .9rem;
}
.social-feeds-intro .eyebrow {
    font-size: .75rem;
    letter-spacing: .08em;
}
.social-feeds-intro h2 {
    margin: .2rem 0 0;
    font-size: 1.15rem;
    font-weight: 600;
}
.social-feeds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 340px));
    gap: 1rem;
    justify-content: center;
    align-items: start;
    max-width: 720px;
    margin: 0 auto;
}
.social-feeds-grid-single { grid-template-columns: minmax(0, 340px); }
.social-feed-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--creme-donker);
    border-radius: var(--radius);
    background: var(--wit);
    box-shadow: none;
}
.social-feed-card-head {
    display: flex; align-items: center; gap: .4rem;
    padding: .45rem .7rem;
    border-bottom: 1px solid var(--creme-donker);
    background: var(--creme);
}
.social-feed-card-head h3 {
    margin: 0; flex: 1; font-size: .88rem; font-weight: 600;
    font-family: inherit;
}
.social-feed-card-head svg { color: var(--rood); flex-shrink: 0; }
.social-feed-open {
    font-size: .75rem; font-weight: 500; white-space: nowrap;
    color: var(--grijs);
}
.social-feed-open:hover { color: var(--rood); text-decoration: none; }
.social-feed-embed { background: #fff; min-height: 0; }
.social-feed-facebook { display: flex; justify-content: center; padding: 0; }
.social-feed-facebook .fb-page,
.social-feed-facebook .fb-page > span,
.social-feed-facebook iframe { max-width: 100% !important; width: 100% !important; }
.social-feed-instagram iframe {
    display: block; width: 100%; height: 280px; min-height: 0; border: 0;
    background: #fff;
}

.prose { line-height: 1.7; color: var(--grijs); }
.prose strong { color: var(--inkt); display: inline-block; margin-top: 1.1rem; }
.prose strong:first-child { margin-top: 0; }
.prose br + br { display: block; content: ''; margin-top: .5rem; }
