/* ==========================================================================
   Autorijschool Mulders
   Kleuren komen rechtstreeks uit het bestaande logo van de rijschool:
   oranje #EA4E1D, bijna zwart #1B1B1B en wit. De uitgelichte L in MULDERS is
   het signatuurelement en komt terug als oranje L-chip en als wegstreping.
   ========================================================================== */

/* -------------------------------------------------------------- fonts -- */
@font-face {
  font-family: "Saira";
  src: url("/assets/fonts/saira-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Saira";
  src: url("/assets/fonts/saira-var-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("/assets/fonts/bevietnampro-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("/assets/fonts/bevietnampro-400-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("/assets/fonts/bevietnampro-600-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("/assets/fonts/bevietnampro-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------- tokens -- */
:root {
  --ink: #14161a;
  --ink-2: #21252c;
  --ink-3: #333941;
  --paper: #ffffff;
  --sand: #f5f2ef;
  --sand-2: #ece7e2;
  --orange: #ea4e1d;
  --orange-dark: #c33d12;
  --orange-soft: #fdf0eb;
  --text: #1c1f24;
  --muted: #5b626c;
  --muted-dark: #b6bcc5;
  --line: rgba(20, 22, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --error: #b3261e;

  --font-display: "Saira", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --wrap: 71rem;
  --focus: #14161a;

  --form-focus-ring: #ea4e1d;
  --form-border: rgba(20, 22, 26, 0.26);
}

/* -------------------------------------------------------------- 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: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

/* Zonder height:auto winnen de HTML width/height-attributen van de CSS-breedte
   en wordt een foto uitgerekt of platgedrukt. Beide regels horen bij elkaar. */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 6.2vw, 3.9rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 3.9vw, 2.6rem);
}
h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: -0.005em;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: 0;
}

p {
  margin: 0 0 1.1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--orange-dark);
  text-underline-offset: 0.18em;
}
a:hover {
  color: var(--ink);
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}
li {
  margin-bottom: 0.4em;
}

strong,
b {
  font-weight: 700;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  z-index: 200;
}
.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------ layout --- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section--tight {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}
.section--sand {
  background: var(--sand);
}
.section--ink {
  background: var(--ink);
  color: #f2f3f5;
  --focus: #ffffff;
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: #fff;
}
.section--ink a {
  color: #ffc8b4;
}
.section--ink a:hover {
  color: #fff;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--muted);
  max-width: 42ch;
}
.section--ink .lede {
  color: var(--muted-dark);
}
.lede--wide {
  max-width: 58ch;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 3px;
  background: var(--orange);
  flex: none;
}

/* Wegstreping: de signatuurlijn van de site. */
.dashrule {
  height: 6px;
  border: 0;
  margin: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 26px,
    transparent 26px 46px
  );
}

/* ------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  --focus: #ffffff;
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  margin-right: auto;
  padding: 0.35rem 0;
}
.brand__top {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #cfd3d9;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand__l {
  color: var(--orange);
}
.brand:hover .brand__top {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: #e6e8ec;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
}
.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--orange);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.header-call:hover {
  background: #ff5d2b;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}
.nav-toggle__bars {
  display: grid;
  gap: 3px;
}
.nav-toggle__bars span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 60rem) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 4px solid var(--orange);
    padding: 0.5rem 1.25rem 1rem;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.05rem;
  }
  .nav a[aria-current="page"] {
    box-shadow: none;
    color: var(--orange);
  }
  .site-header__bar {
    position: relative;
  }
}

@media (max-width: 27rem) {
  .header-call span {
    display: none;
  }
  .brand__name {
    font-size: 1.25rem;
  }
}

/* ------------------------------------------------------------ buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn--primary {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: #ff5d2b;
  border-color: #ff5d2b;
  color: var(--ink);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--ink-3);
  border-color: var(--ink-3);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}
.section--ink .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--wide {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
}

/* --------------------------------------------------------------- hero -- */
.hero {
  background: var(--ink);
  color: #f2f3f5;
  padding: clamp(2.5rem, 5.5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  --focus: #ffffff;
}
.hero h1 {
  color: #fff;
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
}
@media (min-width: 62rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }
}
.hero__lede {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: #d3d7dd;
  max-width: 46ch;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__chips li {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: #e4e6ea;
  margin: 0;
}

.hero__card {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --focus: #14161a;
}
.hero__card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.hero__card-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

/* Fotoband direct onder de hero. */
.photoband {
  position: relative;
  background: var(--ink);
}
.photoband img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 55%;
}
@media (min-width: 48rem) {
  .photoband img {
    aspect-ratio: 21 / 8;
  }
}

/* ------------------------------------------------------------- facts --- */
.facts {
  display: grid;
  gap: 1.5rem 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.facts li {
  margin: 0;
  border-top: 3px solid var(--orange);
  padding-top: 0.85rem;
}
.facts b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.facts span {
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
}
.section--ink .facts span {
  color: var(--muted-dark);
}

/* ------------------------------------------------------------- cards --- */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.section--sand .card {
  border-color: var(--sand-2);
}
.card h3 {
  margin-bottom: 0.45rem;
}
.card p {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
}
.card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--orange-dark);
  margin-top: 1rem;
}
.card__link:hover {
  color: var(--ink);
  text-decoration: underline;
}
.card__link::after {
  content: " \2192";
}

/* De L-chip: het uitgelichte merkletter uit het logo, hergebruikt als icoon. */
.lchip {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--orange);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 1rem;
  flex: none;
}
.lchip--num {
  font-size: 1.15rem;
}

/* ----------------------------------------------------------- prijzen --- */
.pricelist {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.section--ink .pricelist {
  border-color: var(--line-dark);
}
/* Onder 40rem staat de prijs altijd op een eigen regel onder het label. Met
   flex-wrap alleen kroop een kort label ("Losse rijles") wel naast de prijs en
   een lang label niet, waardoor de lijst er ongelijk uitzag op een telefoon. */
.pricelist li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 40rem) {
  .pricelist li {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
  }
}
.section--ink .pricelist li {
  border-color: var(--line-dark);
}
.pricelist__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 34rem;
}
.pricelist__note {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.section--ink .pricelist__note {
  color: var(--muted-dark);
}
.pricelist__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  color: var(--orange-dark);
  white-space: nowrap;
}
.section--ink .pricelist__price {
  color: var(--orange);
}

.pricenote {
  margin-top: 1.5rem;
  font-size: 0.97rem;
  color: var(--muted);
}
.section--ink .pricenote {
  color: var(--muted-dark);
}

/* ------------------------------------------------------------- split --- */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .split--media-first > .split__media {
    order: -1;
  }
  .split--narrow-media {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.split__media figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.6rem;
}
.section--ink .split__media figcaption {
  color: var(--muted-dark);
}
.split__media {
  margin: 0;
}

.speclist {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}
.speclist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
}
.speclist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.85rem;
  height: 3px;
  background: var(--orange);
}

/* -------------------------------------------------------------- steps -- */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.steps li {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}
.section--sand .steps li {
  border-color: var(--sand-2);
}
.steps h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.steps p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* --------------------------------------------------------------- faq --- */
.faq {
  margin: 2.25rem 0 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq__item h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}
.faq__item p {
  color: var(--muted);
  max-width: 68ch;
}
.section--ink .faq,
.section--ink .faq__item {
  border-color: var(--line-dark);
}
.section--ink .faq__item p {
  color: var(--muted-dark);
}

/* ------------------------------------------------------------- regio --- */
.places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}
.places li {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.section--ink .places li {
  background: transparent;
  border-color: var(--line-dark);
  color: #e4e6ea;
}

/* ----------------------------------------------------------- contact --- */
.contactgrid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (min-width: 58rem) {
  .contactgrid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

.contactlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contactlist li {
  margin: 0 0 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.section--ink .contactlist li {
  border-color: var(--line-dark);
}
.contactlist li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contactlist__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.section--ink .contactlist__label {
  color: var(--muted-dark);
}
.contactlist__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}
/* De aanklikbare regels (telefoon, WhatsApp, e-mail, Facebook) krijgen kleur en
   een onderstreping, anders zien ze er op een telefoon precies zo uit als de
   regels die geen link zijn en probeert niemand ze aan te tikken. */
a.contactlist__value {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
a.contactlist__value:hover {
  color: var(--ink);
}
.section--ink a.contactlist__value {
  color: var(--orange);
}
.section--ink a.contactlist__value:hover {
  color: #fff;
}

.formcard {
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  --focus: #14161a;
}
.formcard h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.formcard__intro {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ------------------------------------------------------------ callout -- */
/* Zelfde regelbreedte als .prose, anders liep het kader op een breed scherm
   door tot de rand terwijl de tekst erboven al bij 68ch stopte. */
.callout {
  max-width: 68ch;
  background: var(--orange-soft);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.4rem;
  margin: 2rem 0 0;
}
.callout p {
  font-size: 0.99rem;
}
.section--ink .callout {
  background: rgba(234, 78, 29, 0.14);
  border-left-color: var(--orange);
}

/* ------------------------------------------------------------ prose ---- */
.prose {
  max-width: 68ch;
}
.prose h2 {
  margin-top: 2.5rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  margin-top: 1.9rem;
}

/* ------------------------------------------------------ breadcrumbs ---- */
.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.9rem 0 0;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.crumbs li {
  margin: 0;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--line);
}
.crumbs a {
  color: var(--muted);
}

.pagehead {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(1.75rem, 4vw, 2.75rem);
}

/* ------------------------------------------------------------- footer -- */
.site-footer {
  background: var(--ink);
  color: #cfd3d9;
  padding: clamp(2.75rem, 5vw, 4rem) 0 2rem;
  font-size: 0.96rem;
  --focus: #ffffff;
}
.site-footer a {
  color: #cfd3d9;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer h2 {
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8d949e;
  margin-bottom: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.5rem;
}
.footer-brand .brand {
  margin-bottom: 1rem;
}
.footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.87rem;
  color: #8d949e;
}
.footer-note a {
  color: #8d949e;
}

/* --------------------------------------------------------- formulier --- */
.lead-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.lead-form [hidden] {
  display: none;
}

.lead-form__row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 32rem) {
  .lead-form__row {
    grid-template-columns: 1fr;
  }
}

.lead-form__field {
  display: grid;
  gap: 0.25rem;
  font-size: 0.95rem;
}
.lead-form__field > span {
  font-family: var(--font-display);
  font-weight: 600;
}
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
  font: inherit;
  font-family: var(--font-body);
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--form-border, rgba(0, 0, 0, 0.25));
  border-radius: var(--radius);
  background: var(--form-surface, #fff);
  color: var(--form-text, #1a1a1a);
  width: 100%;
  color-scheme: var(--form-color-scheme, light);
}
.lead-form__field input::placeholder,
.lead-form__field textarea::placeholder {
  color: var(--form-placeholder, rgba(26, 26, 26, 0.6));
  opacity: 1;
}
.lead-form__field select option {
  color: var(--form-text, #1a1a1a);
  background: var(--form-surface, #fff);
}
.lead-form__field :focus-visible {
  outline: 3px solid var(--form-focus-ring, var(--orange));
  outline-offset: 2px;
}

.lead-form__submit {
  justify-self: start;
  margin-top: 0.25rem;
}
.lead-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.lead-form__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.lead-form__status:empty {
  display: none;
}
.lead-form__status {
  font-size: 0.9rem;
  color: var(--form-error-text, var(--error));
  background: var(--form-surface, #fff);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
}
.lead-form__status--done {
  color: var(--form-success-text, var(--text));
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--orange-soft);
}
.lead-form__status--done:focus {
  outline: 3px solid var(--form-focus-ring, var(--orange));
  outline-offset: 2px;
}

/* ----------------------------------------------------------- 404 ------- */
.notfound {
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}
.notfound .btn-row {
  justify-content: center;
}
.notfound .lede {
  margin-inline: auto;
}
