/* ==========================================================================
   Autorijschool Heijmink
   Palet en vormtaal komen uit het eigen merk: het donkerblauwe logo uit 1976,
   het gele accent van de auto-daklamp en de wegfoto op het aanhangerdoek.
   Signature element: de wegmarkering (streepjeslijn) als terugkerend motief.
   ========================================================================== */

:root {
  /* Merkkleuren */
  --navy-950: #050933;
  --navy-900: #0a1160;
  --navy-800: #141f8f;
  --blue-600: #1a4fc4;
  --blue-500: #2f6fe0;
  --blue-050: #eaf0fe;

  --signal-600: #e6bf00;
  --signal-500: #ffd400;
  --signal-400: #ffe45c;
  --signal-050: #fff8d6;

  --asphalt: #23262e;
  --ink: #12141c;
  --body: #3c4255;
  --muted: #626a80;
  --line: #dde4f3;
  --mist: #f3f6fc;
  --paper: #ffffff;

  --ok-600: #11794b;
  --ok-050: #e7f6ee;

  /* Typografie */
  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Ritme */
  --wrap: 1160px;
  --wrap-narrow: 760px;
  --gap: 1.5rem;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(5, 9, 51, .06), 0 2px 8px rgba(5, 9, 51, .05);
  --shadow-md: 0 4px 10px rgba(5, 9, 51, .07), 0 14px 34px rgba(5, 9, 51, .09);
  --shadow-lg: 0 10px 22px rgba(5, 9, 51, .10), 0 30px 60px rgba(5, 9, 51, .16);

  --header-h: 72px;
}

/* ---------- Reset ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  /* ruimte voor de vaste actiebalk op mobiel */
  padding-bottom: env(safe-area-inset-bottom);
}

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

/* Standaardformaat voor de inline iconen. Staat bewust bovenaan, zodat de
   specifiekere regels verderop (.btn svg, .actionbar a svg, ...) winnen. */
svg[aria-hidden="true"] { width: 1.15em; height: 1.15em; flex: none; fill: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: .002em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 4.1vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }

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

a { color: var(--blue-600); text-decoration-thickness: 1.5px; text-underline-offset: .18em; }
a:hover { color: var(--navy-800); }

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

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

strong { color: var(--navy-900); font-weight: 600; }
.section--navy strong, .cta-band strong, .contact-panel strong, .site-footer strong,
.hero strong, .pagehead strong { color: #fff; }

/* ---------- Layout ---------- */

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

.section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-900); color: #d6dcf5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 .7rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 4px; border-radius: 2px;
  background: var(--signal-500);
}
.section--navy .eyebrow { color: var(--signal-400); }

.lede { font-size: 1.15rem; color: var(--muted); }
.section--navy .lede { color: #b9c2e8; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ---------- Wegmarkering: het signatuurelement ---------- */

.roadline {
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--signal-500) 0 34px,
      transparent 34px 62px);
  opacity: .95;
}

.road-strip {
  background: var(--asphalt);
  padding: 13px 0;
}
.road-strip .roadline { height: 6px; }

/* ---------- Knoppen ---------- */

.btn {
  --btn-bg: var(--signal-500);
  --btn-fg: var(--navy-950);
  --btn-bd: var(--signal-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .022em;
  line-height: 1.1;
  padding: .95rem 1.5rem;
  min-height: 52px;
  border: 2px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
  box-shadow: 0 3px 0 rgba(5, 9, 51, .16);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(5, 9, 51, .2); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); box-shadow: none; }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: #fff; }

.btn--navy { --btn-bg: var(--navy-900); --btn-fg: #fff; --btn-bd: var(--navy-900); }
.btn--navy:hover { --btn-bg: var(--navy-800); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-900); --btn-bd: var(--navy-900); box-shadow: none; }
.btn--outline:hover { --btn-bg: var(--navy-900); --btn-fg: #fff; }

.btn--sm { font-size: 1.05rem; padding: .6rem 1.05rem; min-height: 44px; }

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

.btn svg { width: 20px; height: 20px; flex: none; fill: currentColor; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy-900);
  border-bottom: 3px solid var(--signal-500);
}

.header-bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.42rem;
  color: #fff; letter-spacing: .01em;
}
.brand-tag {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--signal-400); font-weight: 600; white-space: nowrap;
}
@media (max-width: 1290px) and (min-width: 1041px) { .brand-tag { display: none; } }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 500; letter-spacing: .015em;
  color: #d3daf6; text-decoration: none;
  padding: .5rem .62rem; border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav a[aria-current="page"] { color: var(--navy-950); background: var(--signal-500); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--signal-500); }
.header-phone:hover { color: var(--signal-400); }

.nav-toggle {
  display: none;
  align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 10px; padding: .55rem .8rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  cursor: pointer; min-height: 44px;
}
.nav-toggle svg { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .header-phone { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-950);
    border-bottom: 3px solid var(--signal-500);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 1.25rem 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .6rem; border-bottom: 1px solid rgba(255,255,255,.09); border-radius: 0; font-size: 1.2rem; }
  .nav .nav-mobile-cta { margin-top: .9rem; border: 0; color: var(--navy-950); font-size: 1.22rem; }
}
@media (min-width: 1041px) { .nav .nav-mobile-cta { display: none; } }

/* Op smalle schermen past de merknaam plus knop plus menuknop niet naast elkaar.
   De vaste actiebalk onderin dekt de CTA's daar al af. */
@media (max-width: 620px) {
  .brand-tag { display: none; }
  .brand-name { font-size: 1.24rem; }
  .brand img { width: 42px; height: 42px; }
  .header-cta > .btn { display: none; }
}
@media (max-width: 420px) {
  .brand-name { font-size: 1.1rem; }
  .nav-toggle { padding: .5rem .6rem; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--signal-500); color: var(--navy-950);
  padding: .8rem 1.2rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--navy-950); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(5,9,51,.96) 0%, rgba(5,9,51,.9) 42%, rgba(5,9,51,.45) 72%, rgba(5,9,51,.35) 100%);
}
/* de gele wig van het aanhangerdoek. Op mobiel weg: daar loopt hij door de tekst. */
.hero::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  background: var(--signal-500);
  clip-path: polygon(72% 0, 78% 0, 20% 100%, 14% 100%);
  opacity: .9; pointer-events: none;
}
@media (max-width: 820px) { .hero::after { display: none; } }
.hero-inner { position: relative; z-index: 2; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem); }
.hero-content { max-width: 40rem; }

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .accent { color: var(--signal-500); display: block; }
.hero-sub { font-size: clamp(1.1rem, 2.1vw, 1.3rem); color: #cdd5f2; max-width: 34rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.6rem; padding: 0; list-style: none; }
.hero-chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; border-radius: 999px; padding: .38rem .85rem;
  font-size: .95rem; font-weight: 500; margin: 0;
}
.hero-chips svg { width: 15px; height: 15px; fill: var(--signal-500); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.hero-note { font-size: .95rem; color: #aab4de; margin: 0; }
.hero-note strong { color: var(--signal-400); }

/* Compacte hero voor de subpagina's */
.pagehead { position: relative; background: var(--navy-900); color: #c9d1f0; overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; right: -6%; top: 0; bottom: 0; width: 38%;
  background: #fff; opacity: .05;
  clip-path: polygon(58% 0, 100% 0, 52% 100%, 10% 100%);
}
@media (max-width: 720px) { .pagehead::after, .pagehead::before { display: none; } }
.pagehead::after {
  content: ""; position: absolute; right: 4%; top: 0; bottom: 0; width: 26%;
  background: var(--signal-500); opacity: .92;
  clip-path: polygon(72% 0, 79% 0, 24% 100%, 17% 100%);
}
.pagehead-inner { position: relative; z-index: 2; padding: clamp(2.4rem, 5.5vw, 4rem) 0 clamp(2.2rem, 4.5vw, 3.2rem); }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead .lede { color: #b8c2e6; max-width: 56ch; }

/* ---------- Kruimelpad ---------- */

.crumbs { font-size: .9rem; margin: 0 0 1rem; color: #97a2cd; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; gap: .35rem; align-items: center; }
.crumbs li + li::before { content: "›"; color: var(--signal-500); }
.crumbs a { color: #cdd6f5; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; }

/* ---------- Kaarten ---------- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--body); }
.card .card-link { margin-top: auto; padding-top: .9rem; font-weight: 600; font-family: var(--font-display); font-size: 1.1rem; text-decoration: none; }
.card .card-link::after { content: " →"; }
.card .card-link:hover { text-decoration: underline; }

.card--link { transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-500); }

.card-media { margin: -1.5rem -1.5rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-050); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: .9rem;
}
.icon-badge svg { width: 25px; height: 25px; fill: currentColor; }

/* Voordelen */
.usp { display: flex; gap: .9rem; align-items: flex-start; }
.usp .icon-badge { flex: none; margin-bottom: 0; }
.usp h3 { font-size: 1.22rem; margin-bottom: .2em; }
.usp p { font-size: 1rem; margin: 0; }

/* ---------- Route (3 stappen) ---------- */

.route { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); position: relative; }
.route li {
  position: relative; margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem; box-shadow: var(--shadow-sm);
}
.route .step-no {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--signal-500);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: .8rem;
}
.route h3 { font-size: 1.28rem; margin-bottom: .3em; }
.route p { font-size: 1rem; margin: 0; }

@media (min-width: 900px) {
  .route::before {
    content: ""; position: absolute; left: 8%; right: 8%; top: 46px; height: 4px;
    background: repeating-linear-gradient(90deg, var(--signal-500) 0 18px, transparent 18px 34px);
    z-index: 0;
  }
  .route li { z-index: 1; }
}

/* ---------- Tarieven ---------- */

.price-table { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
.price-table caption { text-align: left; font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-900); font-weight: 700; padding-bottom: .6rem; }
.price-table th, .price-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--navy-900); color: #fff; font-family: var(--font-display); font-size: 1.12rem; letter-spacing: .03em; }
.price-table thead th:last-child, .price-table td:last-child { text-align: right; }
.price-table tbody tr:nth-child(even) { background: var(--mist); }
.price-table td:last-child { font-weight: 600; color: var(--navy-900); white-space: nowrap; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.table-scroll .price-table { min-width: 420px; }

.price-hero {
  background: var(--signal-500);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  display: grid; gap: 1.2rem; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  box-shadow: var(--shadow-md);
}
.price-hero h2, .price-hero h3 { color: var(--navy-950); margin-bottom: .2em; }
.price-hero p { color: #3a3400; margin: 0; }
.price-tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 4.6rem); line-height: .95; color: var(--navy-950);
}
.price-tag small { display: block; font-size: 1.05rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Feitenlijst / NAP ---------- */

.factlist { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.factlist li {
  display: flex; gap: .85rem; padding: .8rem 0; border-bottom: 1px solid var(--line);
  margin: 0; align-items: flex-start; min-width: 0;
}
.factlist li > :last-child { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 620px) {
  .factlist li { flex-direction: column; gap: .1rem; }
  .factlist dt, .factlist .k { min-width: 0; }
}
.factlist li:last-child { border-bottom: 0; }
.factlist dt, .factlist .k { font-weight: 600; color: var(--navy-900); min-width: 8.5rem; flex: none; }
.factlist a { font-weight: 600; }

.nap { font-style: normal; line-height: 1.75; }
.nap strong { display: block; font-family: var(--font-display); font-size: 1.35rem; }

/* ---------- Checklijst ---------- */

.checklist { list-style: none; padding: 0; margin: 0 0 1.1em; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .6em; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--ok-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2311794b'%3E%3Cpath d='M9.6 17.2 4.4 12l1.6-1.6 3.6 3.6L18 5.6 19.6 7.2z'/%3E%3C/svg%3E") center / 0.95rem no-repeat;
}
.section--navy .checklist li::before { background-color: rgba(255,212,0,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffd400'%3E%3Cpath d='M9.6 17.2 4.4 12l1.6-1.6 3.6 3.6L18 5.6 19.6 7.2z'/%3E%3C/svg%3E"); }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.3rem; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--blue-500); }
.faq summary {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy-900);
  padding: 1.05rem 2rem 1.05rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 14px; height: 14px;
  margin-top: -9px; border-right: 3px solid var(--signal-600); border-bottom: 3px solid var(--signal-600);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq-body { padding: 0 0 1.15rem; }
.faq .faq-body > :first-child { margin-top: 0; }

/* ---------- Media / beeld ---------- */

.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--mist); }
.figure img { width: 100%; }
.figure--portrait img { max-height: 520px; object-fit: cover; object-position: center 22%; }
.figure figcaption { padding: .8rem 1rem; font-size: .92rem; color: var(--muted); background: var(--paper); }

.split { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split--reverse > :first-child { order: 2; }
@media (max-width: 720px) { .split--reverse > :first-child { order: 0; } }

/* ---------- Geslaagden ---------- */

.pass-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); list-style: none; padding: 0; margin: 0; }
.pass-grid li { margin: 0; display: flex; }
.pass-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; width: 100%; margin: 0;
}
.pass-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pass-card .pass-name {
  margin-top: auto; padding: .7rem .9rem; font-family: var(--font-display); font-size: 1.18rem;
  font-weight: 600; color: var(--navy-900); display: flex; align-items: center; gap: .45rem;
}
.pass-card .pass-name::before { content: "★"; color: var(--signal-600); }

/* ---------- Contactblok ---------- */

.contact-panel {
  background: var(--navy-900); color: #cdd5f2; border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg);
}
.contact-panel h2, .contact-panel h3 { color: #fff; }
.contact-panel a { color: var(--signal-400); }
.contact-panel .btn { color: var(--btn-fg); }
.section--navy .btn, .cta-band .btn { color: var(--btn-fg); }
.contact-panel .factlist li { border-color: rgba(255,255,255,.14); }
.contact-panel .factlist .k { color: #fff; }

.map-link { display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--mist); }
.map-link img { width: 100%; }
.map-link span {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  background: var(--paper); color: var(--navy-900); font-weight: 600;
  padding: .8rem 1rem; font-family: var(--font-display); font-size: 1.15rem;
}
.map-link span svg { width: 20px; height: 20px; flex: none; fill: var(--signal-600); }
.map-link:hover span { background: var(--signal-500); }

/* ---------- CTA-band ---------- */

.cta-band { background: var(--navy-950); color: #cdd5f2; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,212,0,.06) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #b6c0e6; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-950); color: #9fa9d4; font-size: 1rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; }
.site-footer h2, .site-footer h3 {
  color: #fff; font-size: 1.18rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .9rem;
}
.site-footer a { color: #d3daf6; text-decoration: none; }
.site-footer a:hover { color: var(--signal-400); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45em; }
.footer-brand img { width: 150px; border-radius: 10px; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.2rem 0 calc(1.2rem + var(--actionbar-h, 0px));
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .92rem; color: #8b95c4;
}
.footer-bottom a { color: #8b95c4; }

/* ---------- Vaste actiebalk op mobiel ---------- */

.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: var(--navy-950);
  border-top: 3px solid var(--signal-500);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 20px rgba(5,9,51,.28);
}
.actionbar ul { display: flex; list-style: none; margin: 0; padding: 0; }
.actionbar li { flex: 1; margin: 0; }
.actionbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem;
  padding: .55rem .3rem; min-height: 58px;
  color: #fff; text-decoration: none;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; letter-spacing: .03em;
}
.actionbar a svg { width: 21px; height: 21px; fill: var(--signal-500); }
.actionbar li + li { border-left: 1px solid rgba(255,255,255,.14); }
.actionbar a:hover, .actionbar a:focus-visible { background: rgba(255,255,255,.1); }

@media (max-width: 760px) {
  .actionbar { display: block; }
  body { --actionbar-h: 64px; }
}

/* ---------- Hulpklassen ---------- */

.note {
  border-left: 5px solid var(--signal-500);
  background: var(--signal-050);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0;
  color: #4a4200;
}
.note strong { color: var(--navy-950); }

.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.tag-row li {
  margin: 0; background: var(--blue-050); color: var(--navy-800);
  border-radius: 999px; padding: .35rem .85rem; font-size: .95rem; font-weight: 500;
}

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

.prose > h2 { margin-top: 2.2em; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { margin-top: 1.7em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .actionbar, .cta-band, .site-footer { display: none; }
  body { color: #000; }
}
