/* === base/_variables.css === */

:root {
    /* Brand colors */
    --cream: #F3EAE1;
    --sand: #DBC8B6;
    --olive: #4E513E;
    --brown: #423029;
    --dark: #1E1817;
    --muted: #8A7E72;
    --rule: #E8DDD4;
    --white: #fff;
    --sage: #7A8C6E;
    --terra: #B07050;

    /* Typography — families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Typography — scale */
    --fs-h1: clamp(2.5rem, 5.5vw, 4rem);             /* home hero only */
    --fs-h1-sm: clamp(2.25rem, 4.8vw, 3.5rem);       /* all other hero H1s */
    --fs-h2: clamp(1.75rem, 3.2vw, 2.25rem);         /* section H2 */
    --fs-lead: clamp(1.125rem, 1.6vw, 1.375rem);     /* hero subtitle */
    --fs-intro: clamp(1.0625rem, 1.4vw, 1.25rem);    /* intro paragraph (above body) */
    --fs-body: 1.0625rem;                             /* 17px — primary reading */
    --fs-body-sm: 0.9375rem;                          /* 15px — secondary / cards */
    --fs-meta: 0.8125rem;                             /* 13px — kickers, CTA arrows, footer */
    --fs-kicker-sm: 0.6875rem;                        /* 11px — hero kickers only */

    /* Layout — max-widths */
    --content-max: 1200px;
    --mw-intro: 720px;   /* long-form intro / bio */
    --mw-prose: 640px;   /* standard body prose column */
    --mw-text: 560px;    /* hero text column */
    --mw-tight: 520px;   /* narrow single column */

    /* Section padding (vertical/horizontal) */
    --pad-y: 80px;       /* standard section */
    --pad-y-lg: 96px;    /* hero section */
    --pad-y-sm: 56px;    /* mobile section */
    --pad-x: 48px;
    --pad-x-sm: 24px;

    /* Border radius */
    --radius-sm: 2px;
    --radius: 4px;
    --radius-lg: 6px;

    /* Letter spacing */
    --ls-wide: .12em;
    --ls-mid: .08em;
    --ls-tight: .04em;

    /* Colors on dark surfaces */
    --on-dark: rgba(255, 255, 255, 0.85);
    --on-dark-muted: rgba(255, 255, 255, 0.7);
    --on-dark-subtle: rgba(255, 255, 255, 0.55);
    --on-dark-faint: rgba(255, 255, 255, 0.4);
    --on-dark-border: rgba(255, 255, 255, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}


/* === base/_reset.css === */

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

blockquote {
    margin: 0;
    padding: 0;
}


/* === base/_global.css === */

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
}

h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    line-height: 1.3;
    margin-bottom: 14px;
}

h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 8px;
}

p {
    margin-bottom: 0;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Smooth scroll with sticky nav offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.screen-reader-text {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.skip-link:focus {
    clip: auto;
    clip-path: none;
    height: auto;
    width: auto;
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 100;
    background: var(--olive);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 600;
}


/* === modules/_components.css === */

/* Two-column label + content grid */
.col {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 0 48px;
    border-bottom: 0.5px solid var(--rule);
}

.lbl {
    font-size: 11px;
    color: var(--muted);
    padding-top: 4px;
    padding-bottom: 36px;
    letter-spacing: var(--ls-tight);
    line-height: 1.5;
}

.body-col {
    padding: 36px 0;
}

.body-col p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
}

.body-col p + p {
    margin-top: 16px;
}

/* Kicker label */
.kicker {
    font-size: var(--fs-meta);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

/* Small kicker — for hero-level use where we want a quieter label */
.kicker--sm {
    font-size: var(--fs-kicker-sm);
}

.kicker--olive {
    color: var(--olive);
}

.kicker--center {
    text-align: center;
}

/* Section title — the standard section h2 used across pages */
.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--fs-h2);
    line-height: 1.2;
    color: var(--olive);
    margin: 0 0 24px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.section-title--dark {
    color: var(--dark);
}

.section-title--on-dark {
    color: var(--white);
}

.section-title--center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: var(--ls-tight);
    padding: 16px 32px;
    background: var(--olive);
    color: var(--white);
    border: 1px solid var(--olive);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition:
        background var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base);
}

.btn:hover,
.btn:focus-visible {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

/* Ghost — outlined olive; inverts to filled on hover */
.btn--ghost {
    background: transparent;
    color: var(--olive);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}

/* On-dark — sand fill for dark section backgrounds */
.btn--on-dark {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--dark);
}

.btn--on-dark:hover,
.btn--on-dark:focus-visible {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

/* Ghost on a dark section */
.btn--on-dark.btn--ghost {
    background: transparent;
    color: var(--sand);
    border-color: var(--on-dark-border);
}

.btn--on-dark.btn--ghost:hover,
.btn--on-dark.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: var(--sand);
}

/* Tags */
.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--cream);
    border: 0.5px solid var(--rule);
    color: var(--brown);
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Quote blocks */
.quote-blok {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    padding: 20px 24px;
    border-left: 3px solid var(--olive);
    background: var(--cream);
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.eigen {
    background: var(--cream);
    border-left: 3px solid #C4A882;
    padding: 24px 28px;
    margin: 24px 0;
    border-radius: 0 4px 4px 0;
}

.eigen p {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.85;
    color: var(--dark);
}

.eigen .bron {
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    font-style: italic;
}

/* CTA block (dark) */
.cta-blok {
    background: var(--dark);
    border-radius: 8px;
    padding: 32px;
    margin-top: 28px;
}

.cta-blok h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}

.cta-blok p {
    font-size: 1rem;
    color: var(--on-dark-subtle);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Testimonials */
.cit {
    padding: 24px 0;
    border-bottom: 0.5px solid var(--rule);
}

.cit:last-child {
    border-bottom: none;
}

.cit p {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 12px;
}

.cit-wie {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.cit-rol {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* Content rows */
.item-rij {
    padding: 24px 0;
    border-bottom: 0.5px solid var(--rule);
}

.item-rij:last-child {
    border-bottom: none;
}

/* =========================================================
   Hero — split layout (text + portrait)
   Used by home, moeders, coaching, over heroes.
   Page-specific typography lives in each module.
   ========================================================= */
.hero-split__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
    padding: var(--pad-y-lg) var(--pad-x);
}

.hero-split__text {
    max-width: var(--mw-text);
}

.hero-split__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.hero-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Split-hero typography (page-specific background/border lives in page modules) */
.hero-split__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--fs-h1-sm);
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 24px;
}

.hero-split__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.hero-split__source {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 24px;
}

.hero-split__lede {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    margin: 0 0 36px;
}

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

@media (max-width: 900px) {
    .hero-split__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 24px;
    }

    .hero-split__media {
        order: -1;
        aspect-ratio: 4 / 3;
        max-width: var(--mw-tight);
        margin-inline: auto;
        width: 100%;
    }

    .hero-split__text {
        max-width: none;
    }
}

/* Section photo break */
.section-photo {
    border-bottom: 0.5px solid var(--rule);
    overflow: hidden;
    max-width: var(--content-max);
    margin-inline: auto;
}

.section-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Responsive */
@media (max-width: 680px) {
    .col {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }

    .lbl {
        padding-bottom: 8px;
    }

    .body-col {
        padding: 24px 0;
    }

    .section-photo img {
        height: 260px;
    }
}


/* === modules/_header.css === */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    max-width: var(--content-max);
    margin-inline: auto;
    font-family: var(--font-body);
}

.nav-wrap {
    border-bottom: 0.5px solid var(--rule);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-r {
    display: flex;
    gap: 3px;
    align-items: center;
}

.nl {
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 3px;
    color: var(--muted);
    text-decoration: none;
    display: inline-block;
    transition: color var(--transition-fast);
}

.nl:hover {
    color: var(--dark);
}

.nl.act {
    color: var(--dark);
    font-weight: 500;
}

.nl.cta {
    background: var(--olive);
    color: var(--white);
    font-weight: 500;
    border: 1px solid var(--olive);
    border-radius: var(--radius);
    margin-left: 6px;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.nl.cta:hover,
.nl.cta:focus-visible {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 51;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 680px) {
    .nav {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Overlay is always in the DOM on mobile so open/close can animate.
       Links are laid out here regardless of state; opacity/visibility
       control the reveal. */
    .nav-r {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--white);
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 50;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px) scale(0.99);
        transform-origin: top center;
        transition:
            opacity 280ms ease-out,
            transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 280ms;
    }

    .nav-r.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition:
            opacity 280ms ease-out,
            transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0s;
    }

    .nav-r .nl {
        font-size: 16px;
        padding: 8px 16px;
        opacity: 0;
        transform: translateY(4px);
        transition:
            opacity 280ms ease-out,
            transform 280ms ease-out;
    }

    .nav-r.is-open .nl {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger: panel begins first, then each link joins ~40ms apart. */
    .nav-r.is-open .nl:nth-child(1) { transition-delay: 100ms; }
    .nav-r.is-open .nl:nth-child(2) { transition-delay: 140ms; }
    .nav-r.is-open .nl:nth-child(3) { transition-delay: 180ms; }
    .nav-r.is-open .nl:nth-child(4) { transition-delay: 220ms; }
    .nav-r.is-open .nl:nth-child(5) { transition-delay: 260ms; }
    .nav-r.is-open .nl:nth-child(6) { transition-delay: 300ms; }
    .nav-r.is-open .nl:nth-child(7) { transition-delay: 340ms; }
    .nav-r.is-open .nl:nth-child(8) { transition-delay: 380ms; }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 680px) and (prefers-reduced-motion: reduce) {
    .nav-r,
    .nav-r.is-open,
    .nav-r .nl,
    .nav-r.is-open .nl {
        transform: none;
        transition: opacity 150ms linear, visibility 0s linear 150ms;
    }

    .nav-r.is-open,
    .nav-r.is-open .nl {
        transition: opacity 150ms linear, visibility 0s linear 0s;
    }

    .nav-r.is-open .nl {
        transition-delay: 0s;
    }
}


/* === modules/_hero.css === */

.hero {
    padding: 80px 48px 56px;
    border-bottom: 0.5px solid var(--rule);
}

.hero--cream {
    background: var(--cream);
}

.hero-inner {
    max-width: var(--content-max);
    margin-inline: auto;
}

.qs {
    font-family: var(--font-heading);
}

@media (max-width: 680px) {
    .hero {
        padding: 56px 24px 40px;
    }
}


/* === modules/_footer.css === */

.footer {
    padding: 48px;
    background: var(--dark);
}

.footer-inner {
    max-width: var(--content-max);
    margin-inline: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 0.5px solid rgba(255, 255, 255, .08);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--sand);
    margin-bottom: 12px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col li {
    font-size: 15px;
    color: var(--on-dark-subtle);
    line-height: 1.5;
}

.footer-col a {
    font-size: 15px;
    color: var(--on-dark-subtle);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--sand);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--on-dark-faint);
}

.footer-r {
    display: flex;
    gap: 18px;
}

.footer-r a {
    color: var(--on-dark-faint);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-r a:hover {
    color: rgba(255, 255, 255, .65);
}

/* Light footer — over (11) and contact (12) */
body.page-id-11 .footer,
body.page-id-12 .footer {
    background: var(--cream);
}

body.page-id-11 .footer-col h4,
body.page-id-12 .footer-col h4 {
    color: var(--olive);
}

body.page-id-11 .footer-col li,
body.page-id-11 .footer-col a,
body.page-id-12 .footer-col li,
body.page-id-12 .footer-col a {
    color: var(--brown);
}

body.page-id-11 .footer-col a:hover,
body.page-id-12 .footer-col a:hover {
    color: var(--olive);
}

body.page-id-11 .footer-top,
body.page-id-12 .footer-top {
    border-bottom-color: rgba(30, 24, 23, .12);
}

body.page-id-11 .footer-bottom,
body.page-id-11 .footer-r a,
body.page-id-12 .footer-bottom,
body.page-id-12 .footer-r a {
    color: var(--muted);
}

body.page-id-11 .footer-r a:hover,
body.page-id-12 .footer-r a:hover {
    color: var(--dark);
}

@media (max-width: 680px) {
    .footer {
        padding: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}


/* === modules/_front-page.css === */

.front-hero {
    background: var(--cream);
}

.front-hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--fs-h1);
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 24px;
}

.front-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.front-hero__subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    line-height: 1.4;
    color: var(--brown);
    margin: 0 0 24px;
}

.front-hero__expertise {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--brown);
    margin: 0 0 40px;
}

/* Intro */
.front-intro {
    padding: 88px 48px;
    max-width: var(--content-max);
    margin-inline: auto;
}

.front-intro__inner {
    max-width: var(--mw-intro);
    margin-inline: auto;
    text-align: left;
}

.front-intro__inner p {
    font-size: var(--fs-intro);
    line-height: 1.8;
    color: var(--brown);
    font-weight: 400;
    margin: 0;
}

/* Book intro */
.front-book {
    background: var(--sand);
}

.front-book__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 64px;
    align-items: center;
    padding: 88px 48px;
}

.front-book__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.front-book__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-book__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--olive);
    margin: 0 0 24px;
}

.front-book__body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--brown);
    margin: 0 0 28px;
}

.front-book__link {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--olive);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.front-book__link:hover,
.front-book__link:focus-visible {
    color: var(--brown);
}

/* Paths — self-select cards */
.front-paths {
    background: var(--cream);
}

.front-paths__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 88px 48px;
}

.front-paths .section-title {
    margin-bottom: 48px;
}

.front-paths__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.front-path-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.front-path-card:hover,
.front-path-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.front-path-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--sand);
}

.front-path-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-path-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.front-path-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--olive);
    margin: 0 0 12px;
}

.front-path-card__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--brown);
    margin: 0 0 20px;
    flex: 1;
}

.front-path-card__cta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-body-sm);
    color: var(--olive);
}

/* CTA block — nested inside .front-paths */
.front-paths__cta {
    margin-top: 56px;
}

@media (max-width: 900px) {
    .front-book__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .front-book__media {
        aspect-ratio: 4 / 3;
        max-width: var(--mw-tight);
        margin-inline: auto;
        width: 100%;
    }

    .front-paths__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .front-intro {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .front-paths__inner {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .front-paths .section-title {
        margin-bottom: 32px;
    }

    .front-path-card__body {
        padding: 24px;
    }

    .front-paths__cta {
        margin-top: 40px;
    }
}


/* === modules/_moeders.css === */

/* =========================================================================
   Moeders page
   ========================================================================= */

/* 1. Hero — layout + typography in .hero-split (components) */
.moeders-hero {
    background: var(--cream);
}

/* 2. Openings alinea */
.moeders-intro {
    padding: 88px 48px;
    max-width: var(--content-max);
    margin-inline: auto;
}

.moeders-intro__inner {
    max-width: var(--mw-intro);
    margin-inline: auto;
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--fs-intro);
    line-height: 1.8;
    color: var(--brown);
}

.moeders-intro__inner p {
    margin: 0 0 1em;
}

.moeders-intro__inner p:last-child {
    margin-bottom: 0;
}

/* 3. Model */
.moeders-model {
    background: var(--sand);
}

.moeders-model__inner {
    max-width: 920px;
    margin-inline: auto;
    padding: 88px 48px;
    text-align: center;
}

.moeders-model .section-title {
    margin-bottom: 20px;
}

.moeders-model__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--brown);
    max-width: 620px;
    margin: 0 auto 48px;
}

.moeders-model__figure {
    margin: 0;
}

.moeders-model__figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* 4. Zelftests */
.moeders-tests {
    background: var(--cream);
}

.moeders-tests__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 88px 48px;
}

.moeders-tests .section-title,
.moeders-lees .section-title,
.moeders-coaching .section-title {
    margin-bottom: 16px;
}

.moeders-tests__intro,
.moeders-lees__intro {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--brown);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.moeders-tests__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.moeders-test-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.moeders-test-card:hover,
.moeders-test-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.moeders-test-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.25;
    color: var(--olive);
    margin: 0 0 12px;
}

.moeders-test-card__text {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: 1.65;
    color: var(--brown);
    margin: 0 0 20px;
    flex: 1;
}

.moeders-test-card__cta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-body-sm);
    color: var(--olive);
}

/* Coming-soon state: remove .moeders-tests--coming-soon when tests launch */
.moeders-tests--coming-soon .moeders-test-card {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
    position: relative;
}

.moeders-test-card__soon {
    display: none;
}

.moeders-tests--coming-soon .moeders-test-card__soon {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 3px 10px;
    margin-bottom: 14px;
}

.moeders-tests--coming-soon .moeders-test-card__cta {
    color: var(--muted);
    font-weight: 400;
}

/* 5. Lees meer */
.moeders-lees {
    background: var(--white);
}

.moeders-lees__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 88px 48px;
}

.moeders-lees__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.moeders-lees-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: background var(--transition-base);
}

.moeders-lees-card:hover,
.moeders-lees-card:focus-visible {
    background: var(--sand);
}

.moeders-lees-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1875rem;
    line-height: 1.3;
    color: var(--olive);
    margin: 0 0 12px;
}

.moeders-lees-card__text {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: 1.65;
    color: var(--brown);
    margin: 0 0 16px;
    flex: 1;
}

.moeders-lees-card__cta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--olive);
}

/* 6. Coaching */
.moeders-coaching {
    background: var(--cream);
}

.moeders-coaching__inner {
    max-width: var(--mw-intro);
    margin-inline: auto;
    padding: 88px 48px;
    text-align: center;
}

.moeders-coaching__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    text-align: left;
    max-width: var(--mw-text);
    margin-inline: auto;
}

.moeders-coaching__cta {
    margin-top: 56px;
}

.moeders-coaching__text p {
    margin: 0 0 1em;
}

.moeders-coaching__text p:last-child {
    margin-bottom: 0;
}

/* Coaching-teaser button — keep a bit of breathing room above */
.moeders-coaching .btn {
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 900px) {
    .moeders-tests__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .moeders-lees__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .moeders-model__inner,
    .moeders-tests__inner,
    .moeders-lees__inner,
    .moeders-coaching__inner {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .moeders-intro {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }
}


/* === modules/_coaching.css === */

/* =========================================================
   Page: Coaching (aligned with organisaties scale, 2026-04)
   ========================================================= */

/* ---------- 1. Hero — layout + typography in .hero-split ---------- */
.coaching-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

/* Tighter lede column on this page */
.coaching-hero .hero-split__lede {
    max-width: var(--mw-tight);
}

/* ---------- 2. Herken je dit ---------- */
.coaching-herken {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.coaching-herken__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.coaching-herken .section-title {
    margin-bottom: 36px;
    max-width: var(--mw-prose);
}

.coaching-herken__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.coaching-herken-card {
    padding: 24px 28px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--olive);
}

.coaching-herken-card__q {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--fs-body);
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 12px;
}

.coaching-herken-card__a {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
}

/* ---------- 3. Matrescence (centered, cream band) ---------- */
.coaching-matrescence {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.coaching-matrescence__inner {
    max-width: 760px;
    margin-inline: auto;
    padding: var(--pad-y-lg) var(--pad-x);
    text-align: center;
}

.coaching-matrescence__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.25rem); /* outlier: centered feature headline, larger than --fs-h2 */
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 24px;
}

.coaching-matrescence__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.coaching-matrescence__intro {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 auto 20px;
    max-width: var(--mw-prose);
}

.coaching-matrescence__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
}

.coaching-matrescence__text p {
    margin: 0 0 14px;
}

.coaching-matrescence__text p:last-child {
    margin-bottom: 0;
}

.coaching-matrescence__belofte {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    line-height: 1.5;
    color: var(--dark);
    margin-top: 36px;
    padding-top: 36px;
    border-top: 0.5px solid var(--rule);
}

.coaching-matrescence__belofte p {
    margin: 0;
}

.coaching-matrescence__belofte em {
    color: var(--olive);
}

.coaching-matrescence__belofte-src {
    font-family: var(--font-body);
    font-style: normal;
    font-size: var(--fs-kicker-sm);
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 16px;
    font-weight: 500;
}

/* ---------- 4. Aanbod (4-column tier cards) ---------- */
.coaching-aanbod {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.coaching-aanbod__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.coaching-aanbod__header {
    max-width: var(--mw-prose);
    margin-bottom: 40px;
}

.coaching-aanbod .section-title {
    margin: 14px 0 16px;
}

.coaching-aanbod__intro {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0;
}

.coaching-aanbod__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.coaching-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast);
}

.coaching-card:hover {
    border-color: var(--olive);
}

.coaching-card--featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.coaching-card--boek {
    background: var(--sand);
    border-color: var(--sand);
}

.coaching-card--boek:hover {
    border-color: var(--olive);
}

.coaching-card__num {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.coaching-card--featured .coaching-card__num {
    color: var(--sand);
}

.coaching-card--boek .coaching-card__num {
    color: var(--brown);
}

.coaching-card__price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.coaching-card--featured .coaching-card__price {
    color: var(--white);
}

.coaching-card__price-note {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    color: var(--muted);
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
    min-height: 14px;
}

.coaching-card--featured .coaching-card__price-note {
    color: var(--on-dark-subtle);
}

.coaching-card--boek .coaching-card__price-note {
    color: var(--brown);
}

.coaching-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 12px;
    min-height: 50px;
}

.coaching-card--featured .coaching-card__title {
    color: var(--white);
}

.coaching-card__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 20px;
}

.coaching-card--featured .coaching-card__desc {
    color: rgba(255, 255, 255, 0.75);
}

.coaching-card--boek .coaching-card__desc {
    color: var(--dark);
}

.coaching-card__facts {
    border-top: 0.5px solid var(--rule);
    padding-top: 16px;
    margin-top: auto;
}

.coaching-card--featured .coaching-card__facts {
    border-top-color: var(--on-dark-border);
}

.coaching-card--boek .coaching-card__facts {
    border-top-color: rgba(66, 48, 41, 0.18);
}

.coaching-card__facts dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px 12px;
    margin: 0;
}

.coaching-card__facts dt {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    color: var(--muted);
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    font-weight: 500;
    align-self: center;
}

.coaching-card--featured .coaching-card__facts dt {
    color: var(--on-dark-subtle);
}

.coaching-card--boek .coaching-card__facts dt {
    color: var(--brown);
}

.coaching-card__facts dd {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    color: var(--dark);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.coaching-card--featured .coaching-card__facts dd {
    color: var(--white);
}

.coaching-aanbod__footnote {
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    color: var(--muted);
    margin: 28px 0 0;
    text-align: center;
}

/* ---------- 5. Hoe ik werk ---------- */
.coaching-hoe {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.coaching-hoe__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.coaching-hoe .section-title {
    margin: 14px 0 16px;
    max-width: var(--mw-prose);
}

.coaching-hoe__lead {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 36px;
    max-width: var(--mw-prose);
}

.coaching-hoe__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.coaching-hoe-box {
    padding: 24px 28px;
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
}

.coaching-hoe-box__lbl {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 10px;
}

.coaching-hoe-box__name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin: 0 0 8px;
}

.coaching-hoe-box__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
    margin: 0;
}

/* ---------- 6. Ervaringen ---------- */
.coaching-ervaringen {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.coaching-ervaringen__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.coaching-ervaringen .section-title {
    margin: 14px 0 36px;
}

.coaching-ervaringen__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.coaching-cit {
    padding: 28px 32px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin: 0;
}

.coaching-cit blockquote {
    font-family: var(--font-heading);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
    margin: 0 0 16px;
}

.coaching-cit figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.coaching-cit__wie {
    font-family: var(--font-body);
    font-size: var(--fs-meta);
    font-weight: 500;
    color: var(--dark);
}

.coaching-cit__rol {
    font-family: var(--font-body);
    font-size: var(--fs-kicker-sm);
    letter-spacing: var(--ls-tight);
    color: var(--muted);
}

/* ---------- 7. CTA wrap ---------- */
.coaching-cta-wrap {
    padding: 48px;
    max-width: var(--content-max);
    margin-inline: auto;
}

.coaching-cta-wrap .cta-blok p {
    font-size: var(--fs-body);
    line-height: 1.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .coaching-aanbod__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .coaching-card__title,
    .coaching-card__desc {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .coaching-herken__grid,
    .coaching-hoe__grid {
        grid-template-columns: 1fr;
    }

    .coaching-ervaringen__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .coaching-herken__inner,
    .coaching-matrescence__inner,
    .coaching-aanbod__inner,
    .coaching-hoe__inner,
    .coaching-ervaringen__inner,
    .coaching-cta-wrap {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .coaching-aanbod__cards {
        grid-template-columns: 1fr;
    }

    .coaching-card__title,
    .coaching-card__desc {
        min-height: auto;
    }
}


/* === modules/_organisaties.css === */

/* =========================================================
   Page: Organisaties (rebuilt from PDF, 2026-04)
   ========================================================= */

/* ---------- shared helpers ---------- */
.kicker--on-dark {
    color: var(--on-dark-subtle);
}

/* ---------- 1. Hero — layout + typography in .hero-split ---------- */
.org-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

/* ---------- 2. Stats (stacked rows on white) ---------- */
.org-stats {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.org-stats__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 0 48px;
}

.org-stat-row {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 32px;
    align-items: baseline;
    padding: 36px 0;
    border-bottom: 0.5px solid var(--rule);
}

.org-stat-row:last-child {
    border-bottom: none;
}

.org-stat-row__num {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1;
    color: var(--dark);
}

.org-stat-row__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0;
}

.org-stat-row__src {
    font-size: 11px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--muted);
    margin: 8px 0 0;
}

/* ---------- 3. Business case (dark full-bleed) ---------- */
.org-business {
    background: var(--dark);
    color: var(--on-dark);
}

.org-business__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.org-business__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 20px;
}

.org-business__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--sand);
}

.org-business__lede {
    font-size: 16px;
    line-height: 1.75;
    color: var(--on-dark-muted);
    font-weight: 300;
    max-width: var(--mw-intro);
    margin: 0 0 48px;
}

.org-business__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 0.5px solid var(--on-dark-border);
}

.org-business__card {
    padding: 40px 40px 40px 0;
    border-right: 0.5px solid var(--on-dark-border);
}

.org-business__card:last-child {
    padding-right: 0;
    padding-left: 40px;
    border-right: none;
}

.org-business__card .kicker {
    margin-bottom: 14px;
}

.org-business__card-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 20px;
}

.org-business__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.org-business__list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-dark-muted);
    font-weight: 300;
    margin-bottom: 10px;
}

.org-business__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .35);
}

.org-business__sources {
    margin: 48px 0 0;
    font-size: 13px;
    color: var(--on-dark-faint);
    font-style: italic;
}

/* ---------- 4. Aanbod ---------- */
.org-aanbod {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.org-aanbod__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.org-aanbod__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 16px;
}

.org-aanbod__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.org-aanbod__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 0 40px;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.offer-card {
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.offer-card__head .kicker {
    margin-bottom: 8px;
}

.offer-card__duration {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.offer-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.375rem, 2.2vw, 1.625rem);
    line-height: 1.25;
    color: var(--dark);
    margin: 0 0 10px;
}

.offer-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 0 20px;
}

.offer-card__specs {
    border-top: 0.5px solid var(--rule);
    padding-top: 20px;
    margin: auto 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.offer-card__spec {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: baseline;
    font-size: 15px;
}

.offer-card__spec dt {
    font-size: 11px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.offer-card__spec dd {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.offer-cta {
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-cta p {
    margin: 0;
    font-size: 15px;
    color: var(--brown);
    font-weight: 300;
    line-height: 1.6;
    max-width: var(--mw-tight);
}

.offer-cta .btn {
    margin-top: 0;
    white-space: nowrap;
}

/* ---------- 5. Fundament ---------- */
.org-fundament {
    background: var(--cream);
}

.org-fundament__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 80px 48px 48px;
}

.org-fundament__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 16px;
}

.org-fundament__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.org-fundament__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 0 36px;
}

.fundament-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.fundament-card {
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    height: 100%;
}

@media (max-width: 900px) {
    .fundament-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fundament-card {
        height: auto;
    }
}

.fundament-card .kicker {
    margin-bottom: 14px;
}

.fundament-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fundament-card__list li {
    font-size: 15px;
    line-height: 1.55;
    color: var(--brown);
    font-weight: 300;
}

.fundament-card__list em {
    font-style: italic;
    color: var(--dark);
}

.fundament-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0;
}

.fundament-card em {
    font-style: italic;
    color: var(--dark);
}

/* Pull quote sits on same cream band, separated by a rule */
.org-pullquote {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 72px 48px;
    text-align: center;
    border-top: 0.5px solid var(--rule);
}

.org-pullquote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.55;
    color: var(--dark);
    max-width: 760px;
    margin: 0 auto 16px;
}

.org-pullquote cite {
    font-size: 13px;
    letter-spacing: .05em;
    color: var(--muted);
    font-style: normal;
}

/* ---------- 6. Final CTA wrap (shared .cta-blok inside) ---------- */
.org-cta-wrap {
    padding: 48px;
    max-width: var(--content-max);
    margin-inline: auto;
}

.org-cta-wrap .cta-blok p {
    font-size: 1rem;
    line-height: 1.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .offer-cards {
        grid-template-columns: 1fr;
    }

    .org-business__grid {
        grid-template-columns: 1fr;
    }

    .org-business__card {
        padding: 32px 0;
        border-right: none;
        border-bottom: 0.5px solid var(--on-dark-border);
    }

    .org-business__card:last-child {
        padding-left: 0;
        border-bottom: none;
    }

}

@media (max-width: 680px) {
    .org-business__inner,
    .org-aanbod__inner,
    .org-fundament__inner,
    .org-pullquote,
    .org-final-cta__inner,
    .org-stats__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .org-business__inner,
    .org-aanbod__inner,
    .org-fundament__inner {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .org-cta-wrap {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .org-stat-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 28px 0;
    }

    .offer-card {
        padding: 24px;
    }

    .offer-card__spec {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .offer-cta {
        padding: 20px 24px;
    }

    .offer-cta .btn {
        width: 100%;
        text-align: center;
    }
}


/* === modules/_over.css === */

/* =========================================================
   Page: Over (aligned with organisaties scale)
   ========================================================= */

/* ---------- 1. Hero — layout + typography in .hero-split ---------- */
.over-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.over-hero .hero-split__lede {
    max-width: var(--mw-tight);
    margin-bottom: 0;
}

/* ---------- 2. Intro — long-form bio ---------- */
.over-intro {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.over-intro__inner {
    max-width: var(--mw-intro);
    margin-inline: auto;
    padding: 88px 48px;
}

.over-intro__inner p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 1em;
}

.over-intro__inner p:last-child {
    margin-bottom: 0;
}

.over-intro__inner em {
    font-style: italic;
    color: var(--dark);
}

.over-intro__inner a {
    color: var(--olive);
    border-bottom: 0.5px solid var(--olive);
    padding-bottom: 1px;
    transition: color var(--transition-fast);
}

.over-intro__inner a:hover {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

/* ---------- 3. Pers & media ---------- */
.over-pers {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.over-pers__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    max-width: var(--mw-intro);
}

.over-pers__body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 28px;
}

.over-pers__body p {
    margin: 0 0 14px;
}

.over-pers__body p:last-child {
    margin-bottom: 0;
}

.over-pers__body a {
    color: var(--olive);
    border-bottom: 0.5px solid var(--olive);
    padding-bottom: 1px;
    transition: color var(--transition-fast);
}

.over-pers__body a:hover {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

/* Light footer moved to _footer.css (shared with contact page) */

/* ---------- 4. Final CTA (dark) ---------- */
.over-final-cta {
    background: var(--dark);
    color: var(--on-dark);
}

.over-final-cta__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.over-final-cta__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 14px;
    max-width: var(--mw-prose);
    margin-inline: auto;
}

.over-final-cta__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--sand);
}

.over-final-cta__lede {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    max-width: var(--mw-text);
    margin: 0 auto 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
    .over-intro__inner,
    .over-pers__inner,
    .over-final-cta__inner {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 56px;
        padding-bottom: 56px;
    }
}


/* === modules/_contact-page.css === */

/* =========================================================
   Page: Contact (aligned with organisaties scale)
   ========================================================= */

/* ---------- 1. Hero (split) ---------- */
.contact-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.contact-hero__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y-lg) var(--pad-x);
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
}

.contact-hero__text {
    max-width: var(--mw-text);
}

.contact-hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 24px;
}

.contact-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.contact-hero__lede {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    max-width: var(--mw-tight);
    margin: 0;
}

.contact-hero__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* ---------- 2. Kennismakingsgesprek ---------- */
.contact-gesprek {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.contact-gesprek__inner {
    max-width: var(--mw-intro);
    margin-inline: auto;
    padding: var(--pad-y-lg) var(--pad-x);
    text-align: center;
}

.contact-gesprek__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 20px;
}

.contact-gesprek__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.contact-gesprek__body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-text);
    margin: 0 auto 28px;
    text-align: left;
}

.contact-gesprek__body p {
    margin: 0 0 1em;
}

.contact-gesprek__body p:last-child {
    margin-bottom: 0;
}

.contact-gesprek__sub {
    margin: 16px 0 0;
    font-size: 11px;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ---------- 3. Direct contact — card grid ---------- */
.contact-direct {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.contact-direct__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.contact-direct__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.6vw, 1.875rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 36px;
}

.contact-direct__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 760px;
    margin-inline: auto;
    text-align: left;
}

.contact-card {
    display: block;
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-decoration: none;
    color: inherit;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.contact-card:hover,
.contact-card:focus-visible {
    border-color: var(--olive);
    transform: translateY(-1px);
}

.contact-card__kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.contact-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 6px;
    word-break: break-word;
}

.contact-card__sub {
    font-size: 15px;
    color: var(--brown);
    font-weight: 300;
    line-height: 1.6;
}

/* ---------- 4. Final CTA (dark) — soft pointer to content ---------- */
.contact-final-cta {
    background: var(--dark);
    color: var(--on-dark);
}

.contact-final-cta__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.contact-final-cta__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 14px;
    max-width: var(--mw-prose);
    margin-inline: auto;
}

.contact-final-cta__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--sand);
}

.contact-final-cta__lede {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    max-width: var(--mw-text);
    margin: 0 auto 28px;
}

.contact-final-cta__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .contact-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .contact-hero__media {
        order: -1;
        aspect-ratio: 4 / 3;
        max-width: var(--mw-tight);
        margin-inline: auto;
        width: 100%;
    }

    .contact-hero__text {
        max-width: none;
    }

    .contact-direct__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contact-gesprek__inner,
    .contact-direct__inner,
    .contact-final-cta__inner {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 56px;
        padding-bottom: 56px;
    }
}


/* === modules/_boek.css === */

/* =========================================================
   Page: Boek — Het Moederkompas (aligned with organisaties)
   ========================================================= */

/* ---------- 1. Hero (split) ---------- */
.boek-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.boek-hero__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y-lg) var(--pad-x);
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
}

.boek-hero__text {
    max-width: var(--mw-text);
}

.boek-hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 24px;
}

.boek-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.boek-hero__lede {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    max-width: var(--mw-tight);
    margin: 0 0 36px;
}

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

.boek-hero__ctas .btn {
    margin-top: 0;
}

.boek-hero__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.boek-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* ---------- 2. Opening quote (centered band) ---------- */
.boek-opening {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.boek-opening__inner {
    max-width: 760px;
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.boek-opening__mark {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 64px;
    line-height: .8;
    color: #C4A882;
    margin: 0 0 8px;
}

.boek-opening p {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    line-height: 1.55;
    color: var(--dark);
    margin: 0;
}

.boek-opening__src {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ---------- 3. Over het boek ---------- */
.boek-over {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.boek-over__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    max-width: 820px;
}

.boek-over__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 20px;
}

.boek-over__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.boek-over__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0;
}

/* ---------- 4. Pull quote with image ---------- */
.boek-pullquote {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.boek-pullquote__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 64px;
    align-items: center;
}

.boek-pullquote__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--sand);
    max-width: 420px;
}

.boek-pullquote__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boek-pullquote__mark {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 56px;
    line-height: .8;
    color: #C4A882;
    margin-bottom: 8px;
}

.boek-pullquote__text p {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    line-height: 1.5;
    color: var(--dark);
    margin: 0;
    max-width: var(--mw-text);
}

.boek-pullquote__src {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ---------- 5. Opbouw (model) ---------- */
.boek-opbouw {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.boek-opbouw__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.boek-opbouw__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 16px;
}

.boek-opbouw__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.boek-opbouw__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 0 36px;
}

.opbouw-model {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    align-items: stretch;
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.opbouw-col {
    padding: 28px 32px;
}

.opbouw-col__lbl {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 12px;
}

.opbouw-col__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 16px;
}

.opbouw-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opbouw-col__list li {
    font-size: 15px;
    line-height: 1.55;
    color: var(--brown);
    font-weight: 300;
    padding-left: 16px;
    position: relative;
}

.opbouw-col__list li::before {
    content: "·";
    position: absolute;
    left: 4px;
    top: -2px;
    color: #C4A882;
    font-weight: 700;
    font-size: 18px;
}

.opbouw-col--mid {
    background: var(--olive);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
}

.opbouw-col--mid .opbouw-col__lbl {
    color: var(--sand);
    margin-bottom: 10px;
}

.opbouw-col__mid-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--white);
}

/* ---------- 6. Experts ---------- */
.boek-experts {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.boek-experts__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.boek-experts__head {
    text-align: center;
    margin-bottom: 40px;
}

.boek-experts__head .kicker {
    display: inline-block;
    margin-bottom: 14px;
}

.boek-experts__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.boek-experts__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.boek-experts__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 auto;
}

.boek-experts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.expert-card {
    padding: 22px 24px;
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.expert-card:hover {
    border-color: var(--olive);
    transform: translateY(-1px);
}

.expert-card__name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 6px;
}

.expert-card__role {
    font-size: 11px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
    margin-bottom: 12px;
}

.expert-card__bio {
    font-size: 15px;
    line-height: 1.65;
    color: var(--brown);
    font-weight: 300;
    margin: 0;
}

/* ---------- 7. Bronnen ---------- */
.boek-bronnen {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.boek-bronnen__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
}

.boek-bronnen__head {
    text-align: center;
    margin-bottom: 40px;
}

.boek-bronnen__head .kicker {
    display: inline-block;
    margin-bottom: 14px;
}

.boek-bronnen__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.boek-bronnen__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.boek-bronnen__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: var(--mw-prose);
    margin: 0 auto;
}

.boek-bronnen__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.bron-card {
    padding: 20px 22px;
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: var(--radius);
    transition: border-color var(--transition-fast);
}

.bron-card:hover {
    border-color: var(--olive);
}

.bron-card__auteur {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 4px;
}

.bron-card__inst {
    font-size: 11px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
    margin-bottom: 10px;
}

.bron-card__werk {
    font-size: 15px;
    line-height: 1.65;
    color: var(--brown);
    font-weight: 300;
    margin: 0;
}

/* ---------- 8. Auteur ---------- */
.boek-auteur {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.boek-auteur__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: var(--pad-y) var(--pad-x);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}

.boek-auteur__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--sand);
}

.boek-auteur__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boek-auteur__text {
    max-width: var(--mw-text);
    padding-top: 8px;
}

.boek-auteur__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 20px;
}

.boek-auteur__text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 12px;
}

.boek-auteur__link {
    color: var(--olive);
    border-bottom: 0.5px solid var(--olive);
    padding-bottom: 1px;
    transition: color var(--transition-fast);
}

.boek-auteur__link:hover {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

.boek-auteur__sig {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--olive);
    margin-top: 20px;
}

/* ---------- 9. Waitlist CTA (rounded dark panel on cream) ---------- */
.boek-cta-wrap {
    background: var(--cream);
    padding: var(--pad-y-sm) var(--pad-x);
}

.boek-cta {
    background: var(--dark);
    color: var(--on-dark);
    max-width: var(--content-max);
    margin-inline: auto;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--pad-y);
}

.boek-cta__inner {
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.kicker--on-dark {
    color: var(--on-dark-subtle);
}

.boek-cta__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 14px;
    max-width: var(--mw-prose);
    margin-inline: auto;
}

.boek-cta__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--sand);
}

.boek-cta__lede {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    max-width: var(--mw-text);
    margin: 0 auto 36px;
}

.boek-form {
    max-width: 460px;
    margin: 0 auto;
    padding: 28px;
    background: rgba(255, 255, 255, .04);
    border: 0.5px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    text-align: left;
}

.boek-form label {
    display: block;
    margin-bottom: 14px;
}

.boek-form label > span {
    display: block;
    font-size: 11px;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 500;
    margin-bottom: 8px;
}

.boek-form input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, .04);
    border: 0.5px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    transition: border-color var(--transition-fast);
}

.boek-form input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.boek-form input:focus {
    outline: none;
    border-color: var(--sand);
}

.boek-form button {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    background: var(--sand);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: var(--ls-tight);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.boek-form button:hover {
    background: var(--white);
}

.boek-form__note {
    margin: 16px 0 0;
    font-size: 11px;
    letter-spacing: var(--ls-mid);
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .boek-hero__inner,
    .boek-pullquote__inner,
    .boek-auteur__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .boek-hero__inner {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .boek-hero__media {
        order: -1;
        aspect-ratio: 4 / 3;
        max-width: var(--mw-tight);
        margin-inline: auto;
        width: 100%;
    }

    .boek-hero__text {
        max-width: none;
    }

    .boek-pullquote__media {
        max-width: 320px;
        margin-inline: auto;
        aspect-ratio: 4 / 3;
    }

    .boek-auteur__media {
        max-width: 320px;
        margin-inline: auto;
    }

    .opbouw-model {
        grid-template-columns: 1fr;
    }

    .opbouw-col--mid {
        padding: 24px 20px;
    }
}

@media (max-width: 680px) {
    .boek-opening__inner,
    .boek-over__inner,
    .boek-pullquote__inner,
    .boek-opbouw__inner,
    .boek-experts__inner,
    .boek-bronnen__inner,
    .boek-auteur__inner,
    .boek-cta__inner {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .boek-cta-wrap {
        padding: 32px 16px;
    }

    .boek-experts__grid,
    .boek-bronnen__grid {
        grid-template-columns: 1fr;
    }
}


/* === modules/_gratis.css === */

/* =========================================================
   Page: Voor jou (Gratis) — zelftests + essays
   ========================================================= */

/* ---------- 1. Hero — cream background, landscape book image ---------- */
.vj-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.vj-hero .hero-split__media {
    aspect-ratio: 4 / 3;
}

/* On mobile the shared hero-split already stacks; just tune the book image height */
@media (max-width: 900px) {
    .vj-hero .hero-split__media {
        aspect-ratio: 3 / 2;
        max-width: 560px;
    }
}

/* ---------- 2. Zelftests (coming soon) ---------- */
.vj-tests {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.vj-tests__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 80px 48px;
}

.vj-tests__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 16px;
}

.vj-tests__lede {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: 640px;
    margin: 0 0 40px;
}

.vj-tests__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vj-test-card {
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 28px 32px;
    opacity: 0.6;
    cursor: default;
}

.vj-test-card__soon {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: 3px;
    padding: 3px 10px;
    margin-bottom: 20px;
}

.vj-test-card__num {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 14px;
}

.vj-test-card__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.vj-test-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.25;
    color: var(--dark);
    margin: 0 0 12px;
}

.vj-test-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 16px;
}

.vj-test-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.vj-test-card__tag {
    font-family: var(--font-body);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--white);
    border: 0.5px solid var(--rule);
    color: var(--brown);
}

.vj-test-card__meta {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0;
}

/* ---------- 3. Essays ---------- */
.vj-essays {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.vj-essays__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 80px 48px;
}

.vj-essays__head {
    margin-bottom: 48px;
}

.vj-essays__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 14px 0 16px;
}

.vj-essays__lede {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: 560px;
    margin: 0;
}

/* Article card grid — 3 columns, matches the expert/bron-card pattern */
.vj-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vj-article-card {
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}

.vj-article-card:hover {
    border-color: var(--olive);
    transform: translateY(-1px);
}

.vj-article-card__tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 12px;
}

.vj-article-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 12px;
    flex: 1;
}

.vj-article-card__excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 20px;
}

.vj-article-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--olive);
    margin-top: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .vj-tests__grid {
        grid-template-columns: 1fr;
    }

    .vj-article-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .vj-tests__inner,
    .vj-essays__inner {
        padding: 56px 24px;
    }

    .vj-article-grid {
        grid-template-columns: 1fr;
    }
}


/* === modules/_zelftest.css === */

/* =========================================================
   Page: Zelftest (aligned with organisaties scale)
   All class names preserved so zelftest.js keeps working.
   ========================================================= */

/* Screen container — JS toggles .active */
.screen {
    display: none;
}

.screen.active {
    display: block;
}

#s-start.screen {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

#s-htest,
#s-subtest {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

#s-email {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

#s-uitslag,
#s-sub-uitslag {
    background: var(--white);
}

/* ---------- 1. Start screen ---------- */
.start {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 96px 48px;
}

.start-kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.start h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 24px;
    max-width: 780px;
}

.start h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.start-intro {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    max-width: 640px;
    margin: 0 0 48px;
}

.bollen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bol {
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.bol:hover,
.bol:focus-visible {
    border-color: var(--olive);
    transform: translateY(-2px);
}

.bol::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: .06;
}

.bol.links::before {
    background: var(--olive);
}

.bol.rechts::before {
    background: var(--terra);
}

.bol-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 14px;
}

.bol-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.bol h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 12px;
}

.bol p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 18px;
}

.bol-dims {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.bol-dim {
    font-family: var(--font-body);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--cream);
    border: 0.5px solid var(--rule);
    color: var(--brown);
}

.bol-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--olive);
}

/* ---------- 2. Test screen (htest + subtest share the same chrome) ---------- */
.htest-header {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 80px 48px 32px;
    border-bottom: 0.5px solid var(--rule);
}

.htest-kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.htest-header h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.htest-header h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--brown);
}

.htest-intro {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: 640px;
    margin: 0;
    padding-bottom: 0;
}

.htest-body {
    max-width: 820px;
    margin-inline: auto;
    padding: 40px 48px 80px;
}

/* Progress bar */
.prog-wrap {
    margin-bottom: 40px;
}

.prog-track {
    height: 3px;
    background: var(--rule);
    border-radius: 2px;
}

.prog-fill {
    height: 3px;
    background: var(--olive);
    border-radius: 2px;
    transition: width .3s ease-out;
}

.prog-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 500;
}

/* Question */
.v-sectie-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 12px;
}

.v-tekst {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.625rem);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 28px;
}

/* Scale (1-5 buttons) */
.schaal {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.s-btn {
    flex: 1;
    padding: 14px 4px;
    border: 0.5px solid var(--rule);
    background: var(--white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        color var(--transition-fast),
        background var(--transition-fast);
}

.s-btn:hover {
    border-color: var(--olive);
    color: var(--olive);
}

.s-btn.sel {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}

.schaal-lbl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.schaal-lbl span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* Nav (prev / next / counter) */
.v-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 0.5px solid var(--rule);
    gap: 16px;
}

.btn-prev-v {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.btn-prev-v:hover {
    color: var(--dark);
}

.btn-next-v {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 16px 32px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.btn-next-v:hover {
    background: var(--dark);
}

.btn-next-v:disabled {
    opacity: .3;
    cursor: default;
}

.v-teller {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ---------- 3. Email gate ---------- */
.email-gate {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 96px 48px;
}

.eg-inner {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
}

.eg-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.eg-kop {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.eg-sub {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 28px;
}

.eg-voordelen {
    background: var(--white);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.eg-v {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brown);
    font-weight: 300;
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.eg-v::before {
    content: '✓';
    color: var(--olive);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.eg-naam-inp,
.eg-email-inp {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 0.5px solid var(--rule);
    border-radius: 4px;
    width: 100%;
    background: var(--white);
    margin-bottom: 10px;
    color: var(--dark);
    transition: border-color var(--transition-fast);
}

.eg-naam-inp:focus,
.eg-email-inp:focus {
    outline: none;
    border-color: var(--olive);
}

.eg-submit {
    width: 100%;
    padding: 16px;
    margin-top: 6px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.eg-submit:hover {
    background: var(--dark);
}

.eg-note {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin-top: 16px;
}

.eg-skip {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 14px;
    transition: color var(--transition-fast);
}

.eg-skip:hover {
    color: var(--dark);
}

/* ---------- 4. Uitslag (main result) ---------- */
.uitslag-wrap {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 80px 48px;
}

.u-kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.u-h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.u-intro {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    max-width: 640px;
    margin: 0 0 40px;
}

/* Score bars */
.u-bars {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 720px;
}

.u-bar-h {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 13px;
    margin-bottom: 6px;
}

.u-bar-naam {
    font-weight: 500;
    color: var(--dark);
}

.u-bar-score {
    color: var(--muted);
    font-weight: 500;
}

.u-track {
    height: 6px;
    background: var(--rule);
    border-radius: 3px;
}

.u-fill {
    height: 6px;
    border-radius: 3px;
    background: var(--olive);
    transition: width .8s ease-out;
}

.u-fill.top {
    background: var(--dark);
}

.u-fill.mid {
    background: var(--sage);
}

/* Verdiep-je-verder heading above subtest grid */
.uitslag-wrap > div[style*="margin-bottom:12px"],
.uitslag-wrap > div[style*="margin-bottom: 12px"] {
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    margin: 0 0 20px !important;
}

.u-subtest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 48px;
}

.u-stc {
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 22px 24px;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.u-stc:hover,
.u-stc:focus-visible {
    border-color: var(--olive);
    transform: translateY(-1px);
}

.u-stc-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.u-stc-titel {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.u-stc-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brown);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
}

.u-stc-link {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--olive);
    font-weight: 500;
}

/* Dark CTA block at end of uitslag */
.u-cta-blok {
    background: var(--dark);
    border-radius: 8px;
    padding: 36px;
}

.u-cta-kop {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 10px;
}

.u-cta-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 560px;
}

.u-cta-btn {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 16px 32px;
    background: var(--sand);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.u-cta-btn:hover {
    background: var(--white);
}

/* ---------- 5. Sub-uitslag extras ---------- */
.su-niveau {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.su-niveau.hoog {
    background: #FDECEA;
    color: #8B2020;
    border: 0.5px solid #F0BDB8;
}

.su-niveau.mid {
    background: #FEF6E4;
    color: #7A5010;
    border: 0.5px solid #F0DFA8;
}

.su-niveau.laag {
    background: #EAF3E8;
    color: #2A5A18;
    border: 0.5px solid #B8D8B0;
}

/* Oefening block */
.oefening-blok {
    max-width: var(--content-max);
    margin: 0 auto 40px;
    padding: 28px 32px;
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    margin-inline: 48px;
}

.ob-kicker {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 10px;
}

.ob-tekst {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
}

/* Tips */
.tips-sectie {
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 0 48px 48px;
}

.tips-h {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 32px;
    margin-bottom: 20px;
    border-top: 0.5px solid var(--rule);
}

.tip-item {
    padding: 20px 0;
    border-bottom: 0.5px solid var(--rule);
    display: flex;
    gap: 20px;
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    line-height: 1.4;
}

.tip-titel {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.tip-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--brown);
    font-weight: 300;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .bollen,
    .u-subtest-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .start,
    .email-gate {
        padding: 56px 24px;
    }

    .htest-header {
        padding: 56px 24px 28px;
    }

    .htest-body {
        padding: 32px 24px 56px;
    }

    .uitslag-wrap {
        padding: 56px 24px;
    }

    .oefening-blok {
        margin-inline: 24px;
        padding: 24px;
    }

    .tips-sectie {
        padding: 0 24px 40px;
    }

    .u-cta-blok {
        padding: 28px 24px;
    }

    .v-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-next-v {
        flex: 1;
    }
}


/* === modules/_legal.css === */

/* =========================================================================
   Legal pages (Privacy, Algemene voorwaarden)
   Minimal centered hero + readable prose column.
   ========================================================================= */

.legal-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.legal-hero__inner {
    max-width: 720px;
    margin-inline: auto;
    padding: 88px 48px 64px;
    text-align: center;
}

.legal-hero__inner .kicker {
    margin-bottom: 20px;
}

.legal-hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 18px;
}

.legal-hero__meta {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}

.legal-body {
    padding: 80px 48px;
}

.legal-body__inner {
    max-width: 680px;
    margin-inline: auto;
    font-family: var(--font-body);
    color: var(--brown);
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 300;
}

.legal-body__lede {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0 0 40px;
}

.legal-body__inner h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--dark);
    line-height: 1.3;
    margin: 40px 0 12px;
}

.legal-body__inner p {
    margin: 0 0 18px;
}

.legal-body__inner ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 18px;
}

.legal-body__inner li {
    margin-bottom: 6px;
}

.legal-body__inner strong {
    color: var(--dark);
    font-weight: 500;
}

.legal-body__inner a {
    color: var(--olive);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 0.5px;
    transition: color var(--transition-fast);
}

.legal-body__inner a:hover {
    color: var(--dark);
}

@media (max-width: 680px) {
    .legal-hero__inner {
        padding: 56px 24px 40px;
    }

    .legal-body {
        padding: 56px 24px;
    }
}


/* === modules/_single.css === */

/* =========================================================
   Single post — article template
   ========================================================= */

/* ---------- Hero (cream, centered) ---------- */
.article-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
    text-align: center;
}

.article-hero__inner {
    max-width: 760px;
    margin-inline: auto;
    padding: 80px 48px 72px;
}

.article-hero .kicker {
    display: inline-block;
    margin-bottom: 24px;
}

.article-hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 28px;
}

.article-hero__meta {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 500;
}

.article-hero__meta-sep {
    margin: 0 10px;
    opacity: .5;
}

/* ---------- Body (white, narrow column) ---------- */
.article-body {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.article-body__inner {
    max-width: 680px;
    margin-inline: auto;
    padding: 72px 48px;
}

/* Base prose */
.article-body__inner p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 1.25em;
}

.article-body__inner p:last-child {
    margin-bottom: 0;
}

/* Section headings */
.article-body__inner h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    color: var(--dark);
    margin: 2.25em 0 0.75em;
}

.article-body__inner h2:first-child {
    margin-top: 0;
}

.article-body__inner h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.4;
    color: var(--dark);
    margin: 1.75em 0 0.5em;
    letter-spacing: .01em;
}

/* Pull-quote / blockquote */
.article-body__inner blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.55;
    color: var(--dark);
    margin: 2em 0;
    padding: 28px 0 28px 28px;
    border-left: 3px solid #C4A882;
}

.article-body__inner blockquote p {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
    margin: 0;
}

/* Lists */
.article-body__inner ul,
.article-body__inner ol {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    padding-left: 1.5em;
    margin: 0 0 1.25em;
}

.article-body__inner li {
    margin-bottom: .5em;
}

/* Strong emphasis */
.article-body__inner strong {
    font-weight: 500;
    color: var(--dark);
}

.article-body__inner em {
    font-style: italic;
    color: var(--dark);
}

/* Horizontal rule as section divider */
.article-body__inner hr {
    border: none;
    border-top: 0.5px solid var(--rule);
    margin: 2.5em 0;
}

/* Exercise / special block — wrapped in .article-exercise by the editor */
.article-exercise {
    background: var(--cream);
    border: 0.5px solid var(--rule);
    border-radius: 6px;
    padding: 36px 40px;
    margin: 2.5em 0;
}

.article-exercise__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.article-exercise h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.375rem;
    color: var(--dark);
    margin: 0 0 20px;
}

.article-exercise .step-num {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 6px;
}

/* Sources block */
.article-sources {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 0.5px solid var(--rule);
}

.article-sources h2 {
    font-size: 13px !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    margin: 0 0 1em !important;
}

.article-sources p,
.article-sources li {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: var(--muted) !important;
}

/* ---------- Author block (cream) ---------- */
.article-author {
    background: var(--cream);
    border-bottom: 0.5px solid var(--rule);
}

.article-author__inner {
    max-width: 680px;
    margin-inline: auto;
    padding: 56px 48px;
}

.article-author__name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--dark);
    margin: 12px 0 16px;
}

.article-author__text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--brown);
    font-weight: 300;
    margin: 0 0 16px;
}

.article-author__text em {
    font-style: italic;
    color: var(--dark);
}

.article-author__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--olive);
    border-bottom: 0.5px solid var(--olive);
    padding-bottom: 1px;
    transition: color var(--transition-fast);
}

.article-author__link:hover {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

/* ---------- Back nav ---------- */
.article-nav {
    background: var(--white);
    border-bottom: 0.5px solid var(--rule);
}

.article-nav__inner {
    max-width: 680px;
    margin-inline: auto;
    padding: 24px 48px;
}

.article-nav__back {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.article-nav__back:hover {
    color: var(--dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
    .article-hero__inner,
    .article-body__inner,
    .article-author__inner,
    .article-nav__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-hero__inner {
        padding-top: 56px;
        padding-bottom: 48px;
    }

    .article-body__inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .article-exercise {
        padding: 24px;
    }
}
