/* ==========================================================================
   DRUKCASE — Site header (top bar + mega menu)
   Premium editorial, consistent with the homepage system.
   Scoped under .dch to avoid clashing with theme styles.
   ========================================================================== */
.dch {
    --dch-ink: #1C1C1C;
    --dch-graphite: #2E2C2A;
    --dch-stone: #57514B;
    --dch-paper: #FAF6F0;
    --dch-paper-2: #EFEAE2;
    --dch-line: rgba(28,28,28,.10);
    --dch-line-2: rgba(28,28,28,.06);
    --dch-gold: #E37D19;
    --dch-gold-2: #F2994A;
    --dch-gold-deep: #B85F0E;
    --dch-serif: "Fraunces", Georgia, serif;
    --dch-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --dch-shadow: 0 24px 60px rgba(21,18,15,.16), 0 6px 18px rgba(21,18,15,.08);
    --dch-top-h: 40px;
    --dch-bar-h: 84px;
    --dch-shell: 1320px;
    --dch-gutter: clamp(18px, 4vw, 56px);
    --dch-ease: cubic-bezier(.22,.61,.36,1);

    position: relative;
    z-index: 1000;
    font-family: var(--dch-sans);
    color: var(--dch-ink);
    background: var(--dch-paper);
    border-bottom: 0;
}
.dch *, .dch *::before, .dch *::after { box-sizing: border-box; }
.dch a { color: inherit; text-decoration: none; }
.dch ul { list-style: none; margin: 0; padding: 0; }
.dch .dch-ico { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

/* -------------------------------------------------------------------- TOP BAR */
.dch-top {
    background: transparent;
    color: var(--dch-stone);
    font-size: .72rem;
    line-height: var(--dch-top-h);
    height: var(--dch-top-h);
    overflow: hidden;
    transition: height .35s var(--dch-ease), opacity .3s var(--dch-ease);
}
.dch-top__in {
    max-width: var(--dch-shell);
    margin-inline: auto;
    padding-inline: var(--dch-gutter);
    height: var(--dch-top-h);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.dch-usp { display: flex; align-items: center; gap: 26px; }
.dch-usp li { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; letter-spacing: .01em; }
.dch-usp__ico { width: 14px; height: 14px; color: var(--dch-gold-deep); }
.dch-usp li + li { position: relative; }
.dch-usp li:nth-child(n+2)::before {
    content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 12px; background: rgba(28,28,28,.14);
}

.dch-top__meta { display: flex; align-items: center; gap: 18px; }
.dch-rating { display: inline-flex; align-items: center; gap: 7px; }
.dch-rating__stars { display: inline-flex; color: var(--dch-gold); }
.dch-rating__star { width: 13px; height: 13px; }
.dch-rating strong { color: var(--dch-ink); font-weight: 600; }
.dch-rating__src { display: inline-flex; align-items: center; }
.dch-rating__src svg { width: 15px; height: 15px; display: block; }
.dch-top__sep { width: 1px; height: 13px; background: rgba(28,28,28,.14); }
.dch-top__link { display: inline-flex; align-items: center; gap: 6px; transition: color .25s var(--dch-ease); }
.dch-top__ico { width: 13px; height: 13px; color: var(--dch-gold-deep); }
.dch-top__link:hover { color: var(--dch-ink); }

/* -------------------------------------------------------------------- MAIN BAR */
.dch-bar { background: var(--dch-paper); transition: box-shadow .35s var(--dch-ease); }
.dch-bar__in {
    max-width: var(--dch-shell);
    margin-inline: auto;
    padding-inline: var(--dch-gutter);
    height: var(--dch-bar-h);
    display: flex;
    align-items: center;
    transition: height .35s var(--dch-ease);
}
.dch-logo { display: inline-flex; align-items: center; flex: 0 0 auto; margin-left: calc(-1 * var(--dch-gutter)); }
.dch-logo img { display: block; height: 80px; width: auto; transition: height .35s var(--dch-ease); }

/* primary nav */
.dch-nav { margin-left: auto; height: 100%; }
.dch-menu { display: flex; align-items: stretch; gap: clamp(2px, 1vw, 14px); height: 100%; }
.dch-menu__item { display: flex; align-items: center; }
.dch-menu__link {
    display: inline-flex; align-items: center; gap: 6px;
    height: 100%; padding: 0 14px;
    font-size: .95rem; font-weight: 500; letter-spacing: .01em;
    color: var(--dch-ink);
    position: relative;
    transition: color .25s var(--dch-ease);
}
.dch-menu__link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 22px; height: 1.5px;
    background: var(--dch-gold); transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--dch-ease);
}
.dch-menu__caret { width: 14px; height: 14px; color: var(--dch-stone); transition: transform .3s var(--dch-ease); }
.dch-menu__item:hover > .dch-menu__link,
.dch-menu__item:focus-within > .dch-menu__link { color: var(--dch-gold-deep); }
.dch-menu__item:hover > .dch-menu__link::after,
.dch-menu__item:focus-within > .dch-menu__link::after { transform: scaleX(1); }
.dch-menu__item:hover .dch-menu__caret,
.dch-menu__item:focus-within .dch-menu__caret { transform: rotate(180deg); color: var(--dch-gold-deep); }

/* actions */
.dch-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; margin-left: clamp(16px, 2.5vw, 40px); }
.dch-btn {
    --_bg: var(--dch-ink); --_fg: var(--dch-paper);
    display: inline-flex; align-items: center; gap: .5em;
    padding: .8em 1.3em; border-radius: 999px;
    font-size: .88rem; font-weight: 600; line-height: 1; white-space: nowrap;
    color: #FFFFFF !important; background: var(--_bg); border: 1px solid var(--_bg);
    cursor: pointer;
    transition: transform .3s var(--dch-ease), background-color .3s var(--dch-ease), color .3s var(--dch-ease), box-shadow .3s var(--dch-ease);
}
.dch-btn .dch-ico { transition: transform .3s var(--dch-ease); }
.dch-btn:hover { transform: translateY(-1px); box-shadow: var(--dch-shadow); }
.dch-btn:hover .dch-ico { transform: translateX(3px); }
/* Unieke "gedrukte pagina-stapel" knop — stamp-press + inkt-veeg (boekdrukwerk) */
.dch-btn--gold {
    --_bg: var(--dch-gold);
    position: relative; overflow: hidden; isolation: isolate;
    background: var(--dch-gold); border-color: var(--dch-gold);
    border-radius: 11px;                                   /* gedrukt 'kaart'-blok i.p.v. pill */
    box-shadow: 3px 4px 0 rgba(184,95,14,.5), 7px 9px 0 rgba(184,95,14,.22);  /* stapel pagina's */
    transition: transform .22s var(--dch-ease), box-shadow .22s var(--dch-ease);
}
.dch-btn--gold::before {                                   /* inkt-veeg die invult bij hover */
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(115deg, var(--dch-gold-deep), #93470a);
    transform: translateX(-101%);
    transition: transform .5s var(--dch-ease);
}
.dch-btn--gold:hover {                                      /* in de stapel drukken = stempelen */
    transform: translate(3px, 4px);
    box-shadow: 0 1px 0 rgba(184,95,14,.45);
}
.dch-btn--gold:hover::before { transform: translateX(0); }
.dch-btn--gold:active { transform: translate(5px, 7px); box-shadow: 0 0 0 rgba(184,95,14,0); }
.dch-btn--ghost { --_bg: transparent; --_fg: var(--dch-ink); border-color: var(--dch-line); }
.dch-btn--ghost:hover { --_bg: var(--dch-ink); --_fg: var(--dch-paper); border-color: var(--dch-ink); }
.dch-btn--block { width: 100%; justify-content: center; padding-block: 1.05em; }

/* ----------------------------------------------------------- MEGA / DROPDOWN */
.dch-mega, .dch-drop {
    position: absolute;
    top: 100%;
    background: var(--dch-paper);
    border: 1px solid var(--dch-line);
    border-radius: 16px;
    box-shadow: var(--dch-shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .3s var(--dch-ease), transform .3s var(--dch-ease), visibility .3s;
    z-index: 20;
}
.dch-mega {
    left: var(--dch-gutter); right: var(--dch-gutter);
    margin-top: 12px;
    max-width: var(--dch-shell);
    margin-inline: auto;
}
.dch-has-mega { position: static; }                 /* mega spans the bar width */
.dch-has-drop { position: relative; }
.dch-drop { left: 0; min-width: 320px; margin-top: 12px; padding: 12px; }

.dch-menu__item:hover > .dch-mega,
.dch-menu__item:hover > .dch-drop,
.dch-menu__item:focus-within > .dch-mega,
.dch-menu__item:focus-within > .dch-drop {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.dch-mega__in { display: grid; grid-template-columns: 1fr 340px; gap: 0; }
.dch-mega__cols {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 26px;
    padding: 30px 34px;
}
.dch-mega__col { min-width: 0; }
.dch-mega__title {
    display: flex; align-items: center; gap: 9px;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--dch-gold-deep);
    padding-bottom: 12px; margin-bottom: 8px;
    border-bottom: 1px solid var(--dch-line-2);
}
.dch-mega__title-ico { width: 17px; height: 17px; }
.dch-mega__list li + li { margin-top: 2px; }

.dch-mega__list a, .dch-drop__list a {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 12px; border-radius: 10px;
    transition: background .22s var(--dch-ease);
}
.dch-mega__list a:hover, .dch-drop__list a:hover { background: var(--dch-paper-2); }
.dch-mega__ico {
    display: grid; place-items: center;
    width: 34px; height: 34px; flex: 0 0 34px;
    border-radius: 9px; color: var(--dch-gold-deep);
    background: rgba(227,125,25,.10);
    transition: background .22s var(--dch-ease), color .22s var(--dch-ease);
}
.dch-mega__list a:hover .dch-mega__ico,
.dch-drop__list a:hover .dch-mega__ico { background: var(--dch-ink); color: var(--dch-gold-2); }
.dch-mega__ico .dch-ico { width: 18px; height: 18px; }
.dch-mega__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dch-mega__lbl { font-size: .94rem; font-weight: 600; color: var(--dch-ink); }
.dch-mega__desc { font-size: .8rem; color: var(--dch-stone); line-height: 1.35; }

/* feature panel (right) */
.dch-feature {
    position: relative;
    display: flex; align-items: flex-end;
    padding: 28px;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dch-graphite), var(--dch-ink));
    background-size: cover; background-position: center;
    color: #fff;
}
.dch-feature::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(120% 80% at 90% 0%, rgba(227,125,25,.28), transparent 60%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 10px);
    pointer-events: none;
}
.dch-feature.has-img::before { background: none; }
.dch-feature__body { position: relative; display: flex; flex-direction: column; gap: 8px; }
.dch-feature__eyebrow {
    font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dch-gold-2);
}
.dch-feature__title { font-family: var(--dch-serif); font-size: 1.4rem; line-height: 1.15; font-weight: 500; color: #FFFFFF;}
.dch-feature__text { font-size: .86rem; color: rgba(255,255,255,.74); line-height: 1.5; max-width: 26ch; }
.dch-feature__cta {
    display: inline-flex; align-items: center; gap: .5em; margin-top: 8px;
    font-size: .85rem; font-weight: 600; color: #fff;
}
.dch-feature:hover .dch-feature__cta .dch-ico { transform: translateX(4px); transition: transform .3s var(--dch-ease); }

/* --------------------------------------------------------------- BURGER */
.dch-burger {
    display: none;
    width: 46px; height: 46px; border: 1px solid var(--dch-line); border-radius: 12px;
    background: transparent; cursor: pointer; padding: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.dch-burger span { display: block; width: 20px; height: 1.8px; background: var(--dch-ink); transition: transform .3s var(--dch-ease), opacity .3s var(--dch-ease); }
.dch[data-open] .dch-burger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.dch[data-open] .dch-burger span:nth-child(2) { opacity: 0; }
.dch[data-open] .dch-burger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* --------------------------------------------------------------- SCROLLED */
.dch.is-scrolled .dch-top { height: 0; opacity: 0; }
.dch.is-scrolled .dch-bar__in { height: 68px; }
.dch.is-scrolled .dch-logo img { height: 38px; }
.dch.is-scrolled .dch-bar { box-shadow: 0 8px 30px rgba(21,18,15,.08); }

/* --------------------------------------------------------------- MOBILE */
.dch-mobile {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 90vw);
    background: var(--dch-paper);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform .4s var(--dch-ease);
    display: flex; flex-direction: column;
    overflow-y: auto;
    box-shadow: var(--dch-shadow);
}
.dch-mobile[hidden] { display: flex; }              /* keep transitionable */
.dch[data-open] .dch-mobile { transform: translateX(0); }
.dch-macc { padding: 80px 18px 18px; flex: 1; }
.dch-macc__item { border-bottom: 1px solid var(--dch-line-2); }
.dch-macc__head {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6px; background: none; border: 0; cursor: pointer;
    font-family: var(--dch-serif); font-size: 1.2rem; color: var(--dch-ink); text-align: left;
}
.dch-macc__head--link { font-family: var(--dch-serif); }
.dch-macc__caret { width: 18px; height: 18px; color: var(--dch-stone); transition: transform .3s var(--dch-ease); }
.dch-macc__item.is-open .dch-macc__caret { transform: rotate(180deg); }
.dch-macc__panel { overflow: hidden; max-height: 0; transition: max-height .4s var(--dch-ease); }
.dch-macc__item.is-open .dch-macc__panel { max-height: 600px; }
.dch-macc__all {
    display: block; padding: 8px 6px 12px; font-size: .76rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--dch-gold-deep);
}
.dch-macc__sub {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 6px; font-size: .98rem; color: var(--dch-graphite);
}
.dch-macc__sub .dch-ico { width: 18px; height: 18px; color: var(--dch-gold-deep); }
.dch-macc__sub:hover { color: var(--dch-gold-deep); }
.dch-mobile__foot { padding: 20px 18px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--dch-line); }
.dch-mobile__contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.dch-mobile__contact a { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--dch-stone); }
.dch-mobile__contact .dch-top__ico { color: var(--dch-gold-deep); }

.dch-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(21,18,15,.5); backdrop-filter: blur(2px);
    opacity: 0; transition: opacity .4s var(--dch-ease);
}
.dch-overlay[hidden] { display: block; pointer-events: none; }
.dch[data-open] .dch-overlay { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------- RESPONSIVE */
@media (max-width: 1180px) {
    .dch-usp li:nth-child(3) { display: none; }
    .dch-menu__link { padding: 0 10px; font-size: .9rem; }
}
@media (max-width: 1024px) {
    .dch-nav { display: none; }
    .dch-burger { display: inline-flex; }
    .dch-actions .dch-btn--ghost { display: none; }
    .dch-bar__in { gap: 16px; }
    .dch-nav, .dch-menu__item { position: static; }
}
@media (max-width: 720px) {
    .dch-top { display: none; }
    .dch-actions .dch-btn--gold { display: none; }
    .dch-bar__in { height: 70px; }
}
@media (prefers-reduced-motion: reduce) {
    .dch *, .dch *::before, .dch *::after { transition-duration: .001ms !important; }
}

/* ==========================================================================
   GLOBAL STICKY FOOTER CTA — expandable bottom bar
   ========================================================================== */
.dcf {
    --dcf-ink: #1C1C1C;
    --dcf-gold: #E37D19;
    --dcf-gold-deep: #B85F0E;
    --dcf-ease: cubic-bezier(.22,.61,.36,1);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    display: flex; justify-content: center;
    padding: 0 16px max(16px, env(safe-area-inset-bottom));
    pointer-events: none;
    font-family: "Inter", system-ui, sans-serif;
    transform: translateY(150%); opacity: 0;
    transition: transform .55s var(--dcf-ease), opacity .4s var(--dcf-ease);
}
.dcf.is-visible { transform: translateY(0); opacity: 1; }
.dcf__bar, .dcf__fab { pointer-events: auto; }

.dcf__bar {
    display: flex; align-items: center; gap: clamp(12px, 1.6vw, 22px);
    width: min(1080px, 100%);
    padding: 11px 14px 11px 22px;
    background: var(--dcf-ink); color: #fff;
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(28,28,28,.34), 0 4px 14px rgba(28,28,28,.2);
}
.dcf__logo { display: inline-flex; flex: 0 0 auto; }
.dcf__logo img { height: 24px; width: auto; display: block; }
.dcf__msg { font-family: "Fraunces", Georgia, serif; font-size: 1.02rem; color: rgba(255,255,255,.92); white-space: nowrap; margin-right: auto; }
.dcf__actions { display: flex; align-items: center; gap: 10px; }
/* footer knoppen — gedrukte pagina-stapel + stamp-press + inkt-veeg */
.dcf__btn {
    position: relative; overflow: hidden; isolation: isolate;
    display: inline-flex; align-items: center; gap: .5em;
    padding: .72em 1.2em; border-radius: 11px;
    font-size: .86rem; font-weight: 600; white-space: nowrap; line-height: 1;
    border: 1px solid transparent; cursor: pointer;
    transition: transform .22s var(--dcf-ease), box-shadow .22s var(--dcf-ease), color .3s var(--dcf-ease), border-color .3s var(--dcf-ease);
}
.dcf__btn svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.dcf__btn::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translateX(-101%); transition: transform .5s var(--dcf-ease); }
.dcf__btn:hover { transform: translate(3px, 4px); }
.dcf__btn:hover::before { transform: translateX(0); }
.dcf__btn:active { transform: translate(5px, 7px); box-shadow: 0 0 0 transparent; }

.dcf__btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); box-shadow: 3px 4px 0 rgba(255,255,255,.12), 7px 9px 0 rgba(255,255,255,.05); }
.dcf__btn--ghost::before { background: #fff; }
.dcf__btn--ghost:hover { color: var(--dcf-ink); border-color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.3); }

.dcf__btn--wa { color: #fff; background: #25D366; box-shadow: 3px 4px 0 rgba(17,110,55,.55), 7px 9px 0 rgba(17,110,55,.26); }
.dcf__btn--wa::before { background: linear-gradient(115deg, #1aa251, #11793b); }
.dcf__btn--wa:hover { color: #fff; box-shadow: 0 1px 0 rgba(17,110,55,.5); }

.dcf__btn--gold { color: #fff; background: var(--dcf-gold); box-shadow: 3px 4px 0 rgba(184,95,14,.5), 7px 9px 0 rgba(184,95,14,.22); }
.dcf__btn--gold::before { background: linear-gradient(115deg, var(--dcf-gold-deep), #93470a); }
.dcf__btn--gold:hover { color: #fff; box-shadow: 0 1px 0 rgba(184,95,14,.45); }
.dcf__collapse {
    width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.22); background: transparent; color: #fff;
    display: grid; place-items: center; cursor: pointer;
    transition: background-color .25s var(--dcf-ease);
}
.dcf__collapse:hover { background: rgba(255,255,255,.12); }
.dcf__collapse svg { width: 18px; height: 18px; }

/* collapsed → compact FAB bottom-right */
.dcf__fab {
    display: none; width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--dcf-gold); color: var(--dcf-ink);
    box-shadow: 0 14px 34px rgba(227,125,25,.42);
    align-items: center; justify-content: center;
    transition: transform .25s var(--dcf-ease), background-color .25s var(--dcf-ease);
}
.dcf__fab:hover { transform: scale(1.06); }
.dcf__fab svg { width: 26px; height: 26px; }
.dcf.is-collapsed { justify-content: flex-end; }
.dcf.is-collapsed .dcf__bar { display: none; }
.dcf.is-collapsed .dcf__fab { display: inline-flex; }

@media (max-width: 820px) {
    .dcf__msg { display: none; }
    .dcf__btn--ghost span, .dcf__btn--wa span { display: none; }
    .dcf__btn--ghost, .dcf__btn--wa { padding: .72em; }
    .dcf__bar { gap: 8px; padding: 10px 12px 10px 16px; }
}
@media (max-width: 480px) {
    .dcf__btn--gold { font-size: .82rem; padding: .72em 1em; }
}
@media (prefers-reduced-motion: reduce) {
    .dcf { transition: opacity .2s linear; transform: none; }
}

/* ==========================================================================
   SITE FOOTER (white) — modern map + columns + bottom bar
   ========================================================================== */
.dcfoot {
    --f-ink: #1C1C1C; --f-stone: #57514B; --f-mist: #8A847C;
    --f-paper: #FAF6F0; --f-line: rgba(28,28,28,.10);
    --f-gold: #E37D19; --f-gold-deep: #B85F0E;
    --f-serif: "Fraunces", Georgia, serif;
    /* reuse the sticky-CTA button system inside the footer */
    --dcf-ink: #1C1C1C; --dcf-gold: #E37D19; --dcf-gold-deep: #B85F0E; --dcf-ease: cubic-bezier(.22,.61,.36,1);
    font-family: "Inter", system-ui, sans-serif;
    color: var(--f-stone); background: #fff;
}
.dcfoot *, .dcfoot *::before, .dcfoot *::after { box-sizing: border-box; }
.dcfoot a { color: inherit; text-decoration: none; }
.dcfoot__shell { max-width: 1320px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 56px); }

/* modern map strip */
.dcfoot__mapstrip { position: relative; height: clamp(260px, 32vw, 360px); overflow: hidden; background: var(--f-paper); }
.dcfoot__map { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) brightness(1.02); }
.dcfoot__map-veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(28,28,28,.8) 0%, rgba(28,28,28,.45) 32%, transparent 60%); }
.dcfoot__mapcard {
    position: absolute; left: clamp(18px, 6vw, 80px); top: 50%; transform: translateY(-50%); z-index: 2;
    max-width: 340px; display: flex; flex-direction: column; gap: 7px;
    padding: 22px 24px; border-radius: 16px; color: var(--f-ink);
    background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.7); box-shadow: 0 22px 50px rgba(28,28,28,.28);
}
.dcfoot__map-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--f-gold-deep); }
.dcfoot__map-eyebrow svg { width: 15px; height: 15px; }
.dcfoot__map-title { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 500; color: var(--f-ink); }
.dcfoot__map-addr { font-size: .92rem; color: var(--f-stone); }
.dcfoot__route { margin-top: 12px; align-self: flex-start; }

/* body */
.dcfoot__body { background: #fff; padding-top: clamp(48px, 6vw, 80px); }
.dcfoot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.dcfoot__logo { height: 56px; width: auto; margin-bottom: 22px; }
.dcfoot__h { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 500; color: var(--f-ink); margin: 0 0 10px; }
.dcfoot__mission { font-size: .94rem; line-height: 1.65; color: var(--f-stone); margin: 0 0 22px; max-width: 38ch; }
.dcfoot__social { display: flex; align-items: center; gap: 12px; }
.dcfoot__social-label { font-size: .8rem; font-weight: 600; color: var(--f-mist); margin-right: 4px; }
.dcfoot__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--f-line); color: var(--f-ink); transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
.dcfoot__social a:hover { background: var(--f-ink); color: #fff; border-color: var(--f-ink); }
.dcfoot__social svg { width: 18px; height: 18px; }

.dcfoot__h5 { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--f-ink); margin: 0 0 18px; }
.dcfoot__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dcfoot__links a { font-size: .95rem; color: var(--f-stone); transition: color .2s ease; }
.dcfoot__links a:hover { color: var(--f-gold-deep); }

.dcfoot__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.dcfoot__contact li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: .95rem; color: var(--f-stone); }
.dcfoot__contact svg { width: 18px; height: 18px; color: var(--f-gold-deep); margin-top: 2px; }
.dcfoot__contact a:hover { color: var(--f-gold-deep); }

.dcfoot__col--certs { display: grid; gap: 16px; align-content: start; }
.dcfoot__cert { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; }
.dcfoot__cert .dcfoot__badge { width: 52px; height: auto; object-fit: contain; }
.dcfoot__cert span { font-size: .84rem; line-height: 1.4; color: var(--f-stone); }

/* aangesloten bij + voorwaarden */
.dcfoot__partners { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; padding-bottom: 26px; border-top: 1px solid var(--f-line); }
.dcfoot__partners-l { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.dcfoot__partlabel { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--f-mist); }
.dcfoot__logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.dcfoot__logo-img { height: 40px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
.dcfoot__logo-img:hover { filter: none; opacity: 1; }
.dcfoot__terms { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--f-ink); }
.dcfoot__terms svg { width: 1em; height: 1em; transition: transform .25s ease; }
.dcfoot__terms:hover svg { transform: translateX(3px); }

/* bottom bar */
.dcfoot__bottom { background: var(--f-paper); border-top: 1px solid var(--f-line); }
.dcfoot__bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 18px; padding-bottom: calc(18px + 86px); }
.dcfoot__awards { font-size: .8rem; color: var(--f-mist); }
.dcfoot__legal { font-size: .8rem; color: var(--f-stone); display: inline-flex; gap: 8px; align-items: center; }
.dcfoot__legal span { color: var(--f-mist); }
.dcfoot__legal a:hover { color: var(--f-gold-deep); }

@media (max-width: 980px) {
    .dcfoot__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .dcfoot__brand { grid-column: 1 / -1; }
    .dcfoot__mapcard { max-width: min(340px, 76%); }
}
@media (max-width: 600px) {
    .dcfoot__grid { grid-template-columns: 1fr; }
    .dcfoot__partners, .dcfoot__bottom-in { flex-direction: column; align-items: flex-start; }
    .dcfoot__map-veil { background: linear-gradient(180deg, transparent 30%, rgba(28,28,28,.65)); }
}
