/* ==========================================================================
   BOMBA t'GOOI — style.css
   Licht ontwerp (papier-wit) met zwart/rood uit het logo.
   Signature: schuine "logo-slant" details + levende rook (three.js) in hero's.
   ========================================================================== */

:root {
  --paper: #f7f3ec;
  --paper-2: #fffdf8;
  --ink: #17130f;
  --ink-soft: #46403a;
  --muted: #6f6656;
  --red: #e01e26;
  --red-deep: #b31219;
  --line: #e7dfd0;
  --wa: #1fae54;
  --shadow-lg: 0 30px 60px -28px rgba(23, 19, 15, .30);
  --shadow-sm: 0 10px 30px -16px rgba(23, 19, 15, .22);
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --skew: -8deg;
  --header-h: 78px;
  --ease-out: cubic-bezier(.22, .68, .18, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul[role="list"], ol[role="list"] { list-style: none; }

::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- Typografie ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .96;
  letter-spacing: .012em;
}

.h-xl { font-size: clamp(2.8rem, 7vw, 5.2rem); }
.h-lg { font-size: clamp(2.05rem, 4.4vw, 3.3rem); }
.h-md { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.h-sm { font-size: 1.3rem; letter-spacing: .02em; }

.accent { color: var(--red); }

.tilt { display: inline-block; transform: skewX(var(--skew)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--red);
  transform: skewX(var(--skew));
}

.lead { font-size: 1.13rem; max-width: 60ch; }

p + p { margin-top: 1em; }

.small { font-size: .88rem; }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(880px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(76px, 9.5vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }
.section--paper2 { background: var(--paper-2); border-block: 1px solid var(--line); }

.sec-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.sec-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
}
.sec-head .lead { margin-top: 1rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.4rem, 5.5vw, 5rem);
  align-items: center;
}

/* ---------- Knoppen & chips ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1.05rem 1.65rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  transform: skewX(var(--skew));
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, translate .25s, box-shadow .25s;
}
.btn > span { display: inline-block; transform: skewX(calc(var(--skew) * -1)); }
.btn:hover { translate: 0 -3px; box-shadow: var(--shadow-sm); }

.btn--red { background: var(--red); border-color: var(--red); }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: var(--paper); border-color: var(--paper); }

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

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem 1rem; margin-top: 1.9rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .85rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transform: skewX(var(--skew));
  background: var(--paper-2);
}
.chip > span { display: inline-block; transform: skewX(calc(var(--skew) * -1)); }
.chip--red { border-color: var(--red); color: var(--red); }
.chip-row { display: flex; flex-wrap: wrap; gap: .7rem; }

.arrow { font-family: var(--font-body); }

.block { display: block; }

a.chip { transition: border-color .25s, color .25s, translate .25s; }
a.chip:hover { border-color: var(--red); color: var(--red); translate: 0 -2px; }

.frame--natural .img { aspect-ratio: auto; }
.frame--natural .img img { height: auto; }

.usp-row--4 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(247, 243, 236, .88);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 24px; width: auto; }

.main-nav ul { display: flex; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.main-nav a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: .4rem;
  position: relative;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 3px;
  background: var(--red);
  transform: skewX(var(--skew));
  transition: right .3s var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: .78rem 1.15rem; font-size: .72rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  position: relative;
  transform: skewX(var(--skew));
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2.5px;
  background: var(--ink);
  transform: skewX(calc(var(--skew) * -1));
  transition: .3s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { bottom: 15px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; rotate: 45deg; }
body.nav-open .nav-toggle span:nth-child(2) { bottom: 20.5px; rotate: -45deg; }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  z-index: 55;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 4vw 2.2rem;
  display: none;
  flex-direction: column;
  gap: .2rem;
  box-shadow: var(--shadow-lg);
}
body.nav-open .mobile-nav { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--ink);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.is-active { color: var(--red); }
.mobile-nav .btn { margin-top: 1.4rem; align-self: flex-start; }

/* ---------- Rook (three.js) hero-achtergrond ---------- */
.smoke-holder { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.smoke-holder canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* statische fallback (zonder WebGL / reduced motion) */
.smoke-holder::before {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(38% 30% at 18% 28%, rgba(224, 30, 38, .10), transparent 70%),
    radial-gradient(46% 38% at 82% 18%, rgba(23, 19, 15, .08), transparent 72%),
    radial-gradient(50% 44% at 62% 80%, rgba(23, 19, 15, .07), transparent 75%);
  filter: blur(4px);
}
.smoke-holder.is-live::before { opacity: 0; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(96vh, 960px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vh, 4rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.4rem, 5vw, 4.6rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.3rem; }
.hero .lead { margin-bottom: .4rem; }

.disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .95rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.disciplines i { color: var(--red); font-style: normal; }

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 1.6rem;
  font-size: .84rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-note b { color: var(--red); font-weight: 800; }

.scroll-cue {
  position: absolute;
  left: 4vw; bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue::after {
  content: '';
  width: 2px; height: 44px;
  background: linear-gradient(var(--red), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 50% { transform: translateY(8px); opacity: .4; } }

/* ---------- Fotolijst met gordijn-reveal ---------- */
.frame { position: relative; }
.frame::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -16px; bottom: -16px;
  border: 2px solid var(--red);
  z-index: 0;
  pointer-events: none;
}
.frame .img {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.frame .img img { width: 100%; height: 100%; object-fit: cover; }
.frame--portrait .img { aspect-ratio: 3 / 3.7; }
.frame--landscape .img { aspect-ratio: 4 / 3; }
.frame--wide .img { aspect-ratio: 16 / 7; }
.frame figcaption {
  margin-top: .9rem;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* gordijn + zoom */
.js .frame .img::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1s var(--ease-out) .15s;
  z-index: 2;
}
.frame.in .img::after { transform: scaleX(0); transform-origin: right; }
.js .frame .img img { transform: scale(1.14); transition: transform 1.5s var(--ease-out) .1s; }
.frame.in .img img { transform: scale(1); }

.badge-card {
  position: absolute;
  z-index: 3;
  left: -14px; bottom: 26px;
  background: var(--paper-2);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow-sm);
  padding: .85rem 1.15rem;
  max-width: 250px;
}
.badge-card b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: .03em;
}
.badge-card span { font-size: .78rem; color: var(--muted); font-weight: 600; }

/* inzet-foto (echte training) over grote afbeelding */
.inset-photo {
  position: absolute;
  z-index: 3;
  right: -16px; bottom: -28px;
  width: min(46%, 240px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lg);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding-block: .95rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marq 45s linear infinite;
}
/* Elke groep is identiek en draagt zijn eigen eindmarge, zodat -25% precies
   één groep opschuift: naadloos, ongeacht de tussenruimte. */
.marquee-group {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--ink);
  transform: skewX(var(--skew));
}
.marquee span.red { -webkit-text-stroke-color: var(--red); }
@keyframes marq { to { transform: translateX(-25%); } }

/* ---------- Over Bomba ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2.4rem, 5.5vw, 5rem);
  align-items: start;
}
.about-grid .sticky { position: sticky; top: calc(var(--header-h) + 28px); }
.about-grid .frame { margin-top: 2.2rem; max-width: 420px; }

.usp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.usp {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  padding: 1.15rem 1.2rem 1.25rem;
  transition: border-color .25s, translate .25s, box-shadow .25s;
}
.usp:hover { border-top-color: var(--red); translate: 0 -4px; box-shadow: var(--shadow-sm); }
.usp b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .35rem;
  letter-spacing: .03em;
}
.usp p { font-size: .87rem; color: var(--muted); }

/* ---------- Aanbod-kaarten ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: translate .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.card:hover { translate: 0 -7px; box-shadow: var(--shadow-lg); border-color: #d8cfbc; }
.card .thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.card:hover .thumb img { transform: scale(1.07); }
.card-body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { font-size: 1.32rem; }
.card-body p { font-size: .88rem; color: var(--muted); flex: 1; }
.card-link {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: .4rem;
}
.card:hover .card-link { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Video (portret) sectie ---------- */
.video-split {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2.4rem, 5vw, 4.8rem);
  align-items: center;
}
.phone-frame {
  position: relative;
  width: min(330px, 80vw);
  margin-inline: auto;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 22px; left: 22px; right: -18px; bottom: -18px;
  border: 2px solid var(--red);
  pointer-events: none;
}
.phone-frame video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 10px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.check-list { margin-top: 1.4rem; display: grid; gap: .65rem; }
.check-list li { display: flex; gap: .7rem; align-items: baseline; font-weight: 600; color: var(--ink-soft); }
.check-list li::before { content: '✓'; color: var(--red); font-weight: 900; }

/* ---------- Quote / trainer-band ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.04;
  margin-block: 1rem 1.2rem;
}
.pull-quote .accent { display: inline-block; transform: skewX(var(--skew)); }

.trainer-band { background: var(--paper-2); border-block: 1px solid var(--line); }
.trainer-band .grid-2 { grid-template-columns: .62fr 1.38fr; }
.trainer-band .frame { max-width: 330px; }

/* ---------- Praktisch ---------- */
.info-list { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: .6rem; }
.info-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.info-list dt {
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: .15rem;
}
.info-list dd a { color: var(--red); font-weight: 700; }
.info-list dd a:hover { text-decoration: underline; text-underline-offset: 3px; }

.usp-box {
  position: relative;
  background: var(--red);
  color: #fff;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  box-shadow: var(--shadow-lg);
}
.usp-box h3 { color: #fff; font-size: 1.6rem; margin-bottom: .5rem; }
.usp-box p { color: #fff; }
.usp-box .p-icon {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: rgba(255,255,255,.28);
  transform: skewX(var(--skew));
}

/* ---------- CTA-band (donker accent, zoals het logo) ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-band .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: saturate(.7) contrast(1.05);
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,19,15,.92) 30%, rgba(23,19,15,.55));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.cta-band h2 .accent { color: var(--red); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 1rem; }

/* ---------- Pagina-hero (subpagina's) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.4rem, 9vh, 6.5rem));
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-top: 1.4rem; }
.anchor-pills { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

/* ---------- Sport-secties (aanbod) ---------- */
.sport { padding-block: clamp(64px, 8vw, 108px); border-bottom: 1px solid var(--line); }
.sport:last-of-type { border-bottom: 0; }
.sport .grid-2 { align-items: center; }
.sport.rev .grid-2 > .frame { order: 2; }
.sport .chip-row { margin-top: 1.5rem; }
.sport .frame { max-width: 520px; }
.sport.rev .frame { justify-self: end; }

.mini-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.mini {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 1.3rem 1.4rem;
}
.mini h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.mini p { font-size: .9rem; color: var(--muted); }

/* ---------- Jeugd: video-hero + frosted paneel ---------- */
.video-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 0 clamp(2.6rem, 7vh, 5rem);
}
.video-hero video,
.video-hero .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,243,236,.85) 0%, rgba(247,243,236,0) 26%, rgba(23,19,15,.18) 100%);
  z-index: 1;
}
.video-hero .container { position: relative; z-index: 2; }
.glass {
  max-width: 620px;
  background: rgba(255, 253, 248, .78);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.7rem, 4vw, 2.6rem);
}
@supports not (backdrop-filter: blur(2px)) {
  .glass { background: rgba(255, 253, 248, .94); }
}
.glass h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); }
.glass .lead { margin-top: .9rem; }

/* leerdoel-tegels */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.learn {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 1.35rem 1.3rem 1.5rem;
  transition: translate .3s, box-shadow .3s, border-color .3s;
}
.learn:hover { translate: 0 -5px; box-shadow: var(--shadow-sm); border-color: #d8cfbc; }
.learn .tick {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  transform: skewX(var(--skew));
  margin-bottom: .9rem;
}
.learn .tick > span { transform: skewX(calc(var(--skew) * -1)); }
.learn b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: .03em;
  margin-bottom: .35rem;
}
.learn p { font-size: .86rem; color: var(--muted); }

/* ---------- Tijdlijn (trainer) ---------- */
.timeline { position: relative; margin-top: 1.2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.tl-item { position: relative; padding: 0 0 2.1rem 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 20px; height: 20px;
  background: var(--paper);
  border: 4px solid var(--red);
  transform: skewX(var(--skew));
}
.tl-item h3 { font-size: 1.28rem; margin-bottom: .3rem; }
.tl-item p { font-size: .94rem; color: var(--muted); max-width: 56ch; }
.tl-item .when {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .3rem;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.side-card ul { display: grid; gap: .6rem; margin-bottom: 1.4rem; }
.side-card li { display: flex; gap: .65rem; align-items: baseline; font-size: .92rem; font-weight: 600; }
.side-card li::before { content: '›'; color: var(--red); font-weight: 900; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .45rem;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid #8c8270;
  padding: .55rem 2px .65rem;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 2px 0 -1px var(--red); }
.field textarea { resize: vertical; min-height: 130px; }

.contact-aside { display: grid; gap: 1.3rem; }
.info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 5px solid var(--ink);
  padding: 1.4rem 1.5rem;
}
.info-card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.info-card p, .info-card a { font-size: .95rem; }
.info-card a.link { color: var(--red); font-weight: 700; }
.info-card a.link:hover { text-decoration: underline; text-underline-offset: 3px; }

.map-frame { border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper-2); padding: 8px; }
.map-frame iframe { width: 100%; height: 430px; border: 0; display: block; filter: saturate(.85) contrast(1.02); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #b9b1a4;
  padding-top: clamp(3.4rem, 6vw, 4.6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.site-footer .logo img { height: 22px; }
.footer-tag { margin-top: 1rem; font-size: .9rem; max-width: 30ch; }
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: .55rem; }
.site-footer a { font-size: .92rem; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  justify-content: space-between;
  font-size: .8rem;
  color: #8a8276;
}
.footer-bottom .accent { color: var(--red); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 70;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--wa);
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(31, 174, 84, .55);
  transition: translate .25s, box-shadow .25s;
}
.wa-float:hover { translate: 0 -4px; box-shadow: 0 18px 36px -10px rgba(31, 174, 84, .65); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal-animaties ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }

/* woord-voor-woord kop-reveal */
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
[data-split] .w i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(112%);
  transition: transform .95s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-split].in .w i { transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r,
  [data-split] .w i { opacity: 1 !important; transform: none !important; transition: none !important; }
  .frame .img::after { display: none; }
  .frame .img img { transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scroll-cue::after { animation: none; }
  .smoke-holder canvas { display: none; }
}

/* ---------- Responsief ---------- */
@media (max-width: 1060px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero .frame { max-width: 480px; }
  .grid-2, .about-grid, .video-split, .contact-grid { grid-template-columns: 1fr; }
  .about-grid .sticky { position: static; }
  .about-grid .frame { margin-top: 1.6rem; }
  .trainer-band .grid-2 { grid-template-columns: 1fr; }
  .trainer-band .frame { max-width: 300px; }
  .sport.rev .grid-2 > .frame { order: 0; }
  .sport .frame, .sport.rev .frame { justify-self: start; max-width: 560px; }
  .side-card { position: static; }
  .scroll-cue { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .usp-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .mini-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .info-list > div { grid-template-columns: 1fr; gap: .2rem; }
  .frame::before { top: 12px; left: 12px; right: -10px; bottom: -10px; }
  .inset-photo { right: -6px; bottom: -18px; }
  .badge-card { left: -6px; }
  .btn { padding: .95rem 1.3rem; }
}

/* ---------- Skip-link (toegankelijkheid: sla navigatie over) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
  font-weight: 800; letter-spacing: .04em; text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }
