/* ==========================================================================
   EFFORT BELGIË — dark cinematic / industrial
   Mobile-first. Charcoal/black + merk-koraal (#D45751, uit het logo).
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  --ink:      #0a0a0b;   /* page background */
  --ink-1:    #0e0e10;   /* raised */
  --ink-2:    #141417;   /* panels */
  --ink-3:    #1b1b1f;   /* cards */
  --line:     rgba(255,255,255,.10);
  --line-2:   rgba(255,255,255,.06);
  --bone:     #f5f3ef;   /* primary text (warm off-white) */
  --fog:      #9a9aa2;   /* muted text */
  --fog-2:    #6d6d76;   /* faint text */
  --red:      #d45751;   /* merk-koraal (logo) */
  --red-2:    #e0736c;
  --red-deep: #b23f39;
  --red-glow: rgba(212,87,81,.45);

  --ff-display: "Anton", "Oswald", Impact, sans-serif;
  --ff-label:   "Oswald", "Arial Narrow", sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1240px;
  --gut: clamp(20px, 5vw, 40px);

  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 64px;

  --shadow: 0 20px 60px -20px rgba(0,0,0,.8);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

/* ----- Typography ----- */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; line-height: .95; text-transform: uppercase; letter-spacing: .01em; }
h1 { font-size: clamp(2.6rem, 11vw, 5.5rem); }
h2 { font-size: clamp(2rem, 8vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
p { color: var(--fog); }
strong { color: var(--bone); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 2.6vw, 1.25rem); color: #cfcfd4; line-height: 1.65; }

.eyebrow {
  font-family: var(--ff-label);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }
.text-red { color: var(--red); }
.muted { color: var(--fog); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 13vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 9vw, 90px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 6vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }
.divider { height: 1px; background: var(--line-2); border: 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--ff-label);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: .9rem;
  padding: 1.05em 1.6em;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 30px -10px var(--red-glow); }
.btn--primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 14px 40px -12px var(--red-glow); }
.btn--ghost { border: 1px solid var(--line); color: var(--bone); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--bone); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.2em 2em; font-size: .95rem; }

.link-arrow {
  font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 600;
  color: var(--bone); display: inline-flex; align-items: center; gap: .55em;
}
.link-arrow span { transition: transform .25s var(--ease); color: var(--red); }
.link-arrow:hover span { transform: translateX(5px); }

/* ----- Header ----- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: .55em; font-family: var(--ff-display); font-size: 1.5rem; letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.brand .dot { width: 9px; height: 9px; background: var(--red); border-radius: 50%; box-shadow: 0 0 14px var(--red-glow); margin-bottom: .35em; }
.brand img { height: 30px; width: auto; display: block; }
.footer-brand .brand img { height: 42px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 30px; align-items: center; }
.nav-desktop a {
  font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 500;
  color: var(--fog); padding: 6px 0; position: relative; transition: color .2s var(--ease);
}
.nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red); transition: width .28s var(--ease); }
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--bone); }
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { width: 100%; }
.header-cta { display: none; }

/* burger */
.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; z-index: 120; }
.burger span { width: 26px; height: 2px; background: var(--bone); transition: transform .3s var(--ease), opacity .3s var(--ease); }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  background-image: radial-gradient(120% 80% at 80% 0%, rgba(212,87,81,.12), transparent 60%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gut);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
body.nav-open .nav-mobile { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile ol { counter-reset: nav; display: flex; flex-direction: column; gap: 4px; list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--line-2); list-style: none; }
.nav-mobile ol a {
  font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2.2rem, 11vw, 3.4rem);
  color: var(--bone); display: flex; align-items: baseline; gap: .4em; padding: .35em 0; line-height: 1;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.nav-mobile ol a::before { counter-increment: nav; content: "0" counter(nav); font-family: var(--ff-label); font-size: .8rem; color: var(--red); letter-spacing: .1em; }
.nav-mobile ol a:hover, .nav-mobile ol a[aria-current="page"] { color: var(--red); padding-left: 8px; }
.nav-mobile .nav-foot { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.nav-mobile .nav-foot .btn { width: 100%; }
.nav-mobile .nav-meta { font-family: var(--ff-label); letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--fog); }

/* ----- Hero ----- */
.hero { position: relative; min-height: 92svh; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--header-h); }
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--ink-2); }
.hero__media picture, .hero__media img, .hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media video { opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__media video.is-ready { opacity: 1; }
/* Hero video plays on mobile only; desktop shows the static hero photo */
@media (min-width: 880px) { .hero__media video { display: none; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,11,.96) 2%, rgba(10,10,11,.30) 45%, rgba(10,10,11,.55) 100%),
    radial-gradient(90% 60% at 15% 100%, rgba(212,87,81,.18), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 9vw, 80px); }
.hero h1 { font-size: clamp(3rem, 16vw, 8.5rem); }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--bone); text-stroke: 1.5px var(--bone); }
.hero h1 em { font-style: normal; color: var(--red); }
.hero__sub { margin-top: 22px; max-width: 30ch; }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; right: var(--gut); bottom: 26px; z-index: 2; font-family: var(--ff-label); letter-spacing: .18em; text-transform: uppercase; font-size: .68rem; color: var(--fog); display: none; align-items: center; gap: 10px; writing-mode: vertical-rl; }
.hero__scroll::after { content: ""; width: 1px; height: 48px; background: linear-gradient(var(--red), transparent); animation: scrolldn 1.8s var(--ease) infinite; }
@keyframes scrolldn { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ----- Marquee ticker ----- */
.marquee { background: var(--red); color: #fff; overflow: hidden; padding-block: 13px; border-block: 1px solid rgba(0,0,0,.15); }
.marquee__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em; padding-inline: 22px; display: inline-flex; align-items: center; gap: 22px; }
.marquee span::after { content: "★"; font-size: .7em; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ----- Mission / split ----- */
.split { display: grid; gap: clamp(28px, 6vw, 60px); align-items: center; }
.split--start { align-items: start; }
.media-frame { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-2); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--wide { aspect-ratio: 16/10; }
.media-frame__tag { position: absolute; left: 14px; bottom: 14px; font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; color: var(--bone); background: rgba(10,10,11,.6); backdrop-filter: blur(6px); padding: 7px 11px; border-radius: 3px; border: 1px solid var(--line); }

/* ----- Stats ----- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(20px, 5vw, 32px); }
.stat__num { font-family: var(--ff-display); font-size: clamp(2.4rem, 9vw, 3.4rem); color: var(--bone); line-height: 1; }
.stat__num em { font-style: normal; color: var(--red); }
.stat__label { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--fog); margin-top: 10px; }

/* ----- Cards grid ----- */
.grid { display: grid; gap: 18px; }
.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 5vw, 30px); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,87,81,.4); }
.card__idx { font-family: var(--ff-label); font-size: .72rem; letter-spacing: .2em; color: var(--fog-2); }
.card h3 { margin-top: 6px; }
.card h3 span { color: var(--red); }
.card p { margin-top: 12px; font-size: .96rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--fog); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; }

/* offering cards with image */
.offer { padding: 0; }
.offer__img { aspect-ratio: 16/11; position: relative; overflow: hidden; }
.offer__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.offer:hover .offer__img img { transform: scale(1.05); }
.offer__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-2), transparent 55%); }
.offer__body { padding: clamp(20px, 5vw, 28px); margin-top: -40px; position: relative; z-index: 2; }
.offer__body h3 span { color: var(--red); }

/* class list rows */
.classrow { display: grid; grid-template-columns: auto 1fr; gap: 16px 18px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line-2); }
.classrow:last-child { border-bottom: 1px solid var(--line-2); }
.classrow__code { font-family: var(--ff-display); font-size: clamp(1.4rem,5vw,1.9rem); color: var(--red); line-height: 1; padding-top: 2px; }
.classrow h3 { font-size: clamp(1.1rem,4vw,1.35rem); }
.classrow p { margin-top: 8px; font-size: .95rem; }

/* ----- Pricing ----- */
.price-grid { display: grid; gap: 16px; }
.plan {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 6vw, 34px); display: flex; flex-direction: column; position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); }
.plan--featured { border-color: var(--red); background: linear-gradient(180deg, rgba(212,87,81,.07), var(--ink-2) 40%); }
.plan__badge { position: absolute; top: -1px; right: 22px; background: var(--red); color: #fff; font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; font-weight: 600; padding: 6px 12px; border-radius: 0 0 4px 4px; }
.plan__name { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-top: 14px; }
.plan__price .amt { font-family: var(--ff-display); font-size: clamp(3rem, 13vw, 4rem); line-height: 1; color: var(--bone); }
.plan__price .cur { font-family: var(--ff-display); font-size: 1.6rem; color: var(--red); }
.plan__price .per { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: var(--fog); }
.plan__feats { margin-top: 22px; margin-bottom: 26px; display: flex; flex-direction: column; gap: 13px; flex-grow: 1; }
.plan__feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: #d4d4d8; }
.plan__feats li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--red); }
.plan__feats li.off { color: var(--fog-2); }
.plan__feats li.off svg { color: var(--fog-2); }
.plan .btn { margin-top: auto; }
.price-note { margin-top: 26px; font-size: .9rem; color: var(--fog); }

/* ----- Team / coaches ----- */
.team-grid { display: grid; gap: 16px; }
.coach { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.coach:hover { transform: translateY(-4px); border-color: rgba(212,87,81,.4); }
/* photo slot — drop a real photo here; looks intentional while empty */
.photo-slot { position: relative; aspect-ratio: 4/5; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212,87,81,.10), transparent 55%),
    repeating-linear-gradient(135deg, #161619 0 12px, #131316 12px 24px);
  display: flex; align-items: center; justify-content: center; }
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-slot__mono { font-family: var(--ff-display); font-size: clamp(3rem, 14vw, 5rem); color: rgba(255,255,255,.07); }
.photo-slot__note { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .16em; font-size: .58rem; color: var(--fog-2); }
.coach__body { padding: 18px clamp(16px,4vw,20px) 22px; }
.coach__role { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: var(--red); }
.coach__name { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; margin-top: 4px; }
.coach__bio { margin-top: 12px; font-size: .9rem; color: var(--fog); line-height: 1.55; }
.coach__fav { margin-top: 14px; font-size: .8rem; color: var(--fog-2); border-top: 1px solid var(--line-2); padding-top: 12px; }
.coach__fav b { color: var(--bone); font-weight: 600; }

/* ----- Steps (get started) ----- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px,5vw,30px); position: relative; }
.step__n { font-family: var(--ff-display); font-size: 2.4rem; color: var(--red); line-height: 1; }
.step h3 { margin-top: 8px; font-size: 1.2rem; }
.step p { margin-top: 10px; font-size: .95rem; }

/* checklist */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.checklist li svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.checklist b { color: var(--bone); }

/* notice */
.notice { display: flex; gap: 14px; align-items: flex-start; border: 1px solid rgba(212,87,81,.3); background: rgba(212,87,81,.06); border-radius: var(--radius-lg); padding: 18px 20px; }
.notice svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.notice p { color: #e3d6d6; font-size: .95rem; }

/* ----- CTA band ----- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,11,.92), rgba(10,10,11,.55)), radial-gradient(80% 120% at 100% 0%, rgba(212,87,81,.25), transparent 60%); }
.cta-band__inner { position: relative; z-index: 2; padding: clamp(40px, 9vw, 80px) clamp(24px,6vw,64px); }
.cta-band h2 { max-width: 16ch; }
.cta-band p { margin-top: 16px; max-width: 46ch; }
.cta-band .hero__cta { margin-top: 28px; }

/* ----- Contact / info ----- */
.info-grid { display: grid; gap: 14px; }
.info { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line-2); }
.info svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.info .k { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; color: var(--fog); }
.info .v { color: var(--bone); margin-top: 3px; }
.info .v a:hover { color: var(--red); }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; min-height: 260px; background: var(--ink-2); }
.map-frame iframe { width: 100%; height: 100%; min-height: 260px; border: 0; filter: grayscale(1) invert(.9) contrast(.9); }

/* ----- Lesrooster ----- */
.schedule { margin-bottom: 30px; }
.schedule h3 { margin-bottom: 16px; }
.schedule__table { width: 100%; border-collapse: collapse; }
.schedule__table th { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 500; color: var(--bone); text-align: left; padding: 12px 14px 12px 0; white-space: nowrap; vertical-align: top; width: 1%; }
.schedule__table td { padding: 9px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.schedule__table tr { border-bottom: 1px solid var(--line-2); }
.schedule__note { margin-top: 14px; font-size: .85rem; color: var(--fog-2); }

/* ----- Reviews ----- */
.google-rating { margin-top: 14px; color: var(--fog); }
.stars { color: var(--red); letter-spacing: .18em; }
.grid--reviews { margin-top: 6px; }
@media (min-width: 880px) { .grid--reviews { grid-template-columns: repeat(2, 1fr); } }
.review-quote { color: var(--bone); line-height: 1.65; }
.review-quote::before { content: "\201C"; color: var(--red); font-family: var(--ff-display); font-size: 1.5em; line-height: 0; margin-right: 5px; vertical-align: -0.3em; }
.review-meta { margin-top: 14px; font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--fog-2); }
.reviews-link { margin-top: 28px; text-align: center; }

/* ----- Ledenmuur ----- */
.grid--members { margin-top: 6px; }
@media (min-width: 700px) { .grid--members { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--members { grid-template-columns: repeat(3, 1fr); } }
.member-tag { color: var(--red); border-color: rgba(212,87,81,.4); }
.member-meta { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--fog-2); margin-top: 8px; }
.members-note { margin-top: 30px; text-align: center; color: var(--fog-2); font-size: .9rem; }
.members-note a { text-decoration: underline; }

/* ----- Embedded boekingsmodule (WodApp) ----- */
#boek, #rooster { scroll-margin-top: calc(var(--header-h) + 18px); }
.booking-frame { position: relative; max-width: 760px; margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-2); box-shadow: var(--shadow); }
.booking-frame::before { content: "Boekingsmodule laadt… Kies zo een moment dat past. Gratis, geen betaalgegevens."; position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; text-align: center; color: var(--fog); font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; line-height: 2; }
.booking-note { max-width: 760px; margin: 0 auto 14px; text-align: center; font-size: .9rem; color: var(--fog); }
.booking-frame iframe { position: relative; z-index: 1; display: block; width: 100%; height: 760px; border: 0; }
.booking-fallback { max-width: 760px; margin: 14px auto 0; text-align: center; font-size: .85rem; color: var(--fog-2); }
.booking-fallback a { text-decoration: underline; }
@media (max-width: 640px) { .booking-frame iframe { height: 680px; } }

/* ----- Footer ----- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-1); padding-block: clamp(48px, 9vw, 80px) 30px; }
.footer-top { display: grid; gap: 36px; }
.footer-brand .brand { font-size: 2.2rem; }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.footer-socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.footer-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; color: var(--fog); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #c8c8cd; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { margin-top: clamp(36px, 7vw, 56px); padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 10px; font-size: .82rem; color: var(--fog-2); }
.footer-bottom a:hover { color: var(--fog); }

/* ----- Sticky mobile CTA ----- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom)); background: linear-gradient(to top, var(--ink) 60%, transparent); transform: translateY(120%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; box-shadow: 0 -6px 30px -8px rgba(0,0,0,.6), 0 8px 30px -10px var(--red-glow); }

/* ----- Reveal animation ----- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
.js .reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ----- Page hero (interior pages) ----- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(48px,11vw,90px)); padding-bottom: clamp(36px,8vw,64px); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(10,10,11,.6), var(--ink)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero p { margin-top: 16px; max-width: 56ch; }

/* ----- Ticket (referral / welkom) ----- */
.ticket {
  display: flex; align-items: stretch; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--ink-2), var(--ink-3));
  box-shadow: var(--shadow);
}
.ticket__main { padding: clamp(24px, 6vw, 40px); flex: 1; }
.ticket__kicker {
  font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 600; color: var(--red);
}
.ticket__big {
  font-family: var(--ff-display); text-transform: uppercase; line-height: .9;
  font-size: clamp(2.6rem, 12vw, 4.4rem); color: var(--bone); margin-top: 10px;
}
.ticket__sub { margin-top: 14px; max-width: 48ch; font-size: .95rem; }
.ticket__stub {
  flex: 0 0 clamp(96px, 24vw, 150px);
  border-left: 2px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 14px; text-align: center;
  background: radial-gradient(120% 80% at 50% 0%, rgba(212,87,81,.10), transparent 60%);
}
.ticket__stub svg { width: clamp(34px, 9vw, 46px); height: auto; color: var(--red); }
.ticket__stub span {
  font-family: var(--ff-label); text-transform: uppercase; letter-spacing: .16em;
  font-size: .66rem; color: var(--fog);
}

/* ----- Utilities ----- */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 48px; }
.maxw { max-width: 760px; }
.maxw.center { margin-inline: auto; }
.glow-line { height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); border: 0; opacity: .5; }

/* ==========================================================================
   Breakpoints (mobile-first → up)
   ========================================================================== */
@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  :root { --header-h: 76px; }
  .burger { display: none; }
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .sticky-cta { display: none; }
  .hero__scroll { display: flex; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .media-frame { order: 2; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr 1.2fr; gap: 34px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .info-grid--map { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
}

@media (min-width: 1100px) {
  .price-grid { gap: 20px; }
  .split { gap: 72px; }
  .team-grid { gap: 20px; }
}

/* tablet pricing: 2x2 before going 4-up */
@media (min-width: 600px) and (max-width: 879px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
