/* Autorijschool van Brandenburg
   Palette and motif derived from the business's own world: asphalt, road
   markings, Dutch traffic sign blue, and the green of a passed exam. */

:root {
  --ink: #101821;
  --road: #1b2634;
  --road-2: #253242;
  --paper: #f4f2ec;
  --surface: #ffffff;
  --line: #e2ddd1;
  --muted: #5c6673;

  --blue: #14509b;
  --blue-dark: #0e3a72;
  --blue-tint: #e8f0fa;
  --amber: #f4a11c;
  --amber-dark: #c67c05;
  --green: #17864f;
  --green-tint: #e6f4ec;

  --focus: #f4a11c;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16, 24, 33, .06), 0 12px 32px -18px rgba(16, 24, 33, .35);
  --shadow-lg: 0 2px 4px rgba(16, 24, 33, .06), 0 30px 60px -30px rgba(16, 24, 33, .45);

  --wrap: 1180px;
  --gutter: 20px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --step--1: clamp(.86rem, .84rem + .1vw, .92rem);
  --step-0: clamp(1rem, .96rem + .18vw, 1.08rem);
  --step-1: clamp(1.16rem, 1.08rem + .38vw, 1.38rem);
  --step-2: clamp(1.4rem, 1.24rem + .74vw, 1.85rem);
  --step-3: clamp(1.7rem, 1.4rem + 1.4vw, 2.55rem);
  --step-4: clamp(2.05rem, 1.5rem + 2.5vw, 3.5rem);
}

/* ---------- 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;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.022em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p, ul, ol, dl, table, blockquote, figure { margin: 0 0 1.1em; }
p { max-width: 68ch; }

a { color: var(--blue-dark); text-decoration-thickness: .07em; text-underline-offset: .18em; }
a:hover { color: var(--blue); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  width: max-content; max-width: calc(100% - 24px);
  background: var(--amber); color: var(--ink);
  padding: 12px 18px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }

.section { padding-block: clamp(48px, 7vw, 86px); }
.section--tight { padding-block: clamp(34px, 5vw, 58px); }
.section--paper { background: var(--paper); }
.section--surface { background: var(--surface); }
.section--tintblue { background: var(--blue-tint); }

.section--road {
  background: var(--road);
  color: #edf1f6;
}
.section--road h2, .section--road h3 { color: #fff; }
.section--road a { color: #ffd489; }

.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: var(--step-1); margin-bottom: 0; }
.section--road .section-head p { color: #b8c4d2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--step--1); font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .8em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--amber);
}
.section--road .eyebrow { color: var(--amber); }
.section--road .eyebrow::before { background: #fff; }

/* the signature element: a road centreline */
.lane {
  height: 6px; border-radius: 3px;
  background-image: repeating-linear-gradient(
    to right, var(--amber) 0 26px, transparent 26px 46px);
}
.lane--light {
  background-image: repeating-linear-gradient(
    to right, rgba(255,255,255,.85) 0 26px, transparent 26px 46px);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 24px; min-height: 50px;
  border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 800; line-height: 1.15;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; fill: currentColor; }

/* Dubbele klasse, zodat een knop zijn kleur houdt binnen secties die hun
   eigen linkkleur zetten (donkere banden, de footer, de landingspagina). */
.btn.btn--primary { background: var(--amber); color: var(--ink); }
.btn.btn--primary:hover { background: #ffb43f; color: var(--ink); }

.btn.btn--blue { background: var(--blue); color: #fff; }
.btn.btn--blue:hover { background: var(--blue-dark); color: #fff; }

.btn.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn.btn--on-dark { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn.btn--on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.2em; }

/* ---------- header ---------- */

.topbar {
  background: var(--ink); color: #cfd8e3;
  font-size: var(--step--1);
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  align-items: center; justify-content: space-between;
  min-height: 40px; padding-block: 7px;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }
.topbar a:hover { color: var(--amber); text-decoration: underline; }
.topbar__note { display: inline-flex; align-items: center; gap: .5em; }
.topbar__note::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex: none;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; gap: 10px;
  min-height: 74px; padding-block: 10px;
}
@media (min-width: 560px) { .header-inner { gap: 16px; } }
@media (min-width: 1120px) { .site-header > .wrap { min-height: 78px; } }

.logo { display: inline-flex; align-items: center; color: var(--ink); flex: none; }
.logo svg { width: 132px; height: auto; display: block; }
@media (min-width: 560px) { .logo svg { width: 170px; } }

.header-spacer { flex: 1 1 auto; }

.header-cta { padding: 11px 16px; min-height: 46px; white-space: nowrap; }
.header-cta__label { display: none; }
@media (min-width: 560px) {
  .header-cta { padding: 11px 20px; }
  .header-cta__label { display: inline; }
}

.nav-toggle {
  position: absolute; top: 0; right: 0;
  width: 1px; height: 1px; opacity: 0; margin: 0; padding: 0;
}

.nav-button {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 11px 15px; min-height: 46px; white-space: nowrap;
  border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 800; cursor: pointer; user-select: none;
  background: var(--surface); color: var(--ink);
}
.nav-button__bars { position: relative; width: 18px; height: 2px; background: currentColor; }
.nav-button__bars::before, .nav-button__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-button__bars::before { top: -6px; }
.nav-button__bars::after { top: 6px; }
.nav-toggle:focus-visible ~ .header-inner .nav-button {
  outline: 3px solid var(--focus); outline-offset: 3px;
}

.site-nav { display: none; border-top: 1px solid var(--line); padding-bottom: 14px; }
.nav-toggle:checked ~ .site-nav { display: block; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav ul li { border-bottom: 1px solid var(--line); }
.site-nav ul a {
  display: block; padding: 13px 2px;
  font-weight: 700; color: var(--ink); text-decoration: none;
}
.site-nav ul a:hover { color: var(--blue); }
.site-nav ul a[aria-current="page"] { color: var(--blue); }
.site-nav a.nav-mobile-cta { display: flex; margin-top: 16px; }

@media (min-width: 1120px) {
  /* Een rij: logo links, menu en belknop rechts. header-inner verdwijnt als
     doos (display: contents) zodat logo, menu en knop samen in dezelfde
     flexrij staan en het menu niet in een te smalle kolom afbreekt. */
  .site-header > .wrap { display: flex; align-items: center; gap: 18px; }
  .header-inner { display: contents; }
  .header-spacer { display: none; }
  .nav-button, .nav-toggle { display: none; }

  .logo { order: 0; margin-right: auto; }
  .site-nav { order: 1; display: block; border-top: 0; padding-bottom: 0; }
  .header-cta { order: 2; white-space: nowrap; }

  .site-nav ul { display: flex; flex-wrap: nowrap; gap: 2px; }
  .site-nav ul li { border: 0; }
  .site-nav ul a {
    padding: 9px 12px; border-radius: 999px;
    font-size: var(--step--1); white-space: nowrap;
  }
  .site-nav ul a:hover { background: var(--blue-tint); }
  .site-nav ul a[aria-current="page"] { background: var(--blue-tint); }
  .site-nav a.nav-mobile-cta { display: none; }
}

@media (min-width: 1120px) and (max-width: 1260px) {
  .site-nav ul a { padding: 9px 8px; font-size: .82rem; }
  .header-cta { padding: 10px 15px; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--road);
  color: #eef2f7;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 6px;
  background-image: repeating-linear-gradient(
    to right, rgba(255,255,255,.8) 0 34px, transparent 34px 60px);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 460px at 78% -8%, rgba(244,161,28,.20), transparent 62%),
    radial-gradient(900px 520px at 6% 108%, rgba(20,80,155,.42), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero__grid {
  display: grid; gap: 34px;
  padding-block: clamp(44px, 7vw, 84px);
}
.hero h1 { color: #fff; }
.hero__lead {
  font-size: var(--step-1); color: #c9d4e1; max-width: 56ch;
}
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero__stamp {
  position: absolute; right: 14px; bottom: -18px;
  background: var(--green); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 800; font-size: var(--step--1);
  box-shadow: var(--shadow);
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 26px 0 0; padding: 0; }
.chips li {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: #eaf0f7;
  padding: 8px 15px; border-radius: 999px;
  font-size: var(--step--1); font-weight: 700;
}
.chips li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: none; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 54px; }
}

/* ---------- generic grids ---------- */

.grid { display: grid; gap: 20px; }
/* Rasterkinderen krijgen standaard min-width:auto en groeien dan mee met hun
   breedste kind (een tabel, een lange e-mailadres-link). Dat duwt de pagina
   horizontaal open. */
.grid > *, .contact-grid > *, .footer-grid > *, .stats > *, .prose { min-width: 0; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .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(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 12px; background: var(--blue-tint); color: var(--blue);
  font-weight: 900; font-size: 1.15rem;
}
.card__icon svg { width: 24px; height: 24px; fill: currentColor; }
/* Het L-plaatje van de leerling, zoals het op de lesauto zit. */
.card__icon--plate {
  width: 38px; height: 46px; border-radius: 7px;
  background: #fff; border: 2px solid var(--blue); color: var(--blue);
  font-size: 1.5rem; font-weight: 900; line-height: 1;
}

/* ---------- numbers ---------- */

.stats { display: grid; gap: 18px; grid-template-columns: 1fr; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stats li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 24px;
}
.stats b { display: block; font-size: var(--step-3); line-height: 1; color: var(--amber); }
.stats span { display: block; margin-top: 8px; color: #c4cfdc; font-size: var(--step--1); font-weight: 600; }

/* ---------- pakketten ---------- */

.pack {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.pack--featured { border-color: var(--blue); border-width: 2px; }
.pack__badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--blue); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.pack__price { display: block; margin: 4px 0 6px; }
.pack__price b { font-size: var(--step-3); line-height: 1; letter-spacing: -.03em; }
.pack__price span { display: block; margin-top: 5px; color: var(--green); font-weight: 800; font-size: var(--step--1); }
.pack__hours { color: var(--muted); font-size: var(--step--1); font-weight: 700; margin-bottom: 18px; }
.pack ul { list-style: none; margin: 0 0 22px; padding: 0; }
.pack li { position: relative; padding-left: 30px; margin-bottom: 9px; }
.pack li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2317864f' d='M6.2 11.6 3 8.4l1.2-1.2 2 2 5-5L12.4 5.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.pack li.is-out { color: var(--muted); }
.pack li.is-out::before {
  background: #f1eee6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238a8577' d='M4 7.2h8v1.6H4z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.pack .btn { margin-top: auto; }

/* ---------- tables ---------- */

.table-scroll { overflow-x: auto; margin-bottom: 1.2em; }
table.data {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  font-size: var(--step--1);
}
table.data caption { text-align: left; font-weight: 800; padding: 0 0 10px; }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--blue-tint); font-weight: 800; white-space: nowrap; }
table.data tbody tr:last-child th, table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.num, table.data th.num { text-align: right; white-space: nowrap; }

/* ---------- testimonials ---------- */

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin: 0;
  break-inside: avoid;
}
.quote p { font-size: var(--step-0); margin-bottom: 1em; }
.quote footer { font-weight: 800; }
.quote footer span { display: block; font-weight: 600; color: var(--green); font-size: var(--step--1); }

.quote-columns { columns: 1; column-gap: 20px; }
@media (min-width: 760px) { .quote-columns { columns: 2; } }
@media (min-width: 1060px) { .quote-columns { columns: 3; } }
.quote-columns .quote { margin-bottom: 20px; display: inline-block; width: 100%; }

/* ---------- gallery ---------- */

.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.gallery li { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--line);
}

.strip { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); list-style: none; margin: 0; padding: 0; }
@media (min-width: 720px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-sm); }

/* ---------- prose ---------- */

.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--blue); font-weight: 700; }

/* ---------- faq ---------- */

.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 34px 18px 0; position: relative;
  font-weight: 800; font-size: var(--step-0);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 3px solid var(--blue); border-bottom: 3px solid var(--blue);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > *:not(summary) { margin-bottom: 1em; }
.faq details p:last-child { padding-bottom: 4px; }

/* ---------- contact ---------- */

.contact-grid { display: grid; gap: 26px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.nap { list-style: none; margin: 0 0 1.4em; padding: 0; }
.nap li { display: flex; flex-wrap: wrap; gap: 4px 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.nap li > span { min-width: 0; overflow-wrap: anywhere; }
.nap li:last-child { border-bottom: 0; }
.nap b { flex: none; width: 116px; font-weight: 800; }
.nap a { font-weight: 700; }

.map-link {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow);
}
.map-link img { width: 100%; height: auto; display: block; }
.map-link span {
  display: block; padding: 14px 18px;
  font-weight: 800; color: var(--blue-dark);
}
.map-placeholder {
  display: grid; place-items: center; text-align: center;
  aspect-ratio: 16 / 9; background: var(--blue-tint); color: var(--blue-dark);
  padding: 20px; font-weight: 700;
}

.callout {
  background: var(--green-tint);
  border: 1px solid #bfe3ce;
  border-radius: var(--radius);
  padding: 24px;
}
.callout h3 { margin-bottom: .35em; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- cta band ---------- */

.cta-band { background: var(--blue); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6e4f6; font-size: var(--step-1); }
.cta-band .btn.btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn.btn--ghost:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }

/* ---------- breadcrumbs ---------- */

.crumbs { font-size: var(--step--1); padding-block: 16px; color: var(--muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 8px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); }

.page-head { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-head__inner { padding-block: clamp(28px, 4.6vw, 54px); }
.page-head p { color: var(--muted); font-size: var(--step-1); margin-bottom: 0; }

/* ---------- posts ---------- */

.post-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.post-card__meta { font-size: var(--step--1); color: var(--muted); font-weight: 700; margin-bottom: .6em; }
.post-card h3 { margin-bottom: .4em; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--blue); text-decoration: underline; }
.post-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: #b9c4d1; padding-block: 54px 0; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: var(--step-0); letter-spacing: 0; }
.site-footer a { color: #e3eaf2; }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.logo--chip {
  background: #fff; border-radius: 12px;
  padding: 12px 16px; line-height: 0;
}
.footer-logo svg { width: 190px; height: auto; }
.footer-bottom {
  margin-top: 42px; border-top: 1px solid rgba(255,255,255,.13);
  padding-block: 20px 26px;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between;
  font-size: var(--step--1);
}
.footer-note { color: #7f8b99; }

/* ---------- 404 ---------- */

.error-page { display: grid; place-items: center; text-align: center; padding-block: clamp(60px, 10vw, 120px); }
.error-page .btn-row { justify-content: center; }
.error-page p { margin-inline: auto; }

/* Zeer smalle telefoons (320px). De menuknop wordt een icoon; de checkbox
   houdt zijn aria-label, dus de knop blijft voor schermlezers benoemd. */
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .logo svg { width: 116px; }
  .nav-button { padding: 11px 13px; }
  .nav-button__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}
