/* Dakwerken Adrem - stylesheet
   Palet afgeleid van het logo (wit op donker navy) met een warme oranje actiekleur. */

:root {
  --navy-900: #0c1622;
  --navy-800: #111f30;
  --navy-700: #16293e;
  --navy-600: #24405c;
  --ink: #1b2531;
  --body: #4a5666;
  --muted: #6b7789;
  --line: #e2e7ee;
  --line-soft: #eef2f7;
  --paper: #ffffff;
  --paper-alt: #f5f8fb;
  --accent: #f2711c;
  --accent-dark: #d65c0c;
  --accent-soft: #fff3ea;
  --steel: #2e628f;
  --ok: #17795e;
  --shadow-sm: 0 1px 2px rgba(12, 22, 34, .06), 0 2px 8px rgba(12, 22, 34, .05);
  --shadow-md: 0 4px 12px rgba(12, 22, 34, .08), 0 12px 32px rgba(12, 22, 34, .09);
  --shadow-lg: 0 8px 24px rgba(12, 22, 34, .1), 0 24px 60px rgba(12, 22, 34, .14);
  --radius: 6px;
  --radius-lg: 12px;
  --wrap: 1220px;
  --head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --text: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem); margin-top: 2.4em; }
h3 { font-size: clamp(1.17rem, 1.06rem + .45vw, 1.4rem); margin-top: 2em; }
h4 { font-size: 1.05rem; margin-top: 1.7em; }
p { margin: 0 0 1.15em; }
strong { color: var(--ink); font-weight: 650; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

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

/* ---------- Header ---------- */

.site-head {
  background: var(--navy-900);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.head-inner { display: flex; align-items: center; gap: 28px; min-height: 78px; }

.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 178px; height: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: 10px 15px; border-radius: var(--radius);
  color: #d5dde8; text-decoration: none;
  font-family: var(--head); font-size: .93rem; font-weight: 600;
  white-space: nowrap; transition: background .16s, color .16s;
}
.site-nav a:hover { background: rgba(255, 255, 255, .09); color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--accent); }

.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 11px 20px !important; margin-left: 10px;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

.lang { display: flex; gap: 3px; margin-left: 10px; padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, .16); }
.lang a { padding: 7px 10px; font-size: .8rem; letter-spacing: .06em; color: #93a2b5; }
.lang a[aria-current="true"] { color: #fff; background: rgba(255, 255, 255, .1); }

.burger {
  display: none; margin-left: auto;
  background: none; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius);
  padding: 9px 11px; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.burger span + span { margin-top: 5px; }

@media (max-width: 980px) {
  .burger { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-800); border-bottom: 3px solid var(--accent);
    padding: 10px 22px 20px; box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 13px 12px; font-size: 1rem; }
  .nav-cta { margin: 10px 0 0; text-align: center; }
  .lang { margin: 12px 0 0; padding: 12px 0 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
}

/* ---------- Submenu ----------
   De dienstpaginas hangen onder een hoofditem, want ze passen niet meer naast
   elkaar in de balk. Opent op hover en op :focus-within, dus zonder JavaScript.
   Onder het hamburgerbreekpunt staat het submenu altijd open als geneste lijst. */

.site-nav .has-sub { position: relative; }
.site-nav .caret {
  display: inline-block; width: 0; height: 0; margin-left: 7px; vertical-align: middle;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .7;
}
.site-nav .subnav {
  display: none; position: absolute; top: 100%; left: 0; z-index: 40;
  /* twee kolommen: vanaf ongeveer tien dienstpaginas wordt een enkele
     verticale lijst langer dan comfortabel te scannen is */
  grid-template-columns: repeat(2, minmax(190px, 1fr)); gap: 2px 6px;
  padding: 8px; margin: 0; list-style: none;
  background: var(--navy-800); border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg);
}
.site-nav .has-sub:hover .subnav,
.site-nav .has-sub:focus-within .subnav { display: grid; }
.site-nav .subnav a { padding: 10px 12px; font-size: .9rem; }

@media (max-width: 980px) {
  .site-nav .caret { display: none; }
  .site-nav .subnav {
    display: flex; position: static; min-width: 0; padding: 2px 0 6px 12px;
    grid-template-columns: none; flex-direction: column; align-items: stretch;
    background: none; border-top: 0; border-left: 2px solid rgba(255, 255, 255, .16);
    border-radius: 0; box-shadow: none; margin-left: 12px;
  }
  .site-nav .subnav a { font-size: .95rem; }
}

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

.hero { position: relative; background: var(--navy-900); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 22, 34, .93) 0%, rgba(12, 22, 34, .8) 34%, rgba(12, 22, 34, .42) 58%, rgba(12, 22, 34, .3) 100%);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) 420px; gap: 48px; padding: 52px 0 56px;
}
.hero-copy { min-width: 0; }
.hero-grid.solo { grid-template-columns: 1fr; }
.hero-grid.solo .hero-copy { max-width: 780px; }
.hero h1 {
  color: #fff; margin-bottom: .5em; max-width: 19ch;
  font-size: clamp(2rem, 1.15rem + 2.2vw, 2.85rem);
  text-shadow: 0 2px 22px rgba(12, 22, 34, .55);
}
.hero .lede {
  color: #dbe4ee; font-size: 1.08rem; margin-bottom: 1.5em;
  text-shadow: 0 1px 14px rgba(12, 22, 34, .6);
}
.hero .lede strong { color: #fff; }

.usp { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.usp li {
  position: relative; padding-left: 28px; color: #eef3f8;
  font-family: var(--head); font-size: .95rem; font-weight: 600;
  text-shadow: 0 1px 12px rgba(12, 22, 34, .7);
}
.usp li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 17px; height: 10px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

.hero h1 .accent { color: var(--accent); }
.hero .lede { max-width: 46ch; }
.hero-form { min-width: 0; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 46px 0 50px; }
  .hero h1 { max-width: none; }
  .hero-form { max-width: 480px; }
}
@media (max-width: 700px) {
  .hero-grid { padding: 38px 0 42px; gap: 26px; }
  .hero .lede { font-size: 1rem; }
  .usp { gap: 8px 18px; }
  .usp li { font-size: .89rem; }
}

/* ---------- Breadcrumbs ---------- */

.crumbs { background: var(--paper-alt); border-bottom: 1px solid var(--line); font-size: .84rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 11px 0; }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-dark); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 372px; gap: 52px; padding: 46px 0 64px; align-items: start; }
@media (max-width: 1080px) { .layout { grid-template-columns: 1fr; gap: 34px; } }
.layout.solo { grid-template-columns: minmax(0, 1fr); max-width: 860px; }

.content { min-width: 0; }
.content > h2:first-child, .content > h3:first-child { margin-top: 0; }

/* ---------- Sidebar / leadformulier ---------- */

.sidebar { position: sticky; top: 96px; }
@media (max-width: 1080px) { .sidebar { position: static; } }

.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.form-card { border: 0; box-shadow: var(--shadow-lg); border-top: 5px solid var(--accent); }
.form-card .form-body { padding: 26px 26px 20px; }
.form-title {
  margin: 0 0 4px; font-size: 1.42rem; line-height: 1.25; color: var(--ink);
}
.form-sub { margin: 0 0 18px; font-size: .88rem; color: var(--muted); line-height: 1.5; }

.lead-form .field { margin: 0 0 13px; }
.lead-form label {
  display: block; margin-bottom: 5px;
  font-family: var(--head); font-size: .81rem; font-weight: 600; color: var(--ink);
}
.lead-form .req { color: var(--accent); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; font-family: var(--text); font-size: .93rem; color: var(--ink);
  background: var(--paper-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 11px 13px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.lead-form textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #9aa7b6; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; background: #fff; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 113, 28, .16);
}
.lead-form input:user-invalid, .lead-form textarea:user-invalid { border-color: #c0392b; }
.lead-form .btn { margin-top: 6px; font-size: .98rem; padding: 13px 24px; }
.lead-form .btn[disabled] { opacity: .65; cursor: progress; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px;
      overflow: hidden; }

.form-status {
  margin: 12px 0 0; font-size: .88rem; line-height: 1.55; padding: 0;
}
.form-status:empty { display: none; }
.form-status.ok {
  color: #12664c; background: #e7f6ef; border-left: 3px solid var(--ok);
  padding: 11px 14px; border-radius: 0 var(--radius) var(--radius) 0;
}
.form-status.err {
  color: #8e2a1e; background: #fdecea; border-left: 3px solid #c0392b;
  padding: 11px 14px; border-radius: 0 var(--radius) var(--radius) 0;
}

.form-note {
  margin: 0; padding: 12px 24px 16px; font-size: .79rem; color: var(--muted);
  border-top: 1px solid var(--line-soft); line-height: 1.55;
}
.side-cta {
  background: var(--navy-800); color: #b9c6d5; border-radius: var(--radius-lg);
  padding: 24px 26px; box-shadow: var(--shadow-md);
}
.side-cta h2 { margin: 0 0 8px; color: #fff; font-size: 1.12rem; }
.side-cta p { margin: 0 0 18px; font-size: .9rem; line-height: 1.6; }
.btn-block { display: block; width: 100%; text-align: center; }

.sidebar-links {
  margin-top: 20px; background: var(--paper-alt); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.sidebar-links h2 { margin: 0 0 12px; font-size: 1rem; }
.sidebar-links ul { list-style: none; margin: 0; padding: 0; }
.sidebar-links li + li { margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--line); }
.sidebar-links a { font-size: .9rem; font-weight: 500; text-decoration: none; }
.sidebar-links a:hover { text-decoration: underline; }

/* ---------- Centerpiece: dakcheck ---------- */

.dakcheck {
  background: var(--navy-800); border-radius: var(--radius-lg); padding: 28px 30px 26px;
  margin: 0 0 40px; color: #cfd9e5; box-shadow: var(--shadow-md);
}
.dakcheck h2 { margin: 0 0 6px; color: #fff; font-size: 1.28rem; }
.dakcheck > p { margin: 0 0 18px; font-size: .93rem; color: #a9b8c9; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.chip {
  font-family: var(--head); font-size: .88rem; font-weight: 600;
  background: rgba(255, 255, 255, .07); color: #dde5ee;
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px;
  padding: 9px 17px; cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.chip:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip-out {
  border-left: 3px solid var(--accent); background: rgba(255, 255, 255, .05);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin-bottom: 18px;
  font-size: .93rem; color: #dde5ee;
}
.chip-out[hidden] { display: none; }
.chip-out strong { color: #fff; }
.chip-out .range { font-family: var(--head); font-weight: 700; color: var(--accent); }

.btn {
  display: inline-block; font-family: var(--head); font-weight: 700; font-size: 1rem;
  background: var(--accent); color: #fff !important; text-decoration: none;
  padding: 14px 30px; border-radius: var(--radius); border: 0; cursor: pointer;
  transition: background .16s, transform .16s;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .3); padding: 13px 26px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

@media (max-width: 600px) {
  .dakcheck { padding: 22px 20px; }
  .btn { width: 100%; text-align: center; }
}

/* ---------- Dienstentegels ---------- */

.tiles-band { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 58px 0 62px; }
.band-head { max-width: 720px; margin-bottom: 32px; }
.band-head h2 { margin-top: 0; }
.band-head p { margin-bottom: 0; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(226px, 1fr)); gap: 20px; }
.tile {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  text-decoration: none; box-shadow: var(--shadow-sm); background: var(--navy-800);
  aspect-ratio: 4 / 3;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 22, 34, .92) 0%, rgba(12, 22, 34, .45) 44%, rgba(12, 22, 34, .12) 100%);
}
.tile:hover img { transform: scale(1.05); }
.tile h3 {
  position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 16px; margin: 0;
  color: #fff; font-size: .96rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; line-height: 1.35;
}
.tile .tile-sub {
  position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 16px;
  color: #b9c6d5; font-size: .82rem; margin: 0;
}
.tile.has-sub h3 { bottom: 40px; }

/* ---------- Content ---------- */

.content ul, .content ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.content ol { counter-reset: li; }
.content ul > li, .content ol > li { position: relative; padding-left: 30px; margin-bottom: .62em; }
.content ul > li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
.content ol > li::before {
  counter-increment: li; content: counter(li);
  position: absolute; left: 0; top: .12em;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--head); font-size: .74rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

figure { margin: 2em 0; }
figure img { border-radius: var(--radius-lg); width: 100%; }
figcaption { margin-top: 10px; font-size: .84rem; color: var(--muted); line-height: 1.55; }

.tablewrap { overflow-x: auto; margin: 1.6em 0 2em; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 520px; }
thead th {
  background: var(--navy-800); color: #fff; text-align: left; padding: 13px 16px;
  font-family: var(--head); font-size: .84rem; font-weight: 600; line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, .1);
}
thead th:last-child { border-right: 0; }
tbody td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; line-height: 1.6; }
tbody tr:nth-child(even) { background: var(--paper-alt); }
tbody td:first-child { font-weight: 600; color: var(--ink); }

.tip {
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 20px 24px; margin: 2em 0;
}
.tip h3, .tip .tip-title {
  margin: 0 0 8px; font-family: var(--head); font-weight: 700; font-size: 1rem; color: var(--ink);
  display: flex; align-items: center; gap: 9px;
}
.tip .tip-title::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: 0 0 auto;
}
.tip p:last-child { margin-bottom: 0; }

.callout {
  background: var(--navy-800); color: #cfd9e5; border-radius: var(--radius-lg);
  padding: 30px 32px; margin: 2.4em 0;
}
.callout h2, .callout h3 { color: #fff; margin-top: 0; }
.callout p:last-of-type { margin-bottom: 1.2em; }

/* ---------- Rekenblok ---------- */

.calc { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; margin: 2.2em 0; background: var(--paper); box-shadow: var(--shadow-sm); }
.calc h3 { margin: 0 0 6px; }
.calc > p { font-size: .93rem; color: var(--muted); }
.calc-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 18px 0 6px; }
.calc-field { flex: 1 1 190px; min-width: 0; }
.calc-field label { display: block; font-family: var(--head); font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.calc-field select, .calc-field input {
  width: 100%; font-family: var(--text); font-size: .95rem; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.calc-out {
  margin-top: 16px; padding: 16px 20px; border-radius: var(--radius);
  background: var(--paper-alt); border-left: 4px solid var(--accent); font-size: .95rem;
}
.calc-out .amount { font-family: var(--head); font-size: 1.32rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.calc-note { font-size: .8rem; color: var(--muted); margin: 12px 0 0; line-height: 1.55; }

/* ---------- FAQ ---------- */

.faq { margin: 1.6em 0 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 40px 17px 0; position: relative;
  font-family: var(--head); font-weight: 650; font-size: 1.02rem; color: var(--ink); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 24px;
  width: 9px; height: 9px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 27px; }
.faq details > div { padding: 0 0 18px; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Related ---------- */

.related { border-top: 1px solid var(--line); margin-top: 3em; padding-top: 1.8em; }
.related h2 { margin-top: 0; font-size: 1.2rem; }
.related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.related li { padding: 0; }
.related li::before { display: none; }
.related a {
  display: block; padding: 15px 18px; background: var(--paper-alt);
  border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none;
  font-family: var(--head); font-weight: 600; font-size: .93rem; color: var(--ink);
  transition: border-color .16s, background .16s;
}
.related a:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-dark); }

/* ---------- Conversieband ---------- */

.cta-band { background: var(--navy-900); color: #cfd9e5; padding: 54px 0 58px; }
.cta-band-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: center; }
@media (max-width: 860px) { .cta-band-inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; margin: 0 0 10px; }
.cta-band p { margin: 0; max-width: 620px; }

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

.site-foot { background: var(--navy-900); color: #93a2b5; padding: 52px 0 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .92rem; }
/* Merk, drie linkgroepen en contact. De linkkolommen waren eerst een enkele
   lijst van drieentwintig items, waardoor de voettekst negenhonderd pixels hoog
   werd en de andere twee kolommen leeg oogden. */
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 1fr)) 1.1fr;
  gap: 40px 34px; padding-bottom: 40px;
}
@media (max-width: 1080px) {
  /* Vier kolommen, want de drie groepen plus contact horen op een rij. Bij drie
     zakt contact naar een eigen rij en wordt de voettekst onnodig hoog. */
  .foot-grid { grid-template-columns: repeat(4, 1fr); gap: 34px 26px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }
/* Twee kolommen blijven staan tot het echt niet meer past. Een enkele kolom
   maakte de voettekst op een telefoon vijftienhonderd pixels hoog. */
@media (max-width: 359px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }
.site-foot h2 { color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 16px; font-weight: 700; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li + li { margin-top: 9px; }
.site-foot a { color: #b9c6d5; text-decoration: none; }
.site-foot a:hover { color: var(--accent); text-decoration: underline; }
.foot-brand a { display: inline-block; }
.foot-brand img { width: 190px; margin-bottom: 18px; }
.foot-contactlink { margin: 14px 0 0; }
.foot-brand p { margin: 0 0 .8em; line-height: 1.7; }
address { font-style: normal; line-height: 1.7; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0 24px;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; font-size: .84rem;
}
.foot-bottom p { margin: 0; }

.foot-legal { font-size: .84rem; }
.foot-legal a { color: #b9c6d5; text-decoration: none; }
.foot-legal a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- Kernpunten: extractieve samenvatting boven de content ---------- */

.kernpunten {
  background: var(--paper-alt); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px 20px; margin: 0 0 2.4em;
}
.kernpunten h2 {
  margin: 0 0 14px; font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.kernpunten ul { margin: 0; }
.kernpunten li { margin-bottom: .45em; font-size: .96rem; }
.kernpunten li::before { background: var(--muted); }

/* Zichtbare nakijkdatum op prijs- en beslispaginas. Hoofdstuk 08 van de
   methodiek: toon een datum wanneer actualiteit de beslissing beinvloedt. */
.content .reviewed {
  margin: -6px 0 22px;
  font-size: .84rem;
  color: #8a9aad;
  letter-spacing: .01em;
}
.content .reviewed time { border-bottom: 1px dotted #cbd5e0; }
