/* ============================================
   AltoKine — Design Tokens
   ============================================ */
:root {
    /* Brand */
    --c-red:        #8e2f30;
    --c-red-dark:   #6b2323;
    --c-brown-dark: #412d28;
    --c-brown:      #4a3835;
    --c-brown-mid:  #7a6662;
    --c-brown-soft: #b0a19d;
    --c-beige:      #f0e4d9;
    --c-cream:      #f8f0ea;
    --c-off-white:  #fdfbf9;

    /* Roles */
    --bg:           var(--c-off-white);
    --bg-soft:      var(--c-cream);
    --bg-muted:     var(--c-beige);
    --text:         var(--c-brown-dark);
    --text-muted:   var(--c-brown-mid);
    --border-soft:  rgba(176, 161, 157, 0.35);
    --primary:      var(--c-red);
    --primary-dark: var(--c-red-dark);

    /* Typography */
    --font-body:     "transducer", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display:  "transducer-extended", "transducer", sans-serif;
    --font-condensed:"transducer-condensed", "transducer", sans-serif;

    /* Spacing */
    --container:        1440px;
    --nav-pad-top:      64px;
    --nav-pad-bottom:   72px;
    --nav-pad-x:        48px;

    /* Ritme — overal zelfde afstanden voor symmetrie */
    --section-pad-y:    96px;
    --section-title-mb: 48px;
    --content-gap:      32px;
    --actions-gap:      24px;
    --card-pad:         40px;
}

/* Zijruimte schaalt mee met het scherm (48px is een desktop-maat) */
@media (max-width: 960px) {
    :root { --nav-pad-x: 32px; }
}
@media (max-width: 700px) {
    :root { --nav-pad-x: 20px; }
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); }

/* ============================================
   Site header + navigation
   ============================================ */
.site-header {
    background: var(--bg);
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--nav-pad-top) var(--nav-pad-x) var(--nav-pad-bottom);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 32px;
}

.site-logo {
    display: inline-block;
    line-height: 0;
    /* Logo zakt onder de nav-lijn zodat de "&" van "kine & revalidatie"
       ongeveer op dezelfde hoogte staat als de grijze lijn. */
    margin-bottom: -48px;
}
.site-logo img {
    height: 96px;
    width: auto;
}

/* Primary nav */
.primary-nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

/* De doorlopende grijze lijn — loopt onder alle nav-items en onder "Maak afspraak".
   Rode underline van het actieve item ligt erop (zelfde Y-positie, 2px dus dekt de 1px grijze volledig af). */
.primary-nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--border-soft);
    z-index: 0;
    pointer-events: none;
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.primary-nav__list > li > a,
.primary-nav__list > li > .dropdown-trigger {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    padding: 10px 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.primary-nav__list > li > a:hover,
.primary-nav__list > li > .dropdown-trigger:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.primary-nav__list > li > a[aria-current="page"],
.primary-nav__list > li > .dropdown-trigger[aria-current="page"] {
    color: var(--text);
    border-bottom-color: var(--primary);
}

.dropdown-caret { transition: transform .2s; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(65, 45, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s, visibility .18s;
    z-index: 20;
}

.dropdown-menu a:not(.mega-item) {
    display: block;
    padding: 10px 20px;
    border-bottom: none;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown[data-open="true"] .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.has-dropdown--mega { position: static; }

.site-header { position: relative; }

.dropdown-menu--mega {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 6px);
    transform: translateX(-50%);
    width: calc(100% - var(--nav-pad-x) * 2);
    max-width: calc(var(--container) - var(--nav-pad-x) * 2);
    min-width: 0;
    padding: 0;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(65, 45, 40, 0.12);
    overflow: hidden;
}

.mega-menu {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 0;
}
.mega-menu__main {
    padding: 28px 32px 40px;
}
.mega-menu__head {
    margin-bottom: 20px;
}
.mega-menu__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: -0.015em;
}
.mega-menu__subtitle {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}
.mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid #c4b5af;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: border-color .2s, background-color .2s, transform .2s;
}
.mega-item:hover {
    border-color: var(--primary);
    background: var(--c-cream);
}
.mega-item__icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}
.mega-item__title {
    flex: 1;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text);
    white-space: normal;
}
.mega-item__arrow {
    color: var(--primary);
    font-size: 1rem;
    transition: transform .2s;
    flex-shrink: 0;
}
.mega-item:hover .mega-item__arrow { transform: translateX(4px); }
.mega-item--wide { grid-column: 1 / -1; }

.mega-menu__cta {
    background-color: var(--c-red-dark);
    background-image: url('/assets/img/cta-bg.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}
.mega-menu__cta-img {
    width: 150px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.mega-menu__cta-body {
    width: 100%;
}
.mega-menu__cta-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 12px;
}
.mega-menu__cta-link {
    display: inline-block;
    color: var(--primary);
    background: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background-color .2s, color .2s;
}
.mega-menu__cta-link:hover {
    background: var(--c-cream);
}

.has-dropdown:hover > .dropdown-trigger .dropdown-caret,
.has-dropdown[data-open="true"] > .dropdown-trigger .dropdown-caret {
    transform: rotate(180deg);
}

/* CTA rechts in nav — subtiele bordeaux onderlijn als accent */
.primary-nav__cta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    padding: 10px 2px;
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    position: relative;
    z-index: 1;
}
.primary-nav__cta:hover {
    color: var(--primary);
}

/* Mobile CTA in topbar (altijd zichtbaar op mobiel) */
.site-header__cta-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color .2s;
}
.site-header__cta-mobile:hover { background: var(--primary-dark); color: #fff; }
.site-header__cta-mobile svg { flex-shrink: 0; }

/* Contactgegevens binnen mobiel menu (verborgen op desktop) */
.primary-nav__contact { display: none; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    grid-column: 2;
    justify-self: end;
    position: relative;
    z-index: 110;
}
.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Utilities — container, knoppen, links
   ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--nav-pad-x);
}

.section {
    padding: var(--section-pad-y) 0;
}

.eyebrow {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 1.0625rem;
    letter-spacing: 0.02em;
    margin: 0 0 6px;
}

.section-title {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 0 0 var(--section-title-mb);
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1;
    transition: background-color .2s, color .2s;
    border: 0;
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }

.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { background: var(--c-cream); color: var(--primary); }

/* Outlined variant — dunne rand, transparante achtergrond */
.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Icoon in knop */
.btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Card-CTA: outlined pill met "over <strong>Titel</strong>" */
.btn--card {
    align-self: flex-start;
    padding: 10px 22px;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-weight: 400;
}
.btn--card:hover {
    background: var(--primary);
    color: #fff;
}
.btn--card strong { font-weight: 700; }

/* Skip-link: onzichtbaar tot keyboard-focus */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 6px 0;
    text-decoration: none;
}
.skip-link:focus {
    left: 0;
}

/* Foto-placeholder (vervangen door echte foto) */
.photo-placeholder {
    aspect-ratio: 3 / 4;
    background: var(--c-beige);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--c-brown-soft);
}
.photo-placeholder svg { width: 72px; height: 72px; }
.photo-placeholder::after {
    content: attr(data-label);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
}
/* Arch-vorm (boog bovenaan, plat onderaan) — hero foto */
.photo-placeholder--arch {
    border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;
}

/* Echte foto's — zelfde vormen en verhoudingen als de placeholders */
.photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
}
.photo--arch { border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px; }
.photo--round {
    width: 160px;
    height: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-position: 50% 25%;
}
.photo--top { object-position: 50% 18%; }
.photo--square { aspect-ratio: 1; border-radius: 8px; }
.hero__photo .photo--arch { max-width: 340px; margin: 0 auto; }
.over-robin__photo .photo { max-width: 320px; margin: 0 auto; }
.waarom__photo .photo { aspect-ratio: 4 / 5; }
.visie__photo .photo,
.opleiding__photo .photo,
.behandeling-voor-wie__photo .photo { aspect-ratio: 4 / 3; border-radius: 8px; }
.behandeling-steps__photo .photo { border-radius: 8px; }

/* ============================================
   HERO — volgens hoofdpagina.png
   ============================================ */
.hero {
    background: var(--bg);
    padding: 64px 0 96px;
}
.hero__inner {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 72px;
    align-items: center;
}
.hero__photo .photo-placeholder--arch {
    max-width: 340px;
    margin: 0 auto;
}
.hero .eyebrow {
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: var(--text);
}
.hero__title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.05;
    color: var(--primary);
    margin: 0 0 24px;
}
.hero__body {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 560px;
    margin: 0 0 32px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--actions-gap);
    flex-wrap: wrap;
}

/* ============================================
   Section achtergronden — ritme
   ============================================ */
.waarom      { background: var(--bg); }
.technieken  { background: var(--bg); }
.hoe-werk    { background: var(--c-beige); }
.voor-wie    { background: var(--c-beige); }
.over-robin  { background: var(--c-beige); }
.tarieven    { background: var(--c-beige); }
.faq         { background: var(--c-beige); }
.faq--inline { background: var(--bg); }

.section-title--wide { max-width: 920px; }
.section-title--center { text-align: center; }

/* Intro-paragraaf onder een sectie-title */
.section-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    max-width: 760px;
    margin: -24px 0 40px;
}

/* Kleine subheading binnen een sectie */
.subheading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 16px;
}

/* ============================================
   Checklist — vinkje-lijst met rode checks
   ============================================ */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 40px;
    max-width: 960px;
}
.checklist li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
    line-height: 1.5;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.checklist--single {
    grid-template-columns: 1fr;
    gap: 14px 0;
    max-width: none;
}

/* ============================================
   WAAROM — 2-kolom layout: content links, foto rechts
   ============================================ */
.waarom__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
}
.waarom__content .section-title { margin-bottom: 20px; }
.waarom__content .section-intro { margin: 0 0 28px; }
.waarom__photo .photo-placeholder {
    aspect-ratio: 4 / 5;
    max-width: 100%;
}

/* ============================================
   TECHNIEKEN — cards-grid (reusable)
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--c-cream);
    padding: var(--card-pad);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card__icon { width: 36px; height: auto; }
.card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--text);
    margin: 0;
}
.card__text {
    margin: 0;
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}
/* ============================================
   HOE GA IK TE WERK — behandelfoto links + gestapelde stappen met rode tab
   ============================================ */
.hoe-werk__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.hoe-werk__content .section-title { margin-bottom: 32px; }
.hoe-werk__photo .photo {
    max-width: 460px;
    margin: 0 auto;
    border-radius: 8px;
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.step__label {
    display: inline-block;
    background: var(--c-red-dark);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    padding: 10px 26px;
    border-radius: 4px 4px 0 0;
    margin-left: 28px;
    position: relative;
    z-index: 1;
}
.step__body {
    background: #fff;
    padding: 28px 32px 32px;
    border-radius: 4px;
    width: 100%;
    position: relative;
    z-index: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.step__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--text);
}
.step__text {
    margin: 0;
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   VOOR WIE — 2 kolommen: content + accent-cards
   ============================================ */
.voor-wie__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: start;
}
.voor-wie__content .btn { margin-top: 40px; }
.voor-wie__content .checklist {
    grid-template-columns: 1fr;
    gap: 12px 0;
    max-width: none;
}

.voor-wie__accents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.accent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: transparent;
    color: var(--text);
    text-align: center;
}
.accent-card__photo {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 4px;
    background: var(--c-cream);
    margin: 0;
}
.accent-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 4px 0 0;
    color: var(--text);
}
.accent-card__cta {
    padding: 12px 22px;
    font-size: 0.9375rem;
}

/* ============================================
   OVER ROBIN EN ALTÓ
   ============================================ */
.over-robin__inner {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 72px;
    align-items: center;
}
.over-robin__photo .photo-placeholder--arch {
    max-width: 320px;
    margin: 0 auto;
}
.over-robin__content .eyebrow { margin-bottom: 12px; }
.over-robin__content .section-title { margin-bottom: 24px; }
.over-robin__content p {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.65;
}
.over-robin__content p:last-of-type { margin-bottom: 0; }
.over-robin__actions {
    display: flex;
    align-items: center;
    gap: var(--actions-gap);
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ============================================
   TARIEVEN EN TERUGBETALING — gecentreerde card
   ============================================ */
.tarieven { background: var(--c-beige); }

.tarieven__container {
    display: flex;
    justify-content: center;
}
.tarieven__card {
    background: var(--bg);
    border-radius: 4px;
    padding: 56px 64px;
    max-width: 720px;
    width: 100%;
}
.tarieven__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 0 0 20px;
}
.tarieven__intro {
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-soft);
}
.tarieven__subheading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.02em;
    margin: 0 0 12px;
}
.tarieven__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    margin-bottom: 40px;
}
.tarieven__block { margin: 0; }
.tarieven__block--full { grid-column: 1 / -1; }
.tarieven__block p {
    margin: 0;
    color: var(--text);
    line-height: 1.65;
}
.tarieven__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tarieven__list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    line-height: 1.5;
}
.tarieven__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
.tarieven__footer {
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}
.tarieven__cta { margin-top: 4px; }

/* ============================================
   FAQ — accordion
   ============================================ */
.faq__inner {
    max-width: 920px;
    background: var(--c-cream);
    padding: 40px 48px;
    border-radius: 20px;
}
.faq__inner .section-title {
    margin: 0 0 24px;
}
.faq__list {
    display: flex;
    flex-direction: column;
}
.faq__item {
    background: transparent;
    border-bottom: 1px solid var(--border-soft);
}
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 0;
    position: relative;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text);
    transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
    transition: transform .25s;
}
.faq__item[open] summary { color: var(--primary); }
.faq__item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq__answer {
    padding: 0 0 22px;
    color: var(--text);
    line-height: 1.6;
}
.faq__answer p { margin: 0; }
.faq__answer a { color: var(--primary); }

/* ============================================
   RED CTA — tekst links, lopende man rechts
   ============================================ */
.cta-red {
    background-color: var(--c-red-dark);
    background-image: url('/assets/img/cta-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    padding: 72px 0 0;
    overflow: hidden;
}
.cta-red__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
}
.cta-red__content {
    max-width: 640px;
    padding-bottom: 72px;
}
.cta-red__title {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    color: #fff;
}
.cta-red__text {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    line-height: 1.6;
}
.cta-red__actions {
    display: flex;
    align-items: center;
    gap: var(--actions-gap);
    flex-wrap: wrap;
}
.cta-red .btn--light {
    padding: 16px 32px;
    font-size: 1.0625rem;
}
.cta-red__phone {
    color: #fff;
    font-size: 1.0625rem;
}
.cta-red__phone a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1px;
    transition: border-color .2s;
}
.cta-red__phone a:hover { border-bottom-color: #fff; }

.cta-red__figure {
    align-self: end;
    display: flex;
    justify-content: flex-end;
    transform: translateX(-320px);
}
.cta-red__figure img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
}

.cta-red.is-visible .cta-red__figure {
    animation: cta-forward 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cta-forward {
    0%   { transform: translateX(-320px); }
    100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .cta-red__figure { transform: translateX(0); }
    .cta-red.is-visible .cta-red__figure { animation: none; }
}

/* ============================================
   FOOTER — cream hoofd + donkerrode bottom bar
   ============================================ */
.site-footer {
    background: var(--bg);
    color: var(--text);
    font-size: 0.9375rem;
}
.site-footer__main {
    padding-top: 72px;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.site-footer__logo {
    display: inline-block;
    line-height: 0;
}
.site-footer__logo img {
    height: 96px;
    width: auto;
}
.site-footer__tag {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.4;
    font-size: 0.9375rem;
}
.site-footer__cta {
    font-size: 0.9375rem;
    color: #fff;
    margin-top: 4px;
}
.site-footer__heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin: 0 0 20px;
}
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.site-footer a:hover { color: var(--primary); }
.site-footer .btn--primary,
.site-footer .btn--primary:hover {
    color: #fff;
}
.site-footer__contact { font-style: normal; }
.site-footer__contact p {
    margin: 0 0 16px;
    line-height: 1.55;
}
.site-footer__contact p:last-of-type { margin-bottom: 0; }

.site-footer__socials {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brown-mid);
    transition: color .2s;
}
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible { color: var(--primary); }
.site-footer__socials svg { display: block; }

.site-footer__hours {
    margin: 0;
    line-height: 1.55;
    color: var(--text);
}
.site-footer__hours strong { font-weight: 600; }

/* Onderbalk — zelfde bg als footer, dunne scheidingslijn */
.site-footer__bar {
    background: var(--bg);
    color: var(--text-muted);
    padding: 18px 0;
    font-size: 0.8125rem;
    border-top: 1px solid var(--border-soft);
}
.site-footer__bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.site-footer__bar p {
    margin: 0;
    line-height: 1.5;
}
.site-footer__bar a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: var(--border-soft);
    text-underline-offset: 3px;
    transition: color .2s, text-decoration-color .2s;
}
.site-footer__bar a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

/* ============================================
   PAGE HERO (over-mij, contact, enz.)
   ============================================ */
.page-hero {
    background: var(--c-beige);
    padding: var(--section-pad-y) 0;
    text-align: center;
}
.page-hero__inner {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.875rem;
    margin: 0 0 20px;
}
.page-hero__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 0 0 14px;
}
.page-hero__subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text);
    margin: 0 0 32px;
    line-height: 1.4;
    white-space: nowrap;
}
.page-hero__actions {
    display: flex;
    gap: var(--actions-gap);
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   OVER-INTRO — content + profielkaart
   ============================================ */
.over-intro { background: var(--bg); }
.over-intro__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 72px;
    align-items: start;
}
.over-intro__content p {
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 18px;
}
.over-intro__content p:last-of-type { margin-bottom: 0; }
.over-intro__heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.over-intro__divider {
    border: 0;
    border-top: 1px solid var(--border-soft);
    margin: 32px 0;
}
.over-intro__cta { margin-top: 28px; }

/* Profielkaart */
.profile-card {
    background: var(--c-cream);
    border-radius: 24px;
    padding: 48px 32px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: sticky;
    top: 24px;
}
.profile-card__photo {
    margin-bottom: 12px;
}
.photo-placeholder--round {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: var(--bg);
}
.photo-placeholder--round::after { content: none; }
.profile-card__name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}
.profile-card__role {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.625rem;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.profile-card__bio {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* ============================================
   CONTACT BAND — card met e-mail + uitnodiging
   ============================================ */
.contact-band { background: var(--bg); }
.contact-band__card {
    background: var(--c-cream);
    border-radius: 16px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.contact-band__label {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 0.9375rem;
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}
.contact-band__mail {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.625rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.015em;
    transition: color .2s;
}
.contact-band__mail:hover { color: var(--primary); }
.contact-band__text {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MIJN VISIE — foto links, tekst rechts
   ============================================ */
.visie { background: var(--bg); }
.visie__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.visie__photo .photo-placeholder {
    aspect-ratio: 4/3;
    border-radius: 8px;
}
.visie__content .section-title { margin-bottom: 20px; }
.visie__content p {
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 16px;
}
.visie__content p:last-child { margin-bottom: 0; }

/* ============================================
   OPLEIDING — tekst links, foto rechts
   ============================================ */
.opleiding { background: var(--c-beige); }
.opleiding__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.opleiding__content .section-title { margin-bottom: 28px; }
.opleiding__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.opleiding__list li {
    position: relative;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.55;
}
.opleiding__list li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.opleiding__list strong { font-weight: 600; color: var(--text); }
.opleiding__photo .photo-placeholder {
    aspect-ratio: 4/3;
    border-radius: 8px;
}

/* ============================================
   CONTACT — TOP (book + form)
   ============================================ */
.contact-top { background: var(--bg); }
.contact-top__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}
.contact-top .eyebrow { margin-bottom: 6px; }
.contact-block__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}
.contact-block__text {
    color: var(--text);
    line-height: 1.6;
    margin: 0 0 24px;
}
.contact-block__label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px;
    font-size: 0.9375rem;
}

/* Boek een afspraak blok */
.contact-book {
    background: var(--c-cream);
    border-radius: 16px;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact-book__cta {
    align-self: flex-start;
    padding: 16px 32px;
    font-size: 1.0625rem;
    margin-bottom: 8px;
}
.contact-book__divider {
    width: 100%;
    height: 1px;
    background: var(--border-soft);
    margin: auto 0 24px;
}
/* Voorgevel-foto tussen CTA en telefonisch-blok — volledig beeld, geen crop */
.contact-book__photo {
    width: 100%;
    flex: none;
    aspect-ratio: auto;
    height: auto;
    margin: 24px 0 24px;
    border-radius: 8px;
}
.contact-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.contact-methods li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}
.contact-methods__icon {
    color: var(--primary);
    flex-shrink: 0;
}
.contact-methods a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.contact-methods a:hover { color: var(--primary); }

/* Formulier */
.contact-form-wrap {
    background: var(--c-cream);
    border-radius: 16px;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    /* Scrolt mee naast de hogere foto-kaart, zelfde patroon als .profile-card */
    position: sticky;
    top: 24px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.form-group .required { color: var(--primary); }
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 12px 14px;
    line-height: 1.4;
    transition: border-color .2s, background-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}
.contact-form__submit {
    align-self: flex-start;
    padding: 14px 32px;
    font-size: 1rem;
    margin-top: 6px;
    cursor: pointer;
}
.contact-form .cf-turnstile { margin-top: 4px; }
.form-message {
    margin-top: 6px;
    font-size: 0.95rem;
    min-height: 1.2em;
}
.form-message.is-error {
    color: var(--primary);
    background: rgba(142, 47, 48, 0.08);
    padding: 10px 14px;
    border-radius: 6px;
}

/* ============================================
   CONTACT — LOCATION (info + map)
   ============================================ */
.contact-location { background: var(--c-beige); }
.contact-location__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: stretch;
}
.contact-location__info .eyebrow { margin-bottom: 6px; }
.contact-location__info .section-title { margin-bottom: 20px; }
.contact-location__intro {
    color: var(--text);
    line-height: 1.6;
    margin: 0 0 32px;
}
.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    align-items: start;
}
.info-list__col {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-list__item { margin: 0; }
.info-list__label {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 0.9375rem;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}
.info-list__value {
    margin: 0;
    color: var(--text);
    line-height: 1.55;
}
.info-list__value a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.info-list__value a:hover { color: var(--primary); }

/* Statische OSM-kaart (cookieloos, self-hosted render) — klikbaar naar Google Maps */
.contact-location__map-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-location__map {
    position: relative;
    display: block;
    flex: 1;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--c-cream);
}
.contact-location__map img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-location__map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    filter: drop-shadow(0 3px 5px rgba(65, 45, 40, 0.35));
    pointer-events: none;
}
.contact-location__map-pin svg { display: block; }
.contact-location__map-cta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(65, 45, 40, 0.18);
    transition: background-color .2s, color .2s;
}
.contact-location__map:hover .contact-location__map-cta {
    background: var(--primary);
    color: #ffffff;
}
.contact-location__map-attribution {
    align-self: flex-end;
    font-size: 0.75rem;
    color: var(--text);
    text-decoration: none;
}
.contact-location__map-attribution:hover { text-decoration: underline; }

/* ============================================
   PAGE HERO META (privacy, datum-regel)
   ============================================ */
.page-hero__meta {
    margin: 0 0 32px;
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.page-hero__meta:last-child { margin-bottom: 0; }

/* ============================================
   LEGAL / LONG-FORM CONTENT (privacybeleid enz.)
   ============================================ */
.legal { background: var(--bg); }
.legal__inner {
    max-width: 760px;
    margin: 0 auto;
}
.legal h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--text);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text);
    margin: 24px 0 10px;
}
.legal p {
    color: var(--text);
    line-height: 1.7;
    margin: 0 0 16px;
}
.legal ul {
    margin: 0 0 16px;
    padding-left: 22px;
}
.legal li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 4px;
}
.legal a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(142, 47, 48, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}
.legal a:hover { text-decoration-color: var(--primary); }
.legal strong { font-weight: 600; color: var(--text); }

/* ============================================
   BEHANDELING HERO (aanvulling op page-hero)
   ============================================ */
.behandeling-hero__intro {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px;
    max-width: 720px;
}
.behandeling-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.behandeling-hero__list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    line-height: 1.5;
}
.behandeling-hero__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* ============================================
   HOE VERLOOPT EEN BEHANDELING?
   ============================================ */
.behandeling-steps { background: var(--bg); }
.behandeling-steps__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.behandeling-steps__content .section-title { margin-bottom: 32px; }
.step-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
}
.step-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.step-row__num {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}
.step-row__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
}
.step-row__text {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}
.behandeling-steps__photo .photo-placeholder {
    aspect-ratio: 3/4;
    border-radius: 8px;
}

/* ============================================
   VOOR WIE IS GESCHIKT
   ============================================ */
.behandeling-voor-wie { background: var(--bg); }
.behandeling-voor-wie__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
}
.behandeling-voor-wie__photo .photo-placeholder {
    aspect-ratio: 4/3;
    border-radius: 8px;
}
.behandeling-voor-wie__content .section-title { margin-bottom: 20px; }
.behandeling-voor-wie__text {
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 20px;
}
.behandeling-voor-wie__label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 14px;
    font-size: 1rem;
}
.behandeling-voor-wie__content .checklist { margin-bottom: 28px; }
.behandeling-voor-wie__cta { margin-top: 4px; }

/* ============================================
   ANDERE BEHANDELINGEN — grid van 4
   ============================================ */
.andere-behandelingen { background: var(--bg); }
.andere-behandelingen__intro {
    text-align: center;
    color: var(--text);
    line-height: 1.6;
    margin: -32px auto 48px;
    max-width: 640px;
}
.andere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.andere-card {
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    background: var(--c-cream);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.andere-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(65, 45, 40, 0.1);
}
.andere-card__photo {
    aspect-ratio: 4/3;
    border-radius: 0;
}
.andere-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    padding: 16px 20px;
    text-align: center;
}
.andere-card:hover .andere-card__title { color: var(--primary); }

/* ============================================
   Responsive — nav
   ============================================ */
@media (max-width: 960px) {
    /* Het fullscreen menu (.primary-nav) is position:fixed binnen de header.
       Een backdrop-filter/transform/filter op een header-ancestor zou een nieuw
       containing block maken en het menu op de header pinnen i.p.v. het scherm.
       Expliciet neutraliseren + solide achtergrond houdt het fullscreen. */
    .site-header,
    .site-header__inner {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .site-header { background: var(--bg); }

    .site-header__inner {
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        padding: 16px 20px;
        gap: 12px;
    }

    .site-logo {
        margin-bottom: 0;
        grid-column: 1;
    }
    .site-logo img { height: 64px; }

    .site-header__cta-mobile {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
    }

    .nav-toggle {
        display: flex;
        grid-column: 4;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 96px 28px 32px;
        gap: 0;
        background: var(--bg);
        z-index: 105;
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
        display: flex;
    }

    /* Doorlopende lijn hoort enkel bij de desktop-nav */
    .primary-nav::after { display: none; }

    .primary-nav[data-open="true"] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity .25s ease, transform .25s ease, visibility 0s;
    }

    .primary-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        justify-content: flex-start;
    }

    .primary-nav__list > li {
        border-top: 1px solid var(--border-soft);
    }
    .primary-nav__list > li:last-child {
        border-bottom: 1px solid var(--border-soft);
    }

    .primary-nav__list > li > a,
    .primary-nav__list > li > .dropdown-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 18px 4px;
        font-size: 1.25rem;
        border-bottom: 0;
        text-align: center;
    }
    .primary-nav__list a[aria-current="page"] {
        color: var(--primary);
        border-bottom: 0;
    }

    /* Mobile dropdown — klik toggelt zichtbaar */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: 0;
        border-top: 1px solid var(--border-soft);
        border-radius: 0;
        background: var(--bg-soft);
        padding: 4px 0;
        min-width: 0;
        width: auto;
    }
    .has-dropdown[data-open="true"] .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Mobile mega menu → simpele lijst */
    .dropdown-menu--mega { overflow: visible; }
    .mega-menu {
        display: block;
        grid-template-columns: none;
    }
    .mega-menu__main { padding: 4px 0; }
    .mega-menu__head { display: none; }
    .mega-menu__grid {
        display: block;
        gap: 0;
    }
    .mega-item {
        border: 0;
        border-radius: 0;
        padding: 14px 20px;
        background: transparent;
    }
    .mega-item:hover {
        background: transparent;
        border: 0;
    }
    .mega-item__icon { display: none; }
    .mega-item__arrow { display: none; }
    .mega-menu__cta { display: none; }

    .primary-nav__cta {
        margin: 28px auto 0;
        padding: 14px 28px;
        background: var(--primary);
        color: #fff;
        border-radius: 999px;
        text-align: center;
        border: 0;
        align-self: center;
        font-weight: 500;
    }
    .primary-nav__cta:hover {
        background: var(--primary-dark);
        color: #fff;
        border: 0;
    }

    .primary-nav__contact {
        display: block;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid var(--border-soft);
        text-align: center;
    }
    .primary-nav__contact-title {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        margin: 0 0 12px;
    }
    .primary-nav__contact p {
        margin: 6px 0;
        font-size: 0.95rem;
        color: var(--text);
        line-height: 1.5;
    }
    .primary-nav__contact a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 0;
    }
    .primary-nav__contact a:hover { color: var(--primary); }
    .primary-nav__contact-hours {
        color: var(--text-muted) !important;
        font-size: 0.875rem !important;
        margin-top: 12px !important;
    }

    /* Robuuste scroll-lock: position:fixed + width:100% (JS herstelt scroll-offset).
       overflow:hidden alleen is onbetrouwbaar op iOS Safari. */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Sluit-knop blijft bereikbaar bovenaan terwijl het fullscreen menu scrollt. */
    body.nav-open .nav-toggle {
        position: fixed;
        top: 16px;
        right: 20px;
        z-index: 110;
    }
}

/* ============================================
   Responsive — secties
   ============================================ */
@media (max-width: 960px) {
    :root {
        --section-pad-y:    64px;
        --section-title-mb: 32px;
        --card-pad:         24px;
    }

    .hero { padding: 32px 0 56px; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero__photo { max-width: 260px; }

    .waarom__inner { grid-template-columns: 1fr; gap: 32px; }

    .checklist { grid-template-columns: 1fr; gap: 12px; }

    .cards-grid { grid-template-columns: 1fr; }
    .hoe-werk__inner { grid-template-columns: 1fr; gap: 40px; }

    .voor-wie__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .voor-wie__accents { gap: 16px; }

    .over-robin__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .over-robin__photo { max-width: 240px; margin: 0 auto; }

    .faq__inner { padding: 28px 24px; }
    .faq__item summary {
        padding: 18px 44px 18px 0;
        font-size: 1rem;
    }
    .faq__answer { padding: 0 0 18px; }

    .cta-red { padding: 56px 0; }
    .cta-red__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-red__figure {
        justify-content: center;
        order: -1;
    }
    .cta-red__figure img { width: 200px; }

    .tarieven__card {
        padding: 40px 28px;
    }
    .tarieven__grid { grid-template-columns: 1fr; gap: 28px; }

    /* Over mij pagina */
    .over-intro__inner,
    .contact-band__card,
    .visie__inner,
    .opleiding__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-band__card { padding: 32px 28px; }
    .profile-card { position: static; padding: 40px 24px 32px; }
    .page-hero__subtitle { white-space: normal; font-size: 1rem; }

    /* Contact pagina */
    .contact-top__inner,
    .contact-location__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .contact-book__cta { white-space: normal; align-self: stretch; text-align: center; }
    .contact-form-wrap,
    .contact-book { padding: 28px 20px 24px; }

    /* Behandeling pagina */
    .behandeling-steps__inner,
    .behandeling-voor-wie__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .andere-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .info-list { grid-template-columns: 1fr; gap: 20px; }
    .contact-location__map { min-height: 320px; }

    .site-footer__main {
        padding-top: 56px;
        padding-bottom: 40px;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__bar-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .site-footer__main {
        grid-template-columns: 1fr;
    }
    .accent-card__photo { aspect-ratio: 3 / 2; }
    .voor-wie__accents { grid-template-columns: 1fr; }
    .btn--card { white-space: normal; }
}

/* Telefoonnummers nooit midden in de regel breken */
a[href^="tel:"] { white-space: nowrap; }
