/* Joyce Datema — site stylesheet
   Fonts: Newsreader (serif, koppen) + Hanken Grotesk (sans, tekst) */

:root {
    --navy: #1A2B45;
    --ink: #2B2B2B;
    --coral: #C2249B;
    --coral-dk: #9E1B7E;
    --coral-hover: #AE2090;
    --coral-lt: #F58ED9;
    --coral-tint: #FDEAF7;
    --teal: #0E867C;
    --teal-dk: #0B6157;
    --teal-2: #1E8F88;
    --blue: #3C6078;
    --cream: #F3EFE9;
    --line: #EAE4D8;
    --line-2: #EFE8DC;
    --sand: #C9C0AD;
    --sand-2: #D9CFBC;
    --paper: #FFFFFF;
    --util: #FAF8F4;
    --muted: #6B7280;
    --serif: 'Newsreader',Georgia,'Times New Roman',serif;
    --sans: 'Hanken Grotesk',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

    img.ico {
        display: inline-block;
        vertical-align: middle;
        flex: none;
        max-width: none;
    }

a {
    color: inherit;
}

/* Same as zoeken.html: unstyled <mark> uses the browser highlight (yellow + black). */
mark {
    background-color: yellow;
    color: black;
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.018em;
    margin: 0;
    text-wrap: balance;
}

p {
    margin: 0;
}

/* Layout */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding-left: clamp(20px,5vw,40px);
    padding-right: clamp(20px,5vw,40px);
}

.wrap-narrow {
    max-width: 900px;
}

.wrap-read {
    max-width: 820px;
}

.sec {
    padding-top: clamp(56px,8vw,110px);
    padding-bottom: clamp(56px,8vw,110px);
}

.sec-sm {
    padding-top: clamp(44px,6vw,80px);
    padding-bottom: clamp(44px,6vw,80px);
}

.bd-top {
    border-top: 1px solid var(--line);
}

.bg-cream {
    background: var(--cream);
}

.bg-teal {
    background: var(--teal);
}

.bg-navy {
    background: var(--navy);
}

.bg-coral {
    background: var(--coral);
}

/* Utility top bar */
.util {
    background: var(--util);
    border-bottom: 1px solid var(--line-2);
}

.util-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 18px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.util a {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .util a:hover {
        color: var(--coral-hover);
    }

.util .sep {
    color: var(--sand-2);
}

.lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
}

.util a.active,
.util a[aria-current="page"] {
    color: var(--coral-dk);
    font-weight: 700;
}

.util .lang a[aria-current] {
    color: var(--coral-dk);
}

.util .lang a.off {
    color: #9AA6B4;
}

    .util .lang a.off:hover {
        color: var(--coral-hover);
    }

/* Masthead */
.masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(1.1) blur(6px);
    -webkit-backdrop-filter: saturate(1.1) blur(6px);
    border-bottom: 1px solid var(--line);
    transition: background .18s ease, box-shadow .18s ease;
}

    .masthead.is-scrolled {
        background: rgba(255,255,255,.97);
        box-shadow: 0 1px 0 var(--line), 0 10px 28px rgba(26, 43, 69, .07);
    }

.bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 28px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

    .brand img {
        height: 40px;
        width: auto;
    }

    .brand span {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        letter-spacing: -.01em;
    }

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 26px;
}

    .nav a {
        font-size: 16.5px;
        font-weight: 500;
        color: var(--navy);
        text-decoration: none;
    }

        .nav a:hover {
            color: var(--coral-hover);
        }

        .nav a.active {
            font-weight: 600;
            color: var(--coral-dk);
        }

/* Nav dropdowns */
.submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu .lvl-ico {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--coral-tint);
    color: var(--coral-dk);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .14s ease,color .14s ease;
}

.submenu a:hover .lvl-ico {
    background: var(--coral-hover);
    color: #fff;
}

    .submenu a:hover .lvl-ico .ico {
        filter: brightness(0) invert(1);
    }

.submenu a.active .lvl-ico {
    background: var(--coral-dk);
    color: #fff;
}

    .submenu a.active .lvl-ico .ico {
        filter: brightness(0) invert(1);
    }

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    color: var(--navy);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

    .sub-toggle svg {
        width: 13px;
        height: 13px;
        transition: transform .2s ease;
    }

    .sub-toggle:hover {
        color: var(--coral-hover);
    }

@media (min-width:861px) {
    .submenu {
        position: absolute;
        top: 100%;
        left: -12px;
        min-width: 238px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 9px;
        box-shadow: 0 20px 44px rgba(26,43,69,.15);
        padding: 8px;
        margin-top: 6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        pointer-events: none;
        transition: opacity .16s ease,transform .16s ease,visibility .16s;
        z-index: 60;
    }

    .nav-item::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 8px;
    }

    .nav-item:hover .submenu, .nav-item:focus-within .submenu, .nav-item.open .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-item:hover .sub-toggle svg, .nav-item:focus-within .sub-toggle svg, .nav-item.open .sub-toggle svg {
        transform: rotate(180deg);
    }

    .submenu a {
        padding: 11px 14px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink);
        white-space: nowrap;
        text-decoration: none;
    }

        .submenu a:hover {
            background: var(--coral-tint);
            color: var(--coral-hover);
        }

        .submenu a.active {
            color: var(--coral-dk);
            background: var(--cream);
        }
}

/* Anchor targets clear the sticky header */
section[id] {
    scroll-margin-top: 96px;
}

/* Buttons + links */
.btn {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s ease,transform .18s ease;
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    font-size: 17px;
    padding: 16px 28px;
}

    .btn-primary:hover {
        background: var(--coral-hover);
        color: #fff;
    }

/* Nav anchors set color:navy — keep header CTA text white. */
.nav a.btn.btn-primary,
.nav a.btn.btn-primary:hover,
.nav a.btn.btn-primary:focus,
.nav a.btn.btn-primary.cta-txt,
.nav a.btn.btn-primary.cta-txt:hover {
    color: #fff;
}

.btn-sm {
    font-size: 14.5px;
    padding: 10px 18px;
    border-radius: 4px;
}

.btn-invert {
    background: #fff;
    color: var(--coral-dk);
    font-size: 18px;
    padding: 18px 30px;
}

    .btn-invert:hover {
        transform: translateY(-2px);
    }

.arrow {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: var(--coral-dk);
    text-decoration: none;
    border-bottom: 2px solid var(--sand);
    padding-bottom: 2px;
    transition: border-color .18s ease;
}

    .arrow:hover {
        border-color: var(--coral-hover);
    }

.arrow-ghost {
    color: var(--navy);
    font-weight: 600;
}

/* Type helpers */
.eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-dk);
}

.eyebrow-warm {
    color: var(--coral-lt);
}

.eyebrow-blue {
    color: var(--blue);
}

.h-hero {
    font-size: clamp(40px,6.6vw,84px);
    line-height: .99;
    letter-spacing: -.02em;
}

.h1 {
    font-size: clamp(40px,6.2vw,76px);
    line-height: 1;
}

.h2 {
    font-size: clamp(30px,4.4vw,54px);
    line-height: 1.04;
}

.h3 {
    font-size: clamp(24px,2.8vw,34px);
    line-height: 1.12;
    letter-spacing: -.012em;
}

.lead {
    font-size: clamp(18px,1.5vw,21px);
    line-height: 1.62;
    color: var(--ink);
}

.serif-em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--coral-dk);
}

.on-dark {
    color: #F7F3EC;
}

.on-dark-soft {
    color: #C6CEDA;
}

.coral {
    color: var(--coral-dk);
}

.coral-lt {
    color: var(--coral-lt);
}

/* CMS plain links only — TipTap outputs <a> without classes */
:is(.rte-content, .rte-list, .help-tile, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn) {
    color: var(--coral-dk);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.12em;
    text-decoration-color: var(--sand);
}

    :is(.rte-content, .rte-list, .help-tile, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn):hover {
        color: var(--coral-hover);
        text-decoration-color: var(--coral-hover);
    }

.on-dark :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn),
.bg-navy :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn),
.bg-teal :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn) {
    color: var(--coral-lt);
    text-decoration-color: rgba(247, 243, 236, 0.45);
}

    .on-dark :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn):hover,
    .bg-navy :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn):hover,
    .bg-teal :is(.rte-content, .rte-list, .prose, .article-body, .tile:not(.note-tile), .tile__quote) a:not([class]):not(.btn):hover {
        color: #fff;
        text-decoration-color: #fff;
    }

/* Breadcrumb */
.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    color: var(--muted);
    padding-top: clamp(28px,4vw,44px);
}

    .crumbs a {
        color: var(--blue);
        text-decoration: none;
        font-weight: 500;
    }

        .crumbs a:hover {
            color: var(--coral-hover);
        }

    .crumbs [aria-current] {
        color: var(--navy);
        font-weight: 600;
    }

    .crumbs .s {
        color: var(--sand);
    }

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: clamp(24px,3vw,40px);
}

.cols {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(32px,5vw,72px);
}

.col {
    flex: 1 1 360px;
    min-width: 280px;
}

.between {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px,4vw,56px);
}

/* Cards / lists */
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.tile {
    padding: 26px 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.rule-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .rule-list li {
        padding: 22px 0;
        border-top: 1px solid var(--line-2);
        font-size: clamp(17px,1.4vw,20px);
        line-height: 1.5;
        color: var(--navy);
        font-weight: 500;
    }

.dot {
    flex: none;
    width: 9px;
    height: 9px;
    margin-top: 7px;
    border-radius: 2px;
    background: var(--coral);
}

.dot-teal {
    background: var(--teal-2);
}

/* Quote */
.quote-full {
    margin: 0 auto;
    text-align: center;
    padding-top: clamp(40px,5vw,64px);
    border-top: 1px solid var(--line-2);
}

.quote-full--no-border {
    border-top: 0;
}

.quote-full blockquote {
    margin: 0 auto;
    max-width: 22ch;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy);
    font-size: clamp(34px,6vw,72px);
    line-height: 1.04;
    letter-spacing: -.02em;
}

.quote-big {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px,5.4vw,68px);
    line-height: 1.04;
    letter-spacing: -.02em;
}

/* FAQ */
details.faq {
    border-bottom: 1px solid var(--line-2);
}

    details.faq summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        padding: 22px 0;
        font-family: var(--serif);
        font-weight: 500;
        color: var(--navy);
        font-size: clamp(18px,1.8vw,23px);
        line-height: 1.24;
        letter-spacing: -.008em;
    }

        details.faq summary::-webkit-details-marker {
            display: none;
        }

.faq-ico {
    flex: none;
    margin-top: 4px;
    font-size: 24px;
    color: var(--coral);
    line-height: 1;
    transition: transform .22s ease;
}

details.faq[open] .faq-ico {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 0 24px;
    max-width: 66ch;
}

.faq-by {
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
}

/* External link icon */
.ext {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .ext svg {
        opacity: .7;
    }

/* Footer */
.site-footer {
    background: var(--navy);
    color: #E7E0D4;
}

    .site-footer .cols {
        justify-content: space-between;
        gap: 44px 56px;
    }

    .site-footer h3 {
        font-family: var(--sans);
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #7E8AA0;
        margin: 0 0 16px;
    }

    .site-footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .site-footer a {
        color: #E7E0D4;
        text-decoration: none;
        font-size: 16.5px;
    }

        .site-footer a:hover {
            color: var(--coral-lt);
        }

.footer-tag {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.35;
    color: #F7F3EC;
    max-width: 26ch;
    margin: 20px 0 0;
}

.footer-legal {
    border-top: 1px solid #2C3E5C;
}

    .footer-legal .bar-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 24px;
        justify-content: space-between;
        align-items: center;
        padding-top: 22px;
        padding-bottom: 22px;
        font-size: 13.5px;
        color: #8C97A8;
    }

    .footer-legal a {
        color: #8C97A8;
        text-decoration: none;
    }

        .footer-legal a:hover {
            color: #E7E0D4;
        }

address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: #B9C2D0;
    margin: 22px 0 0;
}

    address a {
        color: #F7F3EC;
        text-decoration: none;
        border-bottom: 1px solid var(--blue);
    }

/* Prose (artikel) */
.prose p {
    margin: 0 0 22px;
    font-size: clamp(18px,1.35vw,20px);
    line-height: 1.7;
}

.prose h2 {
    margin: 44px 0 16px;
    font-size: clamp(24px,2.8vw,34px);
    line-height: 1.12;
}

/* Media placeholders (vervang door echte afbeeldingen) */
.media {
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--line);
}

    .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ph {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #A69C89;
    font-size: 13px;
    padding: 16px;
    background: var(--cream);
    width: 100%;
    height: 100%;
}

.ratio-3-2 {
    aspect-ratio: 3/2;
}

.ratio-16-9 {
    aspect-ratio: 16/9;
}

.ratio-16-10 {
    aspect-ratio: 16/10;
}

.ratio-1-1 {
    aspect-ratio: 1/1;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid #E2D9C8;
    flex: none;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.logo-cell {
    width: clamp(132px,17vw,172px);
    height: 68px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a6;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 18px;
    text-align: center;
}

    .logo-cell img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    z-index: 100;
}

    .skip:focus {
        left: 8px;
    }

/* Beeldbank / fotogalerij */
.gallery {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: clamp(10px,1.4vw,18px);
}

    .gallery figure {
        margin: 0;
    }

.gcell {
    grid-column: span 2;
}

    .gcell.wide {
        grid-column: span 4;
    }

    .gcell.half {
        grid-column: span 3;
    }

.g-cap {
    margin-top: 9px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--muted);
}

.ratio-3-4 {
    aspect-ratio: 3/4;
}

.ratio-4-5 {
    aspect-ratio: 4/5;
}

/* Teamlid — mailadres */
.member-mail {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    word-break: break-word;
}

    .member-mail:hover {
        color: var(--coral-hover);
    }

    .member-mail svg {
        opacity: .8;
        flex: none;
    }

/* Aanpak — 6 bouwstenen */
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(14px,1.7vw,22px);
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: clamp(22px,2.4vw,32px);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.step-ico {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: none;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--coral-tint);
    border: 1px solid var(--line);
    color: var(--coral-dk);
}

    .step-ico svg {
        width: 26px;
        height: 26px;
    }

.step-num {
    font-family: var(--serif);
    font-size: clamp(30px,3vw,42px);
    line-height: 1;
    color: var(--sand);
}

.step-name {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy);
    font-size: clamp(21px,2.2vw,26px);
    letter-spacing: -.012em;
}

.step-q {
    margin: 7px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--teal-dk);
}

.step-desc {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
}

.step-res {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line-2);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--muted);
}

    .step-res b {
        font-weight: 700;
        color: var(--blue);
    }
/* Niveau-icoon badge */
.niv-ico {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: none;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--coral-tint);
    border: 1px solid var(--line);
    color: var(--coral-dk);
}

    .niv-ico svg {
        width: 25px;
        height: 25px;
    }

@media (max-width:860px) {
    .gallery {
        grid-template-columns: repeat(2,1fr);
    }

    .gcell, .gcell.wide, .gcell.half {
        grid-column: span 1;
    }

    .steps {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:440px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width:560px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   RESPONSIVE — mobile navigation + breakpoints
   ============================================================ */

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: -6px -8px -6px 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
}

    .nav-toggle:hover {
        background: rgba(26,43,69,.05);
    }

    .nav-toggle .bars {
        position: relative;
        display: block;
        width: 24px;
        height: 16px;
    }

        .nav-toggle .bars span {
            position: absolute;
            left: 0;
            right: 0;
            height: 2.4px;
            background: currentColor;
            border-radius: 2px;
            transition: transform .24s ease,opacity .18s ease,top .24s ease;
        }

            .nav-toggle .bars span:nth-child(1) {
                top: 0;
            }

            .nav-toggle .bars span:nth-child(2) {
                top: 6.8px;
            }

            .nav-toggle .bars span:nth-child(3) {
                top: 13.6px;
            }

.bar.open .nav-toggle .bars span:nth-child(1) {
    top: 6.8px;
    transform: rotate(45deg);
}

.bar.open .nav-toggle .bars span:nth-child(2) {
    opacity: 0;
}

.bar.open .nav-toggle .bars span:nth-child(3) {
    top: 6.8px;
    transform: rotate(-45deg);
}

/* Tablet: nav gets a little tighter before collapsing */
@media (max-width:960px) {
    .nav {
        gap: 6px 18px;
    }

        .nav a {
            font-size: 16px;
        }
}

/* Mobile nav — collapse the menu behind the hamburger */
@media (max-width:860px) {
    .bar {
        flex-wrap: nowrap;
        position: static;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(26,43,69,.10);
        padding: 6px clamp(20px,5vw,40px) 16px;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        display: none;
    }

    .bar.open .nav {
        display: flex;
    }

    .nav a {
        font-size: 18px;
        font-weight: 500;
        padding: 14px 2px;
        border-bottom: 1px solid var(--line-2);
    }

        .nav a:last-child {
            border-bottom: none;
        }

        .nav a.btn {
            display: block;
            width: 100%;
            box-sizing: border-box;
            margin-top: 14px;
            text-align: center;
            font-weight: 700;
            padding: 16px 24px;
            border-bottom: none;
        }

        .nav a.btn-sm {
            font-size: 16px;
        }
}

/* Mobile — dropdown submenus as tap-to-expand accordions */
@media (max-width:860px) {
    .nav-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid var(--line-2);
    }

        .nav-item > a {
            flex: 1 1 auto;
            border-bottom: none;
        }

    .sub-toggle {
        width: 54px;
        height: 54px;
        color: var(--navy);
        margin-right: -8px;
    }

    .submenu {
        flex-basis: 100%;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 2px 0 12px 16px;
    }

    .nav-item.open .submenu,
    .nav-item.is-current-branch .submenu {
        display: flex;
    }

    .nav-item.open .sub-toggle svg,
    .nav-item.is-current-branch .sub-toggle svg {
        transform: rotate(180deg);
    }

    .nav .submenu a {
        font-size: 16px;
        font-weight: 500;
        color: var(--muted);
        padding: 11px 2px;
        border-bottom: none;
    }

        .nav .submenu a:hover, .nav .submenu a.active {
            color: var(--coral-hover);
        }
}

/* Stack multi-column layouts cleanly on small screens. */
@media (max-width:680px) {
    .cols > *, .between > *, .col,
    .hero__text, .hero__media, .band__text,
    .tier__intro, .tier__prices, .level__head, .level__body,
    .feature-link__text, .event-card__body,
    .teal-cols__lead, .teal-cols__body,
    .footer-about, .footer-col {
        min-width: 0;
        flex-basis: 100%;
    }

    .between > .btn, .band .btn, .feature-link > .btn {
        width: 100%;
        text-align: center;
    }

    .card {
        text-align: left;
    }
}

/* Small phones: tighten section rhythm + gutters, keep touch targets */
@media (max-width:560px) {
    body {
        font-size: 17px;
    }

    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .util-in {
        justify-content: center;
        gap: 4px 14px;
    }

    .logo-cell {
        width: calc(50% - 7px);
    }

    .quote-full blockquote {
        max-width: none;
    }

    details.faq summary {
        gap: 16px;
    }

    .footer-legal .bar-legal {
        justify-content: flex-start;
    }
}

/* Guard against accidental overflow anywhere.
   Use clip (not hidden) so position:sticky on .masthead keeps working. */
html, body {
    overflow-x: clip;
}

img, svg, video {
    max-width: 100%;
}

/* ============================================================
   COMPONENTS & UTILITIES
   Semantic classes that replace all former inline styles, so the
   markup stays clean HTML for CMS (Umbraco) implementation.
   ============================================================ */

/* --- Spacing utilities --- */
.u-mt-xs {
    margin-top: 14px;
}

.u-mt-s {
    margin-top: 18px;
}

.u-mt-sm {
    margin-top: 24px;
}

.u-mt-md {
    margin-top: 30px;
}

.u-mt-lg {
    margin-top: 38px;
}

.u-mt-xl {
    margin-top: clamp(28px,4vw,48px);
}

.u-mb-md {
    margin-bottom: clamp(24px,3vw,36px);
}

.u-mb-lg {
    margin-bottom: clamp(24px,3.5vw,44px);
}

.u-mb-xl {
    margin-bottom: clamp(32px,4.5vw,56px);
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-l {
    padding-bottom: clamp(40px,5vw,64px);
}

.pb-xl {
    padding-bottom: clamp(48px,6vw,80px);
}

/* --- Measure (line-length) utilities --- */
.measure-narrow {
    max-width: 46ch;
}

.measure {
    max-width: 56ch;
}

.measure-wide {
    max-width: 72ch;
}

.headline-narrow {
    max-width: 16ch;
}

.headline-wide {
    max-width: 20ch;
}

/* --- Heading size variants --- */
.h2-xl {
    font-size: clamp(32px,5vw,64px);
    line-height: 1.04;
}

.h2-faq {
    font-size: clamp(28px,3.8vw,46px);
}

.h3-xl {
    font-size: clamp(28px,3.8vw,46px);
}

/* --- Figures / media --- */
main figure {
    margin: 0;
}

.media-pano {
    aspect-ratio: 21/9;
}

.media-tall {
    height: clamp(380px,46vw,560px);
    aspect-ratio: auto;
}

/* --- Hero (home) --- */
.hero__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(40px,6vw,72px);
}

.hero__text {
    flex: 1 1 460px;
    min-width: 280px;
}

.hero__media {
    flex: 1 1 360px;
    min-width: 280px;
}

.statement {
    font-family: var(--serif);
    font-style: normal;
    color: var(--navy);
    font-size: clamp(23px,3vw,34px);
    line-height: 1.18;
    max-width: 18ch;
}

.lede-em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--coral-dk);
    font-size: clamp(24px,3.6vw,42px);
    line-height: 1.14;
    max-width: 22ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 26px;
}

/* --- Two-column helpers --- */
.cols--center {
    align-items: center;
}

.cols--top {
    align-items: flex-start;
}

/* --- Event detail: hero + info panel --- */
.event-detail-top {
    --event-detail-gap: clamp(24px,4vw,48px);
    gap: var(--event-detail-gap);
}

.event-detail-top__media {
    flex: 1 1 58%;
    min-width: min(100%,280px);
}

.event-info-panel {
    flex: 1 1 320px;
    max-width: 420px;
    align-self: stretch;
    padding: clamp(20px,2.5vw,28px);
    box-shadow: 0 12px 40px rgba(15,35,52,.08);
}

.event-info-panel__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.1rem,1.8vw,1.35rem);
}

.event-info-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.event-info-panel__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.event-info-panel__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    background: rgba(0,128,128,.08);
    border-radius: 10px;
}

.event-info-panel__primary {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--ink);
}

.event-info-panel__primary--paid {
    color: var(--ink);
}

.event-info-panel__secondary {
    margin: .25rem 0 0;
    font-size: .95rem;
    line-height: 1.4;
    color: var(--ink-muted, #5a6570);
}

    .event-info-panel__secondary a {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

.event-info-panel__cta {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.event-info-panel__icon--euro {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.15rem;
}

.event-map {
    height: 220px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: .75rem;
}

@media (max-width: 900px) {
    .event-info-panel {
        max-width: none;
    }
}

.col--end {
    align-self: flex-end;
}

.col--center {
    align-self: center;
}

.band__text {
    flex: 1 1 460px;
    min-width: 300px;
}

/* --- Split check-lists (blijft mensenwerk / kan digitale collega) --- */
.split-lists {
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 48px;
}

    .split-lists > div {
        flex: 1 1 200px;
        min-width: 190px;
    }

.list-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 12px;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .check-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-weight: 400;
        font-size: 18px;
        color: var(--ink);
        line-height: 1.4;
        padding: 8px 0;
    }

/* rule-list with a bottom border */
.rule-list.is-bounded {
    border-bottom: 1px solid var(--line-2);
}

/* --- Outcomes grid (leuker/beter/sneller/anders) --- */
.outcome {
    padding-top: 22px;
    border-top: 3px solid var(--coral);
}

.outcome--teal {
    border-top-color: var(--teal);
}

.outcome p {
    margin-top: 14px;
    font-size: clamp(16px,1.35vw,18px);
    line-height: 1.55;
}

/* --- Levels list (waar staan jullie nu) --- */
.levels {
    border-bottom: 1px solid var(--line-2);
}

.levels--mt {
    margin-top: clamp(32px,4vw,52px);
}

.level {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 48px;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(28px,3.6vw,40px) clamp(12px,2vw,24px);
    border-top: 1px solid var(--line-2);
    text-decoration: none;
    color: inherit;
}

    .level:hover .level__title {
        color: var(--coral-hover);
    }

.level__head {
    display: flex;
    gap: clamp(18px,2.4vw,34px);
    align-items: center;
    flex: 1 1 300px;
    min-width: 260px;
}

.level__num {
    font-family: var(--serif);
    font-size: clamp(20px,2vw,26px);
    color: var(--sand);
}

.level__title {
    font-size: clamp(28px,3.4vw,44px);
    transition: color .18s ease;
}

.level__aud {
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--blue);
}

.level__body {
    flex: 1 1 380px;
    min-width: 280px;
    max-width: 50ch;
}

    .level__body p {
        font-size: clamp(17px,1.4vw,19.5px);
        line-height: 1.6;
    }

.level__match {
    margin-top: 14px;
    font-size: 15px;
    color: var(--muted);
}

    .level__match strong {
        color: var(--teal);
    }

/* --- Dark / colored CTA bands --- */
.dark-lead {
    margin-top: 26px;
    font-size: clamp(18px,1.5vw,21px);
    line-height: 1.62;
    color: #C6CEDA;
    max-width: 54ch;
}

.teal-lead {
    margin-top: 22px;
    font-size: clamp(18px,1.45vw,20px);
    line-height: 1.6;
    color: #E7F3F1;
    max-width: 48ch;
}

.coral-lead {
    margin-top: 26px;
    font-size: clamp(19px,1.7vw,24px);
    line-height: 1.45;
    color: #fff;
    font-weight: 500;
    max-width: 42ch;
}

.cta-band .h1 {
    color: #fff;
}

.on-teal {
    color: #E7E0D4;
}

/* teal two-column intro (mixed-teams) */
.teal-cols__lead {
    flex: 1 1 380px;
    min-width: 280px;
    font-size: clamp(19px,1.7vw,24px);
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
    max-width: 34ch;
}

.teal-cols__body {
    flex: 1 1 380px;
    min-width: 280px;
    font-size: clamp(17px,1.45vw,20px);
    line-height: 1.62;
    color: #E7F3F1;
    max-width: 52ch;
}

/* --- Quote tiles (mixed-teams "herkenbaar") --- */
.qtile {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qmark {
    font-family: var(--serif);
    font-size: 52px;
    line-height: .7;
    color: var(--coral);
}

.qtile blockquote {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--navy);
    font-size: clamp(20px,1.9vw,24px);
    line-height: 1.3;
}

/* --- Aanbod: tier cards + price rows --- */
.tiers {
    display: flex;
    flex-direction: column;
    gap: clamp(24px,3vw,36px);
}

.tier {
    scroll-margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(28px,4vw,56px);
    padding: clamp(26px,3.4vw,44px);
    box-shadow: 0 2px 14px rgba(26,43,69,.05);
}

.tier__intro {
    flex: 1 1 320px;
    min-width: 260px;
}

.tier__head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tier__num {
    font-family: var(--serif);
    font-size: clamp(22px,2.2vw,30px);
    color: var(--sand);
}

.tier__title {
    font-size: clamp(28px,3.4vw,44px);
}

.tier__aud {
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--blue);
}

.tier__desc {
    margin-top: 20px;
    font-size: clamp(17px,1.4vw,19px);
    line-height: 1.6;
    max-width: 44ch;
}

.tier__prices {
    flex: 1 1 360px;
    min-width: 280px;
    align-self: center;
}

.price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.price__info {
    flex: 1 1 auto;
    min-width: 180px;
}

.price__name {
    font-family: var(--serif);
    font-size: clamp(18px,1.9vw,23px);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -.008em;
}

.price__note {
    margin-top: 4px;
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--muted);
}

.price__value {
    flex: 0 0 auto;
    font-size: clamp(16px,1.5vw,19px);
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

.arrow--sm {
    font-size: 16.5px;
}

/* Featured link block (navy) */
.feature-link {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px,4vw,56px);
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    border-radius: 8px;
    padding: clamp(30px,4vw,52px);
    text-decoration: none;
    color: inherit;
}

.feature-link__text {
    flex: 1 1 460px;
    min-width: 280px;
}

/* Tarieven note tile */
.note-tile {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: flex-start;
}

    .note-tile .dot {
        width: 10px;
        height: 10px;
        margin-top: 6px;
    }

    .note-tile p {
        flex: 1 1 300px;
        font-size: 16px;
        line-height: 1.6;
        max-width: 80ch;
    }

    /* Design: <a class="coral link-underline"> — RTE links inherit body color without this */
    .note-tile a {
        color: var(--coral-dk);
        text-decoration: none;
        border-bottom: 1px solid var(--sand);
    }

        .note-tile a:hover {
            color: var(--coral-hover);
            border-bottom-color: var(--coral-hover);
        }

.link-underline {
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
}

/* --- Event teaser card (home) --- */
.section-bar {
    align-items: flex-end;
}

.event-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(22px,4vw,52px);
    padding: clamp(24px,3.4vw,40px);
    box-shadow: 0 2px 10px rgba(26,43,69,.06);
}

.event-card__date {
    padding-right: clamp(20px,3vw,40px);
    border-right: 1px solid #E2D9C8;
}

.event-card__day {
    font-family: var(--serif);
    color: var(--coral-dk);
    font-size: clamp(44px,6vw,66px);
    line-height: .9;
}

.event-card__month {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
}

.event-card__body {
    flex: 1 1 340px;
    min-width: 250px;
}

.event-card__kicker {
    margin-bottom: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
}

.lead-sm {
    margin-top: 12px;
    font-size: 17.5px;
    line-height: 1.55;
    max-width: 52ch;
}

/* --- Posts / kennis teaser --- */
.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--line-2);
}

    .post-list li {
        border-top: 1px solid var(--line-2);
    }

.post-link {
    display: block;
    padding: clamp(20px,2.6vw,30px) 0;
    text-decoration: none;
    color: inherit;
}

.post__meta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.post__meta--coral {
    color: var(--coral-dk);
}

.post__meta--teal {
    color: var(--teal-dk);
}

.post__meta--blue {
    color: var(--blue);
}

.post-link h3 {
    margin-top: 10px;
}

.post__excerpt {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.55;
    max-width: 70ch;
    color: var(--ink);
}

/* --- Social-proof quote citation --- */
.quote-cite {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.quote-cite__rule {
    width: 34px;
    height: 3px;
    background: var(--coral);
}

.quote-cite__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
}

/* --- FAQ list wrapper --- */
.faq-list {
    border-top: 1px solid var(--line-2);
}

/* --- Footer --- */
.footer-main {
    padding-top: clamp(56px,7vw,88px);
    padding-bottom: 40px;
}

.footer-about {
    flex: 1 1 320px;
}

.footer-col {
    flex: 0 1 160px;
    min-width: 140px;
}

.footer-legal-links {
    display: flex;
    gap: 22px;
}

@media (max-width:560px) {
    .check-list li {
        font-size: 17px;
    }

    .level__title {
        font-size: clamp(26px,7vw,34px);
    }
}

/* Intro wrappers (heading + lead groups) */
.intro-narrow {
    max-width: 640px;
}

.intro {
    max-width: 720px;
}

.intro-wide {
    max-width: 880px;
}

/* Tile as a row (aanpak CTA) */
.tile--row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    align-items: center;
    justify-content: space-between;
}

.tile__quote {
    flex: 1 1 420px;
    min-width: 280px;
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--navy);
    font-size: clamp(18px,1.7vw,22px);
    line-height: 1.4;
    max-width: 52ch;
}

/* Featured-link paragraph */
.feature-p {
    margin-top: 18px;
    font-size: clamp(16px,1.4vw,19px);
    line-height: 1.6;
    color: #C6CEDA;
    max-width: 56ch;
}

/* --- Agenda: event rows --- */
.events {
    border-bottom: 1px solid var(--line);
}

.event {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(20px,4vw,48px);
    padding: clamp(24px,3vw,36px) clamp(4px,1.5vw,16px);
    border-top: 1px solid var(--line);
}

.event__date {
    flex: 0 0 auto;
    text-align: center;
    padding-right: clamp(18px,3vw,36px);
    border-right: 1px solid var(--line);
}

.event__day {
    font-family: var(--serif);
    color: var(--coral-dk);
    font-size: clamp(38px,5vw,56px);
    line-height: .9;
}

.event__mon {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
}

.event__body {
    flex: 1 1 340px;
    min-width: 250px;
}

.event__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-bottom: 10px;
}

.badge {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
}

.badge-teal {
    background: var(--teal);
}

.badge-coral {
    background: var(--coral-dk);
}

.badge-blue {
    background: var(--blue);
}

.event__when {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
}

.event__title {
    font-size: clamp(21px,2.4vw,29px);
}

.event__desc {
    margin-top: 10px;
    font-size: 16.5px;
    line-height: 1.55;
    max-width: 60ch;
}

.event__cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.event__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--teal);
}

.event__price--paid {
    color: var(--navy);
}

.tile--between {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: center;
    justify-content: space-between;
}

    .tile--between p {
        font-size: 16.5px;
        line-height: 1.55;
        max-width: 60ch;
        margin: 0;
    }

/* --- Contact: form + details --- */
.contact-grid {
    gap: clamp(40px,6vw,80px);
}

.contact-form-col {
    flex: 1.4 1 460px;
    min-width: 300px;
}

.contact-side {
    flex: 1 1 300px;
    min-width: 260px;
}

.section-title {
    font-size: clamp(26px,3.2vw,38px);
    margin-bottom: clamp(20px,3vw,28px);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .form__row > div {
        flex: 1 1 200px;
        min-width: 180px;
    }

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
}

    .field input, .field select, .field textarea {
        font-size: 16px;
        color: var(--navy);
        padding: 14px 15px;
        border: 1px solid var(--sand-2);
        border-radius: 5px;
        background: #fff;
        font-family: inherit;
    }

    .field textarea {
        resize: vertical;
        line-height: 1.5;
    }

.form__submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
    margin-top: 4px;
}

.form__note {
    font-size: 14.5px;
    color: var(--muted);
    font-weight: 400;
}

.contact-list {
    border-top: 1px solid var(--line);
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item__label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.contact-item__val {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.arrow--lg {
    font-size: 18px;
    border-bottom-width: 2px;
}

.tile-quote {
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    color: var(--navy);
    font-size: clamp(18px,1.8vw,22px);
    line-height: 1.35;
    margin: 0;
}

.step-flow__num {
    font-family: var(--serif);
    font-size: clamp(30px,3vw,40px);
    color: var(--coral-lt);
}

.step-flow h3 {
    margin-top: 10px;
    font-size: clamp(20px,2vw,25px);
}

.step-flow p {
    margin-top: 10px;
    color: #E7F3F1;
    font-size: 16.5px;
    line-height: 1.55;
}

/* --- Joyce & team page --- */
.media-h-md {
    height: clamp(360px,44vw,520px);
}

.story {
    max-width: 62ch;
}

    .story p {
        font-size: clamp(18px,1.45vw,20px);
        line-height: 1.7;
    }

        .story p + p {
            margin-top: 22px;
        }

.beliefs {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    gap: 0;
}

.belief {
    padding: clamp(28px,3.4vw,40px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.belief__num {
    font-family: var(--serif);
    font-size: clamp(22px,2.4vw,30px);
    color: var(--sand);
}

.belief h3 {
    margin-top: 14px;
    font-size: clamp(22px,2.4vw,28px);
}

.belief p {
    margin-top: 12px;
    font-size: clamp(16.5px,1.35vw,18.5px);
    line-height: 1.55;
}

.quote-cite--light .quote-cite__name {
    color: #E7E0D4;
}

.media--flush {
    border: none;
    border-radius: 0;
}

.team-card__body {
    padding: 22px 24px 26px;
}

.team-card__name {
    font-size: clamp(20px,2vw,25px);
}

.team-card__role {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.team-card__bio {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.55;
}

.team-expand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1.5px dashed var(--sand);
    border-radius: 8px;
    padding: 28px 26px;
}

    .team-expand p {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.55;
    }

.arrow--xs {
    font-size: 15px;
}

.stats {
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}

.stat__num {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--coral-dk);
    font-size: clamp(34px,4vw,48px);
    line-height: 1;
}

.stat__label {
    margin-top: 12px;
    font-size: 16.5px;
    line-height: 1.5;
    max-width: 24ch;
}

/* --- Kennis page --- */
.lead--lg {
    font-size: clamp(19px,1.6vw,23px);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Category chips when a Hero block owns the page header above */
.chips--after-hero {
    margin-top: -8px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.chip {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--sand-2);
    padding: 8px 15px;
    border-radius: 999px;
}

.chip--active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.feature-article {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(28px,4vw,56px);
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.feature-article__media {
    flex: 1 1 420px;
    min-width: 300px;
}

.feature-article__body {
    flex: 1 1 360px;
    min-width: 280px;
}

.article-title {
    margin-top: 14px;
    font-size: clamp(28px,3.6vw,46px);
}

.article-lead {
    margin-top: 18px;
    font-size: clamp(17px,1.4vw,19.5px);
    line-height: 1.6;
    max-width: 52ch;
}

.arrow--plain {
    border: none;
    margin-top: 22px;
    display: inline-block;
    padding: 0;
}

.article-grid {
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}

.article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

    .article-card .media {
        margin-bottom: 18px;
    }

    .article-card .post__meta {
        font-size: 12.5px;
    }

    .article-card h3 {
        margin-top: 10px;
        font-size: clamp(21px,2.2vw,27px);
    }

.article-card__excerpt {
    margin-top: 12px;
    font-size: 16.5px;
    line-height: 1.55;
}

.news-lead {
    margin-top: 20px;
    font-size: clamp(17px,1.4vw,19px);
    line-height: 1.6;
    color: #E7E0D4;
    max-width: 46ch;
}

.news-form {
    flex: 1 1 340px;
    min-width: 280px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

    .news-form input,
    .news-form input[type="email"],
    .news-form input[type="text"],
    .news-form input.form-control {
        flex: 1 1 200px;
        min-width: 180px;
        width: auto;
        height: auto;
        min-height: 0;
        font-size: 16px;
        line-height: 1.4;
        color: var(--navy);
        padding: 15px 16px;
        border: 1px solid rgba(247,243,236,.4);
        border-radius: 5px;
        background: #F7F3EC;
        font-family: inherit;
        box-shadow: none;
    }

    .news-form .btn,
    .news-form button[type="submit"] {
        flex: 0 0 auto;
        align-self: center;
        white-space: nowrap;
    }

/* --- AI-wasstraat page --- */
.teal-strong {
    font-size: clamp(18px,1.55vw,22px);
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
    max-width: 50ch;
}

.wasstraat-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
}

.wstep__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--serif);
    font-size: 20px;
}

.wstep__num--teal {
    background: var(--teal);
}

.wstep__num--coral {
    background: var(--coral);
}

.wstep__num--navy {
    background: var(--navy);
}

.wstep h3 {
    margin-top: 18px;
    font-size: clamp(20px,2vw,25px);
}

.wstep p {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.5;
}

.teams-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid #E2D9C8;
}

.team-item--last {
    border-bottom: 1px solid #E2D9C8;
}

.team-item__name {
    font-family: var(--serif);
    font-size: clamp(20px,2vw,25px);
    font-weight: 500;
    color: var(--navy);
}

.team-item__note {
    margin-top: 4px;
    font-size: 15.5px;
    color: var(--muted);
}

/* --- Spreken page --- */
.topics {
    border-bottom: 1px solid var(--line);
}

.topic {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 44px;
    padding: clamp(28px,3.6vw,40px) clamp(8px,1.6vw,16px);
    border-top: 1px solid var(--line);
}

.topic__head {
    display: flex;
    gap: clamp(18px,2.4vw,32px);
    align-items: baseline;
    flex: 1 1 320px;
    min-width: 260px;
}

.topic__num {
    font-family: var(--serif);
    font-size: clamp(22px,2.2vw,30px);
    color: var(--sand);
}

.topic__title {
    font-size: clamp(23px,2.8vw,34px);
}

.topic__desc {
    flex: 1 1 380px;
    min-width: 280px;
    max-width: 52ch;
    font-size: clamp(17px,1.4vw,19.5px);
    line-height: 1.6;
}

.tile--white {
    background: #fff;
    border: 1px solid var(--line);
}

.format-card__label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
}

.format-card h3 {
    margin-top: 12px;
    font-size: clamp(22px,2.4vw,28px);
}

.format-card p {
    margin-top: 12px;
    font-size: clamp(16.5px,1.35vw,18.5px);
    line-height: 1.55;
}

.takeaways {
    list-style: none;
    margin: 0;
    padding: 0;
}

.takeaway {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 0;
    border-top: 1px solid rgba(247,243,236,.18);
    font-size: clamp(17.5px,1.45vw,20px);
    color: #F7F3EC;
}

    .takeaway .dot {
        margin-top: 7px;
        width: 10px;
        height: 10px;
    }

.testimonial {
    margin: 0;
    max-width: 24ch;
}

    .testimonial blockquote {
        margin: 0;
        font-family: var(--serif);
        font-weight: 500;
        color: var(--navy);
        font-size: clamp(28px,4.4vw,52px);
        line-height: 1.1;
        letter-spacing: -.018em;
    }

.rule-list--plain li {
    font-weight: 400;
    color: var(--ink);
    font-size: clamp(17px,1.4vw,19px);
}

/* --- Artikel (detail) page --- */
.wrap-wide {
    max-width: var(--wrap);
}

/* Keep every block inside an article body aligned to the reading column,
   even when the block's own partial uses the default .wrap (1180px). */
.article-flow .wrap {
    max-width: 820px;
}

.article-head {
    padding-top: clamp(36px,5vw,56px);
    padding-bottom: clamp(24px,3vw,36px);
}

.article-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--coral-dk);
    margin-bottom: 20px;
}

.h1--article {
    font-size: clamp(34px,5.4vw,64px);
}

.standfirst {
    font-family: var(--serif);
    font-style: italic;
    color: var(--blue);
    margin-top: 24px;
    font-size: clamp(19px,1.6vw,23px);
    line-height: 1.5;
}

.byline {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.avatar-sm {
    width: 44px;
    height: 44px;
}

.avatar-lg {
    width: 76px;
    height: 76px;
}

.avatar .ph {
    font-size: 12px;
}

.byline__name {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

    .byline__name a,
    .author__body .h3 a {
        color: inherit;
        text-decoration: none;
    }

        .byline__name a:hover,
        .author__body .h3 a:hover {
            color: var(--coral-hover);
        }

a.avatar {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.byline__meta {
    margin-top: 2px;
    font-size: 14px;
    color: var(--muted);
}

.article-body {
/*    padding-top: clamp(40px,5vw,72px);*/
    padding-bottom: clamp(16px,2vw,24px);
}

.pullquote-wrap {
    padding-top: clamp(24px,3vw,40px);
    padding-bottom: clamp(24px,3vw,40px);
}

.pullquote {
    margin: 0;
    padding: clamp(24px,3vw,36px) 0;
    border-top: 2px solid var(--coral);
    border-bottom: 2px solid var(--coral);
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy);
    font-size: clamp(24px,3.4vw,40px);
    line-height: 1.14;
    letter-spacing: -.014em;
}

.author-box {
    padding-top: clamp(40px,5vw,64px);
    padding-bottom: clamp(40px,5vw,64px);
}

.author {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px,3vw,32px);
    align-items: flex-start;
}

.author__body {
    flex: 1 1 320px;
    min-width: 260px;
}

.author__role {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.author__bio {
    margin-top: 16px;
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 60ch;
}

.related-grid {
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
}

.related-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

    .related-card .media {
        margin-bottom: 16px;
    }

    .related-card .post__meta {
        font-size: 12.5px;
    }

    .related-card h3 {
        margin-top: 8px;
        font-size: clamp(20px,2vw,25px);
    }

/* --- FAQ overview page --- */
a.chip {
    text-decoration: none;
    display: inline-block;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: clamp(40px,5vw,64px);
}

.faq-group {
    scroll-margin-top: 150px;
}

.faq-group__title {
    font-size: clamp(26px,3.4vw,40px);
    margin-bottom: clamp(16px,2vw,24px);
}

/* --- Sitemap page --- */
.sitemap-grid {
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: clamp(32px,4vw,56px);
}

.sitemap-heading {
    font-size: clamp(22px,2.4vw,28px);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--coral);
    margin-bottom: 6px;
}

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .sitemap-list a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 0;
        font-size: 16.5px;
        text-decoration: none;
        color: var(--ink);
    }

        .sitemap-list a:hover {
            color: var(--coral-hover);
        }

/* --- Zoeken page --- */
.search-panel {
    border-bottom: 1px solid var(--line);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.search-field {
    flex: 1 1 320px;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid var(--sand-2);
    border-radius: 6px;
    padding: 0 16px;
}

    .search-field input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-family: inherit;
        font-size: 18px;
        color: var(--navy);
        padding: 16px 0;
    }

.results-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.results-summary {
    font-size: 16px;
    color: var(--muted);
}

    .results-summary strong {
        font-weight: 700;
        color: var(--navy);
    }

.result-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--sand-2);
    border-radius: 999px;
    padding: 8px 15px;
    cursor: pointer;
}

.filter-btn--active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.results {
    list-style: none;
    margin: clamp(24px,3vw,36px) 0 0;
    padding: 0;
}

.result {
    border-top: 1px solid var(--line-2);
}

.result__link {
    display: block;
    padding: clamp(22px,2.6vw,30px) 0;
    text-decoration: none;
    color: inherit;
}

.result__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.badge-gold {
    background: #8A6D3B;
}

.result__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
}

.result__crumb-part {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.result__here {
    color: var(--navy);
}

.result__sep {
    color: var(--sand);
}

.result__title {
    margin-top: 12px;
    font-size: clamp(22px,2.6vw,30px);
}

.result__snippet {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 70ch;
}

.result__more {
    display: inline-block;
    margin-top: 12px;
    font-size: 14.5px;
    font-weight: 700;
}

.help-tile h2 {
    font-size: clamp(20px,2.2vw,26px);
}

.help-tile ul {
    margin: 16px 0 0;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 64ch;
}

/* --- Team member (detail) page --- */
.profile-role {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--blue);
}

.profile-portrait {
    aspect-ratio: 3/4;
}

.profile-layout {
    align-items: flex-start;
}

.profile-layout__media {
    flex: 0 1 340px;
    max-width: 380px;
    position: sticky;
    top: 96px;
    order: 2;
}

.profile-layout__body {
    flex: 1 1 480px;
    min-width: 280px;
    order: 1;
}

@media (max-width: 680px) {
    .profile-layout__media {
        position: static;
        max-width: none;
        flex-basis: 100%;
        order: 0;
    }

    .profile-layout__body {
        order: 0;
    }
}

.profile-layout__body .h1 {
    font-size: clamp(34px, 4.4vw, 54px);
}

.profile-biography {
    font-size: clamp(16.5px, 1.35vw, 18.5px);
    line-height: 1.65;
}

.member-mail--inline {
    margin-top: 0;
}

a.team-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color .16s ease, box-shadow .16s ease;
}

    a.team-card:hover {
        border-color: var(--coral);
        box-shadow: 0 10px 28px rgba(26, 43, 69, .08);
    }

    a.team-card .team-card__name {
        transition: color .16s ease;
    }

    a.team-card:hover .team-card__name {
        color: var(--coral-dk);
    }

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line-2);
}

.profile-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
}

a.profile-meta__item:hover {
    color: var(--coral-hover);
    text-decoration: none;
}

a.profile-meta__item--mail:hover span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.profile-meta__item svg {
    flex: none;
    color: var(--blue);
}

.profile-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line-2);
}

.profile-meta + .profile-social {
    margin-top: 22px;
    padding-top: 24px;
    border-top: 1px solid var(--line-2);
}

.profile-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    transition: background .16s ease, transform .16s ease;
}

    .profile-social__link svg {
        width: 16px;
        height: 16px;
    }

    .profile-social__link:hover {
        background: var(--coral);
        transform: translateY(-1px);
    }
/* --- Trainingen: fase- en statuslabels --- */
.phase{display:inline-block;font-size:11.5px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;padding:6px 11px;border-radius:999px;line-height:1;}
.phase--verkennen{background:#E2EFEC;color:var(--teal-dk);}
.phase--focus{background:var(--line);color:var(--navy);}
.phase--samenwerken{background:#FDEAF7;color:var(--coral-dk);}
.phase--verankeren{background:#E9EFF4;color:var(--blue);}
.phase--type{background:var(--line);color:var(--navy);}
.phase--gratis{background:#E2EFEC;color:var(--teal-dk);}
.phase--soon{background:var(--line);color:var(--navy);}
.phase--full{background:#FDEAF7;color:var(--coral-dk);}
.phase--tbd{background:var(--cream);color:var(--muted);}
.tags{display:flex;flex-wrap:wrap;gap:8px;align-items:center;}

/* Vorm- en duurindicator */
.meta-ico{display:inline-flex;align-items:center;gap:6px;}
.meta-row{display:flex;flex-wrap:wrap;gap:6px 16px;font-size:15px;color:var(--ink);}

/* Ankertegels */
.anchors{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;}
.anchor-tile{display:flex;flex-direction:column;gap:8px;padding:24px;background:var(--util);border:1px solid var(--sand-2);border-radius:6px;text-decoration:none;color:inherit;transition:border-color .18s ease,box-shadow .18s ease;}
.anchor-tile:hover{border-color:var(--coral);box-shadow:0 8px 24px rgba(26,43,69,.09);}
.anchor-tile__kicker{font-size:12.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal-dk);}
.anchor-tile__title{font-family:var(--serif);font-size:26px;line-height:1.15;color:var(--navy);}
.anchor-tile__link{margin-top:6px;font-size:15.5px;font-weight:700;color:var(--coral-dk);}

/* Trainingskaarten */
.tcards{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:18px;}
.tcards--sm{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;}
.tcard{display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--sand-2);border-radius:6px;padding:clamp(22px,2.6vw,30px);transition:box-shadow .18s ease,border-color .18s ease;}
.tcard:hover{box-shadow:0 10px 28px rgba(26,43,69,.10);border-color:var(--sand-2);}
.tcard--sm{background:var(--util);padding:24px;}
.tcard--free{background:var(--paper);border:2px dashed var(--teal);}
.tcard__vak{margin:12px 0 8px;font-size:13px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--blue);}
.tcard__title{margin:0 0 12px;font-family:var(--serif);font-weight:500;color:var(--navy);font-size:clamp(20px,2.2vw,27px);line-height:1.15;letter-spacing:-.012em;}
.tcard__desc{margin:0 0 20px;font-size:16.5px;line-height:1.6;}
.tcard__foot{margin-top:auto;border-top:1px solid var(--line);padding-top:16px;display:flex;flex-direction:column;gap:10px;}
.tcard__price{margin:0;font-size:15.5px;font-weight:700;color:var(--navy);}
.tcard__price span{font-weight:400;color:var(--muted);font-size:14px;}
.tcard__next{margin:0;font-size:15px;color:var(--muted);}
.tcard__next strong{color:var(--navy);}
.btn-block{display:block;text-align:center;}
.btn-outline{background:none;border:1px solid var(--navy);color:var(--navy);font-size:15px;padding:12px 18px;}
.btn-outline:hover{background:var(--navy);color:#fff;}
.btn-teal{background:var(--teal);color:#fff;font-size:15px;padding:13px 18px;}
.btn-teal:hover{background:var(--teal-dk);}

/* Filterbalk */
.filterbar{display:flex;flex-wrap:wrap;gap:12px 28px;align-items:center;}
.filterset{display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.filterset__label{font-size:12.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-right:4px;}
.filter{cursor:pointer;font-family:inherit;font-size:14.5px;font-weight:600;padding:9px 15px;border-radius:999px;line-height:1;background:var(--paper);color:var(--navy);border:1px solid var(--sand-2);transition:background .16s ease,border-color .16s ease,color .16s ease;}
.filter:hover{border-color:var(--coral);}
.filter[aria-pressed="true"]{background:var(--coral);border-color:var(--coral);color:#fff;}
.filter-count{margin:0;font-size:14.5px;color:var(--muted);}
.is-hidden{display:none!important;}
.agenda-bar{position:sticky;top:0;z-index:20;background:var(--util);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:18px 0;}
.month-group{margin-bottom:36px;}
.month-group__title{margin:0 0 4px;font-family:var(--serif);font-weight:500;color:var(--navy);font-size:clamp(22px,2.4vw,28px);line-height:1.1;}

/* Detailpagina */
.detail{display:flex;flex-wrap:wrap;gap:clamp(32px,5vw,64px);}
.detail__main{flex:1.5 1 480px;min-width:290px;}
.detail__aside{flex:1 1 300px;min-width:270px;align-self:flex-start;position:sticky;top:96px;border:1px solid var(--sand-2);border-radius:6px;background:var(--util);padding:clamp(22px,2.4vw,28px);}
.kv{margin:0;}
.kv div{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--line);}
.kv dt{margin:0;font-size:14.5px;color:var(--muted);}
.kv dd{margin:0;font-size:15.5px;font-weight:700;color:var(--navy);text-align:right;}
.aside__next{margin:16px 0 0;font-size:15.5px;}
.split{display:flex;flex-wrap:wrap;gap:clamp(30px,5vw,64px);}
.split__label{flex:0 1 260px;min-width:220px;}
.split__body{flex:1 1 460px;min-width:290px;max-width:62ch;}
.checks{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:16px;list-style:none;margin:0;padding:0;}
.checks li{background:var(--paper);border:1px solid var(--sand-2);border-radius:6px;padding:24px;display:flex;gap:16px;align-items:flex-start;font-size:16.5px;line-height:1.6;}
.checks__ico{flex:none;width:34px;height:34px;border-radius:50%;background:#FDEAF7;color:var(--coral-dk);display:inline-flex;align-items:center;justify-content:center;}

/* Programma-stappen */
.prog{list-style:none;margin:0;padding:0;}
.prog li{display:flex;flex-wrap:wrap;gap:16px 26px;align-items:flex-start;padding:22px 0;border-top:1px solid var(--sand-2);}
.prog__num{flex:none;width:46px;height:46px;border-radius:50%;border:1.5px solid var(--coral);color:var(--coral-dk);display:inline-flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:21px;}
.prog__body{flex:1 1 380px;min-width:250px;}
.prog__body h3{margin:0 0 6px;font-size:19.5px;font-weight:600;color:var(--navy);}
.prog__body p{margin:0;font-size:16.5px;line-height:1.6;max-width:58ch;}
.prog__side{flex:0 0 190px;min-width:170px;font-size:15px;}
.prog__side strong{display:block;color:var(--navy);}
.prog__side span{color:var(--muted);}
.prog__out{flex:0 1 260px;min-width:230px;background:var(--util);border:1px solid var(--line);border-left:3px solid var(--teal);border-radius:5px;padding:14px 16px;}
.prog__out p:first-child{margin:0 0 5px;font-size:11.5px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--teal-dk);}
.prog__out p:last-child{margin:0;font-size:16px;font-weight:600;line-height:1.45;color:var(--navy);}

/* Quote-blok op donkere achtergrond */
.why{margin:0;font-family:var(--serif);font-weight:400;color:#fff;font-size:clamp(24px,3.2vw,40px);line-height:1.28;letter-spacing:-.012em;max-width:28ch;}

/* Praktisch */
.boxes{display:flex;flex-wrap:wrap;gap:16px;}
.box{flex:1 1 280px;min-width:250px;border:1px solid var(--sand-2);border-radius:6px;padding:24px;}
.box--tint{background:var(--util);}
.box--primary{border:2px solid var(--coral);}
.box h3{margin:0 0 14px;font-size:17px;font-weight:700;color:var(--navy);}
.box__price{margin:0;font-family:var(--serif);font-size:34px;line-height:1;color:var(--navy);}
.bullets{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
.bullets li{display:flex;gap:10px;font-size:16.5px;line-height:1.55;}
.bullets li::before{content:"\2022";color:var(--coral);font-weight:800;}

/* Datalijst op detailpagina */
.dates{margin:0;}
.date-row{display:flex;flex-wrap:wrap;gap:12px 28px;align-items:center;padding:22px 0;border-top:1px solid var(--sand-2);}
.date-row__d{flex:0 0 108px;}
.date-row__day{margin:0;font-family:var(--serif);font-size:32px;line-height:1;color:var(--navy);}
.date-row__mon{margin:4px 0 0;font-size:14px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);}
.date-row__body{flex:1 1 300px;min-width:220px;}
.date-row__body p:first-child{margin:0 0 4px;font-size:18px;font-weight:600;color:var(--navy);}
.date-row__body p:last-child{margin:0;font-size:15.5px;color:var(--muted);}
.date-row__cta{flex:0 0 auto;display:flex;flex-wrap:wrap;align-items:center;gap:16px;}
.seats{font-size:15px;font-weight:700;color:var(--teal-dk);}
.seats--few{color:var(--coral-dk);}
.seats--open{color:var(--muted);}

/* Aanmeldformulier */
.signup{display:flex;flex-wrap:wrap;gap:clamp(32px,5vw,64px);}
.signup__intro{flex:1 1 340px;min-width:270px;}
.signup__form{flex:1 1 400px;min-width:300px;background:var(--paper);border-radius:6px;padding:clamp(24px,3vw,34px);display:flex;flex-direction:column;gap:16px;box-shadow:0 6px 24px rgba(10,60,56,.22);}
.signup__form .field{display:flex;flex-direction:column;gap:8px;font-size:14px;font-weight:600;color:var(--navy);}
.signup__form input,.signup__form select,.signup__form textarea{font-size:16px;color:var(--navy);padding:14px;border:1px solid var(--sand-2);border-radius:5px;background:#fff;font-family:inherit;}
.signup__row{display:flex;flex-wrap:wrap;gap:16px;}
.signup__row .field{flex:1 1 200px;}
.signup__row .field--sm{flex:0 1 130px;}
.signup__note{margin:0;font-size:13.5px;line-height:1.55;color:var(--muted);}
.signup__done{flex:1 1 400px;min-width:300px;background:var(--paper);border-radius:6px;padding:clamp(28px,3.4vw,44px);box-shadow:0 6px 24px rgba(10,60,56,.22);}
.signup__done .done-ico{display:inline-flex;width:52px;height:52px;border-radius:50%;background:#E2EFEC;color:var(--teal-dk);align-items:center;justify-content:center;}
.on-teal{color:#E7F3F1;}
.next-step{font-size:clamp(17px,1.5vw,20px);line-height:1.6;margin:0;}

/* Open inschrijving-regel op Aanbod */
.openrow{flex:1 1 100%;border-top:1px solid var(--line);padding-top:18px;display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 16px;}
.openrow__label{font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--teal-dk);}
.openrow a{font-size:16px;font-weight:600;color:var(--navy);text-decoration:none;border-bottom:1px solid var(--sand-2);padding-bottom:1px;}
.openrow a:hover{color:var(--coral-dk);border-color:var(--coral-dk);}
.openrow__all{margin-left:auto;font-size:15.5px;font-weight:700;color:var(--coral-dk);text-decoration:none;border:0;}

/* Accentblok (wasstraat / home) */
.accent-band{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:20px 40px;background:var(--util);border:1px solid var(--sand-2);border-left:4px solid var(--coral);border-radius:6px;padding:clamp(24px,2.8vw,34px);}
.accent-band__kicker{margin:0 0 10px;font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--teal-dk);}
.accent-band__title{margin:0;font-family:var(--serif);font-size:clamp(20px,2.2vw,27px);line-height:1.24;color:var(--navy);max-width:36ch;}

@media(max-width:700px){
  .detail__aside{position:static;}
  .agenda-bar{position:static;}
}

