/* ==========================================================================
   PPKS klusbedrijf - Bergen op Zoom
   Ontwerp: werkplaats. Donker staal, hi-vis geel, warm hout.
   Signatuurelement: de duimstokliniaal (.rule) als scheiding en accent.
   ========================================================================== */

:root {
  /* Kleur */
  --ink:        #15191d;
  --ink-2:      #1e252b;
  --ink-3:      #2b343c;
  --steel:      #5b6b78;
  --paper:      #f7f4ee;
  --paper-2:    #ebe5da;
  --paper-3:    #ded6c7;
  --hivis:      #ffb400;
  --hivis-2:    #e59f00;
  --timber:     #9c5f2e;
  --white:      #ffffff;
  --ok:         #2f7d43;

  --text:       #15191d;
  --text-soft:  #4a555f;
  --text-inv:   #f7f4ee;
  --text-inv-soft: #b9c2c9;

  /* Type */
  --font-head: "Barlow Condensed", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Ritme */
  --wrap: 1180px;
  --gap: 1.5rem;
  --sec: clamp(3.5rem, 7vw, 6rem);
  --radius: 4px;

  --shadow-1: 0 1px 2px rgba(21, 25, 29, .07), 0 4px 14px rgba(21, 25, 29, .06);
  --shadow-2: 0 2px 6px rgba(21, 25, 29, .10), 0 18px 40px rgba(21, 25, 29, .12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Moet vóór .btn { display:inline-flex } winnen, anders blijft een verborgen
   knop (bijvoorbeeld de mailknop zonder e-mailadres) gewoon staan. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { padding-left: 1.15rem; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .002em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.1em; max-width: 68ch; }
.lead { font-size: 1.2rem; color: var(--text-soft); max-width: 62ch; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--timber);
  margin: 0 0 .5rem;
}
.on-dark .eyebrow, .band-dark .eyebrow { color: var(--hivis); }

/* ---------- Signatuur: duimstokliniaal ---------- */
.rule {
  height: 14px;
  background: var(--hivis);
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 14px
  );
  background-size: auto 6px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  border: 0;
  margin: 0;
}
.rule--short { width: 92px; margin-bottom: 1.4rem; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.band-paper2 { background: var(--paper-2); }
.band-dark { background: var(--ink); color: var(--text-inv); }
.band-dark p { color: var(--text-inv-soft); }
.band-dark .lead { color: var(--text-inv-soft); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; align-items: center; } }

.section-head { max-width: 62ch; margin-bottom: 2.5rem; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .78rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--hivis); color: var(--ink); border-color: var(--hivis); }
.btn-primary:hover { background: var(--hivis-2); border-color: var(--hivis-2); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-3); border-color: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
/* Op alle donkere vlakken moet de omlijnde knop juist licht zijn. */
.band-dark .btn-ghost,
.hero .btn-ghost,
.page-head .btn-ghost,
.contact-cta .btn-ghost { color: var(--paper); border-color: var(--steel); }
.band-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-head .btn-ghost:hover,
.contact-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--hivis);
  outline-offset: 3px;
  border-radius: 2px;
}
.band-dark a:focus-visible { outline-color: var(--hivis); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--hivis); color: var(--ink); padding: .7rem 1.1rem;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  color: var(--text-inv);
  border-bottom: 1px solid var(--ink-3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--paper); }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  background: var(--hivis); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em; border-radius: 3px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.45rem;
  text-transform: uppercase; letter-spacing: .02em;
}
.brand-sub { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-inv-soft); margin-top: .18rem; white-space: nowrap; }
@media (max-width: 420px) { .brand-sub { font-size: .66rem; letter-spacing: .06em; } }
@media (max-width: 340px) { .brand-sub { display: none; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid var(--ink-3); color: var(--paper);
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .5rem .8rem; border-radius: var(--radius);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--hivis); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--hivis);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: .25rem;
}
.site-nav a {
  display: block; text-decoration: none; color: var(--text-inv-soft);
  font-family: var(--font-head); font-size: 1.13rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  padding: .5rem .7rem; border-radius: 3px;
}
.site-nav a:hover { color: var(--paper); background: var(--ink-2); }
.site-nav a[aria-current="page"] { color: var(--hivis); box-shadow: inset 0 -3px 0 var(--hivis); }
.header-cta { display: none; }

@media (max-width: 960px) {
  .site-nav {
    position: absolute; inset: 100% 0 auto 0;
    background: var(--ink-2); border-bottom: 3px solid var(--hivis);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: .5rem 1.25rem 1.1rem; gap: 0; }
  .site-nav a { padding: .8rem .2rem; border-bottom: 1px solid var(--ink-3); font-size: 1.25rem; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
}
@media (min-width: 961px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inv);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 14px;
  background: var(--hivis);
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 14px);
  background-size: auto 6px; background-repeat: repeat-x; background-position: 0 100%;
}
.hero-inner {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.6rem, 8vw, 6rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.08fr .92fr; } }
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl { color: var(--hivis); display: block; }
.hero p { color: var(--text-inv-soft); font-size: 1.16rem; max-width: 54ch; }
.hero-slogan {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem) !important;
  color: var(--paper) !important; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: .8rem;
}
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--ink-3);
  box-shadow: var(--shadow-2);
}
.hero-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero-photo figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: linear-gradient(to top, rgba(21,25,29,.92), rgba(21,25,29,0));
  color: var(--paper); font-size: .92rem; padding: 2.2rem .95rem .8rem;
}

.hero-facts {
  list-style: none; margin: 1.9rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem .55rem;
}
.hero-facts li {
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  border: 1px solid var(--ink-3); border-left: 3px solid var(--hivis);
  padding: .34rem .7rem; border-radius: 2px; color: var(--paper);
  background: var(--ink-2);
}

/* ---------- Balk met kerncijfers ---------- */
.stats { background: var(--hivis); color: var(--ink); }
.stats ul {
  list-style: none; margin: 0; padding: 1.4rem 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stats li { display: flex; flex-direction: column; }
.stats b {
  font-family: var(--font-head); font-size: 2.15rem; font-weight: 700; line-height: 1;
}
.stats span { font-size: .93rem; font-weight: 500; letter-spacing: .02em; }

/* ---------- Kaarten ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-top: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .14s ease, box-shadow .14s ease, border-top-color .14s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-top-color: var(--hivis); }
.card h3 { margin-bottom: .45rem; }
.card p { margin-bottom: .9rem; color: var(--text-soft); font-size: 1rem; }
.card ul { margin: 0 0 1rem; color: var(--text-soft); font-size: .98rem; }
.card ul li { margin-bottom: .25rem; }
.card .more {
  margin-top: auto; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--timber);
  font-size: 1.05rem;
}
a.card:hover .more { color: var(--ink); }
.card-icon {
  width: 46px; height: 46px; margin-bottom: 1rem;
  background: var(--paper-2); border-radius: 3px;
  display: grid; place-items: center; color: var(--ink);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Waarom-lijst ---------- */
.why { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.3rem; }
.why li { display: grid; grid-template-columns: 34px 1fr; gap: .9rem; align-items: start; }
.why .tick {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--hivis); color: var(--ink);
  display: grid; place-items: center; font-weight: 700; margin-top: .15rem;
}
.why .tick svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.why h3 { font-size: 1.22rem; margin-bottom: .2rem; }
.why p { margin: 0; font-size: 1rem; color: var(--text-soft); }
.band-dark .why p { color: var(--text-inv-soft); }

/* ---------- Reviews ---------- */
.review {
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-left: 4px solid var(--hivis);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  display: flex; flex-direction: column;
}
.review blockquote { margin: 0 0 1rem; font-size: 1.08rem; }
.review blockquote p { margin: 0; }
.review .who { margin-top: auto; font-size: .93rem; color: var(--text-soft); }
.review .who b { display: block; font-size: 1.02rem; color: var(--text); font-weight: 600; }
.score {
  display: inline-flex; align-items: baseline; gap: .3rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.6rem;
  color: var(--ink); background: var(--hivis);
  padding: .1rem .55rem; border-radius: 3px; margin-bottom: .8rem;
  align-self: flex-start; line-height: 1.25;
}
.score small { font-size: .82rem; font-weight: 600; letter-spacing: .04em; }

.score-big {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--ink); color: var(--paper);
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  border-left: 5px solid var(--hivis);
}
.score-big .num { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; line-height: 1; color: var(--hivis); }
.score-big p { margin: 0; color: var(--text-inv-soft); font-size: .98rem; }

/* ---------- Tarieven ---------- */
.rate-card {
  background: var(--white); border: 1px solid var(--paper-3);
  border-top: 4px solid var(--timber);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
}
.rate-card h3 { margin-bottom: .3rem; }
.rate-card .tag {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em;
  font-size: .92rem; color: var(--timber); font-weight: 600; display: block; margin-bottom: .7rem;
}
.rate-card p { margin: 0; color: var(--text-soft); font-size: 1rem; }

.note {
  background: var(--paper-2); border-left: 4px solid var(--ink);
  padding: 1.1rem 1.2rem; border-radius: var(--radius); margin-top: 1.8rem;
}
.note p:last-child { margin-bottom: 0; }
.note strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; }

/* ---------- Stappen (werkwijze) ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; }
.steps li::before {
  content: counter(step);
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  width: 42px; height: 42px; border-radius: 3px;
  background: var(--ink); color: var(--hivis);
  display: grid; place-items: center;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.steps p { margin: 0; color: var(--text-soft); font-size: 1rem; }
.band-dark .steps li::before { background: var(--hivis); color: var(--ink); }
.band-dark .steps p { color: var(--text-inv-soft); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; max-width: 78ch; }
.faq details {
  background: var(--white); border: 1px solid var(--paper-3);
  border-radius: var(--radius); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.2rem; position: relative;
  font-family: var(--font-head); font-size: 1.28rem; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.2rem; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--timber); border-bottom: 2.5px solid var(--timber);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details[open] summary { background: var(--paper-2); }
.faq .answer { padding: 1rem 1.2rem 1.15rem; border-top: 1px solid var(--paper-3); }
.faq .answer p:last-child, .faq .answer ul:last-child { margin-bottom: 0; }

/* ---------- Contactblok ---------- */
.contact-cta {
  background: var(--ink); color: var(--text-inv);
  border-radius: var(--radius); overflow: hidden;
  display: grid; gap: 0; grid-template-columns: 1fr;
}
@media (min-width: 860px) { .contact-cta { grid-template-columns: 1.15fr .85fr; } }
.contact-cta .cc-main { padding: clamp(1.8rem, 4vw, 2.8rem); }
.contact-cta .cc-side {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--ink-2); border-top: 4px solid var(--hivis);
}
@media (min-width: 860px) { .contact-cta .cc-side { border-top: 0; border-left: 4px solid var(--hivis); } }
.contact-cta h2 { color: var(--paper); }
.contact-cta p { color: var(--text-inv-soft); }

.nap { font-style: normal; line-height: 1.8; }
.nap a { color: var(--hivis); }
.nap .label {
  display: block; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .12em; font-size: .85rem; color: var(--steel); margin-top: .9rem;
}
.nap .label:first-child { margin-top: 0; }

.hours { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours th, .hours td { text-align: left; padding: .35rem 0; border-bottom: 1px solid var(--paper-3); }
.hours th { font-weight: 500; color: var(--text-soft); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.band-dark .hours th, .band-dark .hours td { border-bottom-color: var(--ink-3); color: var(--text-inv-soft); }
.band-dark .hours td { color: var(--paper); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .closed { color: var(--steel); }

/* ---------- Kaart ---------- */
.map-link {
  display: block; text-decoration: none; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--paper-3); background: var(--paper-2);
}
.map-link img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-link span {
  display: block; padding: .75rem 1rem;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; background: var(--ink); color: var(--hivis);
}
.map-link:hover span { background: var(--ink-3); }

/* ---------- Galerij ---------- */
.gallery { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.gallery figure { margin: 0; background: var(--white); border: 1px solid var(--paper-3); border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.gallery figcaption { padding: 1rem 1.1rem; font-size: 1rem; color: var(--text-soft); }
.gallery figcaption b { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--text); font-weight: 700; margin-bottom: .2rem; }

/* ---------- Kruimelpad ---------- */
.crumbs { font-size: .92rem; color: var(--text-soft); padding-top: 1.3rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--paper-3); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--timber); }

/* ---------- Pagina-kop ---------- */
.page-head { background: var(--ink); color: var(--text-inv); position: relative; padding-bottom: 14px; }
.page-head::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 14px;
  background: var(--hivis);
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 14px);
  background-size: auto 6px; background-repeat: repeat-x; background-position: 0 100%;
}
.page-head .crumbs { color: var(--text-inv-soft); }
.page-head .crumbs a { color: var(--hivis); }
.page-head .crumbs li::after { color: var(--steel); }
.page-head-inner { padding-block: clamp(2rem, 5vw, 3.4rem) clamp(2.2rem, 5vw, 3.6rem); }
.page-head p { color: var(--text-inv-soft); font-size: 1.15rem; max-width: 62ch; margin-bottom: 0; }
.page-head h1 { margin-bottom: .4em; }

/* ---------- Prose (juridische pagina's) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { margin-bottom: 1.1em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-inv-soft); }
.site-footer .rule { }
.footer-inner {
  display: grid; gap: 2.2rem; padding-block: clamp(2.6rem, 5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.site-footer h2, .site-footer h3 {
  font-size: 1.18rem; color: var(--paper); text-transform: uppercase;
  letter-spacing: .09em; margin-bottom: .9rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: var(--text-inv-soft); text-decoration: none; }
.site-footer a:hover { color: var(--hivis); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--ink-3); padding-block: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .9rem;
}
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }

/* ---------- Mobiele belbalk ---------- */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--hivis);
  box-shadow: 0 -6px 20px rgba(21,25,29,.18);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem .5rem; text-decoration: none;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.callbar .cb-call { background: var(--hivis); color: var(--ink); }
.callbar .cb-alt { background: var(--ink); color: var(--paper); }
.callbar svg { width: 1.05em; height: 1.05em; fill: currentColor; }
@media (min-width: 961px) { .callbar { display: none; } }
@media (max-width: 960px) { body { padding-bottom: 62px; } }

/* ---------- Hulpklassen ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-list li {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  padding: .3rem .7rem; border-radius: 2px; font-size: .95rem;
}
.band-dark .tag-list li { background: var(--ink-2); border-color: var(--ink-3); color: var(--text-inv-soft); }

.checklist { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.checklist li { position: relative; padding-left: 1.7rem; margin-bottom: .5rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 9px; height: 9px; background: var(--hivis);
  border: 2px solid var(--ink); border-radius: 1px;
}
