/* Ravenshorst Installatietechniek */

@font-face {
    font-family: "Archivo";
    src: url("../fonts/archivo-var.woff2") format("woff2");
    font-weight: 100 900;
    font-stretch: 62% 125%;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0b1430;
    --ink-2: #152148;
    --ink-3: #2a3767;
    --paper: #f3f5f8;
    --white: #ffffff;
    --line: #d5dbe5;
    --field: #aab4c4;
    --slate: #4f5a74;
    --slate-light: #aeb7ca;
    --signal: #ffc21a;
    --signal-soft: #fff5d6;
    --signal-edge: #ecc75a;
    --ok: #1c7f52;
    --ok-soft: #e7f4ed;
    --bad: #b8321f;
    --bad-soft: #fcebe8;
    --focus: #3d6bff;
    --metal: #e3e7ee;
    --metal-edge: #c6cdd9;

    --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --wrap: 1200px;
    --gutter: clamp(1rem, 4vw, 2rem);
    --section: clamp(3rem, 7vw, 5.5rem);
    --radius: 6px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    font-stretch: 100%;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3, h4 {
    margin: 0 0 0.6em;
    font-stretch: 118%;
    font-weight: 780;
    line-height: 1.12;
    letter-spacing: -0.012em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.6vw, 2.35rem); }
h3 { font-size: 1.2rem; font-stretch: 110%; font-weight: 720; }
.h-small { font-size: 1.15rem; font-stretch: 110%; font-weight: 700; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
address { font-style: normal; margin-bottom: 1em; }
code { font-size: 0.9em; background: var(--paper); padding: 0.1em 0.35em; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.lead { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem); line-height: 1.5; max-width: 60ch; }
.small { font-size: 0.9rem; }
.muted { color: var(--slate); font-weight: 400; }

.sr {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.skip {
    position: absolute; left: 1rem; top: -4rem; z-index: 100;
    background: var(--signal); color: var(--ink); padding: 0.75rem 1rem; font-weight: 700; border-radius: var(--radius);
}
.skip:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ------------------------------------------------------------------ */
/* Knoppen                                                            */
/* ------------------------------------------------------------------ */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    min-height: 44px; padding: 0.65rem 1.15rem;
    font: inherit; font-size: 1rem; font-weight: 650; font-stretch: 106%; line-height: 1.2;
    text-decoration: none; text-align: center;
    border: 2px solid transparent; border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.btn-lg { min-height: 54px; padding: 0.85rem 1.5rem; font-size: 1.075rem; }
.btn-signal { background: var(--signal); color: var(--ink); }
.btn-signal:hover { background: #ffd24f; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-3); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-ghost[aria-current] { background: var(--ink); color: var(--white); }
.btn-danger { background: var(--white); color: var(--bad); border-color: #e6b3aa; }
.btn-danger:hover { border-color: var(--bad); }
.btn[disabled], .btn.is-busy { opacity: 0.7; cursor: progress; }

/* ------------------------------------------------------------------ */
/* Topbar en header                                                   */
/* ------------------------------------------------------------------ */

.topbar { background: var(--ink); color: #d7dcea; font-size: 0.875rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar p { margin: 0; }
.topbar a { color: var(--white); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.show-sm { display: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-contact { display: flex; gap: 1.5rem; }

.status { display: inline-flex; align-items: center; gap: 0.55rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-light); flex: none; }
.status.is-open .status-dot { background: #3fd08a; box-shadow: 0 0 0 3px rgba(63, 208, 138, 0.22); }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; flex: none; }
.brand img { height: 46px; width: auto; max-width: 100%; }
.footer-logo { margin: 0 0 1rem; }
.footer-logo img { height: 50px; width: auto; max-width: 100%; }

.wordmark { display: inline-flex; flex-direction: column; line-height: 1; margin: 0; }
.wordmark-name { font-size: 1.45rem; font-stretch: 125%; font-weight: 820; letter-spacing: -0.015em; color: var(--ink); }
.wordmark-sub { font-size: 0.78rem; font-weight: 520; letter-spacing: 0.04em; color: var(--slate); margin-top: 0.3rem; }
.wordmark-light .wordmark-name { color: var(--white); }
.wordmark-light .wordmark-sub { color: var(--slate-light); }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.1rem; }
.main-nav a, .header-actions .btn { white-space: nowrap; }
.main-nav a:not(.btn) {
    display: block; padding: 0.55rem 0.7rem; border-radius: var(--radius);
    font-weight: 560; text-decoration: none; color: var(--ink);
}
.main-nav a:not(.btn):hover { background: var(--paper); }
.main-nav a[aria-current]:not(.btn) { box-shadow: inset 0 -3px 0 var(--signal); border-radius: 0; }
.main-nav { display: flex; align-items: center; gap: 1rem; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle {
    display: none; width: 46px; height: 46px; border: 2px solid var(--line); border-radius: var(--radius);
    background: var(--white); color: var(--ink); cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: inline-flex; }

@media (max-width: 1180px) {
    .menu-toggle { display: inline-flex; }
    .main-nav {
        display: none;
        position: absolute; left: 0; right: 0; top: 100%;
        background: var(--white); border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px -18px rgba(11, 20, 48, 0.35);
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 0.5rem var(--gutter) 1.25rem;
    }
    .main-nav.is-open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a:not(.btn) { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--paper); border-radius: 0; font-size: 1.1rem; }
    .main-nav a[aria-current]:not(.btn) { box-shadow: inset 4px 0 0 var(--signal); padding-left: 0.9rem; }
    .nav-actions { padding-top: 1rem; }
    .nav-actions .btn { width: 100%; }
}
@media (max-width: 560px) {
    .header-inner { min-height: 64px; gap: 0.5rem; }
    .header-actions { gap: 0.4rem; }
    .wordmark-name { font-size: 1.2rem; }
    .wordmark-sub { font-size: 0.7rem; }
    .brand img { height: 34px; }
    .header-actions .btn-signal { padding-inline: 0.75rem; white-space: nowrap; font-size: 0.92rem; }
    .hide-sm { display: none !important; }
    .show-sm { display: inline; }
    .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 440px) {
    .header-actions .btn-signal .icon { display: none; }
}
@media (max-width: 380px) {
    .header-actions .btn-signal .icon { display: inline-block; }
    .header-actions .btn-signal span { display: none; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */

.hero { background: var(--ink); color: var(--white); padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 8vw, 6.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { max-width: 14ch; }
.hero .lead { color: #d7dcea; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0 1.25rem; }
.hero-sub { color: var(--slate-light); margin: 0; }
.hero-sub a { color: var(--white); }

.service-panel {
    background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 12px;
    padding: clamp(1.25rem, 3vw, 2rem);
}
.service-panel .status { font-size: 0.95rem; color: #d7dcea; margin-bottom: 0.75rem; }
.service-phone {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); font-stretch: 116%; font-weight: 760; letter-spacing: -0.01em;
    color: var(--white); text-decoration: none; margin-bottom: 1.25rem;
}
.service-phone .icon { color: var(--signal); width: 0.8em; height: 0.8em; }
.service-phone:hover { text-decoration: underline; }
.service-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ink-3); }
.service-list li { padding: 0.8rem 0; border-bottom: 1px solid var(--ink-3); color: #d7dcea; font-size: 0.97rem; }
.service-list li:last-child { border-bottom: 0; padding-bottom: 0; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ */
/* Secties                                                            */
/* ------------------------------------------------------------------ */

.section { padding-block: var(--section); }
.section-tight { padding-bottom: 0; }
.section-alt { background: var(--paper); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: end; gap: 0.75rem 3rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; align-items: start; } }
.section-head h2 { margin: 0; }
.section-head p { margin: 0; max-width: 52ch; color: var(--slate); }

/* ------------------------------------------------------------------ */

/* Diensten op de homepage */
.section-diensten { background: var(--white); }
.dienst-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.dienst-kaart a {
    display: flex; flex-direction: column; height: 100%; gap: 0.5rem;
    background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--ink);
    border-radius: 10px; padding: 1.25rem 1.35rem 1.1rem; text-decoration: none; color: var(--ink);
    transition: border-top-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.dienst-kaart a:hover { background: var(--white); border-top-color: var(--signal); transform: translateY(-2px); box-shadow: 0 14px 24px -18px rgba(11, 20, 48, 0.55); }
.dienst-kaart h3 { font-size: 1.12rem; line-height: 1.25; margin: 0; hyphens: manual; }
.dienst-kaart p { margin: 0; color: var(--slate); font-size: 0.95rem; line-height: 1.5; }
.dienst-meer { margin-top: auto; padding-top: 0.6rem; display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 640; font-size: 0.92rem; }
.dienst-meer .icon { width: 1.05rem; height: 1.05rem; transition: transform 0.15s; }
.dienst-kaart a:hover .dienst-meer .icon { transform: translateX(3px); }
.dienst-alles { margin: 1.5rem 0 0; }
@media (prefers-reduced-motion: reduce) { .dienst-kaart a, .dienst-meer .icon { transition: none; } }
@media (max-width: 1180px) { .dienst-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) { .dienst-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .dienst-grid { grid-template-columns: 1fr; } }


.section-sectors { background: var(--paper); }
.sectors { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.sector {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 1.5rem 1.4rem 1.35rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.sector-icon {
    display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem;
    border-radius: 10px; background: var(--ink); color: var(--signal); margin-bottom: 0.15rem;
}
.sector-icon .icon { width: 1.5rem; height: 1.5rem; }
.sector h3 { margin: 0; font-size: 1.22rem; line-height: 1.2; }
.sector > p { margin: 0; color: var(--slate); font-size: 0.97rem; line-height: 1.55; }
.sector-tags { list-style: none; margin: auto 0 0; padding: 0.9rem 0 0; display: flex; flex-wrap: wrap; gap: 0.35rem; border-top: 1px solid var(--line); }
.sector-tags li { font-size: 0.8rem; font-weight: 600; color: var(--ink); background: var(--paper); border-radius: 999px; padding: 0.25rem 0.6rem; }
@media (max-width: 860px) { .sectors { grid-template-columns: 1fr; } }

.onderhoud-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.onderhoud-acties { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.plans { list-style: none; }
.plan { position: relative; gap: 0.35rem; }
.plan-badge { position: absolute; top: -0.7rem; left: 1.4rem; background: var(--signal); color: var(--ink); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 999px; }
.plan-punten { list-style: none; margin: 0.85rem 0 0; padding: 0.85rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.4rem; }
.plan-punten li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.93rem; line-height: 1.45; }
.plan-punten .icon { width: 1.05rem; height: 1.05rem; flex: none; color: var(--ok); margin-top: 0.15rem; }
@media (max-width: 860px) { .onderhoud-grid { grid-template-columns: 1fr; } .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }
.onderhoud-grid > div > p { max-width: 50ch; color: var(--slate); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.plan { border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem; background: var(--white); display: flex; flex-direction: column; }
.plan h3, .plan h2 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.plan p { color: var(--slate); margin: 0; }
.plan-featured { border: 2px solid var(--ink); }
.plans-full { gap: 1.5rem; }
.plans-full .plan { padding: clamp(1.4rem, 3vw, 2rem); }
.plans-full .plan h2 { font-size: 1.5rem; }
.plan-voor { margin-bottom: 1.25rem !important; }
.plans-full .ticks { flex: 1; margin-bottom: 1.5rem; }
.plans-full .btn { align-self: flex-start; }
@media (max-width: 860px) {
    .onderhoud-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

.band { background: var(--ink); color: var(--white); padding-block: clamp(2rem, 5vw, 3rem); }
.band-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem 3rem; flex-wrap: wrap; }
.band h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); margin-bottom: 0.3rem; }
.band p { margin: 0; color: #d7dcea; }

.section-partners { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.empty-inline { max-width: 65ch; color: var(--slate); }

/* ------------------------------------------------------------------ */
/* Subpagina's                                                        */
/* ------------------------------------------------------------------ */

.page-head { background: var(--ink); color: var(--white); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-head h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin-bottom: 0.4em; }
.page-head .lead { color: #d7dcea; margin: 0; }
.page-head-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.page-head-signal { border-bottom: 6px solid var(--signal); }

.prose { max-width: 68ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .prose-grid { grid-template-columns: 1fr; } }

.facts dl { margin: 0; border-top: 3px solid var(--ink); }
.facts dl > div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.facts dt { font-size: 0.9rem; color: var(--slate); }
.facts dd { margin: 0.15rem 0 0; font-size: 1.45rem; font-stretch: 116%; font-weight: 740; line-height: 1.2; }

.steps { list-style: none; padding: 0; counter-reset: stap; }
.steps li { counter-increment: stap; position: relative; padding: 0 0 1.1rem 3rem; }
.steps li::before {
    content: counter(stap); position: absolute; left: 0; top: 0.05em;
    width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center;
    background: var(--ink); color: var(--white); font-weight: 700; font-size: 0.95rem;
}
.steps-compact li { padding-left: 2.6rem; font-size: 0.97rem; }
.steps-compact li::before { width: 1.75rem; height: 1.75rem; font-size: 0.85rem; }

.ticks { list-style: none; padding: 0; }
.ticks li { position: relative; padding-left: 1.7rem; margin-bottom: 0.45rem; }
.ticks li::before {
    content: ""; position: absolute; left: 0.2rem; top: 0.42em;
    width: 0.45rem; height: 0.8rem; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}

/* Diensten */
.diensten-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.diensten-index { position: sticky; top: 100px; }
.diensten-index ul { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.diensten-index a { display: block; padding: 0.4rem 0 0.4rem 1rem; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: var(--slate); font-size: 0.95rem; }
.diensten-index a:hover, .diensten-index a.is-current { color: var(--ink); border-left-color: var(--ink); }
.dienst { padding-block: 2rem; border-top: 1px solid var(--line); max-width: 70ch; }
.dienst:first-child { padding-top: 0; border-top: 0; }
.dienst h2 { font-size: 1.6rem; }
.dienst-cta { margin: 0.75rem 0 0; }
.dienst-cta a { font-weight: 600; }
@media (max-width: 860px) {
    .diensten-layout { grid-template-columns: 1fr; }
    .diensten-index { position: static; }
    .diensten-index ul { display: flex; flex-wrap: wrap; gap: 0.5rem; border: 0; }
    .diensten-index a { border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.85rem; margin: 0; }
}


.vacatures { display: grid; gap: 1.5rem; max-width: 760px; }
.vacature { border-top: 3px solid var(--ink); padding-top: 1.25rem; }

.quick-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.quick-links a { display: inline-block; padding: 0.7rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; font-weight: 600; }
.quick-links a:hover { border-color: var(--ink); }

/* ------------------------------------------------------------------ */
/* Contact                                                            */
/* ------------------------------------------------------------------ */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form > p { color: var(--slate); max-width: 55ch; }
.contact-form .form { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.25rem, 3vw, 1.85rem); }
.section-contact { background: var(--paper); }
.form-aside { margin-top: 1rem; font-size: 0.95rem; color: var(--slate); }

/* Het adresblok in het contactformulier is een rustig kadertje, want het is niet verplicht */
.contact-form .adres { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.1rem 0.35rem; margin-bottom: 1.25rem; }
.contact-form .adres .adres-kop { margin-top: 0; }

.contact-details { position: sticky; top: calc(var(--header-h, 76px) + 1rem); background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.25rem, 3vw, 1.75rem); }
.contact-details h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.details { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.details li { display: flex; gap: 0.75rem; padding: 0.5rem 0; border-top: 1px solid var(--line); }
.details li:first-child { border-top: 0; }
.details .icon { margin-top: 0.2em; color: var(--slate); flex: none; }
.map { aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; margin-bottom: 0.9rem; background: var(--metal); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-details .map + p { margin: 0; }
.contact-details .map + p a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 640; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } .contact-details { position: static; } }

/* ------------------------------------------------------------------ */
/* Formulieren                                                        */
/* ------------------------------------------------------------------ */

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.form-main { max-width: 720px; }
.form-side { position: sticky; top: 100px; }
@media (max-width: 960px) {
    .form-layout { grid-template-columns: 1fr; }
    .form-side { position: static; }
}

.form-section { border: 0; padding: 0; margin: 0 0 2.25rem; min-width: 0; }
.form-section > legend, .form-main > h2 {
    width: 100%; padding: 0 0 0.6rem; margin-bottom: 1.25rem;
    font-size: 1.25rem; font-stretch: 112%; font-weight: 740;
    border-bottom: 1px solid var(--line);
}
.form-section > .hint { margin-top: -0.5rem; }

.field { margin-bottom: 1.15rem; min-width: 0; }
.field > label, .field legend { display: block; font-weight: 620; margin-bottom: 0.35rem; line-height: 1.35; }
.optional { font-weight: 400; color: var(--slate); font-size: 0.9em; }
.hint { color: var(--slate); font-size: 0.9rem; margin: -0.1rem 0 0.5rem; line-height: 1.45; }
.field fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="password"], input:not([type]), textarea, select {
    width: 100%; min-height: 50px;
    font: inherit; font-size: 1rem; color: var(--ink);
    padding: 0.7rem 0.85rem;
    background: var(--white);
    border: 1.5px solid var(--field); border-radius: var(--radius);
    transition: border-color 0.15s, box-shadow 0.15s;
}
textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
input:hover, textarea:hover, select:hover { border-color: var(--slate); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(61, 107, 255, 0.35); }

.select select {
    appearance: none; -webkit-appearance: none; padding-right: 2.6rem; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230b1430' d='M7 9.5 12 14.5 17 9.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.7rem center; background-size: 1.4rem;
}

.has-error input, .has-error textarea, .has-error select { border-color: var(--bad); }
.error { color: var(--bad); font-weight: 600; font-size: 0.92rem; margin: 0.4rem 0 0; }

.check { display: flex; gap: 0.7rem; align-items: flex-start; cursor: pointer; font-weight: 400 !important; }
.check input, .radio input { width: 1.25rem; height: 1.25rem; margin: 0.15rem 0 0; accent-color: var(--ink); flex: none; }
.field-checkbox { margin-top: 0.5rem; }
.field > label.check { display: flex; margin-bottom: 0; font-weight: 400; line-height: 1.5; }

.radios { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio {
    display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer;
    padding: 0.65rem 1.1rem 0.65rem 0.85rem; min-width: 110px;
    border: 1.5px solid var(--field); border-radius: var(--radius); background: var(--white);
}
.radio input { margin: 0; }
.radio:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.radio:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }

.row-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
.row-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 1rem; }
.row-postcode { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); }
.row-adres { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 0 1rem; max-width: 30rem; }
.row-straat { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
.adres-status { display: flex; align-items: center; gap: 0.5rem; margin: -0.35rem 0 1rem; font-size: 0.93rem; color: var(--slate); }
.adres-status .icon { width: 1.1rem; height: 1.1rem; flex: none; }
.adres-status.is-ok { color: var(--ok, #1f7a3f); }
.adres-status.is-warn { color: #8a5a00; }
.adres-keuze { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: -0.5rem 0 1rem; }
.adres-keuze button { font: inherit; font-size: 0.9rem; font-weight: 600; min-height: 40px; min-width: 44px; padding: 0.35rem 0.8rem; border: 1.5px solid var(--field); border-radius: var(--radius); background: var(--white); color: var(--ink); cursor: pointer; }
.adres-keuze button:hover, .adres-keuze button[aria-pressed="true"] { border-color: var(--ink); background: var(--paper); }
.is-looking-up input { background-image: linear-gradient(90deg, transparent, rgba(11, 20, 48, 0.06), transparent); background-size: 200% 100%; animation: rh-scan 1s linear infinite; }
@keyframes rh-scan { from { background-position: 100% 0; } to { background-position: -100% 0; } }
@media (prefers-reduced-motion: reduce) { .is-looking-up input { animation: none; } }
@media (max-width: 640px) {
    .row-2, .row-3 { grid-template-columns: 1fr; }
    .row-postcode { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); }
    .row-adres { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 0.9fr); gap: 0 0.6rem; max-width: none; }
    .row-straat { grid-template-columns: 1fr; }
}

.toestel { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, 0.7fr); gap: 0 1rem; padding-bottom: 0.25rem; }
.toestel + .toestel { border-top: 1px dashed var(--line); padding-top: 1rem; }
@media (max-width: 640px) { .toestel { grid-template-columns: 1fr 1fr; } .toestel .field:first-child { grid-column: 1 / -1; } }

.file-drop { position: relative; border: 2px dashed var(--field); border-radius: 8px; padding: 1rem; background: var(--paper); transition: border-color 0.15s, background 0.15s; }
.file-drop:hover, .file-drop.is-over { border-color: var(--ink); background: var(--white); }
.file-drop:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
/* Het echte veld ligt onzichtbaar over het hele vlak: klikken en slepen werken overal */
.file-drop input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; font-size: 0; }
.file-face { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.9rem; pointer-events: none; }
.file-btn {
    display: inline-flex; align-items: center; gap: 0.45rem; min-height: 44px;
    font-weight: 620; color: var(--ink); background: var(--white);
    border: 1.5px solid var(--field); border-radius: var(--radius); padding: 0.5rem 1rem;
}
.file-btn .icon { width: 1.1rem; height: 1.1rem; }
.file-status { color: var(--slate); font-size: 0.95rem; }
.file-list { position: relative; z-index: 1; }
.file-list { list-style: none; margin: 0; padding: 0; font-size: 0.9rem; }
.file-list:not(:empty) { margin-top: 0.75rem; }
.file-list li { padding: 0.3rem 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; }
.file-list li > span:first-child { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.file-list .is-bad { color: var(--bad); font-weight: 600; }
.file-remove { font: inherit; font-size: 0.85rem; color: var(--ink); background: none; border: 0; padding: 0 0.2rem; text-decoration: underline; cursor: pointer; min-height: 32px; }
.has-error .file-drop { border-color: var(--bad); }

.form-submit { margin-top: 1.5rem; }
.form-submit .btn { min-width: 220px; }
@media (max-width: 560px) { .form-submit .btn { width: 100%; } }

.tariff-check { background: var(--signal-soft); border: 1px solid var(--signal-edge); border-radius: 8px; padding: 1.1rem 1.25rem 0.4rem; }
.tariff-check p { font-size: 0.97rem; }

[hidden] { display: none !important; }

/* Meldingen */
.notice { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.15rem; border-radius: 8px; border-left: 4px solid; margin-bottom: 1.5rem; }
.notice .icon { width: 1.4rem; height: 1.4rem; margin-top: 0.05rem; }
.notice p:last-child, .notice ul:last-child { margin-bottom: 0; }
.notice ul { margin: 0.4rem 0 0.6rem; }
.notice-error { background: var(--bad-soft); border-color: var(--bad); }
.notice-error .icon { color: var(--bad); }
.notice-warn { background: var(--signal-soft); border-color: #d9a400; }
.notice-ok { background: var(--ok-soft); border-color: var(--ok); }
.notice-ok .icon { color: var(--ok); }
.notice:focus { outline: none; }

.success { border: 2px solid var(--ok); border-radius: 12px; padding: clamp(1.5rem, 4vw, 2.25rem); background: var(--ok-soft); }
.success:focus { outline: none; }
.success-mark { width: 3rem; height: 3rem; border-radius: 50%; background: var(--ok); color: var(--white); display: grid; place-items: center; margin-bottom: 1rem; }
.success-mark .icon { width: 1.8rem; height: 1.8rem; }
.success h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.success-ref { font-size: 1.1rem; }
.success .small { color: var(--slate); margin: 0; }

/* Zijbalk */
.side-block { border-top: 3px solid var(--ink); padding-top: 1rem; margin-bottom: 2.25rem; }
.side-block h2 { font-size: 1.15rem; font-stretch: 110%; margin-bottom: 0.6rem; }
.side-block p { font-size: 0.97rem; }
.side-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-stretch: 114%; font-weight: 760; text-decoration: none; }
.side-phone:hover { text-decoration: underline; }
.tariffs { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-bottom: 0.75rem; }
.tariffs th, .tariffs td { text-align: left; padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--line); font-weight: 400; vertical-align: top; }
.tariffs td { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.tariffs .is-now th, .tariffs .is-now td { background: var(--signal-soft); font-weight: 680; }

.badge { display: inline-block; padding: 0.12rem 0.5rem; border-radius: 999px; font-size: 0.78rem; font-weight: 650; background: var(--paper); color: var(--slate); border: 1px solid var(--line); vertical-align: 0.1em; white-space: nowrap; }
.badge-ok { background: var(--ok-soft); color: var(--ok); border-color: #b9dcc8; }
.badge-bad { background: var(--bad-soft); color: var(--bad); border-color: #efc2ba; }
.badge-signal { background: var(--signal); color: var(--ink); border-color: var(--signal); }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */

.site-footer { background: var(--ink); color: #c7cfdf; font-size: 0.95rem; padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem 3rem; padding-bottom: 2.5rem; }
.footer-brand .wordmark { margin-bottom: 1rem; }
.footer-brand p:last-child { max-width: 32ch; }
.footer-title { font-size: 1rem; font-stretch: 110%; color: var(--white); margin-bottom: 0.75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 2rem; border-top: 1px solid var(--ink-3); padding-block: 1.25rem; font-size: 0.88rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Beheer                                                             */
/* ------------------------------------------------------------------ */

body.admin { background: var(--paper); }
.admin-header { background: var(--ink); color: var(--white); }
.admin-header .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 58px; }
.admin-brand { color: var(--white); text-decoration: none; font-weight: 800; font-stretch: 120%; font-size: 1.15rem; }
.admin-brand span { font-weight: 450; font-stretch: 100%; color: var(--slate-light); }
.admin-site { color: #d7dcea; font-size: 0.9rem; }
.admin-main { padding-block: 2rem 4rem; }
.admin-main h1 { font-size: 1.9rem; }
.admin-narrow { max-width: 460px; margin: 2rem auto; background: var(--white); padding: 2rem; border-radius: 12px; border: 1px solid var(--line); }
.admin-narrow h1 { font-size: 1.6rem; }
.code-copy { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.85rem !important; }
.admin-top { margin-bottom: 1.5rem; }
.admin-nav { display: flex; gap: 0.25rem; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.admin-nav a { padding: 0.6rem 1rem; text-decoration: none; font-weight: 600; color: var(--slate); border-bottom: 3px solid transparent; margin-bottom: -1px; }
.admin-nav a[aria-current] { color: var(--ink); border-bottom-color: var(--signal); }
.admin-filters { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: flex-end; margin-bottom: 1.5rem; }
.admin-filters .field { margin: 0; min-width: 170px; }
.admin-filters .btn { min-height: 50px; }
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.admin-table th, .admin-table td { padding: 0.75rem 0.9rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.admin-table th { font-size: 0.82rem; color: var(--slate); font-weight: 650; background: var(--paper); }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table a { font-weight: 650; }
.admin-table .is-handled td { color: var(--slate); }
.admin-block { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.admin-block h2 { font-size: 1.15rem; }
.admin-detail { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 1.25rem; align-items: start; }
@media (max-width: 860px) { .admin-detail { grid-template-columns: 1fr; } }
.kv { display: grid; grid-template-columns: minmax(140px, 34%) 1fr; margin: 0 0 1rem; }
.kv dt, .kv dd { padding: 0.55rem 0; border-top: 1px solid var(--line); margin: 0; }
.kv dt { color: var(--slate); padding-right: 1rem; }
.kv dd { word-break: break-word; }
.kv-tight dt, .kv-tight dd { padding: 0.4rem 0; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.admin-files { list-style: none; padding: 0; margin: 0; }
.admin-files li { margin-bottom: 1rem; }
.admin-files img { max-height: 220px; border-radius: 6px; margin-bottom: 0.35rem; border: 1px solid var(--line); }
.form-inline { display: flex; gap: 0.75rem; align-items: flex-end; flex-wrap: wrap; }
.form-inline .field { margin: 0; flex: 1; min-width: 240px; }
.log { background: var(--ink); color: #d7dcea; padding: 1rem; border-radius: 8px; overflow-x: auto; font-size: 0.82rem; white-space: pre-wrap; }
.pager { display: flex; gap: 0.35rem; margin-top: 1rem; }
.pager a { padding: 0.3rem 0.7rem; border: 1px solid var(--line); border-radius: 4px; text-decoration: none; background: var(--white); }
.pager a[aria-current] { background: var(--ink); color: var(--white); }
.empty { color: var(--slate); }

/* Beheer: instellingen */
.admin-title { margin-bottom: 1rem; }
.st-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.st-tabs a { padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.93rem; }
.st-tabs a:hover { border-color: var(--ink); }
.st-tabs a[aria-current] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.st-form { max-width: 880px; }
.st-form .admin-block > .small:first-of-type { margin-top: -0.25rem; }
.st-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
.st-money { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.row-st-smtp { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 0.7fr) minmax(0, 1.4fr); gap: 0 1rem; }
.st-narrow { max-width: 26rem; }
.st-days { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-top: 0.35rem; }
.st-days .check { display: flex; }
.st-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 2rem; }
.st-inline { display: flex; flex-wrap: wrap; gap: 0 1rem; align-items: flex-end; }
.st-inline .field { width: 10rem; }
.st-inline .btn { margin-bottom: 1.25rem; }
.st-vac h2 { overflow-wrap: anywhere; }
.st-history { list-style: none; margin: 0; padding: 0; }
.st-history li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.5rem 0; border-top: 1px solid var(--line); }
.btn-small { min-height: 38px; padding: 0.35rem 0.8rem; font-size: 0.88rem; }
.field-checkbox .hint { display: inline-block; margin-top: 0.15rem; }
@media (max-width: 760px) {
    .st-grid, .row-st-smtp { grid-template-columns: 1fr; }
    .st-money { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.adres-kop { font-weight: 640; margin: 0.25rem 0 0.35rem; }
.adres-kop .optional { font-weight: 400; }

/* Storing melden: spoed of formulier */
.storing-keuze { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
.keuze-kaart { border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem 1.6rem; background: var(--white); }
.keuze-kaart h2 { margin: 0.15rem 0 0.6rem; font-size: 1.5rem; }
.keuze-kaart p { margin: 0 0 0.75rem; }
.keuze-kaart p:last-child { margin-bottom: 0; }
.keuze-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin: 0; }
.keuze-bellen { background: var(--ink); border-color: var(--ink); color: var(--white); }
.keuze-bellen h2, .keuze-bellen .keuze-label { color: var(--white); }
.keuze-bellen .keuze-label { color: var(--signal); }
.keuze-bellen p { color: #d7dbe6; }
.keuze-phone { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.85rem; font-weight: 700; font-stretch: 108%; color: var(--white); text-decoration: none; letter-spacing: -0.01em; }
.keuze-phone .icon { width: 1.5rem; height: 1.5rem; color: var(--signal); }
.keuze-phone:hover { text-decoration: underline; }
.keuze-bellen .status { color: #d7dbe6; }
.keuze-formulier { border-top: 4px solid var(--signal); }
@media (max-width: 760px) {
    .storing-keuze { grid-template-columns: 1fr; gap: 1rem; }
    .keuze-kaart { padding: 1.25rem 1.2rem; }
    .keuze-phone { font-size: 1.6rem; }
}

/* Certificeringen: strook onder de hero, altijd op één rij */
.certs-strip { background: var(--white); border-bottom: 1px solid var(--line); padding: 1.15rem 0 1.25rem; }
.certs-strip-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.35rem 1rem; margin-bottom: 0.85rem; }
.certs-strip-title { margin: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.certs-strip-meer { margin: 0; font-size: 0.88rem; }
.certs-logos {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between;
    gap: clamp(0.9rem, 2.5vw, 2.75rem); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.certs-logos::-webkit-scrollbar { display: none; }
.certs-logos li { flex: 0 0 auto; display: flex; align-items: center; }
.certs-logos img { height: clamp(30px, 3.4vw, 48px); width: auto; max-width: none; object-fit: contain; transition: transform 0.15s; }
.certs-logos li:hover img { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .certs-logos li:hover img { transform: none; } }

/* Certificeringen en partners */
.section-certs { background: var(--white); }
.certs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cert {
    display: grid; grid-template-columns: auto minmax(0, 1fr); grid-template-rows: auto auto; gap: 0.15rem 0.75rem;
    align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.1rem;
}
.cert-mark { grid-row: span 2; display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--ink); color: var(--signal); }
.cert-mark .icon { width: 1.3rem; height: 1.3rem; }
.cert img { grid-row: span 2; height: 3rem; width: auto; max-width: 6.5rem; object-fit: contain; }
.cert-naam { font-weight: 700; font-size: 1.02rem; align-self: end; }
.cert-tekst { color: var(--slate); font-size: 0.88rem; line-height: 1.45; align-self: start; }
@media (max-width: 900px) { .certs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .certs { grid-template-columns: 1fr; } .cert { padding: 0.9rem; gap: 0.15rem 0.6rem; } .cert img { height: 2.5rem; max-width: 4.5rem; } }
.partner-lijst { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 1rem; max-width: 46rem; }
.partner-kaart { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--signal); border-radius: 10px; padding: 1.25rem 1.4rem; }
.partner-kaart h3 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.partner-kaart p { margin: 0 0 0.75rem; }
.partner-logo { height: 40px; width: auto; max-width: 180px; margin-bottom: 0.6rem; object-fit: contain; }
.partner-contact { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.partner-let-op { color: var(--slate); margin-bottom: 0; }

/* Rustige animaties */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); transition-delay: var(--reveal-delay, 0ms); }
.hero-text > * { animation: rh-in 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-text > *:nth-child(2) { animation-delay: 0.07s; }
.hero-text > *:nth-child(3) { animation-delay: 0.14s; }
.hero-text > *:nth-child(4) { animation-delay: 0.2s; }
.service-panel { animation: rh-in 0.7s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
@keyframes rh-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.btn { transition: transform 0.12s ease, background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-signal:hover { box-shadow: 0 8px 18px -8px rgba(255, 194, 26, 0.9); }
.status-dot { position: relative; }
.status.is-open .status-dot::after {
    content: ""; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid currentColor; opacity: 0.5; animation: rh-pulse 2.4s ease-out infinite;
}
@keyframes rh-pulse { 0% { transform: scale(0.6); opacity: 0.6; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-in, .hero-text > *, .service-panel { opacity: 1; transform: none; animation: none; transition: none; }
    .btn, .btn:hover { transform: none; }
    .status.is-open .status-dot::after { animation: none; display: none; }
}
/* Vierkante en staande logo's optisch gelijktrekken met de brede */
.certs-logos img[src*="koolmonoxide"], .certs-logos img[src*="sbb"] { height: clamp(38px, 4.4vw, 62px); }

/* Sitemap */
.sitemap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 3rem; }
.sitemap h2 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate); margin: 0 0 0.6rem; }
.sitemap h2 + ul { margin: 0 0 2rem; }
.sitemap ul { list-style: none; padding: 0; }
.sitemap li { padding: 0.3rem 0; border-bottom: 1px solid var(--line); }
.sitemap li:last-child { border-bottom: 0; }
.sitemap a { color: var(--ink); text-decoration: none; font-weight: 600; }
.sitemap a:hover { text-decoration: underline; }
.sitemap-contact li { font-weight: 400; color: var(--slate); border-bottom: 0; padding: 0.15rem 0; }
@media (max-width: 860px) { .sitemap { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sitemap { grid-template-columns: 1fr; gap: 1.5rem; } }
