/* ==========================================================================
   Rijschool – stijl van de openbare website
   Kleuren --primary en --accent worden ingesteld via het beheer.
   ========================================================================== */

:root {
    --primary: #0b126d;
    --accent: #eb6003;
    --primary-dark: color-mix(in srgb, var(--primary) 78%, #000);
    --primary-soft: color-mix(in srgb, var(--primary) 8%, #fff);
    --accent-dark: color-mix(in srgb, var(--accent) 80%, #000);
    --accent-soft: color-mix(in srgb, var(--accent) 14%, #fff);
    --charcoal: #2b2b2b;
    --ink: #17202c;
    --muted: #5a6574;
    --line: #e2e6ed;
    --soft: #f5f7fa;
    --white: #fff;
    --radius: 14px;
    --shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 8px 24px rgba(16, 24, 40, .06);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
}

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

a { color: var(--primary); text-underline-offset: 2px; }
a:hover { color: var(--primary-dark); }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.rounded { border-radius: var(--radius); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 100;
    background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Knoppen ---------- */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4em;
    padding: .7em 1.2em; border-radius: 999px; border: 2px solid transparent;
    font: inherit; font-weight: 600; font-size: 1rem; line-height: 1.2;
    text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .85em 1.5em; font-size: 1.0625rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 85%, #000); color: var(--ink); }
.btn-light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-light:hover { background: rgba(255, 255, 255, .24); color: #fff; }
.btn-ghost { background: transparent; color: var(--primary); border-color: currentColor; }
.btn-ghost:hover { background: var(--primary-soft); }

/* ---------- Header ---------- */

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 4px solid var(--accent);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.15rem; }
.brand:hover { color: var(--ink); }
.brand-logo { max-height: 52px; width: auto; max-width: calc(100vw - 110px); object-fit: contain; }
.brand-mark {
    display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 8px;
    background: var(--primary); color: #fff; font-weight: 800; font-size: 1.3rem;
}

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav ul a {
    display: block; padding: 8px 12px; border-radius: 8px;
    color: var(--ink); text-decoration: none; font-weight: 500;
}
.site-nav ul a:hover { background: var(--accent-soft); color: var(--ink); }
.site-nav ul a[aria-current="page"] { color: var(--ink); background: var(--accent); font-weight: 600; }

.nav-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; cursor: pointer; position: relative;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
    position: absolute; left: 12px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; content: "";
    transition: transform .2s, opacity .2s;
}
.nav-toggle-bars { top: 21px; }
.nav-toggle-bars::before { left: 0; top: -6px; }
.nav-toggle-bars::after { left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none; position: absolute; left: 0; right: 0; top: 100%;
        flex-direction: column; align-items: stretch; gap: 12px;
        background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 20px;
        box-shadow: 0 12px 24px rgba(16, 24, 40, .08);
    }
    .site-nav.is-open { display: flex; }
    .site-nav ul { flex-direction: column; }
    .site-nav ul a { padding: 12px; font-size: 1.1rem; }
}

/* ---------- Hero ---------- */

.hero {
    background:
        radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--accent) 22%, transparent) 0, transparent 40%),
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: clamp(56px, 9vw, 110px) 0;
}
.hero-inner { display: grid; gap: 40px; align-items: center; }
.hero-text { max-width: 680px; }

/* Foto rechts, tekst links op blauw; de foto loopt zacht over in het blauw */
.hero.has-bg { position: relative; overflow: hidden; background: var(--primary); padding: clamp(64px, 9vw, 120px) 0; }
.hero-bg {
    position: absolute; top: 0; right: 0; bottom: 0; width: 56%; height: 100%;
    object-fit: cover; object-position: 35% 55%;
}
.hero.has-bg::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg,
        var(--primary) 0%, var(--primary) 44%,
        color-mix(in srgb, var(--primary) 55%, transparent) 54%,
        transparent 66%);
}
.hero.has-bg .hero-inner { position: relative; z-index: 2; }
.hero.has-bg .hero-text { max-width: 540px; }
.hero.has-bg::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 2; background: var(--accent);
}
@media (max-width: 860px) {
    .hero.has-bg { padding: 0 0 48px; }
    .hero-bg { position: relative; display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-position: 45% 72%; }
    .hero.has-bg::before { display: none; }
    .hero.has-bg .hero-inner { padding-top: 32px; }
}
.photo { box-shadow: var(--shadow); width: 100%; }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.2rem; opacity: .92; }
.eyebrow {
    display: inline-block; margin-bottom: 14px; padding: 4px 12px; border-radius: 999px;
    background: rgba(255, 255, 255, .14); font-size: .9rem; font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.center-actions { justify-content: center; }
.hero-note { margin: 18px 0 0; opacity: .9; }
.page-hero { background: var(--primary); color: #fff; padding: clamp(28px, 3.5vw, 44px) 0 clamp(26px, 3vw, 38px); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: .45em; }
.page-hero h1::after { content: ""; display: block; width: 48px; height: 4px; margin-top: .3em; border-radius: 2px; background: var(--accent); }
.page-hero .lead { font-size: 1.05rem; color: rgba(255, 255, 255, .88); max-width: 680px; margin: 0; }

/* ---------- Secties en inhoud ---------- */

.section { padding: clamp(36px, 5vw, 64px) 0; }
.section-soft { background: var(--soft); }

.content h2 { margin-top: 1.6em; color: var(--primary); font-size: clamp(1.3rem, 2vw, 1.5rem); }

/* Zijkaart "Vragen?" naast de tekst op pagina's zonder foto */
.side-card {
    position: sticky; top: 100px;
    background: var(--soft); border: 1px solid var(--line); border-top: 4px solid var(--accent);
    border-radius: var(--radius); padding: 24px;
}
.side-card h2 { font-size: 1.25rem; margin-bottom: .4em; color: var(--primary); }
.side-card p { color: var(--muted); font-size: .98rem; }
.side-card .btn { width: 100%; margin-top: 10px; }
.side-card .btn-ghost { color: var(--primary); }
.content h2:first-child { margin-top: 0; }
.content ul { padding-left: 0; list-style: none; margin: 0 0 1.2em; }
.content li { position: relative; padding-left: 1.8em; margin-bottom: .45em; }
.content li::before {
    content: ""; position: absolute; left: 0; top: .35em; width: 1.1em; height: 1.1em; border-radius: 50%;
    background: var(--accent);
}
.content li::after {
    content: ""; position: absolute; left: .4em; top: .52em; width: .3em; height: .55em;
    border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

.split { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
    display: flex; flex-direction: column; gap: 6px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow);
}
.card p { margin: 0; color: var(--muted); }
.card-title { font-size: 1.2rem; font-weight: 700; margin: 0; color: var(--ink); }
.card-link { text-decoration: none; color: var(--ink); transition: transform .15s, box-shadow .15s, border-color .15s; }
.card-link { border-top: 4px solid var(--accent); }
.card-link:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--ink); }
.card-more { margin-top: auto; padding-top: 10px; color: var(--accent-dark); font-weight: 700; }

/* ---------- Actie ---------- */

.promo { background: var(--accent); color: var(--ink); padding: 22px 0; }
.promo-inner { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 16px; text-align: center; }
.promo-title { margin: 0; font-weight: 800; font-size: 1.3rem; }
.promo-text { margin: 0; font-size: 1.1rem; }

/* ---------- Call to action ---------- */

.cta { background: var(--primary); color: #fff; padding: clamp(40px, 6vw, 64px) 0; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta h2 { margin: 0 0 .25em; color: #fff; }
.cta p { margin: 0; opacity: .8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Tarieven ---------- */

.price-alert {
    background: color-mix(in srgb, var(--accent) 22%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 70%, #000 0%);
    border-left: 6px solid var(--accent);
    border-radius: var(--radius); padding: 16px 20px; margin-bottom: 36px;
}
.price-group { margin-bottom: 44px; }
.price-group h2 { margin-bottom: .2em; }
.price-list { list-style: none; margin: 16px 0 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-name { display: flex; flex-direction: column; }
.price-title { font-weight: 600; }
.price-desc { color: var(--muted); font-size: .95rem; }
.price-values { display: flex; flex-direction: column; align-items: flex-end; text-align: right; white-space: nowrap; }
.price-amount { font-weight: 700; font-size: 1.15rem; color: var(--primary-dark); }
.price-now { color: var(--muted); }
.price-new { font-weight: 700; font-size: 1.1rem; color: var(--primary-dark); }
.price-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-right: 4px; }
.price-note {
    display: flex; align-items: center; gap: 12px; margin: 0 0 32px; padding: 14px 18px;
    background: var(--primary-soft); border-left: 5px solid var(--accent); border-radius: 10px;
    color: var(--ink); font-size: 1.08rem; font-weight: 600; line-height: 1.45;
}
.price-note .icon { color: var(--accent); width: 1.4em; height: 1.4em; }

@media (max-width: 560px) {
    /* Gewone prijs blijft rechts naast de naam; alleen bij "nu + vanaf" onder elkaar */
    .price-row { align-items: flex-start; padding: 14px 16px; }
    .price-row.has-upcoming { flex-direction: column; }
    .price-row.has-upcoming .price-values { align-items: flex-start; text-align: left; }
}

/* ---------- Links ---------- */

.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.link-host { font-size: .85rem; color: var(--primary); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; margin: 0 0 32px; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-list .label { color: var(--muted); font-weight: 600; }
.hours { border-collapse: collapse; width: 100%; max-width: 360px; margin-bottom: 12px; }
.hours th, .hours td { text-align: left; padding: 6px 0; border-bottom: 1px dashed var(--line); font-weight: normal; }
.hours th { color: var(--muted); }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 4vw, 32px); box-shadow: var(--shadow); }

.form .field { margin-bottom: 18px; }
.form label { display: block; font-weight: 600; margin-bottom: 6px; }
.form input, .form textarea {
    width: 100%; padding: 12px 14px; font: inherit; color: var(--ink);
    border: 1.5px solid #cfd6e0; border-radius: 10px; background: #fff;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.form .has-error input, .form .has-error textarea { border-color: #c62828; }
.field-error { color: #c62828; font-size: .92rem; margin: 6px 0 0; }
.form-hint { font-size: .92rem; color: var(--muted); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.notice { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; border: 1px solid; }
.notice-success { background: #edf7ee; border-color: #b7dfbb; color: #1e5b25; }
.notice-error { background: #fdecec; border-color: #f3b9b9; color: #8e1c1c; }
.notice-info, .notice-warning { background: #fff7e0; border-color: #f1d48a; color: #6b4e00; }


/* ---------- 404 ---------- */

.big-number { font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; line-height: 1; color: var(--primary-soft); -webkit-text-stroke: 2px var(--primary); margin-bottom: .2em; }

/* ---------- Footer ---------- */

.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.site-footer {
    --footer-link: color-mix(in srgb, var(--accent) 78%, #fff);
    background: var(--charcoal); color: #d6d6d6; font-size: .98rem;
    border-top: 6px solid var(--accent); padding-top: 60px;
}
.site-footer a { color: var(--footer-link); text-decoration: none; font-weight: 500; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 40px; padding-bottom: 48px; }

.footer-title { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 1em; }
.footer-title::after { content: ""; display: block; width: 36px; height: 3px; margin-top: .45em; border-radius: 2px; background: var(--accent); }
.footer-logo img { max-width: 260px; width: 100%; height: auto; }
.footer-tagline { margin: 14px 0 18px; color: #bdbdbd; font-style: italic; }
.footer-tagline-img { max-width: 260px; width: 100%; height: auto; }
.footer-small { font-size: .9rem; color: #a8a8a8; margin: 12px 0 0; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255, 255, 255, .08); color: #fff; transition: background .15s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { color: var(--accent); margin-top: .2em; }
.footer-contact address { font-style: normal; }

.footer-hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0; }
.footer-hours dt { color: #fff; font-weight: 600; }
.footer-hours dd { margin: 0; }

.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

.footer-bottom { background: var(--primary-dark); padding: 16px 0; font-size: .9rem; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 24px; }
.footer-legal { margin: 0; display: flex; gap: 20px; }
.footer-legal a { color: rgba(255, 255, 255, .72); font-weight: 400; }
@media (max-width: 560px) { .footer-bottom-inner { flex-direction: column; text-align: center; } }
.copyright {
    margin: 0; color: rgba(255, 255, 255, .72);
    cursor: default;
    -webkit-user-select: none; user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* ---------- Cookiemelding ---------- */

.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
    max-width: 640px; margin: 0 auto; padding: 18px 20px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(16, 24, 40, .2);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: 12px; font-size: .97rem; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

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

/* Footer: naam + adres, merkkleuren voor WhatsApp en Facebook */
.footer-address { font-style: normal; line-height: 1.7; }
.footer-address strong { color: #fff; }
.footer-subtitle { color: #fff; font-weight: 700; margin: 22px 0 12px; }
.footer-contact li { align-items: center; }
.footer-icon { width: 20px; height: 20px; flex-shrink: 0; border-radius: 4px; }
.footer-icon-mail { filter: invert(1); }
/* Icoon en tekst samen één klikbare link, met ruim klikvlak */
.footer-contact li > a { display: inline-flex; align-items: center; gap: 12px; padding: 4px 0; }
.footer-contact li > a:hover .footer-icon { transform: scale(1.12); }
.footer-icon { transition: transform .15s; }

/* Werkgebied op de contactpagina */
.place-list { list-style: none; padding: 0; margin: 18px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.place-list li {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 600;
}
.place-list .icon { color: var(--accent); }

/* Knop in de stijl van het logo: zwart vlak, dikke oranje rand, oranje tekst.
   Bij aanwijzen/indrukken wisselen de kleuren om. */
.btn-logo {
    background: #0a0a0a; color: var(--accent);
    border: 4px solid var(--accent); border-radius: 10px;
    font-family: Arial, "Helvetica Neue", sans-serif; font-weight: 800; letter-spacing: .02em;
    box-shadow: 0 2px 0 #000, 0 6px 16px rgba(0, 0, 0, .18);
    transition: background .15s, color .15s, border-color .15s, transform .1s, box-shadow .1s;
}
.btn-logo:hover, .btn-logo:focus-visible { background: var(--accent); color: #0a0a0a; border-color: #0a0a0a; }
.btn-logo:active { background: var(--accent); color: #0a0a0a; border-color: #0a0a0a; transform: translateY(2px); box-shadow: 0 0 0 #000, 0 2px 6px rgba(0, 0, 0, .2); }

/* Zijkolom: foto met daaronder de kaart "Vragen?"; scrolt op desktop mee met de tekst */
.aside-stack { display: grid; gap: 20px; position: sticky; top: 100px; }
.aside-stack .side-card { position: static; }
.aside-stack .photo + .side-card { margin-top: 0; }
@media (max-width: 860px) { .aside-stack { position: static; } }

/* ---------- Mobiel: grotere tikvlakken (minimaal ~44px) en volle-breedte knoppen ---------- */
.brand { min-height: 44px; }
.footer-list a, .contact-list a { display: inline-block; padding: 8px 0; }
.footer-contact li > a { padding: 10px 0; }
.footer-legal a { display: inline-block; padding: 12px 0; }
.footer-list { gap: 0; }
@media (max-width: 480px) {
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .contact-form-wrap .btn-logo { width: 100%; }
}

/* Mobiel: WhatsApp-knop altijd zichtbaar naast de menuknop */
.header-wa { display: none; }
@media (max-width: 900px) {
    .header-wa {
        display: inline-grid; place-items: center; width: 46px; height: 46px; margin-left: auto;
        border-radius: 50%; background: var(--accent); color: var(--ink);
    }
    .header-wa .icon { width: 24px; height: 24px; }
    .header-wa:active { transform: scale(.95); }
    .header-inner { gap: 10px; }
    .brand-logo { max-width: calc(100vw - 160px); }
}

/* <picture> (WebP-versies) mag de opmaak van de afbeelding zelf niet beïnvloeden */
picture { display: contents; }

/* ---------- Reviews ---------- */
.reviews { background: var(--soft); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 24px; }
.reviews-head h2 { margin: 0; }
.reviews-score { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 1.05rem; }
.reviews-score-num { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stars { color: #f5a623; letter-spacing: 2px; white-space: nowrap; }
.star-off { color: #d5dbe3; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.review blockquote { margin: 0; flex: 1; }
.review figcaption { font-size: .95rem; }
.reviews-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }

/* ---------- Beschikbaarheid ---------- */
.availability {
    display: inline-flex; align-items: center; gap: 10px; margin: 16px 0 0; padding: 8px 16px;
    border-radius: 999px; font-weight: 600; font-size: .98rem;
}
.availability-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.availability.is-open { background: #e7f6ec; color: #17602d; }
.availability.is-open .availability-dot { background: #22a045; box-shadow: 0 0 0 4px rgba(34, 160, 69, .2); }
.availability.is-waitlist { background: #fff1e0; color: #8a4600; }
.availability.is-waitlist .availability-dot { background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent); }
.contact-form-wrap .availability { margin: 0 0 16px; }

/* ---------- Kostencalculator ---------- */
.calculator {
    margin: 40px 0; padding: clamp(20px, 4vw, 32px); background: #fff;
    border: 1px solid var(--line); border-top: 5px solid var(--accent); border-radius: var(--radius); box-shadow: var(--shadow);
}
.calculator h2 { margin-bottom: .3em; }
.calc-row { margin: 20px 0; }
.calc-row label { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.calc-row input[type="range"] { width: 100%; height: 32px; accent-color: var(--accent); }
.calc-sub { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.calc-extras { border: 0; margin: 0 0 20px; padding: 0; }
.calc-extras legend { font-weight: 600; margin-bottom: 8px; }
.calc-check { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); cursor: pointer; }
.calc-check input { width: 22px; height: 22px; accent-color: var(--primary); flex-shrink: 0; }
.calc-check span:nth-of-type(1) { flex: 1; }
.calc-price { font-weight: 600; white-space: nowrap; }
.calc-total {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px;
    padding: 16px 20px; border-radius: 10px; background: var(--primary); color: #fff;
}
.calc-total strong { font-size: 1.8rem; }
