/* ── TOKENS ────────────────────────────────────────────── */
:root {
    --bg:       #f7f5f1;
    --white:    #ffffff;
    --ink:      #1b1916;
    --brown:    #5c3d2e;
    --brown-md: #8a6a58;
    --brown-lt: rgba(92,61,46,.07);
    --muted:    #8a847c;
    --border:   #e4ddd4;
    --serif:    'Playfair Display', Georgia, serif;
    --sans:     'DM Sans', system-ui, sans-serif;
    --ease:     cubic-bezier(.22,.61,.36,1);
    --r:        4px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { color:inherit; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 300;
    height: 70px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(247,245,241,.93);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
nav.scrolled {
    border-color: var(--border);
    box-shadow: 0 1px 16px rgba(0,0,0,.04);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}
.nav-logo-name {
    font-family: var(--serif);
    font-size: .98rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: .01em;
}
.nav-logo-sub {
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown-md);
    font-weight: 400;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-center a {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.nav-center a:hover { color: var(--ink); }
.nav-center a.active { color: var(--brown); }

/* ── NAV DROPDOWN ──────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after {
    content: ' ▾';
    font-size: .55rem;
    opacity: .6;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,.09);
    padding: .4rem 0;
    min-width: 230px;
    list-style: none;
    z-index: 400;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
    display: block;
    padding: .6rem 1.25rem;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--ink);
    text-decoration: none;
    text-transform: none;
    transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover { background: var(--bg); color: var(--brown); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
}
.nav-phone:hover { color: var(--brown); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.35rem;
    background: var(--brown);
    color: var(--white);
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    transition: background .2s;
    white-space: nowrap;
}
.btn-nav:hover { background: #4a3024; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all .3s var(--ease);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 70px 0 0;
    z-index: 290;
    background: var(--white);
    padding: 2rem 5vw;
    flex-direction: column;
    border-top: 1px solid var(--border);
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .25s;
}
.mobile-menu a:hover { color: var(--brown); padding-left: .4rem; }
.mobile-menu .btn-nav { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb {
    padding: calc(70px + 1.5rem) 5vw 0;
    max-width: 1300px;
    margin: 0 auto;
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb-sep { opacity: .4; }

/* ── SECTIONS UTILS ────────────────────────────────────── */
section { padding: 6rem 5vw; }

.label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .85rem;
}
.label::before {
    content: '×';
    font-size: .85rem;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--brown);
    opacity: .7;
}

.s-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem,3.8vw,3.1rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.015em;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity:1; transform:none; }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
    padding-top: calc(70px + 6rem);
    padding-bottom: 6rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem,5.5vw,5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    color: var(--brown);
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ams-crosses {
    font-size: .85rem;
    letter-spacing: .5em;
    color: var(--brown);
    opacity: .35;
    font-weight: 300;
    user-select: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.9rem;
    background: var(--brown);
    color: var(--white);
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    transition: background .2s;
    cursor: pointer;
    border: none;
}
.btn-primary:hover { background: #4a3024; }
.btn-primary::after { content: '→'; transition: transform .2s; }
.btn-primary:hover::after { transform: translateX(3px); }
.btn-primary.sent::after { content: ''; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.9rem;
    background: transparent;
    color: var(--ink);
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--brown); color: var(--brown); }

/* ── PAGE HERO (sub-pages) ─────────────────────────────── */
.page-hero {
    padding-top: calc(70px + 5rem);
    padding-bottom: 5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.page-hero-inner {
    max-width: 860px;
}
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    background: var(--brown-lt);
    padding: .3rem .75rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}
.page-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem,4.5vw,4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 1.25rem;
}
.page-hero-title em { font-style: italic; color: var(--brown); }
.page-hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2rem;
}

/* ── DIENSTEN ──────────────────────────────────────────── */
#diensten {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.diensten-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    max-width: 1300px;
    margin: 0 auto 3.5rem;
}
.diensten-intro {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.85;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto;
}

.d-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow .3s, border-color .3s, transform .3s;
}
.d-card:hover {
    box-shadow: 0 8px 32px rgba(92,61,46,.1);
    border-color: rgba(92,61,46,.25);
    transform: translateY(-2px);
}

.d-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.d-num {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--brown-md);
}
.d-tag {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    background: var(--brown-lt);
    padding: .25rem .65rem;
    border-radius: 10px;
}

.d-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
}
.d-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.85;
    flex: 1;
}
.d-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    margin-top: .5rem;
    transition: gap .2s;
}
.d-link::after { content: '→'; }
.d-link:hover  { gap: .7rem; }

/* ── SERVICE DETAIL ────────────────────────────────────── */
.service-body {
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.service-body-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}
.service-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem,2.5vw,2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.015em;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.service-content ul li {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.8;
    padding: .4rem 0 .4rem 1.2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.service-content ul li:first-child { border-top: 1px solid var(--border); }
.service-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-size: .75rem;
}
.service-sidebar {
    position: sticky;
    top: 90px;
}
.service-cta-box {
    background: var(--brown);
    border-radius: 8px;
    padding: 2.25rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.service-cta-box h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: .75rem;
    line-height: 1.3;
}
.service-cta-box p {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.service-cta-box .btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: var(--white);
    color: var(--brown);
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    transition: background .2s;
    width: 100%;
    justify-content: center;
}
.service-cta-box .btn-white:hover { background: #f0ebe6; }
.service-cta-phone {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}
.service-cta-phone-label {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.service-cta-phone a {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
    text-decoration: none;
    display: block;
    margin-bottom: .3rem;
}
.service-cta-phone-hours {
    font-size: .72rem;
    color: var(--muted);
}

/* ── WERKWIJZE ─────────────────────────────────────────── */
#werkwijze {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.werkwijze-inner { max-width: 1300px; margin: 0 auto; }

.ww-head { margin-bottom: 4rem; }

.ww-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.ww-step {
    background: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background .25s;
}
.ww-step:hover { background: var(--bg); }

.ww-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--brown);
    opacity: .18;
    line-height: 1;
}
.ww-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -.01em;
}
.ww-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.85;
}

/* ── WAAROM ────────────────────────────────────────────── */
#waarom {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.waarom-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.waarom-body {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.85;
    margin-top: 1.25rem;
}

.waarom-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feat {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.feat:first-child { border-top: 1px solid var(--border); }

.feat-num {
    font-family: var(--serif);
    font-size: .7rem;
    color: var(--brown);
    font-weight: 400;
    padding-top: .15rem;
}
.feat-title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
}
.feat-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── OVER ONS ──────────────────────────────────────────── */
#over-ons {
    background: var(--brown);
    border-top: 1px solid var(--border);
}

.over-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

#over-ons .label {
    color: rgba(255,255,255,.55);
}
#over-ons .label::before { background: rgba(255,255,255,.45); }

.over-title {
    font-family: var(--serif);
    font-size: clamp(2rem,3.8vw,3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-top: .75rem;
    letter-spacing: -.02em;
}

.over-body {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.85;
}
.over-body strong { color: var(--white); font-weight: 500; }

.over-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.over-stat-val {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: .35rem;
}
.over-stat-lbl {
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

/* ── CONTACT ───────────────────────────────────────────── */
#contact {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contact-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
}
.contact-intro {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.85;
}

.contact-box {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 32px rgba(0,0,0,.05);
}

.contact-sidebar {
    background: var(--brown);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-sidebar-label {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: .4rem;
}
.contact-sidebar-val {
    font-size: .88rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
}
.contact-sidebar-val strong { font-weight: 600; }

.contact-sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
}

.contact-form-wrap { padding: 2.5rem; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input,
.field textarea,
.field select {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    color: var(--ink);
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 300;
    padding: .7rem .9rem;
    outline: none;
    resize: none;
    width: 100%;
    transition: border-color .2s;
    -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--brown); }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: .5; }
.field textarea { min-height: 105px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: .25rem;
}
.form-privacy {
    font-size: .68rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
}
.form-success {
    font-size: .75rem;
    color: #2e7d44;
    font-weight: 500;
    opacity: 0;
    transition: opacity .3s;
}
.form-success.show { opacity: 1; }

/* ── FAQ ───────────────────────────────────────────────── */
#faq {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-head { margin-bottom: 3rem; }

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: .65rem;
}

.faq-item p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.85;
}

/* ── HERO CITATION ─────────────────────────────────────── */
.hero-citation {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 580px;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

/* ── BLOG ──────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(92,61,46,.1);
    transform: translateY(-2px);
}
.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-cat {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .6rem;
}
.blog-card-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: .75rem;
    color: var(--ink);
}
.blog-card-excerpt {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.25rem;
}
.blog-card-meta {
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    transition: gap .2s;
}
.blog-card-link::after { content: '→'; }
.blog-card-link:hover { gap: .65rem; }

/* ── ARTICLE ───────────────────────────────────────────── */
.article-wrap {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: start;
}
.article-body {
    padding: 4rem 5vw;
}
.article-body h2 {
    font-family: var(--serif);
    font-size: clamp(1.4rem,2.2vw,1.85rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: .9rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-top: 1.75rem;
    margin-bottom: .65rem;
    line-height: 1.3;
}
.article-body p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
    margin: 0 0 1.25rem 0;
    padding-left: 0;
    list-style: none;
}
.article-body ul li, .article-body ol li {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.8;
    padding: .4rem 0 .4rem 1.3rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.article-body ul li:first-child, .article-body ol li:first-child { border-top: 1px solid var(--border); }
.article-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--brown); font-size: .75rem; }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li::before { content: counter(ol-counter); counter-increment: ol-counter; position: absolute; left: 0; color: var(--brown); font-size: .75rem; font-weight: 600; }
.article-body a { color: var(--brown); text-decoration: underline; text-decoration-color: rgba(92,61,46,.3); }
.article-body a:hover { text-decoration-color: var(--brown); }
.article-body strong { color: var(--ink); font-weight: 500; }
.article-body blockquote {
    border-left: 3px solid var(--brown);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: 0 4px 4px 0;
}
.article-body blockquote p { margin: 0; font-style: italic; }
.article-sidebar {
    padding: 4rem 0 4rem 0;
    position: sticky;
    top: 90px;
}
.article-sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.article-sidebar-box h4 {
    font-family: var(--serif);
    font-size: .95rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.related-posts a {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .2s;
    line-height: 1.4;
}
.related-posts a:last-child { border-bottom: none; }
.related-posts a:hover { color: var(--brown); padding-left: .3rem; }

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .05em;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.article-meta-cat {
    background: var(--brown-lt);
    color: var(--brown);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 10px;
}

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
    background: var(--brown);
    padding: 5rem 5vw;
    border-top: 1px solid rgba(92,61,46,.2);
}
.cta-band-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
.cta-band-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem,3vw,2.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .75rem;
}
.cta-band-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.9rem;
    background: transparent;
    color: var(--white);
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,.4);
    transition: border-color .2s, background .2s;
    white-space: nowrap;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 3rem 5vw;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .5rem;
    display: block;
}
.footer-tagline {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    line-height: 1.6;
}
.footer-col-title {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-links a {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: .65rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,.25);
}
.footer-legal {
    font-size: .65rem;
    color: rgba(255,255,255,.25);
}
.footer-legal a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .diensten-head        { grid-template-columns: 1fr; gap: 1.25rem; }
    .waarom-inner         { grid-template-columns: 1fr; gap: 3.5rem; }
    .over-inner           { grid-template-columns: 1fr; gap: 3rem; }
    .contact-head         { grid-template-columns: 1fr; gap: 1.25rem; }
    .contact-box          { grid-template-columns: 1fr; }
    .contact-sidebar      { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
    .service-body-inner   { grid-template-columns: 1fr; }
    .service-sidebar      { position: static; }
    .blog-grid            { grid-template-columns: repeat(2,1fr); }
    .article-wrap         { grid-template-columns: 1fr; }
    .article-sidebar      { padding: 0 5vw 4rem; }
    .cta-band-inner       { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-top           { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-center, .nav-phone, .btn-nav { display: none; }
    .hamburger { display: flex; }
    section { padding: 4.5rem 5vw; }
    .hero-title { font-size: clamp(2.2rem,10vw,3.5rem); }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .diensten-grid { grid-template-columns: 1fr; }
    .ww-steps { grid-template-columns: 1fr; gap: 0; }
    .over-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    footer { padding: 2.5rem 5vw; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .d-card       { padding: 1.75rem 1.5rem; }
    .ww-step      { padding: 1.75rem; }
    .over-stats   { grid-template-columns: 1fr 1fr; }
    .contact-form-wrap { padding: 1.75rem; }
}
