/* ===== CSS DESIGN TOKENS ===== */
:root {
  --ink: #0E0F11;
  --ink-2: #2A2C30;
  --ink-3: #5A5D63;
  --ink-4: #8B8E94;
  --bg: #FAFAF7;
  --sand: #F1EFEA;
  --sand-2: #E7E4DC;
  --line: rgba(14, 15, 17, 0.10);
  --line-soft: rgba(14, 15, 17, 0.06);
  --mint: #2ED3B7;
  --mint-ink: #0E7A66;

  --tw-section-pad: 96px;
  --tw-section-pad-sm: 64px;
  --tw-display-weight: 300;
  --tw-h2-tracking: -0.02em;
  --tw-display-tracking: -0.025em;
  --tw-card-radius: 4px;
  --tw-btn-radius: 999px;
}

/* Hoog contrast modus */
html.high-contrast {
  --bg: #ffffff;
  --sand: #efefef;
  --sand-2: #dedede;
  --ink: #000000;
  --ink-2: #111111;
  --ink-3: #222222;
  --ink-4: #444444;
  --line: #000000;
  --line-soft: #555555;
  --mint: #006644;
  --mint-ink: #003322;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Eigen muisaanwijzer.
   De systeemcursor verbergen we pas als het script daadwerkelijk draait
   (class js-cursor, gezet vóór de eerste paint). Anders heb je bij elke
   paginalading even helemaal geen cursor.
   Op transform staat bewust GEEN transitie: die zou de stip achter de muis
   aan laten slepen. Alleen grootte en zichtbaarheid animeren. */
@media (pointer: fine) {
  html.js-cursor * { cursor: none !important; }
  #cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: var(--mint);
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.2s ease, width 0.18s ease, height 0.18s ease, margin 0.18s ease;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
  }
  #cursor.grow {
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    opacity: 0.5;
  }
}
@media not all and (pointer: fine) {
  #cursor { display: none; }
}
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

/* ---------- Type ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
h1.eyebrow, h2.eyebrow, h3.eyebrow, h4.eyebrow { margin: 0; }
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); margin-right: 10px;
  vertical-align: middle;
}
.display {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: var(--tw-display-tracking);
  margin: 0;
}
.display em {
  font-style: italic;
  font-weight: var(--tw-display-weight);
}
h2.section-title {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: var(--tw-h2-tracking);
  margin: 0;
}
h2.section-title em { font-style: italic; }
h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.muted { color: var(--ink-3); }
.tiny { font-size: 13px; color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--tw-btn-radius);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-mint {
  background: var(--mint);
  color: var(--ink);
}
.btn-mint:hover { background: #25BFA4; }
.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover { background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-disabled {
  background: transparent;
  color: var(--ink-4);
  border: 1px dashed var(--line);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; }

.btn .ic { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center;
  flex-shrink: 0;
  position: relative;
  height: 88px;
}
.brand-logo {
  height: 168px;
  width: auto;
  display: block;
  margin: -40px 0;
}
.footer-logo-wrap {
  display: inline-block;
  background: #FAFAF7;
  padding: 24px 32px;
  border-radius: 6px;
}
.footer-logo {
  height: 140px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .nav-inner { height: 72px; }
  .brand { height: 72px; }
  .brand-logo { height: 120px; margin: -24px 0; }
  .footer-logo { height: 110px; }
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color .15s;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  height: 1px; background: var(--mint);
  width: 0;
  transition: width .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  width: 100%; background: var(--ink);
}
.nav-cta { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.nav-call {
  font-size: 14px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.nav-call:hover { color: var(--ink); }
.nav-call .ic { width: 14px; height: 14px; }
.nav .btn { padding: 11px 18px; font-size: 14px; }
.nav .btn .ic { width: 14px; height: 14px; }
@media (max-width: 1024px) {
  .nav-call span { display: none; }
  .nav-call { padding: 8px; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn span.btn-label { display: none; }
  .nav .btn { padding: 10px 14px; }
}

/* Hamburger knop */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  cursor: pointer;
  color: var(--ink);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 880px) { .nav-burger { display: flex; } }

/* Mobiel menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 100px 32px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-links {
  border-top: 1px solid var(--line-soft);
  margin-bottom: 40px;
}
.mobile-menu-links a {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  transition: color .15s;
}
.mobile-menu-links a.active { color: var(--mint-ink); }
.mobile-menu-links a:hover { color: var(--ink-2); }
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: auto;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hero-meta {
  display: flex; gap: 24px; align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-3);
}
.hero-meta .sep { width: 1px; height: 14px; background: var(--line); }
@media (max-width: 480px) {
  .hero-meta { flex-wrap: wrap; gap: 10px 0; }
  .hero-meta .sep { display: none; }
  .hero-meta span { width: 100%; }
}
.hero-image {
  position: relative;
  aspect-ratio: 4/4;
  background: var(--sand);
  overflow: hidden;
  border-radius: var(--tw-card-radius);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-tag .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  position: relative;
}
.hero-tag .pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--mint);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { aspect-ratio: 4/3; }
}

/* ---------- Section ---------- */
section { padding: var(--tw-section-pad) 0; }
@media (max-width: 720px) { section { padding: var(--tw-section-pad-sm) 0; } }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

.divider {
  height: 1px; background: var(--line-soft);
  border: 0;
}

/* ---------- Before/After Slider ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-grid .ba-full { grid-column: 1 / -1; }
@media (max-width: 880px) {
  .ba-grid { grid-template-columns: 1fr; }
}
.ba {
  position: relative;
  background: var(--sand);
  overflow: hidden;
  border-radius: var(--tw-card-radius);
  user-select: none;
  touch-action: none;
}
.ba.aspect-43 { aspect-ratio: 4/3; }
.ba.aspect-32 { aspect-ratio: 16/9; }
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  will-change: clip-path;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}
.ba-label {
  position: absolute; top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14,15,17,0.6);
  backdrop-filter: blur(6px);
  color: #FAFAF7;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos, 50%);
  width: 1px;
  background: rgba(255,255,255,0.95);
  pointer-events: none;
  transform: translateX(-0.5px);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos, 50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mint);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  transition: transform .15s ease;
}
.ba:hover .ba-handle { transform: translate(-50%, -50%) scale(1.06); }
.ba-handle::before, .ba-handle::after {
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.ba-handle::before { border-right: 6px solid var(--ink); margin-right: 4px; }
.ba-handle::after { border-left: 6px solid var(--ink); margin-left: 4px; }
.ba-caption {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.ba-caption strong { color: var(--ink); font-weight: 500; }

/* ---------- Services ---------- */
.services {
  background: var(--sand);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; }
}
.svc {
  background: var(--sand);
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: background .25s;
}
.svc:hover { background: var(--bg); }
.svc-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--ink-3);
  font-feature-settings: "tnum";
  margin-bottom: auto;
}
.svc-title {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 24px 0 12px;
}
.svc p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 24px;
  line-height: 1.55;
  max-width: 36ch;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  align-self: flex-start;
}
.svc-cta .arrow {
  display: inline-block; transition: transform .2s;
}
.svc:hover .svc-cta .arrow { transform: translateX(4px); }
.svc-meta {
  display: flex; gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-item {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--ink-3);
  font-feature-settings: "tnum";
  margin-bottom: 40px;
}
.why-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.why-item p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Testimonial ---------- */
.testi {
  background: var(--ink);
  color: var(--bg);
}
.testi-quote {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 24ch;
}
.testi-quote em { font-style: italic; }
.testi-meta {
  display: flex; gap: 16px; align-items: center;
  margin-top: 48px;
  font-size: 14px;
  color: rgba(250,250,247,0.6);
}
.testi-stars { color: var(--mint); letter-spacing: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 720px) { .cta-band { padding: 72px 0; } }
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: var(--tw-display-tracking);
  margin: 0 0 32px;
}
.cta-band em { font-style: italic; }
.cta-band .row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.cta-band .small {
  margin-top: 32px;
  font-size: 13px; color: var(--ink-3);
  display: flex; gap: 16px; align-items: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4, .footer h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(250,250,247,0.5);
  font-weight: 500;
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; font-size: 15px; color: rgba(250,250,247,0.85); }
.footer li a:hover { color: var(--mint); }
.footer-display {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.footer-display em { font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(250,250,247,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(250,250,247,0.5);
}
@media (max-width: 540px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ---------- Pages ---------- */
.page-head {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line-soft);
}
.page-head .crumb {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.page-head h1 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(48px, 6.5vw, 96px);
  letter-spacing: var(--tw-display-tracking);
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 16ch;
}
.page-head h1 em { font-style: italic; }
.page-head .lead { max-width: 56ch; }
@media (max-width: 720px) { .page-head { padding: 64px 0 48px; } }

/* Service detail */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-detail.flip { grid-template-columns: 1.2fr 1fr; }
.svc-detail.flip .svc-detail-img { order: -1; }
.svc-detail-img {
  aspect-ratio: 4/3;
  background: var(--sand);
  border-radius: var(--tw-card-radius);
  overflow: hidden;
  position: relative;
}
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,250,247,0.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.svc-detail h2 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 20px;
}
.svc-detail h2 em { font-style: italic; }
.svc-detail .num {
  font-family: 'Fraunces', serif;
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 32px;
}
.svc-detail .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.svc-detail .spec-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.svc-detail .spec-val { font-size: 16px; color: var(--ink); }
.svc-detail .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 880px) {
  .svc-detail, .svc-detail.flip { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .svc-detail.flip .svc-detail-img { order: 0; }
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 40px 32px;
  border-radius: var(--tw-card-radius);
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card .ribbon {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint);
}
.price-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.price-card .desc { font-size: 14px; color: var(--ink-3); margin-bottom: 32px; }
.price-card.featured .desc { color: rgba(250,250,247,0.6); }
.price-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.price-card .from { font-size: 13px; color: var(--ink-3); }
.price-card.featured .from { color: rgba(250,250,247,0.6); }
.price-card .price {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card .unit { font-size: 13px; color: var(--ink-3); }
.price-card.featured .unit { color: rgba(250,250,247,0.6); }
.price-card ul {
  list-style: none; padding: 0; margin: 32px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-card li {
  font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.price-card li::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--mint);
  margin-top: 7px; flex-shrink: 0;
}
.price-card .price-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* Pricing extras */
.extras {
  margin-top: 48px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  margin-top: 24px;
}
@media (max-width: 720px) { .extras-grid { grid-template-columns: 1fr 1fr; } }
.extra {
  background: var(--bg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.extra .lbl { font-size: 13px; color: var(--ink-3); }
.extra .val {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: var(--tw-display-weight);
  letter-spacing: -0.01em;
}

/* Booking soon */
.booking-strip {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px;
  background: var(--sand);
  border-radius: var(--tw-card-radius);
  margin-top: 32px;
  flex-wrap: wrap;
}
.booking-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-strip .pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--tw-card-radius);
  padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: border-color .2s, background .2s;
}
.contact-card:hover { border-color: var(--ink); }
.contact-card.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.contact-card .ic-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .ic-wrap svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.contact-card.primary .ic-wrap { background: var(--mint); }
.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.05;
}
.contact-card p { margin: 0; font-size: 14px; opacity: 0.7; }
.contact-card .val {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-top: 12px;
  font-weight: var(--tw-display-weight);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form .submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

/* Floating WA */
.fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  transition: transform .2s;
}
.fab:hover { transform: scale(1.05); }
.fab svg { width: 26px; height: 26px; }

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 18px 0;
  display: flex;
  gap: 64px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-track {
  display: flex; gap: 64px;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Pagina-overgang */
@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: page-in 0.28s ease forwards; }

.marquee-item { display: inline-flex; align-items: center; gap: 12px; }
.marquee-item .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--mint);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}
.process-step {
  padding: 32px 24px 32px 0;
  border-top: 1px solid var(--ink);
  margin-right: 24px;
}
.process-step .num {
  font-family: 'Fraunces', serif;
  font-weight: var(--tw-display-weight);
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.process-step h4 {
  font-size: 16px; font-weight: 500;
  margin: 0 0 8px;
}
.process-step p {
  font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.5;
}

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}
.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 16px;
}

/* Reviews */
.reviews { padding: var(--tw-section-pad) 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  margin: 0;
  padding: 32px 28px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--tw-card-radius);
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--mint);
  pointer-events: none;
}
.review-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  padding-top: 28px;
}
.review-card figcaption {
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin-top: auto;
}

/* Business info strip on contact */
.biz-info {
  margin-top: 80px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .biz-info { grid-template-columns: 1fr 1fr; } }
.biz-info > div { display: flex; flex-direction: column; gap: 6px; }
.biz-info .lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.biz-info .val { font-size: 16px; color: var(--ink); }

/* Utility */
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.wrap-flex { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hidden { display: none; }

/* ===== TOEGANKELIJKHEID PANEEL ===== */
.a11y-trigger {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  box-shadow: 0 4px 16px rgba(14,15,17,0.18);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.a11y-trigger:hover { transform: scale(1.08); }

.a11y-panel {
  position: fixed;
  left: 24px;
  bottom: 84px;
  z-index: 200;
  width: 260px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(14,15,17,0.14);
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.a11y-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.a11y-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.a11y-group { margin-bottom: 20px; }
.a11y-group:last-child { margin-bottom: 0; }
.a11y-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.a11y-size-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.a11y-size-btn {
  width: 38px; height: 38px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.a11y-size-btn:hover:not(:disabled) { background: var(--sand-2); }
.a11y-size-btn:disabled { opacity: 0.3; cursor: default; }
.a11y-size-val {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
}
.a11y-contrast-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .15s, color .15s, border-color .15s;
}
.a11y-contrast-btn:hover { background: var(--sand-2); }
.a11y-contrast-btn.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* =========================================================================
   TOEVOEGINGEN — statische multi-page structuur
   ========================================================================= */

/* ---------- Tekstgrootte (toegankelijkheidspaneel) ----------
   Als attribuut op <html> zodat de voorkeur al vóór de eerste paint geldt en
   de pagina niet zichtbaar verspringt na het laden van het script. */
html[data-zoom="1"] #page-content { zoom: 1.15; }
html[data-zoom="2"] #page-content { zoom: 1.3; }

/* ---------- Overgang tussen pagina's ----------
   Cross-document view transitions: een korte crossfade tussen echte
   paginaladingen. Puur CSS, geen client-side routing. Browsers die het niet
   kennen negeren het en navigeren gewoon zoals altijd. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-fade 90ms ease-out both reverse; }
::view-transition-new(root) { animation: vt-fade 160ms ease-out both; }
@keyframes vt-fade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

/* ---------- Skip link (toegankelijkheid) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

/* Zichtbare focus voor toetsenbordgebruikers */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--mint-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Custom cursor uit bij hoog contrast — systeemcursor terug */
html.high-contrast *, html.high-contrast a, html.high-contrast button { cursor: auto !important; }
html.high-contrast a, html.high-contrast button { cursor: pointer !important; }
html.high-contrast #cursor { display: none !important; }

/* ---------- Kruimelpad ---------- */
.breadcrumb {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--ink-4);
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb li[aria-current] { color: var(--ink); }

/* ---------- FAQ: knop in plaats van div ---------- */
.faq-q {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* ---------- Werkgebied: chips ---------- */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--bg);
  transition: border-color .15s, color .15s, background .15s;
}
.city-chip:hover { border-color: var(--ink); color: var(--ink); }
.city-chip svg { width: 15px; height: 15px; color: var(--mint-ink); flex-shrink: 0; }

/* ---------- Werkgebied: kaarten ---------- */
.city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .city-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .city-cards { grid-template-columns: 1fr; } }
.city-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .18s;
}
.city-card:hover { background: var(--sand); }
.city-card-ic svg { width: 20px; height: 20px; color: var(--mint-ink); }
.city-card h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  line-height: 1.1;
}
.city-card p { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.55; }
.city-card-cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.city-card-cta .arrow { transition: transform .18s; }
.city-card:hover .city-card-cta .arrow { transform: translateX(4px); }

/* ---------- Tarieven: prijsregels ---------- */
.price-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 8px;
}
.price-card.featured .price-line { border-bottom-color: rgba(250,250,247,0.12); }
.price-line-lbl { font-size: 14px; color: var(--ink-2); }
.price-card.featured .price-line-lbl { color: rgba(250,250,247,0.7); }
.price-line-val { font-family: 'Fraunces', serif; font-weight: 300; font-size: 22px; }
.price-line.extra-seat { border-bottom: none; padding-top: 4px; }
.price-line.extra-seat .price-line-lbl { font-size: 13px; color: var(--ink-3); }
.price-line.extra-seat .price-line-val { font-family: inherit; font-size: 14px; color: var(--ink-3); }
.price-card.featured .price-line.extra-seat .price-line-lbl,
.price-card.featured .price-line.extra-seat .price-line-val { color: rgba(250,250,247,0.5); }

/* ---------- Koppen die van niveau wisselden ---------- */
.contact-card h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

/* ---------- Formulier ---------- */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }
.form-error { color: #c0392b; font-size: 14px; margin: 0 0 8px; }
.form-success {
  padding: 32px;
  background: var(--sand);
  border-radius: 4px;
  border-left: 3px solid var(--mint);
}
.form-success h3 { margin: 0; }

/* ---------- Lopende tekst ---------- */
.prose { max-width: 68ch; }
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.prose p.lead { font-size: 19px; color: var(--ink-2); margin-bottom: 28px; }
.prose h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 44px 0 16px;
}
.prose h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
.prose a { color: var(--mint-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose ul, .tips-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.prose li, .tips-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.prose li::before, .tips-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

/* ---------- Tabel ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15px;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.info-table th {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.info-table td { color: var(--ink-2); }
.info-table tbody tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

/* ---------- Kennisbank ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .18s;
}
.article-card:hover { background: var(--sand); }
.article-date { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin: 0; }
.article-card h2, .article-card h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 300;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.article-card p { font-size: 15px; color: var(--ink-3); line-height: 1.6; margin: 0; }
.article-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-cta .arrow { transition: transform .18s; }
.article-card:hover .article-cta .arrow { transform: translateX(4px); }
.article-meta { font-size: 13px; color: var(--ink-3); margin-top: 20px; }
.article-cta-box {
  margin-top: 56px;
  padding: 40px;
  background: var(--sand);
  border-left: 3px solid var(--mint);
  border-radius: var(--tw-card-radius);
}
.article-cta-box h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}
.article-cta-box p { font-size: 16px; color: var(--ink-2); margin: 0 0 20px; }
.article-cta-box .row { display: flex; flex-wrap: wrap; gap: 12px; }
.related { margin-top: 64px; }
@media (max-width: 540px) { .article-cta-box { padding: 28px 24px; } }

/* Artikelkoppen zijn langer dan de tweeregelige paginakoppen */
.page-head h1 { text-wrap: balance; }
.page-head.article h1 { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.08; }

/* ---------- Minder beweging ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
}

/* ---------- Afdrukken ---------- */
@media print {
  .nav, .mobile-menu, .fab, .a11y-trigger, .a11y-panel, #cursor,
  .marquee, .breadcrumb, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}
