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

:root {
    --cream: #F7F4EF;
    --cream-mid: #EEE9E1;
    --cream-dark: #D8D3CA;
    --ink: #1E1C19;
    --ink-mid: #4A4740;
    --ink-light: #8A8780;
    --warm: #8FA67A;
    --warm-deep: #6B8A56;
    --warm-light: #B4CA9E;
    --warm-pale: #ECF2E6;
    --topbar-h: 60px;
    --serif: 'Cormorant Garant', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR (always visible) ── */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    background: rgba(30,28,25,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 201;
    display: flex;
    align-items: center;
    padding: 0 clamp(16px, 3%, 32px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
    transition: background 0.35s, border-color 0.35s;
}
.topbar.active {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(255,255,255,0.08);
}

.topbar-brand {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    color: var(--cream);
    white-space: nowrap;
    margin-right: 16px;
    flex-shrink: 0;
}
.topbar-brand span { color: var(--warm-light); }

.topbar-nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.topbar-nav a {
    display: flex;
    align-items: center;
    height: var(--topbar-h);
    padding: 0 clamp(8px, 1.1vw, 16px);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom-color 0.2s;
    white-space: nowrap;
}
.topbar-nav a:hover,
.topbar-nav a.active {
    color: var(--cream);
    border-bottom-color: var(--warm-light);
}

/* ── TOPBAR CTA — distinct Aanmelden button ── */
.topbar-cta {
    margin-left: 12px;
    flex-shrink: 0;
    background: var(--warm);
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px clamp(14px, 2vw, 26px);
    border-radius: 4px;
    white-space: nowrap;
    border: 1.5px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 14px rgba(0,0,0,0.28);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.topbar-cta:hover {
    background: var(--warm-deep);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.38);
    color: var(--cream);
}
.topbar-cta--active {
    background: var(--warm-deep);
    pointer-events: none;
    box-shadow: none;
}
.topbar {
    height: var(--topbar-h); /* back to fixed by default */
}
.topbar-nav {
    flex-wrap: nowrap; /* single row by default */
}

/* Only switch to two-row mode below the width where text would start clipping */
@media (max-width: 900px) {
    .topbar {
        height: auto;
        min-height: var(--topbar-h);
        flex-wrap: wrap;
        row-gap: 6px;
        padding: 8px clamp(16px, 3%, 32px);
    }
    .topbar-nav {
        flex-wrap: wrap;
        flex-basis: 100%;
        order: 3;
        justify-content: center;
    }
    .topbar-brand {
        order: 1;
    }
    .topbar-cta {
        order: 2;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── PARALLAX HERO ── */
.parallax-hero {
    position: relative;
    height: 140vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--topbar-h);
}

.parallax-scene {
    position: absolute;
    inset: 0;
}

.parallax-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    #2C1F0E 0%, #4A3520 25%, #7A5C35 50%, #A08050 70%, #C4A070 85%, #D4B080 100%);
}

#pl1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
    z-index: 1;
}

#pl2 { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; display: block; will-change: transform; z-index: 2; }
#pl3 { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; display: block; will-change: transform; z-index: 3; }
#pl4 { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; display: block; will-change: transform; z-index: 4; }
#pl5 { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; display: block; will-change: transform; z-index: 5; }
#pl6 { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; display: block; will-change: transform; z-index: 6; }

.parallax-mist {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            transparent 40%,
            rgba(247,244,239,0.18) 65%,
            rgba(247,244,239,0.70) 86%,
            var(--cream) 100%
    );
    pointer-events: none;
    z-index: 7;
}

.hero-content {
    position: relative;
    z-index: 8;
    padding: 0 clamp(5%, 8%, 12%);
    max-width: 660px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-light);
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-tag::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--warm-light);
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1.06;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--warm-light); }

.hero-body {
    font-size: 15px;
    color: rgba(247,244,239,0.85);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--warm-deep);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background: var(--warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.btn-primary .arrow { font-size: 16px; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,244,239,0.1);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 3px;
    border: 1px solid rgba(247,244,239,0.35);
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
    background: rgba(247,244,239,0.18);
    border-color: rgba(247,244,239,0.6);
}

/* ── AVAILABILITY BAR ── */
.availability-bar {
    display: flex;
    align-items: stretch;
    background: var(--warm-deep);
    width: 100%;
    min-height: 140px;
    overflow: hidden;
    position: relative;
}
.availability-bar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 36px clamp(5%, 7%, 9%);
}
.availability-bar-title {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.availability-bar-sub {
    font-size: 15px;
    color: rgba(247,244,239,0.82);
    max-width: 540px;
    line-height: 1.6;
}
.availability-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    background: rgba(247,244,239,0.12);
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 3px;
    border: 1px solid rgba(247,244,239,0.28);
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s;
}
.availability-bar-cta:hover {
    background: rgba(247,244,239,0.24);
    border-color: rgba(247,244,239,0.5);
}
.availability-bar-image {
    width: clamp(140px, 22vw, 320px);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: var(--warm);
}
.availability-bar-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── SECTIONS ── */
section {
    padding: clamp(56px, 8vw, 96px) clamp(5%, 7%, 9%);
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-deep);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-label::after {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--warm-deep);
}

h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.body-text {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.85;
    max-width: 600px;
}

hr.divider {
    border: none;
    border-top: 1px solid var(--cream-dark);
    margin: 0 clamp(5%, 7%, 9%);
}

/* ── WERKWIJZE ── */
#werkwijze { background: var(--cream); }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.step-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(30,28,25,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover {
    box-shadow: 0 8px 32px rgba(30,28,25,0.1);
    transform: translateY(-3px);
}

.step-number {
    font-family: var(--serif);
    font-weight: 300;
    color: var(--warm-light);
    line-height: 1;
}

.step-thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 100%);
    border: 2.5px solid var(--warm-light);
    align-self: flex-start;
}
.step-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-content .step-number {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--warm-light);
    line-height: 1;
    margin-bottom: 10px;
}

.step-content h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-deep);
    margin-bottom: 10px;
}
.step-content p { font-size: 14px; color: var(--ink-mid); line-height: 1.8; }

/* ── STEPS SCROLL GALLERY ── */
.steps-scroll-wrap {
    margin-top: 48px;
    margin-left: calc(-1 * clamp(5%, 7%, 9%));
    margin-right: calc(-1 * clamp(5%, 7%, 9%));
}
.steps-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px clamp(5%, 7%, 9%) 24px;
    cursor: grab;
    user-select: none;
}
.steps-track::-webkit-scrollbar { display: none; }
.steps-track.is-dragging { cursor: grabbing; user-select: none; }
.step-slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: clamp(260px, 320px, 75vw);
    height: 460px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 28px rgba(30,28,25,0.13);
    transition: transform 0.25s, box-shadow 0.25s;
}
.step-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(30,28,25,0.2);
}
.step-scene {
    position: absolute;
    inset: 0;
}
.step-scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.step-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 28px 32px;
    background: linear-gradient(to top,
    rgba(18,14,8,0.90) 0%,
    rgba(18,14,8,0.55) 55%,
    transparent 100%);
}
.step-slide-num {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 300;
    color: rgba(247,244,239,0.32);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.step-slide-content h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-light);
    margin-bottom: 10px;
}
.step-slide-content p {
    font-size: 14px;
    color: rgba(247,244,239,0.82);
    line-height: 1.75;
}
.steps-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px clamp(5%, 7%, 9%) 12px;
}
.steps-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.steps-dot.active {
    background: var(--warm-deep);
    transform: scale(1.5);
}

/* Section image placeholder */
.section-image-block {
    margin-top: 48px;
    border-radius: 10px;
    overflow: hidden;
    height: clamp(220px, 28vw, 400px);
    background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 60%, var(--warm) 100%);
    position: relative;
}
.section-image-block img,
.section-image-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

/* ── DIENSTEN / TESTIMONIALS ── */
.testimonials-section {
    background: var(--cream-mid);
    padding: clamp(56px, 7vw, 80px) clamp(5%, 7%, 9%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

/* Each testimonial is a window — video fills it, content sits over a gradient scrim */
.testimonial {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 300px;
    box-shadow: 0 6px 28px rgba(30,28,25,0.14);
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(30,28,25,0.22);
}

/* Video is sized to span all 3 cards + 2 gaps (= full grid width).
   Each card's overflow:hidden clips it to its own third of that wide frame. */
.testimonial-vid {
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(300% + 40px); /* 3 cards + 2×20px gap */
    object-fit: cover;
    object-position: left center;
    z-index: 0;
}
.testimonials-grid .testimonial:nth-child(1) .testimonial-vid { left: 0; }
.testimonials-grid .testimonial:nth-child(2) .testimonial-vid { left: calc(-100% - 20px); }
.testimonials-grid .testimonial:nth-child(3) .testimonial-vid { left: calc(-200% - 40px); }

/* Content floats at the bottom over a dark gradient scrim */
.testimonial-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px 32px;
    background: linear-gradient(to top,
    rgba(10,8,5,0.86) 0%,
    rgba(10,8,5,0.30) 52%,
    transparent 100%);
}

.testimonial-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(1.15) drop-shadow(0 1px 6px rgba(0,0,0,0.4));
}
.testimonial p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(247,244,239,0.92);
    line-height: 1.65;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.dienst-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 2px 14px rgba(30,28,25,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border-bottom: 3px solid transparent;
}
.dienst-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30,28,25,0.12);
    border-bottom-color: var(--warm);
}
.dienst-card .card-icon {
    width: 40px; height: 40px;
    background: var(--warm-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}
.dienst-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}
.dienst-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.8; }

/* ── TARIEVEN ── */
#tarieven { background: var(--cream); }

.tarieven-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 80px);
    margin-top: 48px;
    align-items: start;
}

.tarief-highlight {
    background: var(--warm-pale);
    border-left: 3px solid var(--warm);
    padding: 20px 24px;
    margin-bottom: 24px;
    border-radius: 0 4px 4px 0;
}
.tarief-highlight p { font-size: 14px; color: var(--ink-mid); line-height: 1.8; }

.tarief-block { margin-bottom: 24px; }
.tarief-block h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-deep);
    margin-bottom: 12px;
}
.tarief-block p, .tarief-block li { font-size: 14px; color: var(--ink-mid); line-height: 1.85; }
.tarief-block ol { padding-left: 20px; margin-top: 12px; }
.tarief-block li { margin-bottom: 10px; }

/* ── PROFIEL ── */
#profiel { background: var(--cream); }

.profiel-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: start;
    margin-top: 48px;
}

.profiel-meta { position: sticky; top: calc(var(--topbar-h) + 16px); }

.profiel-photo {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 100%);
    margin-bottom: 24px;
    border: 3px solid var(--warm-light);
    flex-shrink: 0;
}
.profiel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profiel-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--ink);
}
.profiel-title {
    font-size: 12px;
    color: var(--ink-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.profiel-ids {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 2;
    border-top: 1px solid var(--cream-dark);
    padding-top: 20px;
}
.profiel-ids span { display: block; }

.profiel-text p { font-size: 15px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 22px; }
.profiel-text h4 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    margin-top: 8px;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px clamp(5%, 7%, 9%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-left { font-size: 12px; color: var(--ink-light); letter-spacing: 0.04em; }
.footer-center { flex: 1; text-align: center; }
.footer-email {
    font-size: 12px;
    color: var(--warm-light);
    text-decoration: none;
    letter-spacing: 0.04em;
}
.footer-email:hover { text-decoration: underline; }
.footer-right { display: flex; gap: 20px; }
.footer-right span { font-size: 12px; color: var(--ink-light); letter-spacing: 0.04em; }

/* ── BACK TO TOP ── */
#toTop {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 40px; height: 40px;
    background: var(--warm-deep);
    color: var(--cream);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    z-index: 99;
}
#toTop:hover { background: var(--ink-mid); transform: translateY(-2px); }

/* ── FADE IN ── */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── AANMELDEN PAGE ── */
.page-aanmelden body,
body.page-aanmelden {
    background: var(--cream);
}

.aanmelden-main {
    padding-top: var(--topbar-h);
    min-height: 100vh;
}

.aanmelden-header {
    background: var(--ink);
    padding: clamp(52px, 7vw, 88px) clamp(5%, 7%, 9%) clamp(44px, 5.5vw, 68px);
}
.aanmelden-header .section-label { color: var(--warm-light); }
.aanmelden-header .section-label::after { background: var(--warm-light); }

.aanmelden-title {
    font-family: var(--serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0;
}

.aanmelden-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(32px, 5vw, 88px);
    padding: clamp(52px, 7vw, 88px) clamp(5%, 7%, 9%);
    align-items: start;
}

.aanmelden-block {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--cream-dark);
}
.aanmelden-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.aanmelden-block-title {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.aanmelden-block p {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.88;
}

/* form column heading */
.aanmelden-form-col > .aanmelden-block-title {
    font-size: clamp(24px, 2.5vw, 32px);
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
}

/* ── AANMELDEN FORM ── */
.aanmelden-form .form-field { margin-bottom: 28px; }

.aanmelden-form label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 10px;
}
.aanmelden-form input,
.aanmelden-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--cream-dark);
    padding: 10px 0;
    font-size: 15px;
    font-family: var(--sans);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}
.aanmelden-form input::placeholder,
.aanmelden-form textarea::placeholder { color: var(--ink-light); opacity: 0.55; }
.aanmelden-form input:focus,
.aanmelden-form textarea:focus { border-bottom-color: var(--warm-deep); }
.aanmelden-form textarea { resize: vertical; min-height: 130px; }

.aanmelden-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.aanmelden-form-col .form-success {
    display: none;
    padding: 28px 24px;
    background: var(--warm-pale);
    border: 1px solid var(--warm);
    border-radius: 6px;
    color: var(--warm-deep);
    font-size: 15px;
    text-align: center;
    margin-top: 16px;
    line-height: 1.7;
}

/* ── KWALITEITSBEWAKING SECTION ── */
#kwaliteit { background: var(--cream-mid); }
#kwaliteit .body-text { max-width: 100%; margin-bottom: 20px; }

/* ── INFO PAGE ── */
body.page-info .topbar { background: var(--ink); }

.info-main {
    padding-top: var(--topbar-h);
    min-height: 100vh;
}

.info-header {
    background: var(--ink);
    padding: clamp(52px, 7vw, 88px) clamp(5%, 7%, 9%) clamp(44px, 5.5vw, 68px);
}
.info-header .section-label { color: var(--warm-light); }
.info-header .section-label::after { background: var(--warm-light); }
.info-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.info-sections {
    padding: clamp(52px, 7vw, 88px) clamp(5%, 7%, 9%);
    max-width: 900px;
}

.info-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--cream-dark);
}
.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.info-block p {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}
.info-block p:last-child { margin-bottom: 0; }

.info-image-block {
    border-radius: 10px;
    overflow: hidden;
    height: clamp(180px, 22vw, 320px);
    background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 60%, var(--warm) 100%);
    position: relative;
    margin: 40px 0;
}
.info-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

/* Narrower image block variant for inline sections */
.section-image-block--half {
    max-width: 520px;
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .diensten-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    #pl2, #pl3, #pl4, #pl5, #pl6 {
        width: 220%;
        left: -60%;
    }
}

@media (max-width: 720px) {
    .steps-grid { grid-template-columns: 1fr; }
    .tarieven-grid { grid-template-columns: 1fr; gap: 28px; }
    .profiel-inner { grid-template-columns: 1fr; gap: 28px; }
    .profiel-meta { position: static; }
    .aanmelden-body { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .availability-bar-image { display: none; }
    .footer-center { order: 3; flex: 100%; text-align: left; }
}

@media (max-width: 560px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .diensten-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .topbar-brand { display: none; }
    .topbar-nav a { padding: 0 8px; font-size: 10px; letter-spacing: 0.05em; }
    .topbar-cta { padding: 8px 12px; font-size: 10px; }
}

@media (max-width: 400px) {
    .topbar-cta { display: none; }
    .topbar-nav a { padding: 0 6px; }
}