:root {
  --bg: #141619;
  --ink: #ece9e2;
  --red: #ff4b33;
  --muted: #8f9297;
  --dim: #55585e;
  --body: #b9b6ae;
  --nav: #0b0d0f;
  --light: #ece9e2;
  --light-muted: #6f6d64;
  --light-body: #55534a;
  --line: rgba(236, 233, 226, 0.14);
  --line-dark: rgba(20, 22, 25, 0.14);
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gutter: clamp(24px, 4vw, 64px);
  --max: 1548px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
html, body { overflow-x: clip; max-width: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; }
::selection { background: var(--ink); color: var(--bg); }

[data-lang="nl"] [lang="en"], [data-lang="en"] [lang="nl"] { display: none !important; }

.mono { font-family: var(--mono); }
.red { color: var(--red); }
.grey { color: var(--dim); }
.container { max-width: var(--max); margin: 0 auto; }
.stack-56 { display: flex; flex-direction: column; gap: 56px; }
.stack-32 { display: flex; flex-direction: column; gap: 32px; }
.stack-28 { display: flex; flex-direction: column; gap: 28px; }

@keyframes blinkDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }
@keyframes heroIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cellPulse { 0%, 100% { opacity: 0.05; } 45%, 55% { opacity: 1; } }
@keyframes barFill { 0%, 6% { width: 0; } 40%, 100% { width: 100%; } }
@keyframes autoIn { 0%, 38% { opacity: 0; } 52%, 100% { opacity: 1; } }
@keyframes boardLoop { 0%, 91% { opacity: 1; } 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes letterIn {
  0% { opacity: 0; transform: translateY(0.7em) rotate(6deg); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); filter: blur(0); }
}

/* ---------- fixed layers ---------- */
.ascii { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0; }
.dots {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(236, 233, 226, 0.10) 1px, transparent 1.4px);
  background-size: 7px 7px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 60% 8%, #000 0%, transparent 62%);
  mask-image: radial-gradient(ellipse 90% 60% at 60% 8%, #000 0%, transparent 62%);
}

/* ---------- header ---------- */
.header { position: fixed; top: 14px; left: 0; right: 0; z-index: 10; display: flex; justify-content: center; padding: 0 14px; pointer-events: none; }
.navbar {
  pointer-events: auto; background: var(--nav); border-radius: 10px;
  display: flex; align-items: center; gap: 18px; padding: 9px 10px 9px 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}
.brand { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.brand img { width: 19px; height: 19px; }
.brand span { font-weight: 800; font-size: 13.5px; letter-spacing: -0.01em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; }
.nav-cta { background: var(--ink); color: var(--bg); border-radius: 7px; padding: 9px 14px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
.nav-cta:hover { background: #fff; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; animation: blinkDot 1.6s ease infinite; }
.lang-btn { background: none; border: 0; cursor: pointer; color: var(--muted); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; padding: 8px; transition: color 0.2s; }
.lang-btn:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1; min-height: 86vh; min-height: 86svh; display: flex; flex-direction: column;
  padding: 110px 0 0; text-align: center; overflow: hidden;
  background: var(--light); color: var(--bg); border-radius: 0 0 22px 22px;
  will-change: transform; backface-visibility: hidden;
}
.corner { position: absolute; font-family: var(--mono); font-size: 11px; color: rgba(20, 22, 25, 0.4); }
.corner.l { left: 20px; }
.corner.r { right: 20px; }
.hero .corner { top: 84px; }
.coords {
  position: absolute; top: 50%; right: 24px; font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.2em; color: rgba(20, 22, 25, 0.4); writing-mode: vertical-rl;
}
.hero-inner {
  position: relative; width: 100%; padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto;
  flex: 1; display: flex; flex-direction: column; gap: 34px; align-items: center; justify-content: center;
}
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--light-muted); margin-top: auto; animation: heroIn 0.9s var(--ease) both; }
.hero h1 {
  position: relative; margin: 0 auto; font-weight: 800; font-size: clamp(40px, 6.6vw, 108px); line-height: 1;
  letter-spacing: -0.025em; text-transform: uppercase; max-width: 1050px;
  animation: heroIn 0.9s var(--ease) both 0.1s;
}
.rot { display: inline-block; overflow: hidden; vertical-align: bottom; white-space: pre; transition: width 0.6s var(--ease); }
.rot-word { display: inline-block; color: var(--red); white-space: pre; vertical-align: bottom; }
.rot-word i { display: inline-block; font-style: normal; white-space: pre; animation: letterIn 0.6s var(--ease) both; }
.rot-measure { position: absolute; left: 0; top: 0; visibility: hidden; white-space: pre; pointer-events: none; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; animation: heroIn 0.9s var(--ease) both 0.45s; }
.btn-dark {
  background: var(--bg); color: var(--ink); border-radius: 9px; padding: 17px 30px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 12px; transition: background 0.2s;
}
.btn-dark:hover { background: #2a2d31; }
.btn-dark svg { display: block; }
.hero-note { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--light-muted); }
.hero-meta {
  animation: heroIn 0.9s var(--ease) both 0.62s; width: 100%; text-align: left; margin-top: auto;
  border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center;
  gap: 12px 26px; flex-wrap: wrap; padding: 18px 2px 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--bg);
}
.hero-meta > span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta .clockwrap { gap: 8px; }
.diamond { color: var(--red); }
.globe { display: inline-block; width: 8px; height: 8px; border: 1px solid rgba(20, 22, 25, 0.5); border-radius: 50%; position: relative; }
.globe span { position: absolute; top: -2px; left: 3px; width: 2px; height: 2px; border-radius: 50%; background: var(--bg); }
.signal { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.signal span { width: 2px; background: var(--bg); }
.signal span:nth-child(1) { height: 4px; opacity: 0.35; }
.signal span:nth-child(2) { height: 7px; opacity: 0.55; }
.signal span:nth-child(3) { height: 10px; }
.squares { display: inline-flex; gap: 2px; }
.squares span { width: 8px; height: 8px; border: 1px solid var(--red); }
.squares span:last-child { background: var(--red); }
.strike { text-decoration: line-through; color: rgba(20, 22, 25, 0.4); }

/* ---------- shared headings ---------- */
.label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
.h2 { margin: 0; font-weight: 800; font-size: clamp(36px, 5.4vw, 90px); line-height: 1; letter-spacing: -0.025em; text-transform: uppercase; max-width: 1200px; }

/* ---------- werkwijze ---------- */
.werkwijze { position: relative; z-index: 1; padding: clamp(110px, 14vw, 210px) var(--gutter); }
.wrow {
  border-top: 1px solid var(--line); padding: clamp(40px, 5vw, 72px) 0;
  display: grid; grid-template-columns: minmax(90px, 200px) 1fr minmax(260px, 360px);
  gap: clamp(24px, 4vw, 80px); align-items: center;
}
.wnum { font-family: var(--mono); font-size: clamp(60px, 7vw, 130px); color: var(--red); line-height: 1; letter-spacing: -0.04em; }
.wbody { display: flex; flex-direction: column; gap: 14px; }
.wwhen { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--dim); }
.wtitle { font-weight: 800; font-size: clamp(28px, 3vw, 52px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.wtext { font-size: 16px; line-height: 1.6; color: var(--body); max-width: 520px; }
.spec { display: flex; flex-direction: column; gap: 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--muted); }
.spec > span { display: flex; justify-content: space-between; }
.spec b { font-weight: 400; color: var(--ink); }
.spec .status { border-top: 1px solid rgba(236, 233, 226, 0.12); padding-top: 9px; }
.spec .status b { color: var(--red); }
.cells { display: grid; grid-template-columns: repeat(24, 1fr); gap: 3px; }
.cells span { width: 100%; aspect-ratio: 1; background: var(--red); opacity: 0.1; border-radius: 1px; animation: cellPulse 2.8s ease infinite; }
.board { display: flex; flex-direction: column; gap: 13px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--muted); animation: boardLoop 9s ease infinite 1.4s; }
.board-item { display: flex; flex-direction: column; gap: 6px; }
.board-item > div:first-child { display: flex; justify-content: space-between; gap: 16px; }
.board-item .live { color: var(--red); animation: autoIn 9s ease infinite; }
.bar { height: 2px; background: rgba(236, 233, 226, 0.1); overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--red); animation: barFill 9s var(--ease) infinite; }

/* ---------- diensten ---------- */
.diensten { position: relative; z-index: 1; padding: 0 var(--gutter) clamp(110px, 14vw, 200px); }
.diensten-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.diensten-head .h2 { font-size: clamp(36px, 5vw, 84px); line-height: 1.02; }
.aside-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--dim); padding-bottom: 8px; }
.srows { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.srow {
  border-top: 1px solid var(--line); padding: clamp(26px, 3vw, 44px) 0;
  display: grid; grid-template-columns: 56px 1fr minmax(240px, 380px) 40px;
  gap: clamp(18px, 3vw, 56px); align-items: baseline; cursor: default;
}
.srow > * { transition: transform 0.35s var(--ease); }
.srow:hover > * { transform: translateX(18px); }
.snum { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.sbody { display: flex; flex-direction: column; gap: 6px; }
.sname { font-weight: 800; font-size: clamp(26px, 3.4vw, 58px); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; transition: color 0.25s ease; }
.srow:hover .sname { color: var(--red); }
.stag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--dim); }
.stext { font-size: 15px; line-height: 1.55; color: var(--body); }
.sarrow { font-family: var(--mono); font-size: 20px; color: var(--red); opacity: 0; transition: opacity 0.25s ease; }
.srow:hover .sarrow { opacity: 1; }
@media (hover: none) {
  .srow.active > * { transform: translateX(18px); }
  .srow.active .sname { color: var(--red); }
  .srow.active .sarrow { opacity: 1; }
}

/* ---------- boek ---------- */
.boek {
  position: relative; z-index: 1; padding: clamp(120px, 15vw, 230px) var(--gutter);
  background: var(--light); color: var(--bg); border-radius: 22px 22px 0 0; overflow: hidden;
}
.boek .corner { color: rgba(20, 22, 25, 0.35); }
.boek .corner.t { top: 18px; }
.boek .corner.b { bottom: 18px; }
.boek-grid {
  position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(340px, 560px);
  gap: clamp(44px, 6vw, 120px); align-items: start;
}
.boek-copy { display: flex; flex-direction: column; gap: 34px; position: sticky; top: 100px; }
.pill {
  align-self: flex-start; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  background: rgba(20, 22, 25, 0.07); border: 1px solid rgba(20, 22, 25, 0.18); border-radius: 999px;
  padding: 9px 16px; display: inline-flex; align-items: center; gap: 10px;
}
.pill .dot { width: 7px; height: 7px; }
.boek h2 { margin: 0; font-weight: 800; font-size: clamp(40px, 5.6vw, 96px); line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase; }
.boek h2 em { display: block; font-style: italic; font-weight: 500; text-transform: none; color: var(--red); letter-spacing: -0.02em; }
.boek p { margin: 0; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: var(--light-body); max-width: 480px; }
.checks { display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--light-muted); }
.mail { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--light-muted); }
.mail a { color: var(--bg); border-bottom: 1px solid var(--bg); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.mail a:hover { color: var(--red); border-color: var(--red); }

.cal { background: #fff; border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; text-align: left; }
.cal-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid rgba(20, 22, 25, 0.1); }
.cal-head b { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.cal-nav { display: inline-flex; gap: 6px; }
.cal-nav button { width: 32px; height: 32px; border: 1px solid rgba(20, 22, 25, 0.18); background: #fff; border-radius: 8px; cursor: pointer; color: var(--bg); font-size: 14px; transition: border-color 0.15s; }
.cal-nav button:hover { border-color: var(--bg); }
.cal-nav button:disabled { opacity: 0.35; cursor: default; border-color: rgba(20, 22, 25, 0.18); }
.cal-dows { padding: 16px 18px 6px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; color: #8a867c; text-align: center; }
.cal-dows span { padding: 4px 0; }
.cal-cells { padding: 0 18px 16px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-cells button { aspect-ratio: 1; border: 0; border-radius: 9px; background: rgba(20, 22, 25, 0.06); color: var(--bg); font-family: var(--mono); font-size: 12px; cursor: pointer; transition: background 0.15s ease; }
.cal-cells button:hover { background: rgba(20, 22, 25, 0.12); }
.cal-cells button:disabled { background: transparent; color: rgba(20, 22, 25, 0.28); cursor: default; }
.cal-cells button.sel, .cal-cells button.sel:hover { background: var(--bg); color: #fff; }
.cal-cells .pad { visibility: hidden; }
.cal-foot { border-top: 1px solid rgba(20, 22, 25, 0.1); padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.cal-day { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--light-muted); }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slots button { border: 1px solid rgba(20, 22, 25, 0.22); background: #fff; color: var(--bg); border-radius: 8px; padding: 12px 6px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; cursor: pointer; text-align: center; transition: border-color 0.15s; }
.slots button:hover { border-color: var(--bg); }
.slots button.sel { background: var(--bg); color: #fff; border-color: var(--bg); }
.book {
  background: #c9c6bd; color: #fff; border-radius: 10px; padding: 16px 28px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  display: flex; justify-content: center; align-items: center; gap: 12px;
  pointer-events: none; transition: background 0.2s;
}
.book.on { background: var(--red); pointer-events: auto; }
.book.on:hover { background: #ff5c45; }

/* ---------- faq ---------- */
.faq { position: relative; z-index: 1; padding: clamp(110px, 13vw, 190px) var(--gutter); }
.faq-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(300px, 480px) 1fr; gap: clamp(40px, 6vw, 110px); align-items: start; }
.faq-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 36px; }
.faq-side .h2 { font-size: clamp(34px, 4vw, 68px); line-height: 1.02; }
.faq-card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 18px; background: #15171a; }
.faq-card b { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.faq-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--body); }
.btn-red {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #0f1113; font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  padding: 13px 22px; border-radius: 999px; transition: transform 0.25s ease;
}
.btn-red:hover { transform: translateY(-2px); }
.faq-list { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; text-align: left;
  color: var(--ink); font-family: var(--sans); font-weight: 700; font-size: clamp(16px, 1.4vw, 20px); letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q i { font-family: var(--mono); font-style: normal; font-size: 18px; color: var(--red); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; margin: 0; padding: 0 40px 26px 0; font-size: 15px; line-height: 1.65; color: var(--body); max-width: 640px; }
.faq-item.open .faq-a { display: block; }

/* ---------- footer ---------- */
.footer {
  position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 24px;
  display: flex; justify-content: space-between; gap: 10px 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--muted);
}
.footer > span { display: inline-flex; align-items: center; gap: 9px; }
.footer img { width: 15px; height: 15px; opacity: 0.65; }
.footer .brand-sm { font-family: var(--sans); font-weight: 800; font-size: 12px; letter-spacing: -0.01em; color: var(--ink); }
.footer a:hover { color: var(--ink); }
.bars { display: inline-flex; gap: 2px; }
.bars i { width: 4px; height: 8px; background: #2a2d31; }
.bars i.on { background: var(--red); }

/* ---------- reveal (animation, so element transitions stay untouched) ---------- */
@keyframes revealIn { from { opacity: 0; } to { opacity: 1; } }
[data-reveal] { opacity: 0; }
[data-reveal].in { animation: revealIn 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) both; }
[data-reveal].now { animation: none; opacity: 1; }

/* ---------- navbar wide (sub pages) ---------- */
.navbar.wide { width: 100%; max-width: 1100px; justify-content: space-between; }
.nav-back { color: var(--muted); padding: 8px 10px; transition: color 0.2s; }
.nav-back:hover { color: var(--ink); }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; bottom: 14px; left: 14px; z-index: 20; max-width: 340px;
  background: var(--nav); border: 1px solid var(--line); border-radius: 10px; padding: 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45); display: flex; flex-direction: column; gap: 12px;
  animation: heroIn 0.6s var(--ease) both 0.8s;
}
.cookie[hidden] { display: none; }
.cookie .label { font-size: 10px; letter-spacing: 0.18em; }
.cookie p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--body); }
.cookie p a { color: var(--ink); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btns button {
  flex: 1; cursor: pointer; border-radius: 7px; padding: 10px 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; transition: background 0.2s, color 0.2s;
}
.cookie-ok { background: var(--ink); color: var(--bg); border: 0; font-weight: 600; }
.cookie-ok:hover { background: #fff; }
.cookie-no { background: none; color: var(--muted); border: 1px solid rgba(236, 233, 226, 0.18); }
.cookie-no:hover { color: var(--ink); background: #1d2024; }

/* ---------- privacy page ---------- */
.page { max-width: 780px; margin: 0 auto; padding: 150px 24px 120px; display: flex; flex-direction: column; gap: 40px; }
.page-head { display: flex; flex-direction: column; gap: 20px; }
.page h1 { margin: 0; font-weight: 800; font-size: clamp(34px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase; }
.page-meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--dim); }
.page-section { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 28px; }
.page-section h2 { margin: 0; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.page-section p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); }
.page-section p + p { margin-top: 4px; }
.page-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: #15171a; display: flex; flex-direction: column; gap: 10px; }
.page-card b { font-weight: 800; font-size: 17px; }
.page-card span { font-size: 14px; line-height: 1.6; color: var(--body); }
.page-card a { color: var(--red); }
.footer .footer-link { color: var(--muted); transition: color 0.2s; }
.footer .footer-link:hover { color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .navbar { gap: 8px; padding: 8px 8px 8px 12px; }
  .nav { gap: 2px; }
  .hidesm { display: none !important; }
  .hero { padding-bottom: 70px; min-height: 78vh; min-height: 78svh; padding-top: 96px; }
  .hero h1 { font-size: min(12.5vw, 54px); letter-spacing: -0.03em; }
  .hero-inner { gap: 26px; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; }
  .hero-cta > a { width: 100%; justify-content: center; }
  .hero-meta { justify-content: space-between; }
  .hero-meta > span:nth-child(2), .hero-meta > span:nth-child(3), .hero-meta > span:nth-child(5) { display: none; }
  .wrow { grid-template-columns: 1fr; gap: 20px; }
  .wnum { font-size: 44px; }
  .srow { grid-template-columns: 32px 1fr; }
  .srow .stext, .srow .sarrow { display: none; }
  .boek { padding-bottom: 160px; }
  .boek-grid { grid-template-columns: 1fr; }
  .boek-copy { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .cookie { left: 14px; right: 14px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; }
  .cells span { opacity: 0.3; }
  .bar i { width: 100%; }
  .board-item .live { opacity: 1; }
  .hero { transform: none !important; }
}
