@import url('/css/fonts.css');

/* ==========================================================================
   Autorijschool Hoekstra
   Palet afgeleid van het daklicht op de lesauto: asfaltzwart, het blauw van
   het L-bord (gemeten op de foto: #033083) en het rood van de belettering.
   Signatuurelement: de onderbroken witte middenstreep van de weg.
   ========================================================================== */

:root {
  --asphalt: #15181d;
  --asphalt-2: #20262f;
  --asphalt-3: #2c333e;
  --ink: #14171c;
  --body: #3d4653;
  --muted: #6c7787;
  --line: #e3e7ed;
  --line-strong: #cdd4de;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --surface-3: #eef1f6;

  --red: #b4122e;
  --red-dark: #8d0e24;
  --red-soft: #fdf1f3;
  --blue: #033083;
  --blue-mid: #14459f;
  --blue-soft: #eaf0fb;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --r: 4px;
  --r-lg: 10px;
  --shadow: 0 1px 2px rgba(20, 23, 28, .06), 0 8px 24px -12px rgba(20, 23, 28, .18);
  --shadow-lg: 0 2px 4px rgba(20, 23, 28, .06), 0 24px 48px -20px rgba(20, 23, 28, .28);
  --bar-h: 0px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bar-h);
}
img, svg, picture { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--font-display); line-height: 1.14; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.9rem); font-weight: 800; font-style: italic; text-transform: uppercase; letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.12rem, 1.02rem + .4vw, 1.32rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--red); }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 650; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; font-weight: 600;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- signature: onderbroken middenstreep ---------- */
.lane {
  height: 10px;
  background: var(--asphalt);
  background-image: repeating-linear-gradient(to right, #fff 0 44px, transparent 44px 88px);
  background-size: 88px 3px;
  background-position: 0 center;
  background-repeat: repeat-x;
}

/* ---------- L-bord badge ---------- */
.lplate {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.6em; height: 1.6em; flex: none;
  background: var(--blue); color: #fff; border-radius: 3px;
  font-family: var(--font-display); font-weight: 700; font-size: .8em; line-height: 1;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; text-decoration: none; }
.brand img { width: 190px; height: auto; }
.brand-tag {
  display: none; font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--red);
  border-left: 2px solid var(--line-strong); padding-left: .7rem; white-space: nowrap;
}
@media (min-width: 1500px) { .brand-tag { display: block; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: #fff; border: 0; border-radius: var(--r);
  font: 600 .92rem/1 var(--font-body); padding: .72rem .9rem; cursor: pointer;
}
.nav-toggle:hover { background: var(--red); }
.nav-toggle svg { width: 18px; height: 18px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .1rem; }
.site-nav a {
  display: block; padding: .55rem .62rem; border-radius: var(--r);
  font-size: .93rem; font-weight: 550; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.site-nav a:hover { background: var(--surface-3); color: var(--red); }
.site-nav a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -3px 0 var(--red); border-radius: var(--r) var(--r) 0 0; }
.nav-cta {
  margin-left: .5rem; background: var(--red) !important; color: #fff !important;
  padding: .62rem 1rem !important; font-weight: 650 !important; border-radius: var(--r) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.lang-switch {
  display: inline-flex; align-items: center; gap: .35rem; margin-left: .3rem; padding: .5rem .6rem;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  font-size: .8rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.site-nav a.lang-switch { display: inline-flex; }
.lang-switch svg { width: 15px; height: 15px; flex: none; }
.lang-switch:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 1179px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: .6rem 0 1.1rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
  .site-nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
  .nav-cta { margin: .9rem 0 .3rem; text-align: center; }
  .site-nav a.lang-switch { display: flex; margin: .4rem 0 0; justify-content: center; }
}
@media (min-width: 1180px) { .nav-toggle { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: 650 1rem/1 var(--font-body); padding: 1rem 1.5rem; border-radius: var(--r);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--asphalt-3); color: #fff; }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--surface-3); color: var(--ink); }
.btn-outline-light { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--asphalt); color: #fff; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 10px;
  background-image: repeating-linear-gradient(to right, #fff 0 44px, transparent 44px 88px);
  background-size: 88px 3px; background-position: 0 center; background-repeat: repeat-x;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 46%; opacity: .32; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; display: block;
  background: linear-gradient(105deg, rgba(21, 24, 29, .96) 0%, rgba(21, 24, 29, .86) 42%, rgba(21, 24, 29, .5) 100%);
}
.hero-inner { position: relative; padding: clamp(3rem, 1.6rem + 5.4vw, 6.5rem) 0 clamp(3.2rem, 2rem + 4.5vw, 5.4rem); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3.5rem; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.15rem;
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
  background: var(--red); padding: .42rem .8rem .42rem .55rem; border-radius: var(--r);
}
.eyebrow .lplate { background: rgba(255, 255, 255, .18); font-size: .74em; }
.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 .accent {
  color: #fff; white-space: nowrap;
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-size: 100% .15em;
  background-position: 0 92%;
  padding-bottom: .05em;
}
.hero-lead { font-size: clamp(1.05rem, .99rem + .28vw, 1.2rem); color: #d5dae2; max-width: 46ch; margin-bottom: 1.7rem; }
.hero .btn-row { margin-bottom: 1.6rem; }
.hero-note { font-size: .93rem; color: #a9b3c0; margin: 0; }
.hero-note strong { color: #fff; }

.hero-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg); padding: 1.5rem 1.6rem; backdrop-filter: blur(6px);
}
.hero-card h2 {
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  font-style: italic; font-weight: 700; margin-bottom: 1.1rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.hero-facts { list-style: none; margin: 0; padding: 0; }
.hero-facts li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .62rem 0; border-bottom: 1px dashed rgba(255, 255, 255, .16); font-size: .95rem; color: #c3cbd6;
}
.hero-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-facts b { color: #fff; font-weight: 650; text-align: right; }

/* ---------- sections ---------- */
.section { padding: clamp(3.2rem, 2.2rem + 3.4vw, 5.4rem) 0; }
.section-tight { padding: clamp(2.4rem, 1.8rem + 2.2vw, 3.6rem) 0; }
.section-alt { background: var(--surface-2); }
.section-dark { background: var(--asphalt); color: #cfd6df; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark a { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-bottom: 0; }
.kicker {
  display: block; font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--red); margin-bottom: .6rem;
}
.section-dark .kicker { color: #ff6b83; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; margin-bottom: 1rem; }
.card p:last-of-type { margin-bottom: 0; }
.card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 650; font-size: .95rem; text-decoration: none; color: var(--red); }
.card .card-link::after { content: " \2192"; }
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: var(--r); background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.card-icon svg { width: 23px; height: 23px; }
.card-price { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink); background: var(--surface-3); border-radius: 999px; padding: .25rem .7rem; align-self: flex-start; margin-bottom: .9rem; }

/* feature list */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem; } }
.features li { display: flex; gap: .95rem; margin: 0; }
.features .lplate { margin-top: .18rem; font-size: .78rem; width: 1.9em; height: 1.9em; }
.features h3 { font-size: 1.04rem; margin-bottom: .25rem; }
.features p { font-size: .97rem; margin: 0; }

/* checklist */
.check { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.check li { position: relative; padding-left: 1.85rem; margin-bottom: .6rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: .72rem; height: .38rem;
  border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}
.section-dark .check li::before { border-color: #ff6b83; }

/* ---------- werkwijze / route ---------- */
.route { list-style: none; margin: 0; padding: 0; counter-reset: step; position: relative; }
.route li { position: relative; padding: 0 0 2rem 3.9rem; counter-increment: step; margin: 0; }
.route li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; z-index: 1;
}
.route li::after {
  content: ""; position: absolute; left: 1.28rem; top: 2.6rem; bottom: -.2rem; width: 3px;
  background-image: linear-gradient(var(--line-strong) 55%, transparent 0);
  background-size: 3px 13px;
}
.route li:last-child { padding-bottom: 0; }
.route li:last-child::after { display: none; }
.route h3 { margin-bottom: .3rem; }
.route p { font-size: .98rem; margin: 0; }
.section-dark .route li::after { background-image: linear-gradient(rgba(255,255,255,.32) 55%, transparent 0); }

/* ---------- tabel ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 1rem; }
caption { text-align: left; padding: 1.1rem 1.3rem .2rem; font-size: .88rem; color: var(--muted); }
th, td { text-align: left; padding: .95rem 1.3rem; border-bottom: 1px solid var(--line); }
thead th { font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; background: var(--surface-2); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
td.price, th.price { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--ink); white-space: nowrap; }
tbody th { font-weight: 550; color: var(--ink); }
tr.highlight td, tr.highlight th { background: var(--red-soft); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.6rem 1.15rem 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .55rem; top: 1.55rem; width: .62rem; height: .62rem;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq summary:hover { color: var(--red); }
.faq .answer { padding: 0 0 1.3rem; max-width: 70ch; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; }
.prose > :first-child { margin-top: 0; }
.lead { font-size: clamp(1.1rem, 1.03rem + .3vw, 1.28rem); color: var(--ink); line-height: 1.55; }
.note {
  border-left: 4px solid var(--blue); background: var(--blue-soft);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.7rem 0;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--blue); }

/* ---------- media blok ---------- */
.split { display: grid; gap: 2.2rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3.4rem; } .split.narrow-media { grid-template-columns: 1.05fr .95fr; } }
.split img { border-radius: var(--r-lg); }
.figure { margin: 0; }
.figure figcaption { font-size: .88rem; color: var(--muted); margin-top: .7rem; }

/* ---------- stats ---------- */
.stats { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div { background: var(--surface); padding: 1.5rem 1.3rem; text-align: center; }
.stats b { display: block; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.2rem); color: var(--ink); line-height: 1.05; }
.stats span { display: block; font-size: .88rem; color: var(--muted); margin-top: .35rem; }
.section-dark .stats { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.section-dark .stats div { background: var(--asphalt-2); }
.section-dark .stats b { color: #fff; }
.section-dark .stats span { color: #a9b3c0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.contact-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); margin: 0; align-items: flex-start; }
.section-dark .contact-list li { border-color: rgba(255, 255, 255, .16); }
.contact-list li:first-child { padding-top: 0; }
.contact-icon { width: 40px; height: 40px; flex: none; border-radius: var(--r); background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.section-dark .contact-icon { background: rgba(255, 255, 255, .12); color: #fff; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-list .label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 650; margin-bottom: .12rem; }
.section-dark .contact-list .label { color: #98a3b1; }
.contact-list .value { font-size: 1.06rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.section-dark .contact-list .value { color: #fff; }
a.value:hover { color: var(--red); }
.section-dark a.value:hover { color: #ff8fa2; }

.map-link { display: block; text-decoration: none; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.map-link img { width: 100%; height: auto; }
.map-link span {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .95rem 1.2rem; font-weight: 650; color: var(--ink); font-size: .96rem;
}
.map-link span::after { content: "\2197"; color: var(--red); }
.map-link:hover { border-color: var(--line-strong); }
.map-link:hover span { color: var(--red); }
.map-fallback { display: flex; align-items: center; justify-content: center; min-height: 220px; background: var(--surface-3); color: var(--muted); font-size: .95rem; padding: 1.5rem; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--asphalt); color: #cfd6df; position: relative; }
.cta-band .lane { position: absolute; left: 0; right: 0; top: 0; }
.cta-band-inner { padding: clamp(2.8rem, 2rem + 2.6vw, 4.2rem) 0; display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 880px) { .cta-band-inner { grid-template-columns: 1.25fr .75fr; gap: 3rem; } }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { margin-bottom: 0; color: #b9c2ce; }

/* ---------- footer ---------- */
.site-footer { background: var(--asphalt-2); color: #a9b3c0; font-size: .95rem; }
.footer-top { padding: clamp(2.6rem, 2rem + 2vw, 3.6rem) 0 2.2rem; display: grid; gap: 2.2rem; }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.6rem; } }
@media (min-width: 1040px) { .footer-top { grid-template-columns: 1.5fr .8fr .8fr 1fr; } }
.site-footer img.footer-logo { width: 220px; margin-bottom: 1.1rem; }
.site-footer h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-style: italic; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #c3cbd6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.75; }
.footer-meta { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.3rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .86rem; }
.footer-meta p { margin: 0; }
.footer-reg { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; margin-top: 1rem; font-size: .86rem; color: #8d97a5; }

/* ---------- sticky mobiele actiebalk ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--asphalt); border-top: 3px solid var(--red);
  box-shadow: 0 -6px 20px rgba(20, 23, 28, .22);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem .6rem; color: #fff; text-decoration: none; font-weight: 650; font-size: .97rem;
}
.callbar a + a { border-left: 1px solid rgba(255, 255, 255, .16); }
.callbar a:hover { background: var(--asphalt-3); color: #fff; }
.callbar svg { width: 18px; height: 18px; }
@media (min-width: 1180px) { .callbar { display: none; } }
@media (max-width: 1179px) { body { --bar-h: 57px; } }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: .87rem; color: var(--muted); padding: 1.1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "\203A"; margin-right: .4rem; color: var(--line-strong); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 550; }

/* ---------- page header ---------- */
.page-head { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.page-head-inner { padding: 1.6rem 0 clamp(2.2rem, 1.6rem + 2vw, 3.4rem); }
.page-head h1 { font-size: clamp(1.9rem, 1.35rem + 2.3vw, 3.1rem); margin-bottom: .7rem; }
.page-head p { font-size: clamp(1.05rem, 1rem + .25vw, 1.18rem); color: var(--body); max-width: 62ch; margin-bottom: 0; }

/* ---------- 404 ---------- */
.err { text-align: center; padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0; }
.err h1 { font-size: clamp(3rem, 2rem + 5vw, 6rem); }

/* ---------- utils ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
