/* ============================================================
   Alexander Moelker — vertrouwenspersoon
   Ontwerpconcept: "Het goede gesprek"
   Heidegroen · papier · inkt — heidepaars voor de vertrouwelijke route
   Geen frameworks, geen externe requests. Fonts zelf gehost (AVG).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    /* kleur */
    --papier: #F3F1E9;
    --wit: #FBFAF6;
    --inkt: #252B26;
    --inkt-zacht: #4E574F;
    --groen: #2E4B3E;
    --groen-diep: #24382F;
    --groen-donker: #1C2C24;
    --salie: #E5E7D9;
    --lijn: #DAD7C9;
    --heide: #6E4E62;
    --heide-diep: #573D4E;
    --heide-tint: #EEE7EC;
    --wit-op-donker: #F4F2EB;

    /* typografie */
    --f-display: 'Fraunces', Georgia, serif;
    --f-body: 'Public Sans', -apple-system, 'Segoe UI', sans-serif;

    /* maat */
    --maat: 1120px;
    --maat-smal: 760px;
    --sectie-y: clamp(4rem, 9vw, 6.5rem);
    --radius: 10px;
    --radius-groot: 16px;
}

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

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

body {
    font-family: var(--f-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--inkt);
    background: var(--papier);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 480;
    line-height: 1.15;
    color: inherit;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--groen); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--groen-diep); }

strong { font-weight: 650; }
em { font-family: var(--f-display); font-style: italic; font-size: 1.05em; }

::selection { background: var(--salie); color: var(--inkt); }

.omslag { width: min(var(--maat), 92%); margin-inline: auto; }
.omslag-smal { width: min(var(--maat-smal), 92%); margin-inline: auto; }

/* ---------- Eyebrow / lead ---------- */
.wenkbrauw {
    display: block;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 640;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--groen);
    margin-bottom: 1rem;
}
.wenkbrauw--heide { color: var(--heide); }
.op-donker .wenkbrauw { color: var(--salie); }

.lead {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    line-height: 1.65;
    color: var(--inkt-zacht);
    margin-bottom: 1.4rem;
}
.op-donker .lead { color: var(--wit-op-donker); opacity: 0.9; }

/* ---------- Knoppen ---------- */
.knop, .knop-lijn, .knop-heide {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.9rem;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.knop { background: var(--groen); color: var(--wit); border-color: var(--groen); }
.knop:hover { background: var(--groen-diep); border-color: var(--groen-diep); color: var(--wit); transform: translateY(-1px); }

.knop-lijn { background: transparent; color: var(--groen); border-color: var(--groen); }
.knop-lijn:hover { background: var(--groen); color: var(--wit); }
.op-donker .knop-lijn { color: var(--wit-op-donker); border-color: var(--wit-op-donker); }
.op-donker .knop-lijn:hover { background: var(--wit-op-donker); color: var(--groen-donker); }

.knop-heide { background: var(--heide); color: var(--wit); border-color: var(--heide); }
.knop-heide:hover { background: var(--heide-diep); border-color: var(--heide-diep); color: var(--wit); transform: translateY(-1px); }

.knop-groot { padding: 1.05rem 2.4rem; font-size: 1.05rem; }

.knop:focus-visible, .knop-lijn:focus-visible, .knop-heide:focus-visible,
a:focus-visible, button:focus-visible {
    outline: 2.5px solid var(--heide);
    outline-offset: 3px;
}

/* ---------- Navigatie ---------- */
.hoofdnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--papier) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lijn);
}
.hoofdnav .binnen {
    width: min(var(--maat), 94%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}
.woordmerk {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--inkt);
}
.woordmerk .merk-logo {
    width: 2.7rem;
    height: 2.7rem;
}
.woordmerk .naam { display: flex; flex-direction: column; line-height: 1.25; }
.woordmerk .naam b { font-family: var(--f-display); font-weight: 560; font-size: 1.12rem; letter-spacing: 0.01em; }
.woordmerk .naam span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--inkt-zacht); }

.navlijst { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.navlijst a {
    font-size: 0.95rem;
    font-weight: 560;
    color: var(--inkt);
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.navlijst a:hover { color: var(--groen); }
.navlijst a.actief { color: var(--groen); border-bottom-color: var(--groen); }
.navlijst a.nav-melding {
    color: var(--heide);
    border: 1.5px solid var(--heide);
    border-radius: var(--radius);
    padding: 0.45rem 1.1rem;
}
.navlijst a.nav-melding:hover, .navlijst a.nav-melding.actief { background: var(--heide); color: var(--wit); }

.nav-knop {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--inkt);
}
.nav-knop svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
    .nav-knop { display: block; }
    .navlijst {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--papier);
        border-bottom: 1px solid var(--lijn);
        padding: 0.5rem 4%;
        display: none;
    }
    .navlijst.open { display: flex; }
    .navlijst li { border-top: 1px solid var(--lijn); }
    .navlijst a { display: block; padding: 0.9rem 0.2rem; border-bottom: none; }
    .navlijst a.nav-melding { margin: 0.8rem 0; text-align: center; }
    .woordmerk .naam span { display: none; }
}

/* ---------- Held (hero) ---------- */
.held {
    position: relative;
    min-height: clamp(540px, 86vh, 780px);
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    color: var(--wit-op-donker);
}
.held-foto {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
}
.held::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(24, 34, 27, 0.88) 0%, rgba(24, 34, 27, 0.45) 45%, rgba(24, 34, 27, 0.12) 100%),
        linear-gradient(100deg, rgba(24, 34, 27, 0.55) 0%, rgba(24, 34, 27, 0) 60%);
}
.held .omslag { padding: 7rem 0 4.5rem; }
.held h1 { max-width: 17ch; color: var(--wit); }
.held .wenkbrauw { color: var(--salie); }
.held-tekst {
    max-width: 52ch;
    margin-top: 1.4rem;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: var(--wit-op-donker);
}
.held-acties { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* subpagina-kop (zonder foto) */
.paginakop {
    background: var(--groen-donker);
    color: var(--wit-op-donker);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.paginakop h1 { color: var(--wit); max-width: 20ch; }
.paginakop .lead { max-width: 60ch; margin-top: 1.2rem; margin-bottom: 0; color: var(--wit-op-donker); opacity: 0.92; }
.paginakop .wenkbrauw { color: var(--salie); }
.paginakop--heide { background: var(--heide-diep); }
.paginakop--heide .wenkbrauw { color: var(--heide-tint); }

/* ---------- De gespreksdraad (signatuur) ---------- */
.draad {
    position: relative;
    height: 84px;
    width: 100%;
}
.draad::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--groen);
    opacity: 0.45;
}
.draad::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--papier);
    border: 1.5px solid var(--groen);
}
.draad--heide::before { background: var(--heide); }
.draad--heide::after { border-color: var(--heide); }
.draad--op-donker::before { background: var(--salie); opacity: 0.5; }
.draad--op-donker::after { background: var(--groen-donker); border-color: var(--salie); }

/* ---------- Secties ---------- */
.sectie { padding: var(--sectie-y) 0; }
.sectie--wit { background: var(--wit); }
.sectie--salie { background: var(--salie); }
.sectie--donker { background: var(--groen-diep); color: var(--wit-op-donker); }
.sectie--donker h2, .sectie--donker h3 { color: var(--wit); }
.sectie--heide-tint { background: var(--heide-tint); }
.sectie-kop { text-align: center; max-width: 62ch; margin-inline: auto; margin-bottom: 3rem; }

/* ---------- De twee deuren ---------- */
.deuren { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 800px) { .deuren { grid-template-columns: 1fr; } }
.deur {
    display: block;
    text-decoration: none;
    color: var(--inkt);
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-top: 4px solid var(--groen);
    border-radius: var(--radius-groot);
    padding: 2.4rem 2.2rem 2.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.deur:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(28, 44, 36, 0.12); color: var(--inkt); }
.deur--heide { border-top-color: var(--heide); }
.deur h3 { margin-bottom: 0.6rem; }
.deur p { color: var(--inkt-zacht); margin-bottom: 1.2rem; }
.deur .pseudo-knop { font-weight: 640; color: var(--groen); }
.deur--heide .pseudo-knop { color: var(--heide); }
.deur .pseudo-knop::after { content: " →"; transition: margin-left 0.18s ease; }
.deur:hover .pseudo-knop::after { margin-left: 4px; }

/* ---------- Kaarten & lijsten ---------- */
.kaarten-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .kaarten-3 { grid-template-columns: 1fr; } }
.kaart {
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: var(--radius-groot);
    padding: 2rem 1.8rem;
}
.kaart h3 { font-size: 1.3rem; }

.vinklijst { list-style: none; }
.vinklijst li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
}
.vinklijst li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.55rem;
    height: 0.9rem;
    border-right: 2px solid var(--groen);
    border-bottom: 2px solid var(--groen);
    transform: rotate(40deg);
}
.op-donker .vinklijst li::before, .sectie--donker .vinklijst li::before { border-color: var(--salie); }

.kruislijst { list-style: none; }
.kruislijst li { position: relative; padding-left: 2rem; margin-bottom: 0.6rem; }
.kruislijst li::before,
.kruislijst li::after {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.85em;
    width: 0.85rem;
    height: 2px;
    background: var(--heide);
}
.kruislijst li::before { transform: rotate(45deg); }
.kruislijst li::after { transform: rotate(-45deg); }

/* tweekoloms met foto */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }
.duo-foto img { border-radius: var(--radius-groot); width: 100%; height: auto; }
.duo-foto--kader img { box-shadow: 12px 12px 0 var(--salie); }
.sectie--donker .duo-foto--kader img { box-shadow: 12px 12px 0 rgba(228, 231, 217, 0.18); }

/* ---------- Citaat ---------- */
.citaat {
    background: var(--groen-donker);
    color: var(--wit-op-donker);
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    text-align: center;
}
.citaat blockquote {
    position: relative;
    max-width: 26ch;
    margin-inline: auto;
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 420;
    font-style: italic;
    line-height: 1.35;
    color: var(--wit);
}
.citaat blockquote::before {
    content: "\201E";
    display: block;
    font-size: 3.2rem;
    line-height: 0.4;
    font-style: normal;
    color: var(--salie);
    margin-bottom: 1.4rem;
}
.citaat--heide { background: var(--heide-diep); }
.citaat--heide blockquote::before { color: var(--heide-tint); }

/* ---------- Infobox / notities ---------- */
.notitie {
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-left: 4px solid var(--groen);
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
    margin: 2rem 0;
}
.notitie--heide { border-left-color: var(--heide); }
.sectie--donker .notitie { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); border-left-color: var(--salie); }

/* ---------- LVV-badge ---------- */
.lvv-strook {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    text-align: left;
}
.lvv-strook img { width: 170px; height: auto; background: #fff; padding: 0.9rem 1.1rem; border-radius: var(--radius); border: 1px solid var(--lijn); }
.lvv-strook p { max-width: 44ch; margin: 0; color: var(--inkt-zacht); }

/* ---------- Tarieven ---------- */
.tarieven { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.tarief {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-groot);
    padding: 1.5rem 2rem;
}
@media (max-width: 700px) {
    .tarief { grid-template-columns: 1fr; text-align: center; gap: 0.6rem; padding: 1.6rem; }
}
.tarief-maat { font-weight: 620; font-size: 1.05rem; }
.tarief-prijs { font-family: var(--f-display); font-size: 1.7rem; font-weight: 500; color: var(--wit); }
.tarief-prijs small { font-family: var(--f-body); font-size: 0.85rem; color: var(--wit-op-donker); opacity: 0.75; font-weight: 400; }

/* ---------- Tijdlijn (melding) ---------- */
.tijdlijn { position: relative; max-width: 640px; margin-inline: auto; }
.tijdlijn::before {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--heide);
    opacity: 0.5;
}
.stap { position: relative; padding-left: 4.2rem; padding-bottom: 2.4rem; }
.stap:last-child { padding-bottom: 0; }
.stap-nummer {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: var(--heide);
    color: var(--wit);
    font-family: var(--f-display);
    font-size: 1.25rem;
    display: grid;
    place-items: center;
}
.stap h4 { margin-bottom: 0.3rem; }
.stap p { color: var(--inkt-zacht); margin: 0; }

/* ---------- Formulieren ---------- */
.formulier-kaart {
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: var(--radius-groot);
    padding: clamp(1.8rem, 4vw, 3rem);
}
.veld { margin-bottom: 1.4rem; }
.veld label { display: block; font-weight: 620; font-size: 0.95rem; margin-bottom: 0.4rem; }
.veld input, .veld textarea {
    width: 100%;
    font: inherit;
    color: var(--inkt);
    background: var(--papier);
    border: 1.5px solid var(--lijn);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    transition: border-color 0.15s ease;
}
.veld input:focus, .veld textarea:focus { outline: none; border-color: var(--groen); background: var(--wit); }
.veld input.ongeldig { border-color: #B4423A; }
.veld .hint { display: block; font-size: 0.85rem; color: var(--inkt-zacht); margin-top: 0.35rem; }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 620px) { .veld-rij { grid-template-columns: 1fr; } }

.formulier-melding { display: none; border-radius: var(--radius); padding: 1rem 1.3rem; margin-bottom: 1.4rem; font-weight: 560; }
.formulier-melding.zichtbaar { display: block; }
.formulier-melding--fout { background: #F7E9E7; color: #7C2D26; border: 1px solid #E0B7B2; }
.formulier-melding--ok { background: var(--salie); color: var(--groen-donker); border: 1px solid var(--groen); }

/* stepper (contact) */
.contact-stap { display: none; }
.contact-stap.zichtbaar { display: block; animation: instromen 0.4s ease; }
@keyframes instromen { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.padknoppen { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .padknoppen { grid-template-columns: 1fr; } }
.padknop {
    font: inherit;
    text-align: left;
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-top: 4px solid var(--groen);
    border-radius: var(--radius-groot);
    padding: 2rem 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.padknop:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(28, 44, 36, 0.12); }
.padknop--heide { border-top-color: var(--heide); }
.padknop h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.padknop p { color: var(--inkt-zacht); margin: 0; font-size: 0.98rem; }

/* privacy-herinnering */
.privacy-kader {
    background: var(--heide-tint);
    border: 1px solid var(--heide);
    border-radius: var(--radius);
    padding: 1.3rem 1.5rem;
    margin: 1.8rem 0;
    font-size: 0.97rem;
}
.privacy-kader p { margin: 0; }

/* ---------- Agenda / modal ---------- */
.agenda-vak { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius-groot); padding: 2rem; text-align: center; }
.agenda-vak iframe { width: 100%; min-height: 640px; border: 0; border-radius: var(--radius); }

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(28, 44, 36, 0.6);
    padding: 1.5rem;
}
.modal.open { display: flex; }
.modal-inhoud {
    position: relative;
    background: var(--wit);
    border-radius: var(--radius-groot);
    padding: 2rem;
    width: min(880px, 100%);
    max-height: 92vh;
    overflow: auto;
}
.modal-inhoud iframe { width: 100%; min-height: 620px; border: 0; }
.modal-sluit {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 1.8rem;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--inkt-zacht);
    padding: 0.3rem;
}

/* ---------- Footer ---------- */
.voet {
    background: var(--groen-donker);
    color: var(--wit-op-donker);
    padding: 3.5rem 0 2rem;
    font-size: 0.95rem;
}
.voet a { color: var(--wit-op-donker); }
.voet a:hover { color: var(--wit); }
.voet-boven {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 800px) { .voet-boven { grid-template-columns: 1fr; } }
.voet .merk-logo-voet {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.9rem;
}
.voet .monogram-voet {
    font-family: var(--f-display);
    font-size: 1.35rem;
    color: var(--wit);
    margin-bottom: 0.6rem;
    display: block;
}
.voet nav { display: grid; gap: 0.45rem; }
.voet nav a { text-decoration: none; }
.voet nav a:hover { text-decoration: underline; }
.voet h4 { color: var(--salie); font-family: var(--f-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 640; margin-bottom: 0.9rem; }
.voet-onder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    font-size: 0.85rem;
    opacity: 0.8;
}
.voet-onder a { margin-right: 1.2rem; }

/* ---------- Cookiebalk ---------- */
.cookie-balk {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    width: min(680px, 94%);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    background: var(--inkt);
    color: var(--wit-op-donker);
    border-radius: var(--radius-groot);
    padding: 1.1rem 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    font-size: 0.92rem;
}
.cookie-balk p { margin: 0; flex: 1 1 320px; }
.cookie-balk a { color: var(--salie); }
.cookie-balk button {
    font: inherit;
    font-weight: 620;
    background: var(--salie);
    color: var(--inkt);
    border: none;
    border-radius: var(--radius);
    padding: 0.55rem 1.3rem;
    cursor: pointer;
}

/* ---------- Scroll-onthulling (alleen actief mét JS: html.js) ---------- */
html.js .onthul { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .onthul.binnen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .onthul { opacity: 1; transform: none; } }

/* ---------- FAQ (details/summary, geen JS nodig) ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
}
.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    font-weight: 630;
    font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-family: var(--f-display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--groen);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.4rem 1.2rem; color: var(--inkt-zacht); }
.faq summary:focus-visible { outline: 2.5px solid var(--heide); outline-offset: 2px; border-radius: var(--radius); }

/* ---------- Tekstpagina's (privacy e.d.) ---------- */
.tekstpagina h2 { margin-top: 2.6rem; font-size: 1.6rem; }
.tekstpagina ul, .tekstpagina ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }
.tekstpagina li { margin-bottom: 0.35rem; }

/* ---------- Diversen ---------- */
.centreer { text-align: center; }
.marge-boven { margin-top: 2.2rem; }
.acties { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }
