/* ==========================================================================
   Autorijschool Sengers, Oss
   Eén gedeelde stylesheet. Alle kleuren en typografie komen uit :root.

   Signatuurelement: de onderbroken wegmarkering uit het logo. Die komt terug
   als sectiescheiding, als accent onder de bovenkopjes en als de verticale
   streeplijn langs de lesstappen.
   ========================================================================== */

/* --- Lettertypen (self-hosted, geen externe requests) --------------------- */
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/saira-var-latin.woff2') format('woff2');
  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';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/saira-var-latin-ext.woff2') format('woff2');
  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: 'Mulish';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/mulish-latin-var.woff2') format('woff2');
  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;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --asphalt: #0e1c27;
  --asphalt-2: #16303f;
  --asphalt-3: #1f4356;
  --blue: #0480ba;
  --blue-dark: #036490;
  --sky: #2cb9ef;
  --sky-soft: #e3f5fd;
  --amber: #ffa31a;
  --amber-hover: #ffb545;
  --amber-ink: #8a5000;

  --ink: #0e1c27;
  --muted: #4b6577;
  --line: #d7e3ea;
  --paper: #ffffff;
  --mist: #f2f7fa;

  --error: #b3261e;

  --font-head: 'Saira', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Mulish', 'Segoe UI', system-ui, sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --wrap: 74rem;
  --shadow-sm: 0 1px 2px rgba(14, 28, 39, .06), 0 4px 12px rgba(14, 28, 39, .06);
  --shadow-md: 0 8px 28px rgba(14, 28, 39, .12);

  /* streepjeslijn: het signatuurelement */
  --lane: repeating-linear-gradient(to right,
    var(--sky) 0 18px, transparent 18px 34px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-dark); }
a:hover { color: var(--blue); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.06rem; }
p { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 50rem); margin-inline: auto; }

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

.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;
}

/* --- Knoppen -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: .005em;
  padding: .8rem 1.35rem;
  border: 2px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease,
              border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: #22160a; border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-hover); border-color: var(--amber-hover); color: #22160a; }
.btn--dark { background: var(--asphalt); color: #fff; border-color: var(--asphalt); }
.btn--dark:hover { background: var(--asphalt-2); border-color: var(--asphalt-2); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-dark); }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--on-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn--sm { padding: .55rem 1rem; font-size: .95rem; }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 4.75rem;
}
.site-header__logo { flex: none; }
.site-header__logo img { width: 178px; height: 35px; }

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex; align-items: center; gap: 1.05rem;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__list a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  padding: .35rem 0; display: inline-block;
  border-bottom: 2px solid transparent;
}
.site-nav__list a:hover { color: var(--blue-dark); border-bottom-color: var(--sky); }
.site-nav__list a[aria-current="page"] { color: var(--blue-dark); border-bottom-color: var(--blue); }

.site-header__cta { flex: none; display: flex; gap: .55rem; align-items: center; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--asphalt); color: #fff; border: 0; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .6rem .9rem; cursor: pointer;
}

@media (max-width: 68rem) {
  .site-header__logo img { width: 152px; height: 30px; }
  .site-nav__list { gap: .8rem; }
  .site-nav__list a { font-size: .9rem; }
}
@media (max-width: 60rem) {
  /* Eén rij: logo, belknop, menuknop. De uitgeklapte navigatie valt eronder. */
  .nav-toggle { display: inline-block; margin-left: 0; order: 3; }
  .site-header__cta { margin-left: auto; order: 2; }
  .site-nav {
    display: none; order: 4; width: 100%;
    margin: 0 0 .9rem; border-top: 1px solid var(--line); padding-top: .9rem;
  }
  .site-nav.is-open { display: block; }
  .site-header__inner { flex-wrap: wrap; gap: .75rem; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list a {
    display: block; padding: .7rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .site-nav__list li:last-child a { border-bottom: 0; }
}
@media (max-width: 34rem) {
  .site-header__logo img { width: 126px; height: 25px; }
  .site-header__cta .btn--ghost { display: none; }
  /* Het nummer staat groot in de hero en in de footer; in de balk is de knop genoeg. */
  .site-header__num { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--asphalt);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-image: url('/assets/lesauto-oss-1600.webp');
  background-size: cover; background-position: 40% 65%;
  opacity: .55;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,28,39,.95) 0%, rgba(14,28,39,.82) 46%,
              rgba(14,28,39,.34) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
  align-items: start;
  padding: 4rem 0 4.5rem;
}
.hero__eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sky);
  margin: 0 0 1rem;
}
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero__lead { font-size: 1.16rem; color: rgba(255,255,255,.88); max-width: 34rem; }
.hero__points {
  list-style: none; margin: 1.6rem 0 1.9rem; padding: 0;
  display: grid; gap: .55rem;
}
.hero__points li {
  position: relative; padding-left: 1.9rem;
  color: rgba(255,255,255,.92); font-weight: 600;
}
.hero__points li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 1.1rem; height: .34rem; border-radius: 2px;
  background: var(--amber);
}
.hero__phone {
  display: block; margin-top: 1.4rem;
  font-family: var(--font-head); font-size: .95rem; color: rgba(255,255,255,.7);
}
.hero__phone a { color: #fff; font-weight: 700; text-decoration: none; }
.hero__phone a:hover { color: var(--sky); }

.hero-card {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--amber);
}
.hero-card h2 { font-size: 1.35rem; margin-bottom: .35em; }
.hero-card__intro { font-size: .95rem; color: var(--muted); margin-bottom: 1.1rem; }

@media (max-width: 62rem) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 2.75rem 0 3rem; }
  .hero__media { background-position: 50% 60%; opacity: .3; }
}

/* --- Secties -------------------------------------------------------------- */
.section { padding: 4.25rem 0; }
.section--tight { padding: 3rem 0; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--asphalt); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a:not(.btn) { color: var(--sky); }
/* Kaarten op een donkere sectie blijven een licht vlak: de koppen en links
   daarbinnen mogen dus niet de witte tekstkleur van de sectie erven. */
.section--dark .hero-card h2,
.section--dark .hero-card h3,
.section--dark .card h2,
.section--dark .card h3 { color: var(--ink); }
.section--dark .hero-card a:not(.btn),
.section--dark .card a:not(.btn) { color: var(--blue-dark); }

.section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-dark); margin: 0 0 .7rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-head--center .eyebrow { justify-content: center; }
.eyebrow::before {
  content: ""; width: 2.2rem; height: 4px; border-radius: 2px;
  background: var(--lane); background-size: 12px 4px; flex: none;
  background-image: repeating-linear-gradient(to right, var(--sky) 0 7px, transparent 7px 12px);
}
.section--dark .eyebrow { color: var(--sky); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.section--dark .section-head p { color: rgba(255,255,255,.82); }

/* wegmarkering als sectiescheiding */
.lane-rule {
  height: 4px; border: 0; margin: 0;
  background-image: repeating-linear-gradient(to right,
    var(--sky) 0 22px, transparent 22px 40px);
}

/* --- Vertrouwensbalk ------------------------------------------------------ */
.trust {
  background: var(--asphalt-2); color: #fff;
  padding: 1.35rem 0;
}
.trust__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem 2.1rem; justify-content: center;
}
.trust__list li {
  position: relative; padding-left: 1.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
}
.trust__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .95rem; height: .3rem; border-radius: 2px; background: var(--sky);
}

/* --- Kaartenraster -------------------------------------------------------- */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 62rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 40rem) { .cards, .cards--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .99rem; }
.card__link {
  margin-top: auto; padding-top: .9rem;
  font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  text-decoration: none; color: var(--blue-dark);
}
.card__link::after { content: " \203A"; font-size: 1.15em; }
.card__link:hover { color: var(--blue); }
.card__tag {
  align-self: flex-start;
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--sky-soft); color: var(--blue-dark);
  padding: .25rem .6rem; border-radius: 999px; margin-bottom: .9rem;
}

/* --- Stappen langs de streeplijn (signatuur) ------------------------------ */
.road-steps { list-style: none; margin: 0; padding: 0 0 0 3.4rem; position: relative; }
.road-steps::before {
  content: ""; position: absolute; left: 1.18rem; top: .6rem; bottom: .6rem;
  width: 5px; border-radius: 3px;
  background-image: repeating-linear-gradient(to bottom,
    var(--sky) 0 16px, transparent 16px 30px);
}
.road-steps > li { position: relative; padding-bottom: 1.9rem; }
.road-steps > li:last-child { padding-bottom: 0; }
.road-steps > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: -3.4rem; top: -.15rem;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--paper);
}
.road-steps { counter-reset: step; }
.section--mist .road-steps > li::before { box-shadow: 0 0 0 6px var(--mist); }
.road-steps h3 { margin-bottom: .3em; }
.road-steps p { color: var(--muted); margin-bottom: 0; }

/* --- Tarieventabel -------------------------------------------------------- */
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
table.data caption {
  text-align: left; font-family: var(--font-head); font-weight: 700;
  padding-bottom: .7rem; color: var(--muted); font-size: .95rem;
}
table.data th, table.data td {
  text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line);
}
table.data thead th {
  background: var(--asphalt); color: #fff;
  font-family: var(--font-head); font-size: .92rem;
  letter-spacing: .05em; text-transform: uppercase;
}
table.data tbody tr:last-child th, table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: var(--mist); }
table.data td.price {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  white-space: nowrap;
}
table.data th[scope="row"] { font-family: var(--font-head); font-weight: 700; }

/* --- Lijsten -------------------------------------------------------------- */
.check-list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .55rem; }
.check-list li { position: relative; padding-left: 1.75rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: .55rem; height: .95rem;
  border: solid var(--blue); border-width: 0 3px 3px 0;
  transform: rotate(40deg);
}
.section--dark .check-list li::before { border-color: var(--sky); }

.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.7rem; }
.prose > :first-child { margin-top: 0; }

.lede { font-size: 1.18rem; color: var(--muted); }

/* --- Feitenblok ----------------------------------------------------------- */
.factbox {
  background: var(--sky-soft);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  margin: 1.8rem 0;
}
.factbox h3 { margin-bottom: .4em; font-size: 1.1rem; }
.factbox p:last-child { margin-bottom: 0; }

/* --- Media-blok (foto naast tekst) ---------------------------------------- */
.split {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); width: 100%; }
.split figcaption {
  font-size: .88rem; color: var(--muted); margin-top: .6rem;
}
.section--dark .split figcaption { color: rgba(255,255,255,.7); }
@media (max-width: 58rem) {
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .split--flip .split__media { order: 0; }
}

/* --- Geslaagden ----------------------------------------------------------- */
.photo-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
}
.photo-grid--wide { grid-template-columns: repeat(5, 1fr); }
.photo-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius); background: var(--mist);
}
@media (max-width: 62rem) { .photo-grid, .photo-grid--wide { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 34rem) { .photo-grid, .photo-grid--wide { grid-template-columns: repeat(2, 1fr); } }

/* --- Regio ---------------------------------------------------------------- */
.places { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.places li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .35rem .95rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
  padding: 1rem 3rem 1rem 1.2rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 1.35rem;
  width: .6rem; height: .6rem;
  border: solid var(--blue); border-width: 0 3px 3px 0;
  transform: rotate(45deg); transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.55rem; }
.faq details > div { padding: 0 1.2rem 1.15rem; color: var(--muted); }
.faq details > div p:last-child { margin-bottom: 0; }

/* --- Contactblok ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 58rem) { .contact-grid { grid-template-columns: 1fr; gap: 2.25rem; } }

.nap { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .9rem; }
.nap li { display: flex; gap: .8rem; align-items: flex-start; }
.nap__label {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue-dark);
  min-width: 6.5rem; padding-top: .18rem;
}
.section--dark .nap__label { color: var(--sky); }
.nap a { font-weight: 700; }

.map-link { display: block; text-decoration: none; }
.map-link img {
  width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line);
}
.map-link span {
  display: inline-block; margin-top: .6rem;
  font-family: var(--font-head); font-weight: 700; color: var(--blue-dark);
}
.map-link:hover span { color: var(--blue); }

/* --- Partnerlogo's -------------------------------------------------------- */
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2.4rem;
  list-style: none; margin: 0; padding: 0;
}
.logo-row img { background: #fff; border-radius: var(--radius); padding: .4rem; }

/* --- CTA-band ------------------------------------------------------------- */
.cta-band { background: var(--asphalt); color: #fff; padding: 3.25rem 0; }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 0; }
@media (max-width: 54rem) { .cta-band__inner { grid-template-columns: 1fr; } }

/* --- Kruimelpad ----------------------------------------------------------- */
.crumbs { font-size: .9rem; color: var(--muted); padding: 1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs li::after { content: "\203A"; margin-left: .45rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }

/* --- Paginakop ------------------------------------------------------------ */
.page-head { background: var(--mist); padding: 2rem 0 3rem; border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: .35em; }
.page-head p { color: var(--muted); font-size: 1.15rem; max-width: 46rem; margin-bottom: 0; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--asphalt); color: rgba(255,255,255,.8); }
.site-footer__lane {
  height: 5px;
  background-image: repeating-linear-gradient(to right,
    var(--sky) 0 26px, transparent 26px 48px);
}
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding: 3.25rem 0 2.25rem;
}
.site-footer h2 {
  font-size: .84rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1rem;
}
.site-footer img.footer-logo { width: 196px; height: 39px; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--sky); text-decoration: underline; }
.site-footer__meta {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 1.15rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .88rem; color: rgba(255,255,255,.62);
}
@media (max-width: 58rem) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 34rem) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Leadformulier
   Eigen --form-*-tokens, losstaand van de sitekleuren, zodat het veld ook op
   de donkere hero een leesbaar lichtvlak blijft.
   ========================================================================== */
.lead-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form { display: grid; gap: .75rem; }
.lead-form [hidden] { display: none; }

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

.lead-form__field { display: grid; gap: .25rem; font-size: .95rem; }
.lead-form__field > span { font-family: var(--font-head); font-weight: 600; }
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
  font: inherit;
  padding: .6rem .7rem;
  border: 1px solid var(--form-border, rgba(0,0,0,.25));
  border-radius: var(--radius, 6px);
  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,.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(--accent, var(--amber)));
  outline-offset: 2px;
}

.lead-form__submit { justify-self: start; }
.lead-form__submit:disabled { opacity: .65; cursor: not-allowed; }

.lead-form__note { font-size: .85rem; opacity: .8; margin: 0; }
.lead-form__status:empty { display: none; }
.lead-form__status {
  font-size: .9rem;
  color: var(--form-error-text, var(--error, #b3261e));
  background: var(--form-surface, #fff);
  padding: .6rem .8rem;
  border-radius: var(--radius, 6px);
}
.lead-form__status--done {
  color: var(--form-success-text, var(--form-text, #1a1a1a));
  padding: 1rem;
  border-radius: var(--radius, 6px);
  background: var(--form-surface, #fff);
}
.lead-form__status--done:focus {
  outline: 3px solid var(--form-focus-ring, var(--accent, var(--amber)));
  outline-offset: 2px;
}

/* --- Minder beweging ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card:hover { transform: none; }
}
