/* ==========================================================================
   Vroedvrouw Loes — babyroze & muntgroen
   ========================================================================== */

:root {
    --roze: #F6D9DE;
    --roze-soft: #FDF1F3;
    --roze-accent: #E7A1AD;
    --roze-deep: #B85468;
    --mint: #CFEADD;
    --mint-soft: #EEF8F3;
    --mint-accent: #8CCBAE;
    --mint-deep: #3F8A6E;
    --mint-darker: #2E6B55;
    --ink: #3A3340;
    --muted: #6D6471;
    --cream: #FFFBF8;
    --white: #FFFFFF;
    --line: #EDE3E4;

    --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-hand: 'Caveat', 'Segoe Script', cursive;

    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 18px 50px -24px rgba(58, 51, 64, 0.28);
    --container: 1180px;
    --header-h: 76px;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--mint-deep); }
a:hover { color: var(--mint-darker); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 .6em;
    color: var(--ink);
    font-variation-settings: "SOFT" 100, "WONK" 0;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.01em; }
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1.1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mint-deep);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: "";
    width: 22px; height: 2px;
    background: var(--roze-accent);
    border-radius: 2px;
}

.hand {
    font-family: var(--font-hand);
    font-size: 1.9rem;
    color: var(--roze-deep);
    line-height: 1.1;
}

/* Placeholder — klant moet dit nog aanleveren */
.ph {
    background: repeating-linear-gradient(-45deg, #FFF4D6, #FFF4D6 6px, #FFEBB8 6px, #FFEBB8 12px);
    border: 1px dashed #D9A93A;
    border-radius: 6px;
    padding: 0 .35em;
    color: #7A5A12;
    font-style: normal;
    white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .9rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mint-deep); color: var(--white); box-shadow: 0 10px 24px -12px rgba(63,138,110,.7); }
.btn-primary:hover { background: var(--mint-darker); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--roze-accent); }
.btn-ghost:hover { background: var(--roze-soft); color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Vakantie / bereikbaarheid banner ---------- */
.topbanner {
    background: var(--mint);
    color: var(--mint-darker);
    font-size: .92rem;
    text-align: center;
    padding: .55rem 44px .55rem 20px;
    position: relative;
    line-height: 1.45;
}
.topbanner.is-vakantie { background: var(--roze); color: #7B2E3E; }
.topbanner a { color: inherit; font-weight: 700; }
.topbanner strong { font-weight: 800; }
.topbanner-icon { margin-right: .35rem; }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 248, .92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(58,51,64,.4); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}
.brand img { width: 50px; height: 50px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 500;
    font-style: italic;
}
.brand-name span { color: var(--mint-deep); font-style: normal; }
.brand-sub {
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-top: .2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    display: block;
    padding: .5rem .8rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .96rem;
    transition: background .2s ease, color .2s ease;
}
.nav-menu a:hover { background: var(--roze-soft); color: var(--ink); }
.nav-menu a.active { background: var(--mint-soft); color: var(--mint-darker); }
.nav-menu .nav-cta a { background: var(--mint-deep); color: var(--white); padding-inline: 1.1rem; margin-left: .4rem; }
.nav-menu .nav-cta a:hover { background: var(--mint-darker); color: var(--white); }

.hamburger {
    display: none;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--roze-soft);
    cursor: pointer;
    position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
    position: absolute;
    left: 50%;
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, background .25s ease;
    content: "";
}
.hamburger span { top: 50%; transform: translate(-50%, -50%); }
.hamburger span::before { transform: translate(-50%, -7px); }
.hamburger span::after { transform: translate(-50%, 5px); }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { transform: translate(-50%, -2px) rotate(-45deg); }

@media (max-width: 1020px) {
    .hamburger { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        padding: .8rem 20px 1.4rem;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 40px -30px rgba(58,51,64,.5);
        display: none;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: .85rem 1rem; font-size: 1.05rem; }
    .nav-menu .nav-cta a { margin: .5rem 0 0; text-align: center; }
}

/* ---------- Sections ---------- */
section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-head { max-width: 680px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

.bg-roze { background: var(--roze-soft); }
.bg-mint { background: var(--mint-soft); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 620px; height: 620px;
    right: -180px; top: -140px;
    background: radial-gradient(circle, var(--roze) 0%, rgba(246,217,222,0) 68%);
    z-index: -1;
}
.hero::after {
    content: "";
    position: absolute;
    width: 520px; height: 520px;
    left: -220px; bottom: -220px;
    background: radial-gradient(circle, var(--mint) 0%, rgba(207,234,221,0) 68%);
    z-index: -1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.hero h1 em { font-style: italic; color: var(--mint-deep); }
.hero .lead { max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    margin-top: 2.2rem;
    padding: 0;
    list-style: none;
    font-size: .93rem;
    color: var(--muted);
}
.hero-badges li { display: flex; align-items: center; gap: .45rem; }
.hero-badges svg { width: 18px; height: 18px; color: var(--mint-deep); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-photo {
    border-radius: 280px 280px var(--radius) var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    max-width: 480px;
    margin-left: auto;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
    position: absolute;
    left: 0;
    bottom: 12%;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 250px;
}
.hero-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--roze);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--roze-deep); }
.hero-card strong { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; line-height: 1.2; }
.hero-card span { font-size: .82rem; color: var(--muted); line-height: 1.3; display: block; }

/* Page hero (subpagina's) */
.page-hero {
    padding-block: clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, var(--roze-soft) 0%, var(--mint-soft) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero .lead { max-width: 640px; margin-bottom: 0; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }

/* ---------- Diensten cards ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); color: var(--ink); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-media img { transform: scale(1.04); }
.service-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.service-tag {
    align-self: flex-start;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 999px;
    margin-bottom: .9rem;
}
.service-card.mint .service-tag { background: var(--mint); color: var(--mint-darker); }
.service-card.roze .service-tag { background: var(--roze); color: #7B2E3E; }
.service-body p { color: var(--muted); }
.service-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .45rem; }
.service-list li { display: flex; gap: .6rem; align-items: flex-start; }
.service-list li::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--mint-accent);
    margin-top: .62em;
    flex-shrink: 0;
}
.service-card.roze .service-list li::before { background: var(--roze-accent); }
.link-arrow { margin-top: auto; font-weight: 700; color: var(--mint-deep); display: inline-flex; align-items: center; gap: .4rem; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s ease; }
.service-card:hover .link-arrow svg { transform: translateX(4px); }

/* ---------- Quote ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
    margin: 0 auto;
    max-width: 820px;
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    line-height: 1.35;
    font-style: italic;
    font-weight: 400;
}
.quote-band blockquote::before {
    content: "\201C";
    display: block;
    font-size: 4.5rem;
    line-height: .6;
    color: var(--roze-accent);
    margin-bottom: .6rem;
}
.quote-band cite { display: block; margin-top: 1rem; font-style: normal; }

/* ---------- Split (tekst + foto) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.split-media .blob {
    position: absolute;
    width: 70%; height: 70%;
    border-radius: 50%;
    background: var(--roze);
    z-index: -1;
    right: -8%; bottom: -8%;
}
.split-media.mint .blob { background: var(--mint); left: -8%; right: auto; }
.photo-stack { position: relative; padding-bottom: 18%; }
.photo-stack img:last-child {
    position: absolute;
    width: 48%;
    right: -4%;
    bottom: 0;
    aspect-ratio: 3 / 4;
    border: 6px solid var(--cream);
}

/* ---------- Stappen ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
}
.steps li {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    position: relative;
    counter-increment: step;
    border: 1px solid var(--line);
}
.steps li::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--roze);
    color: #7B2E3E;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.steps li:nth-child(2)::before { background: var(--mint); color: var(--mint-darker); }
.steps p { margin: 0; color: var(--muted); }

/* ---------- Galerij ---------- */
.gallery {
    columns: 4 240px;
    column-gap: 14px;
}
.gallery button {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 14px;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: var(--radius-sm);
    overflow: hidden;
    break-inside: avoid;
}
.gallery img { width: 100%; height: auto; transition: transform .5s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.03); }
.gallery button:focus-visible { outline: 3px solid var(--mint-deep); outline-offset: 3px; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(40, 34, 44, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 64px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lightbox-btn {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.14);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease;
}
.lightbox-btn:hover { background: rgba(255,255,255,.28); }
.lightbox-btn svg { width: 24px; height: 24px; }
.lightbox-close { top: 14px; right: 14px; }
.lightbox-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .9rem; }

/* ---------- Content pagina's ---------- */
.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; }
.prose h2 { margin-top: 2.2rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.feature {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    border: 1px solid var(--line);
}
.feature-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--mint);
    color: var(--mint-darker);
    margin-bottom: 1.2rem;
}
.feature:nth-child(3n+2) .feature-icon { background: var(--roze); color: var(--roze-deep); }
.feature-icon svg { width: 26px; height: 26px; }
.feature ul { padding-left: 1.1rem; margin: 0; color: var(--muted); }
.feature li { margin-bottom: .35rem; }
.feature li::marker { color: var(--mint-accent); }

.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--mint-deep); margin-top: .2em; }

.note-card {
    background: var(--white);
    border-left: 5px solid var(--roze-accent);
    border-radius: var(--radius-sm);
    padding: 1.6rem 1.8rem;
    box-shadow: var(--shadow);
}
.note-card h3 { margin-bottom: .4rem; }
.note-card p:last-child { margin-bottom: 0; }

.signature { margin-top: 2rem; }
.signature .hand { font-size: 2.4rem; }

section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--mint-deep);
    color: var(--white);
    border-radius: 32px;
    padding: clamp(2.4rem, 5vw, 3.8rem);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(246, 217, 222, .18);
    right: -90px; top: -120px;
}
.cta-band h2 { color: var(--white); margin-bottom: .4rem; }
.cta-band p { margin: 0; opacity: .9; }
.cta-band .btn { position: relative; z-index: 1; background: var(--white); color: var(--mint-darker); }
.cta-band .btn:hover { background: var(--roze-soft); }
.cta-band .ph { color: #7A5A12; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.contact-items { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    text-decoration: none;
    color: var(--ink);
}
.contact-item .feature-icon { margin: 0; width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.contact-item small { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-item span { font-weight: 700; word-break: break-word; }

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
    padding: .8rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint-accent);
    box-shadow: 0 0 0 4px var(--mint-soft);
}
.hp { position: absolute; left: -9999px; }
.form-status { margin: 1rem 0 0; font-size: .95rem; }
.form-status.ok { color: var(--mint-darker); }
.form-status.err { color: #B3261E; }

/* ---------- Praktische kosten (onderaan elke pagina) ---------- */
.kosten {
    background: var(--roze-soft);
    padding-block: clamp(3rem, 6vw, 4.5rem);
    border-top: 1px solid var(--line);
}
.kosten-grid {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 2.5rem;
    align-items: start;
}
.kosten h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.kosten-intro p { color: var(--muted); margin-bottom: 0; }
.kosten-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.kosten-list li {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.kosten-list .label { font-weight: 700; }
.kosten-list .prijs { font-family: var(--font-head); font-size: 1.5rem; color: var(--mint-deep); font-weight: 600; line-height: 1.2; }
.kosten-list .uitleg { font-size: .9rem; color: var(--muted); line-height: 1.45; }
.kosten-list li.wide { grid-column: 1 / -1; border: 1.5px dashed var(--roze-accent); background: transparent; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.78);
    padding-block: 3.5rem 1.6rem;
    font-size: .95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--roze); }
.site-footer .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer .brand-sub { color: rgba(255,255,255,.6); }
.site-footer .brand-name span { color: var(--mint-accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .6rem;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.site-footer .ph { color: #7A5A12; }

/* ---------- Animatie ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid, .split, .contact-grid, .kosten-grid { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .hero-photo { margin-inline: auto; }
    .hero-card { left: 4%; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > :first-child { grid-column: 1 / -1; }
    .cta-band { grid-template-columns: 1fr; }
    .split-media { max-width: 520px; margin-inline: auto; width: 100%; }
}

@media (max-width: 700px) {
    body { font-size: 1rem; }
    h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    .services, .steps, .feature-grid, .kosten-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .brand img { width: 42px; height: 42px; }
    .brand-name { font-size: 1.25rem; }
    .brand-sub { font-size: .58rem; letter-spacing: .08em; }
    .hero-card { position: relative; left: auto; bottom: auto; margin: -2.5rem auto 0; max-width: 280px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .gallery { columns: 2; column-gap: 10px; }
    .gallery button { margin-bottom: 10px; }
    .lightbox { padding: 60px 12px; }
    .lightbox-prev, .lightbox-next { top: auto; bottom: 8px; transform: none; }
    .lightbox-count { bottom: 22px; }
    .photo-stack img:last-child { right: 0; }
    .split-media .blob { right: 0; bottom: -4%; }
    .split-media.mint .blob { left: 0; }
}
