/* ============================================================
   Baan Experience Norway — Stylesheet
   ------------------------------------------------------------
   Kleuren en typografie volgen de officiële stijlgids.
   Structuur: 1 tokens · 2 basis · 3 layout · 4 header/nav ·
   5 hero · 6 secties/componenten · 7 calculator · 8 formulier ·
   9 faq · 10 footer · 11 animaties · 12 responsive
   ============================================================ */

/* ── 1. Design tokens ──────────────────────────────────── */
:root {
  --c-primary: #265D7D;      /* donker teal — hoofdkleur */
  --c-primary-deep: #1d4a64;
  --c-accent: #0CB5CA;       /* cyaan — accenten op donkere vlakken */
  --c-accent-deep: #087E8F;  /* donker cyaan — knoppen & kleine tekst (WCAG AA: 4,8:1 op wit) */
  --c-accent-hover: #07727F;
  --c-accent-text: #087E8F;  /* leesbare cyaan tekstkleur op licht */
  --c-dark: #1A1A2E;         /* navy — footer, overlays */
  --c-light: #F7F9FB;        /* lichte sectie-achtergrond */
  --c-white: #FFFFFF;
  --c-text: #2C2C2C;
  --c-muted: #6B7280;
  --c-border: #D1D5DB;

  --font-head: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  --section-pad: clamp(3.5rem, 8vw, 5.5rem);
  --container: 1120px;
}

/* ── Lokale fonts (AVG: geen Google-servers) ───────────── */
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/raleway-v37-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/raleway-v37-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/raleway-v37-latin-800.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/open-sans-v44-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/open-sans-v44-latin-600.woff2") format("woff2"); }

/* ── 2. Basis ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--c-primary); }
h3 { font-weight: 700; font-size: 1.2rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--c-accent); color: #fff; padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

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

/* ── 3. Layout ─────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-pad); position: relative; }
.section-light { background: var(--c-light); }
.section-dark { background: var(--c-primary); color: var(--c-white); }
.section-dark h2, .section-dark h3, .section-dark a { color: var(--c-white); }
.section-navy { background: var(--c-dark); color: var(--c-white); }
.section-navy h2, .section-navy h3 { color: var(--c-white); }

/* Topografische hoogtelijnen-achtergrond */
.topo-light, .topo-dark { position: relative; isolation: isolate; }
.topo-light::before, .topo-dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-size: 1400px 900px; background-position: center;
}
.topo-light::before { background-image: url("../img/topo-light.svg"); }
.topo-dark::before { background-image: url("../img/topo-dark.svg"); }

.section-label {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-accent-deep); margin-bottom: 0.6rem;
}
.section-dark .section-label, .section-navy .section-label { color: var(--c-accent); }
.section-intro { font-size: 1.1rem; max-width: 46em; }
.footnote { font-size: 0.82rem; color: var(--c-muted); font-style: italic; }
.section-dark .section-intro, .section-navy .section-intro { color: rgba(255,255,255,0.88); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.65rem 1.4rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: all 0.25s ease; text-align: center;
}
.btn-primary { background: var(--c-accent-deep); border-color: var(--c-accent-deep); color: var(--c-white); }
.btn-primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.7); color: var(--c-white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-large { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ── 4. Header & navigatie ─────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(26, 26, 46, 0.92); backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.25); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 44px; width: auto; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 1.4rem; margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: rgba(255,255,255,0.9); text-decoration: none; padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--c-white); }
.site-nav .btn { color: var(--c-white); }
.lang-switch { display: flex; gap: 0.5rem; align-items: center; }
.lang-switch a { font-size: 1.15rem; text-decoration: none; line-height: 1; opacity: 0.9; }
.lang-switch a[aria-current="page"] { opacity: 1; filter: drop-shadow(0 0 3px rgba(12,181,202,0.9)); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--c-white); transition: transform 0.25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }

/* ── 5. Hero ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: var(--c-white); overflow: hidden; padding-block: 7rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* Bewust héél licht: de foto moet fris blijven. De tekst-
     schaduwen hieronder dragen de leesbaarheid. */
  background: linear-gradient(160deg, rgba(26,26,46,0.26) 0%, rgba(38,93,125,0.08) 55%, rgba(26,26,46,0.3) 100%);
}
.hero .container { max-width: 880px; margin-inline: auto; text-align: center; }
.hero h1 { color: var(--c-white); text-wrap: balance; margin-bottom: 0.4em; text-shadow: 0 2px 10px rgba(26,26,46,0.5), 0 2px 34px rgba(26,26,46,0.65); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 38em; margin-inline: auto; color: rgba(255,255,255,0.97); text-shadow: 0 1px 8px rgba(26,26,46,0.55), 0 1px 20px rgba(26,26,46,0.65); }
.hero-usps li { text-shadow: 0 1px 6px rgba(26,26,46,0.6), 0 1px 16px rgba(26,26,46,0.7); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.hero-usps {
  display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.6rem; padding: 0; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
}
.hero-usps li { display: flex; align-items: center; gap: 0.45rem; }
.hero-usps svg { flex: none; }

/* ── 6. Secties & componenten ──────────────────────────── */
.grid-2 { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.img-rounded { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.section-dark .card {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14);
}
.section-dark .card:hover { background: rgba(255,255,255,0.12); }
.card h3 { display: flex; align-items: center; gap: 0.6rem; }
.card svg { color: var(--c-accent); flex: none; }

/* Tijdlijn dagprogramma */
.timeline { list-style: none; margin: 2rem 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: rgba(12,181,202,0.35);
}
.timeline li { position: relative; padding: 0 0 1.6rem 2.2rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--c-accent);
}
.timeline strong { font-family: var(--font-head); display: block; }
.timeline .time {
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; color: var(--c-accent); text-transform: uppercase;
}

/* Video facade (click-to-load) */
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--c-dark); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer; padding: 0;
  background: none; display: grid; place-items: center;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.video-facade .play {
  position: relative; z-index: 1; width: 84px; height: 84px; border-radius: 50%;
  background: var(--c-accent); display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4); transition: transform 0.25s ease;
}
.video-facade:hover .play { transform: scale(1.08); }
.video-note { font-size: 0.85rem; color: var(--c-muted); margin-top: 0.8rem; }
.section-dark .video-note { color: rgba(255,255,255,0.75); }

/* ── 7. Prijsindicatie / calculator ────────────────────── */
.calc {
  display: grid; gap: 2rem; background: var(--c-white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--c-border);
}
@media (min-width: 860px) { .calc { grid-template-columns: 1.1fr 1fr; } }
.calc-controls > div { margin-bottom: 1.4rem; }
.calc label, .calc .calc-label {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; display: block; margin-bottom: 0.4rem; color: var(--c-primary);
}
.calc input[type="range"] { width: 100%; accent-color: var(--c-accent); }
.calc select, .calc input[type="number"] {
  width: 100%; padding: 0.6rem 0.8rem; border: 1px solid var(--c-border);
  border-radius: var(--radius); font: inherit; background: var(--c-white);
}
.calc-check { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-weight: 400 !important; font-family: var(--font-body) !important; letter-spacing: 0 !important; color: var(--c-text) !important; }
.calc-check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--c-accent); }
.calc-out { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.calc-out output { font-weight: 700; font-family: var(--font-head); color: var(--c-primary); font-size: 1.05rem; }

.calc-result { background: var(--c-light); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; }
.calc-line { display: flex; gap: 0.6rem; font-size: 0.95rem; padding: 0.3rem 0; }
.calc-line span:first-child { color: var(--c-accent-deep); font-weight: 700; flex: none; }
/* Prijs per persoon = blikvanger (euro groot, NOK klein erbij) */
.calc-pp-main { margin-top: 1.2rem; font-family: var(--font-head); }
.calc-pp-label {
  display: block; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted);
}
.calc-pp-main strong { font-size: 2.3rem; font-weight: 800; color: var(--c-accent-text); line-height: 1.15; }
.calc-nok-sub { font-family: var(--font-body); font-size: 0.85rem; color: var(--c-muted); font-weight: 400; white-space: nowrap; }
.calc-total-sub { font-size: 0.95rem; color: var(--c-text); margin: 0.4rem 0 0; }
.calc-total-sub strong { font-family: var(--font-head); color: var(--c-primary); }
.calc-result .btn { margin-top: 1.4rem; }
.price-disclaimer { font-size: 0.8rem; color: var(--c-muted); margin: 0.9rem 0 0; }

/* ── 8. Formulier ──────────────────────────────────────── */
.form-card {
  background: var(--c-white); color: var(--c-text);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.5rem); max-width: 720px; margin-inline: auto;
}
/* Links in de witte kaart altijd donker, ook binnen donkere secties */
.section-dark .form-card a { color: var(--c-primary); }
.form-prefill {
  background: #e6f7fa; border: 1px solid rgba(12,181,202,0.45);
  border-radius: var(--radius); padding: 0.8rem 1rem;
  font-size: 0.9rem; margin: 0 0 1.2rem;
}
.form-prefill strong { font-family: var(--font-head); color: var(--c-primary); }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--c-primary); }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.65rem 0.8rem; border: 1px solid var(--c-border);
  border-radius: var(--radius); font: inherit; background: var(--c-white);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; cursor: pointer; font-family: var(--font-body) !important; font-weight: 400 !important; color: var(--c-text) !important; }
.form-check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--c-accent); flex: none; }
.form-check strong { font-family: var(--font-head); color: var(--c-primary); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--c-muted); }
.form-consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; accent-color: var(--c-accent); flex: none; }
.form-actions { margin-top: 1.4rem; }
.form-status { margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.95rem; }
.form-status--ok { background: #e8f7ee; border: 1px solid #9ed9b5; color: #14532d; }
.form-status--error { background: #fdecec; border: 1px solid #f3b4b4; color: #7f1d1d; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── 9. FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-list details {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); margin-bottom: 0.8rem; overflow: hidden;
}
.faq-list summary {
  font-family: var(--font-head); font-weight: 700; cursor: pointer;
  padding: 1rem 3rem 1rem 1.2rem; list-style: none; position: relative; color: var(--c-primary);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; translate: 0 -50%;
  font-size: 1.4rem; color: var(--c-accent-deep); transition: rotate 0.2s ease;
}
.faq-list details[open] summary::after { rotate: 45deg; }
.faq-list .faq-answer { padding: 0 1.2rem 1.1rem; }

/* Reviews (voorbereid) */
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  margin: 0; background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 1.5rem; font-style: italic; font-size: 1.02rem;
}
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; display: block; margin-bottom: 0.5rem; }
.review-card footer { font-style: normal; font-size: 0.85rem; color: var(--c-muted); margin-top: 0.6rem; }

/* ── 10. Footer ────────────────────────────────────────── */
.site-footer { font-size: 0.92rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.footer-grid { display: grid; gap: 2rem; padding-block: 3.5rem 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-white); margin-bottom: 0.8rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
  color: rgba(255,255,255,0.65); font-size: 0.82rem;
}

/* Sticky mobiele CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(26,26,46,0.94); backdrop-filter: blur(6px);
  display: none; text-align: center;
}
.sticky-cta .btn { width: 100%; }

/* ── 11. Animaties ─────────────────────────────────────── */
[data-reveal] { opacity: 0; translate: 0 22px; transition: opacity 0.7s ease, translate 0.7s ease; }
[data-reveal].is-visible { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; translate: 0 0; transition: none; }
}

/* ── 12. Responsive ────────────────────────────────────── */
@media (max-width: 899px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 72px 0 auto 0; background: rgba(26,26,46,0.97);
    padding: 1.2rem 1.5rem 2rem; translate: 0 -130%; transition: translate 0.3s ease;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .site-nav.is-open { translate: 0 0; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .site-nav a { font-size: 1rem; }
  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}
@media (min-width: 900px) {
  .site-nav { display: block !important; }
}

/* ── 13. Pagina-componenten (meerpaginasite) ───────────── */
/* Additief t.o.v. het gedeelde design system — de dagtocht-
   site kan dit bestand ongewijzigd overnemen. */

/* Actieve navigatielink */
.site-nav a[aria-current="page"] { color: var(--c-white); border-bottom: 2px solid var(--c-accent); }

/* Kleinere hero voor subpagina's.
   Achtergrondkleur = merk-donkerblauw: valt de foto weg (traag
   netwerk, kapot bestand), dan blijft de header in de huisstijl. */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end;
  color: var(--c-white); overflow: hidden; padding-block: 8rem 2.5rem;
  background: var(--c-primary-deep);
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(26,26,46,0.6) 0%, rgba(38,93,125,0.32) 48%, rgba(26,26,46,0.72) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--c-white); font-size: clamp(1.8rem, 4.2vw, 2.9rem); margin-bottom: 0.2em; }
.page-hero .hero-sub { margin-inline: 0; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.82rem; margin-bottom: 0.8rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; opacity: 0.7; }
.breadcrumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--c-white); font-weight: 600; }

/* CTA-band onderaan pagina's */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--c-white); }
.cta-band .hero-cta { margin-top: 1.6rem; }
.cta-band .cta-note { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 1rem; }

/* Dag-kaarten (programma-teaser) */
.day-card .day-label {
  display: inline-block; font-family: var(--font-head); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 0.4rem;
}
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Gespiegelde 2-koloms rijen (activiteiten) */
@media (min-width: 760px) {
  .grid-2--flip > :first-child { order: 2; }
  .grid-2--flip > :last-child { order: 1; }
}

/* Voorzieningenlijst met vinkjes */
.check-list { list-style: none; margin: 1rem 0; padding: 0; display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .check-list--2col { grid-template-columns: 1fr 1fr; } }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--c-accent); font-weight: 700;
}

/* Stappen (zo werkt het) */
.steps { list-style: none; margin: 1.5rem 0 0; padding: 0; counter-reset: step; }
.steps li { position: relative; padding: 0 0 1.4rem 3rem; counter-increment: step; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -0.15rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--c-accent); color: var(--c-white);
  font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center;
}
.steps strong { font-family: var(--font-head); display: block; }

/* Gastenquotes (persoonlijke aanbevelingen) */
.quote-card {
  margin: 0; background: var(--c-white); border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.quote-card p { font-style: italic; font-size: 1.02rem; }
.quote-card footer { font-size: 0.85rem; color: var(--c-muted); }
.quote-card footer strong { font-family: var(--font-head); color: var(--c-primary); }

/* Reserveerpagina: formulier + zijkolom */
.booking-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 980px) { .booking-layout { grid-template-columns: 1.5fr 1fr; } }
.booking-aside .card + .card { margin-top: 1.5rem; }

/* Fotogrid */
.photo-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
