/* Autorijschool @JOS, Mierlo
   Palet is afgeleid van het eigen logo: het marineblauw van de logobalk,
   met wegmarkeringsgeel als signatuurelement en groen voor de actieknoppen. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-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: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-400-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: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-600-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;
}

:root {
  --navy: #012169;
  --navy-deep: #00123c;
  --navy-mid: #062a7d;
  --navy-soft: #eaeffb;
  --ink: #0d1526;
  --body: #3a4661;
  --muted: #6b7793;
  --paper: #ffffff;
  --mist: #f4f7fd;
  --line: #dae2f3;
  --go: #0d8a45;
  --go-bright: #12a854;
  --go-deep: #0a6b36;
  --lane: #ffc233;
  --lane-deep: #b57c00;

  --wrap: 1160px;
  --gap: clamp(1rem, 3vw, 1.75rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(1, 33, 105, .06), 0 10px 30px rgba(1, 33, 105, .07);
  --shadow-lift: 0 2px 4px rgba(1, 33, 105, .08), 0 18px 44px rgba(1, 33, 105, .14);

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .55em;
  font-weight: 800;
  font-stretch: 112%;
  /* Lange samenstellingen mogen niet buiten beeld lopen. Afbreken met een
     koppelteken gebeurt alleen op smalle schermen, zie de mediaquery onderaan. */
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-stretch: 105%; }
h4 { font-size: 1.05rem; font-stretch: 105%; }

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

a { color: var(--navy); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--go-deep); }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.15rem; }
li { margin-bottom: .4em; }
li:last-child { margin-bottom: 0; }

strong, b { font-weight: 600; color: var(--ink); }
/* Op de donkere vlakken moet vet juist lichter zijn, niet donkerder. */
.hero strong, .page-head strong, .cta-band strong, .section--navy strong,
.site-footer strong, .hero b, .cta-band b { color: #fff; }

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--lane); color: var(--ink); padding: .7rem 1.1rem;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------------- lane motief
   De streepjeslijn uit de wegmarkering. Het terugkerende merkelement. */
.lane {
  height: 6px;
  background-image: repeating-linear-gradient(
    to right, var(--lane) 0 34px, transparent 34px 62px);
  border: 0;
  margin: 0;
}
.lane--thin { height: 4px; }

/* ------------------------------------------------------------------- header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem 0;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 232px; height: auto; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font: 600 .95rem/1 var(--font-body);
  padding: .65rem .85rem;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: #fff; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav { margin-left: auto; }
.site-nav ul {
  list-style: none; display: flex; align-items: center; gap: .15rem;
  margin: 0; padding: 0;
}
/* De algemene li-marge zou het laatste item uit lijn duwen in een flexrij. */
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-weight: 500;
  font-size: .98rem;
  padding: .5rem .62rem;
  border-radius: 8px;
}
.site-nav a:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.site-nav a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--lane);
}

.header-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* -------------------------------------------------------------------- knoppen */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .82rem 1.3rem;
  border-radius: 11px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--go { background: var(--go-bright); color: #fff; box-shadow: 0 6px 18px rgba(13, 138, 69, .3); }
.btn--go:hover { background: var(--go); color: #fff; }

.btn--phone { background: #fff; color: var(--navy); }
.btn--phone:hover { background: var(--navy-soft); color: var(--navy); }

.btn--outline { border-color: var(--line); background: #fff; color: var(--navy); }
.btn--outline:hover { border-color: var(--navy); background: var(--navy-soft); color: var(--navy); }

.btn--ghost-light {
  border-color: rgba(255, 255, 255, .5); color: #fff; background: transparent;
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.btn--lg { font-size: 1.08rem; padding: 1rem 1.6rem; }
.btn--sm { font-size: .93rem; padding: .58rem .9rem; }

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

/* ---------------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(120% 120% at 82% 0%, #0a3aa3 0%, transparent 58%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* perspectief van een wegdek, subtiel */
  content: '';
  position: absolute; inset: auto 0 0 0; height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .22));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--lane);
  display: block;
}
.hero-lead {
  font-size: clamp(1.08rem, 2.1vw, 1.25rem);
  color: rgba(255, 255, 255, .9);
  max-width: 34em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-stretch: 112%;
  font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--lane);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 30px; height: 4px; background: var(--lane); border-radius: 2px;
}
.hero .eyebrow { color: var(--lane); }

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 8, 32, .45);
  border: 1px solid rgba(255, 255, 255, .16);
  background: #001233;
}
.hero-photo img { width: 100%; }
.hero-photo figcaption {
  padding: .7rem 1rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
}

.trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.4rem 0 0; padding: 0;
}
.trust-chips li {
  margin: 0;
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .38rem .85rem;
  font-size: .93rem;
  color: rgba(255, 255, 255, .94);
}
.trust-chips li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lane);
}

/* --------------------------------------------------------- directe contactbalk */
.quick-contact { background: var(--mist); border-bottom: 1px solid var(--line); }
.quick-grid {
  display: grid; gap: 1px; background: var(--line);
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}
.quick-grid a, .quick-grid .quick-item {
  background: var(--mist);
  display: flex; align-items: center; gap: .85rem;
  padding: 1.15rem 1.25rem;
  text-decoration: none; color: var(--ink);
}
.quick-grid a:hover { background: #fff; }
.quick-ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
}
.quick-ico svg { width: 21px; height: 21px; fill: currentColor; }
.quick-label { display: block; font-size: .82rem; color: var(--muted); font-weight: 500; }
.quick-value {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-stretch: 108%; font-size: 1.08rem; color: var(--ink); line-height: 1.25;
}

/* ------------------------------------------------------------------- secties */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-deep); color: rgba(255, 255, 255, .84); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.section-head p { font-size: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ------------------------------------------------------------------ voordelen */
.pillars { display: grid; gap: 1rem; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
}
.pillar-num {
  font-family: var(--font-display); font-weight: 800; font-stretch: 125%;
  font-size: 1.7rem; color: var(--lane-deep); line-height: 1; display: block;
  margin-bottom: .55rem;
}
.pillar h3 { margin-bottom: .35rem; }
.pillar p { font-size: .99rem; }

/* -------------------------------------------------------------------- kaarten */
.cards { display: grid; gap: 1.1rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); border-color: #c2d0ec; }
.card h3 { margin-bottom: .4rem; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--navy); }
.card p { font-size: .99rem; }
.card-tag {
  align-self: flex-start;
  font-family: var(--font-display); font-weight: 700; font-stretch: 105%;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); background: var(--navy-soft);
  padding: .3rem .6rem; border-radius: 6px; margin-bottom: .8rem;
}
.card-more {
  margin-top: auto; padding-top: .9rem;
  font-weight: 600; color: var(--go-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.card-more::after { content: '\2192'; transition: transform .15s ease; }
.card:hover .card-more::after { transform: translateX(3px); }

/* --------------------------------------------------------------- stappenplan */
.route { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.route li {
  position: relative;
  margin: 0;
  padding: 0 0 1.9rem 3.6rem;
}
.route li::before {
  /* de streepjeslijn als ruggengraat van de route */
  content: '';
  position: absolute; left: 21px; top: 2.4rem; bottom: -.2rem; width: 4px;
  background-image: repeating-linear-gradient(
    to bottom, var(--lane) 0 12px, transparent 12px 22px);
}
.route li:last-child { padding-bottom: 0; }
.route li:last-child::before { display: none; }
.route-step {
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
}
.route h3 { margin-bottom: .3rem; padding-top: .55rem; }
.route p { font-size: 1rem; }

/* ---------------------------------------------------------------- tarieftabel */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table.rates { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
table.rates caption {
  caption-side: top; text-align: left; padding: 1.1rem 1.25rem .3rem;
  font-family: var(--font-display); font-weight: 800; font-stretch: 110%;
  font-size: 1.15rem; color: var(--ink);
}
table.rates th, table.rates td { padding: .85rem 1.25rem; text-align: left; }
table.rates thead th {
  font-family: var(--font-body); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
  border-bottom: 1px solid var(--line);
}
table.rates tbody tr + tr td { border-top: 1px solid var(--line); }
table.rates td:last-child, table.rates th:last-child { text-align: right; white-space: nowrap; }
table.rates td.price {
  font-family: var(--font-display); font-weight: 700; font-stretch: 105%;
  color: var(--ink); font-size: 1.08rem;
}
.rate-note { font-size: .95rem; color: var(--muted); margin-top: .85rem; }

.package-grid { display: grid; gap: 1.1rem; }
.package {
  border: 2px solid var(--navy); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; background: #fff;
}
.package--alt { border-color: var(--line); }
.package h3 { margin-bottom: .2rem; }
.package .amount {
  font-family: var(--font-display); font-weight: 800; font-stretch: 118%;
  font-size: 2.4rem; color: var(--navy); line-height: 1.1; display: block;
  margin: .5rem 0 .3rem;
}
.package ul { list-style: none; padding: 0; margin: 1rem 0 1.2rem; }
.package li { position: relative; padding-left: 1.6rem; font-size: 1rem; }
.package li::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: 10px; height: 6px; border-left: 2.5px solid var(--go);
  border-bottom: 2.5px solid var(--go); transform: rotate(-45deg);
}

/* ---------------------------------------------------------------------- prose */
.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7rem; }
.prose ul li::marker { color: var(--lane-deep); }

.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.9rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .48em;
  width: 11px; height: 6px; border-left: 2.5px solid var(--go);
  border-bottom: 2.5px solid var(--go); transform: rotate(-45deg);
}

.callout {
  border-left: 5px solid var(--lane);
  background: var(--mist);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.35rem;
  margin: 1.6rem 0;
}
.callout h3 { margin-bottom: .4rem; font-size: 1.15rem; }
.callout p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------------- faq */
.faq { max-width: 48rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.35rem 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.faq-item p { font-size: 1.01rem; }
.faq-item p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------- cta blok */
.cta-band {
  background:
    radial-gradient(100% 130% at 15% 0%, #0a3aa3 0%, transparent 60%),
    var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4.5vw, 3rem);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 40em; }
.cta-band .btn-row { margin-top: 1.5rem; }

/* ------------------------------------------------------------------ contact */
.contact-grid { display: grid; gap: 1.75rem; }
.nap {
  font-style: normal;
  font-size: 1.05rem;
}
.nap dt {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600; margin-top: 1rem;
}
.nap dt:first-child { margin-top: 0; }
.nap dd {
  margin: .15rem 0 0;
  font-family: var(--font-display); font-weight: 700; font-stretch: 106%;
  font-size: 1.12rem; color: var(--ink);
}
.nap dd a { color: var(--ink); text-decoration: none; }
.nap dd a:hover { color: var(--navy); text-decoration: underline; }

.map-link {
  display: block; text-decoration: none; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: #fff;
}
.map-link img { width: 100%; }
.map-link span {
  display: block; padding: .8rem 1.1rem; font-weight: 600; color: var(--navy);
  background: #fff;
}
.map-link:hover span { background: var(--navy-soft); }
.map-placeholder {
  display: grid; place-items: center; min-height: 200px;
  background: var(--navy-soft); color: var(--navy); font-weight: 600;
}

/* --------------------------------------------------------------- kruimelpad */
.crumbs { background: var(--mist); border-bottom: 1px solid var(--line); }
.crumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: .45rem;
  margin: 0; padding: .7rem 0; font-size: .9rem;
}
.crumbs li { margin: 0; color: var(--muted); }
.crumbs li + li::before { content: '\203A'; margin-right: .45rem; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }

.page-head {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255, 255, 255, .9);
  padding: clamp(2.25rem, 5vw, 3.4rem) 0;
}
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head p { font-size: clamp(1.05rem, 2vw, 1.18rem); max-width: 40em; margin-bottom: 0; }
.page-head .btn-row { margin-top: 1.5rem; }

/* -------------------------------------------------------------------- footer */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .74); }
.footer-inner { padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; display: grid; gap: 2rem; }
.site-footer h2, .site-footer h3 {
  color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  font-stretch: 105%; margin-bottom: .9rem;
}
.site-footer img.footer-logo { width: 210px; margin-bottom: 1rem; }
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-nap { font-style: normal; line-height: 1.8; }
.footer-nap strong { color: #fff; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 1.1rem 0 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .9rem;
}
.social-link { display: inline-flex; align-items: center; gap: .5rem; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------------------------------------------------------------------- 404 */
.error-page { text-align: center; padding: clamp(3rem, 9vw, 6rem) 0; }
.error-page .btn-row { justify-content: center; }
.error-code {
  font-family: var(--font-display); font-weight: 800; font-stretch: 125%;
  font-size: clamp(4rem, 14vw, 8rem); color: var(--navy-soft); line-height: 1;
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 20px 40px rgba(0, 8, 32, .4);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .site-nav li { margin: 0; }
  .site-nav a {
    padding: .85rem 1.1rem; border-radius: 0; font-size: 1.05rem;
    width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto;
  }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--lane); }
  /* Geen position:relative hier: het uitklapmenu hangt aan .site-header, zodat
     het over de volle schermbreedte onder de streepjeslijn valt. */
  .header-inner { flex-wrap: wrap; gap: .6rem; }
  .header-cta .btn--go { display: none; }
  .brand img { width: 176px; }
}

@media (max-width: 560px) {
  /* Op een smal scherm past de belknop alleen nog als icoon naast het menu.
     De aria-label op de link houdt hem leesbaar voor schermlezers. */
  .header-cta .btn--phone span { position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .header-cta .btn--phone { padding: .6rem .7rem; }
  .brand img { width: 150px; }
  .nav-toggle { padding: .6rem .7rem; }
  /* Pas hier is de regel zo smal dat afbreken beter is dan overlopen. */
  h1, h2, h3 { hyphens: auto; }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
}

@media (min-width: 620px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 950px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .pillars { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--two { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
  .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
}

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

@media print {
  .site-header, .site-footer, .btn-row, .quick-contact { display: none; }
  body { color: #000; }
}
