/* ============================================================
   24UURFIT — black/white system
   Pure greyscale. Hard corners. Editorial fitness.
============================================================ */

:root {
  --black: #0A0A0A;
  --off-black: #141414;
  --charcoal: #1F1F1F;
  --mid-grey: #3A3A3A;
  --light-grey: #8A8A8A;
  --soft-white: #E8E8E8;
  --pure-white: #FFFFFF;

  --max: 1280px;
  --gutter: 24px;
  --section-pad: 120px;
  --nav-h: 72px;

  --ff-display: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--soft-white);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* grain overlay on whole body (very subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.025;
  mix-blend-mode: screen;
}

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

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--pure-white);
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 9vw, 132px); font-weight: 900; }
h2 { font-size: clamp(40px, 6.2vw, 96px); }
h3 { font-size: clamp(28px, 3.6vw, 48px); }
h4 { font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; }

p { color: var(--soft-white); max-width: 64ch; }
p.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--soft-white); }

.mono { font-family: var(--ff-mono); font-weight: 400; letter-spacing: 0.02em; }

/* eyebrow with lane-marker streepjes */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pure-white);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pure-white);
}
.eyebrow.solo::after { display: none; }

/* outline numbering for sections */
.section-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--mid-grey);
  user-select: none;
}
.section-num.small {
  font-size: clamp(64px, 10vw, 140px);
  -webkit-text-stroke: 1px var(--mid-grey);
}

/* ---------- layout ---------- */
.container {
  max-width: var(--max);
  padding: 0 var(--gutter);
  margin: 0 auto;
  position: relative;
}
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section.bg-off { background: var(--off-black); }
.section.bg-char { background: var(--charcoal); }
.section.bg-white { background: var(--pure-white); color: var(--black); }
.section.bg-white h1, .section.bg-white h2, .section.bg-white h3 { color: var(--black); }
.section.bg-white p { color: var(--off-black); }

/* hairline divider */
.hairline { display: block; height: 1px; background: var(--mid-grey); width: 100%; }
.hairline-white { background: var(--pure-white); }

/* lane-marker decoration: short white dashes */
.lane-marks {
  display: flex; gap: 12px;
}
.lane-marks span {
  width: 18px; height: 2px; background: var(--pure-white);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--pure-white);
  background: var(--pure-white);
  color: var(--black);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  border-radius: 0;
}
.btn:hover { background: transparent; color: var(--pure-white); }
.btn .arrow { display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--pure-white);
}
.btn-ghost:hover { background: var(--pure-white); color: var(--black); }
.btn-small { padding: 12px 18px; font-size: 11px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  z-index: 100;
  transition: background 200ms ease, backdrop-filter 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav .container {
  max-width: 1440px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--pure-white);
  text-transform: uppercase;
}
.nav-brand span {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--light-grey);
  font-weight: 400;
}
.nav-links {
  display: flex; gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-white);
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--pure-white);
  transition: width 240ms ease;
}
.nav-links a:hover { color: var(--pure-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--pure-white); }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  background: transparent;
  border: 1px solid var(--mid-grey);
}
.hamburger span {
  position: absolute;
  left: 10px; right: 10px; height: 1px;
  background: var(--pure-white);
  transition: transform 240ms ease, opacity 200ms ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile overlay nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 32px) var(--gutter) 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 260ms ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav li { border-top: 1px solid var(--mid-grey); }
.mobile-nav li:last-child { border-bottom: 1px solid var(--mid-grey); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pure-white);
}
.mobile-nav a .idx {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--light-grey);
  letter-spacing: 0.18em;
  font-weight: 400;
}
.mobile-nav .btn { margin-top: 32px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 80px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.35) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 60%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}
.hero h1 {
  margin-top: 24px;
  max-width: 14ch;
}
.hero .sub { margin-top: 28px; max-width: 56ch; color: var(--soft-white); font-size: clamp(16px, 1.3vw, 20px); }
.hero .cta-row {
  margin-top: 44px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero.shorter { min-height: 60vh; justify-content: center; }

.scroll-indicator {
  position: absolute; left: var(--gutter); bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--soft-white);
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator .line {
  width: 60px; height: 1px; background: var(--pure-white);
  position: relative; overflow: hidden;
}
.scroll-indicator .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--black);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* hero corner metadata */
.hero-meta {
  position: absolute; right: var(--gutter); bottom: 24px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light-grey);
  z-index: 2;
}
.hero-meta strong { color: var(--pure-white); font-weight: 500; }

/* ---------- placeholder image ---------- */
.ph {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  display: block;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.025) 0,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 14px
  );
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.05), transparent 65%);
}
.ph .ph-label {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  max-width: calc(100% - 32px);
}
.ph .ph-label::before {
  content: "▢ ";
  color: var(--pure-white);
}
.ph.bordered { outline: 1px solid var(--pure-white); outline-offset: -1px; }

/* when a real photo is dropped inside .ph it fully covers the placeholder */
.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph:has(> img)::before,
.ph:has(> img)::after { display: none; }
.ph:has(> img) .ph-label { display: none; }

/* hero placeholder full-bleed variant */
.ph-hero {
  width: 100%; height: 100%;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(255,255,255,0.03), transparent 60%),
    var(--off-black);
}

/* ---------- cards ---------- */
.card {
  background: var(--charcoal);
  border: 1px solid var(--mid-grey);
  padding: 36px 28px;
  position: relative;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.card:hover {
  border-color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 24px 60px -20px rgba(255,255,255,0.08);
}
.card .stat-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--pure-white);
}
.card .stat-label {
  margin-top: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-grey);
}
.card .stat-desc { margin-top: 18px; color: var(--soft-white); font-size: 15px; }

.card-link-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pure-white);
  gap: 10px;
}

/* ---------- pill / badge ---------- */
.badge-hyrox {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--pure-white);
  padding: 8px 14px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pure-white);
}
.badge-hyrox::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--pure-white);
}

/* ---------- footer ---------- */
.footer {
  background: #000;
  padding: 80px 0 24px;
  border-top: 1px solid var(--mid-grey);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--light-grey);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--soft-white); font-size: 14px; transition: color 160ms ease; }
.footer ul a:hover { color: var(--pure-white); }
.footer .brand {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 8px;
}
.footer .tag {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 28px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--mid-grey);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 200ms ease, background 200ms ease;
  font-family: var(--ff-mono); font-size: 11px;
  border-radius: 50%;
}
.socials a:hover { border-color: var(--pure-white); background: rgba(255,255,255,0.04); }

.newsletter form {
  display: flex; border: 1px solid var(--mid-grey); margin-top: 4px;
}
.newsletter input {
  flex: 1; background: transparent; border: 0; color: var(--pure-white);
  padding: 14px 14px; font: inherit; font-size: 14px; outline: none;
}
.newsletter button {
  background: var(--pure-white); color: var(--black);
  padding: 12px 16px;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}
.newsletter button:hover { background: var(--black); color: var(--pure-white); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--mid-grey);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-grey);
}
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--pure-white); }

/* ---------- utility ---------- */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-4 { aspect-ratio: 3 / 4; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-1 { aspect-ratio: 1 / 1; }
.aspect-21-9 { aspect-ratio: 21 / 9; }

/* section header (eyebrow + outline number + heading) */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
  position: relative;
}
.section-head .left .eyebrow { margin-bottom: 24px; }
.section-head .left h2 { max-width: 14ch; }
.section-head .right { color: var(--soft-white); align-self: end; }
.section-head .right p { max-width: 42ch; margin-left: auto; }
.section-head .num-bg {
  position: absolute;
  right: 0; top: -40px;
  z-index: 0;
  pointer-events: none;
}
.section-head .num-bg + .left, .section-head .num-bg + .left + .right {
  position: relative; z-index: 1;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- home: hero word stagger ---------- */
.h1-stagger .word { display: inline-block; opacity: 0; transform: translateY(20px); animation: word-in 600ms cubic-bezier(.2,.7,.2,1) forwards; }
.h1-stagger .word:nth-child(1) { animation-delay: 120ms; }
.h1-stagger .word:nth-child(2) { animation-delay: 200ms; }
.h1-stagger .word:nth-child(3) { animation-delay: 320ms; }
.h1-stagger .word:nth-child(4) { animation-delay: 400ms; }
.h1-stagger .word:nth-child(5) { animation-delay: 480ms; }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- home: USP cards row ---------- */
.usp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- home: pillar grid (3 large image cards) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--mid-grey);
  transition: border-color 240ms ease;
}
.pillar:hover { border-color: var(--pure-white); }
.pillar .ph { aspect-ratio: 3 / 4; transition: transform 600ms ease; }
.pillar:hover .ph { transform: scale(1.04); }
.pillar .info {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 10px;
}
.pillar .info::before {
  content: "";
  position: absolute;
  inset: -24px -24px -24px -24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 70%);
  z-index: -1;
}
.pillar h3 { color: var(--pure-white); font-size: 32px; }
.pillar .arrow-row { display: flex; align-items: center; justify-content: space-between; }
.pillar .arrow-row .mono { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-grey); }
.pillar .arrow-row .arr {
  width: 36px; height: 36px;
  border: 1px solid var(--pure-white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
.pillar:hover .arrow-row .arr { background: var(--pure-white); color: var(--black); }

/* ---------- stations strip ---------- */
.stations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.station {
  position: relative;
  border: 1px solid var(--mid-grey);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transition: border-color 240ms ease;
}
.station:hover { border-color: var(--pure-white); }
.station .ph { width: 100%; height: 100%; }
.station .label {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
}
.station .label .num {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--light-grey);
}
.station .label .name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--pure-white);
  text-align: right;
}

/* ---------- gym grid (sec 04) ---------- */
.gym-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 760px;
}
.gym-grid .item { position: relative; overflow: hidden; outline: 1px solid var(--pure-white); outline-offset: -1px; }
.gym-grid .item:nth-child(1) { grid-row: 1 / 3; }
.gym-grid .item .ph { width: 100%; height: 100%; }
.gym-grid .caption {
  position: absolute; right: 12px; top: 12px; z-index: 3;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pure-white);
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ---------- tarieven preview ---------- */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.tariff {
  border: 1px solid var(--pure-white);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  gap: 18px;
  background: var(--black);
  color: var(--soft-white);
  transition: transform 240ms ease;
}
.tariff:hover { transform: translateY(-2px); }
.tariff.popular {
  background: var(--pure-white);
  color: var(--black);
}
.tariff.popular h4, .tariff.popular p { color: var(--black); }
.tariff .ribbon {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 8px;
  background: var(--black);
  color: var(--pure-white);
  border: 1px solid var(--black);
}
.tariff.popular .ribbon { background: var(--black); color: var(--pure-white); }
.tariff h4 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 22px; letter-spacing: 0; text-transform: uppercase;
}
.tariff .price {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 56px; line-height: 1; letter-spacing: -0.03em;
}
.tariff .price small {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: block; margin-top: 8px;
  font-weight: 400; color: var(--light-grey);
}
.tariff.popular .price small { color: var(--mid-grey); }
.tariff ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.tariff li { font-size: 14px; padding-left: 22px; position: relative; }
.tariff li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: currentColor;
}
.tariff .cta-link {
  margin-top: auto;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  color: inherit;
}

/* ---------- big banner ---------- */
.banner {
  background: var(--pure-white);
  color: var(--black);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.banner h3 { color: var(--black); font-size: clamp(24px, 3vw, 40px); }
.banner .btn { background: var(--black); color: var(--pure-white); border-color: var(--black); }
.banner .btn:hover { background: transparent; color: var(--black); }

/* ---------- house of hyrox teaser ---------- */
.teaser {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.teaser .ph-hero {
  position: absolute; inset: 0; z-index: -1;
}
.teaser::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.6), rgba(10,10,10,0.4));
  z-index: -1;
}
.teaser .inner { width: 100%; }
.teaser h2 { font-size: clamp(54px, 9vw, 144px); }

/* ---------- hyrox badge strip ---------- */
.badge-strip {
  padding: 56px 0;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.badge-strip .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.badge-strip .badge-big {
  border: 1px solid var(--pure-white);
  padding: 18px 28px;
  display: inline-flex; flex-direction: column; gap: 4px;
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pure-white);
  text-transform: uppercase;
}
.badge-strip .badge-big strong { font-size: 22px; }
.badge-strip .badge-big span { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--light-grey); }
.badge-strip p { color: var(--soft-white); max-width: 56ch; }
.badge-strip .mark-row { display: flex; gap: 10px; align-items: center; }
.badge-strip .mark-row span {
  width: 22px; height: 2px; background: var(--pure-white);
}

/* ---------- about (over-ons) ---------- */
.quote {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pure-white);
  text-wrap: balance;
  max-width: 24ch;
  padding: 24px 0 24px 32px;
  border-left: 2px solid var(--pure-white);
}
.pillars-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.pillars-3 .pillar-item {
  padding: 48px 32px;
  border-right: 1px solid var(--mid-grey);
}
.pillars-3 .pillar-item:last-child { border-right: 0; }
.pillars-3 h4 { font-family: var(--ff-display); font-weight: 800; font-size: 28px; letter-spacing: 0; text-transform: uppercase; margin-bottom: 16px; }
.pillars-3 .mono { color: var(--light-grey); margin-bottom: 8px; }

/* ---------- groepslessen ---------- */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lesson {
  position: relative;
  border: 1px solid var(--mid-grey);
  display: flex; flex-direction: column;
  background: var(--off-black);
  transition: border-color 240ms ease, transform 240ms ease;
}
.lesson:hover { border-color: var(--pure-white); transform: translateY(-2px); }
.lesson .ph { aspect-ratio: 4 / 3; }
.lesson .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.lesson .meta { display: flex; gap: 16px; font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-grey); }
.lesson h4 { font-size: 22px; letter-spacing: 0; text-transform: uppercase; }
.lesson p { font-size: 14px; color: var(--soft-white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.steps-grid .step {
  padding: 56px 32px;
  border-right: 1px solid var(--mid-grey);
  position: relative;
}
.steps-grid .step:last-child { border-right: 0; }
.steps-grid .step .n {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 64px; line-height: 1;
  -webkit-text-stroke: 1px var(--pure-white);
  color: transparent;
  margin-bottom: 24px;
}
.steps-grid .step h4 { font-size: 22px; margin-bottom: 12px; }

/* ---------- coaching ---------- */
.coaches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coach {
  border: 1px solid var(--mid-grey);
  background: var(--off-black);
  transition: border-color 240ms ease, transform 240ms ease;
}
.coach:hover { border-color: var(--pure-white); transform: translateY(-2px); }
.coach .ph { aspect-ratio: 3 / 4; }
.coach .body { padding: 24px; }
.coach h4 { font-size: 26px; letter-spacing: 0; text-transform: uppercase; margin-bottom: 6px; }
.coach .role { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-grey); }
.coach p { font-size: 14px; color: var(--soft-white); margin-top: 14px; }

.coaching-prices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.coaching-prices .cp {
  padding: 56px 32px;
  border-right: 1px solid var(--mid-grey);
}
.coaching-prices .cp:last-child { border-right: 0; }
.coaching-prices .price-big {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 72px; line-height: 1; letter-spacing: -0.03em;
  color: var(--pure-white);
}
.coaching-prices .label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-grey); margin-top: 12px; margin-bottom: 14px; }
.coaching-prices h4 { font-size: 24px; margin-bottom: 8px; }

/* hyrox simulation highlight block */
.sim-block {
  border: 1px solid var(--pure-white);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sim-block h3 { font-size: clamp(32px, 4vw, 56px); }
.sim-block .right { border-left: 1px solid var(--mid-grey); padding-left: 48px; }
.sim-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.sim-block li { padding-left: 22px; position: relative; font-size: 14px; }
.sim-block li::before { content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 1px; background: var(--pure-white); }

/* ---------- vrij trainen / equipment ---------- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.equipment-grid .eq {
  position: relative;
  border: 1px solid var(--mid-grey);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transition: border-color 240ms ease;
}
.equipment-grid .eq:hover { border-color: var(--pure-white); }
.equipment-grid .eq .label {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--pure-white);
  background: rgba(0,0,0,0.55);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ---------- rooster ---------- */
.appy-fake {
  border: 1px solid var(--mid-grey);
  background: var(--off-black);
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.appy-fake::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 24px);
}
.appy-fake .inner { position: relative; z-index: 2; text-align: center; max-width: 480px; padding: 40px; }
.appy-fake .mono { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--light-grey); text-transform: uppercase; }

/* ---------- tarieven page ---------- */
.tariff-big-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.compare-table {
  width: 100%; border-collapse: collapse;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--mid-grey);
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.06em; color: var(--soft-white);
}
.compare-table th {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pure-white);
  border-bottom: 1px solid var(--pure-white);
}
.compare-table td.check { color: var(--pure-white); }
.compare-table td.cross { color: var(--mid-grey); }

/* ---------- faq ---------- */
.faq-group { border-top: 1px solid var(--mid-grey); }
.faq-group:last-child { border-bottom: 1px solid var(--mid-grey); }
.faq-group h3 {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--light-grey);
  padding: 24px 0 16px;
}
.faq-item {
  border-top: 1px solid var(--mid-grey);
  transition: border-color 240ms ease;
}
.faq-group .faq-item:first-of-type { border-top: 1px solid var(--mid-grey); }
.faq-item.open { border-color: var(--pure-white); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--pure-white);
}
.faq-q .plus {
  width: 20px; height: 20px; position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--pure-white); transition: transform 240ms ease;
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus::after { transform: rotate(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 380ms ease, opacity 240ms ease;
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; }
.faq-a .inner { padding: 0 4px 28px; color: var(--soft-white); max-width: 68ch; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--light-grey);
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--mid-grey);
  padding: 12px 0;
  color: var(--pure-white);
  font: inherit; font-size: 16px;
  outline: none;
  transition: border-color 200ms ease;
}
.field input:focus, .field textarea:focus { border-color: var(--pure-white); }
.field textarea { resize: vertical; min-height: 120px; }

.contact-card {
  border: 1px solid var(--mid-grey);
  padding: 36px;
  background: var(--off-black);
}
.contact-card h4 { font-family: var(--ff-display); font-weight: 900; font-size: 28px; letter-spacing: 0.02em; margin-bottom: 24px; }
.contact-card .row { padding: 16px 0; border-top: 1px solid var(--mid-grey); display: flex; flex-direction: column; gap: 4px; }
.contact-card .row:first-of-type { border-top: 0; }
.contact-card .row .mono { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--light-grey); }
.contact-card .row .val { color: var(--soft-white); font-size: 15px; }

/* fake map */
.map-fake {
  height: 420px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
    var(--off-black);
  position: relative;
  border: 1px solid var(--mid-grey);
  overflow: hidden;
}
.map-fake .pin {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 18px;
  transform: translate(-50%, -100%);
  background: var(--pure-white);
}
.map-fake .pin::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 1px; height: 22px; background: var(--pure-white); transform: translateX(-50%);
}
.map-fake .pinlabel {
  position: absolute; left: calc(50% + 18px); top: calc(50% - 18px);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--pure-white); text-transform: uppercase;
  background: rgba(0,0,0,0.6); padding: 6px 10px; border: 1px solid rgba(255,255,255,0.2);
}
.map-fake .crosshair-h, .map-fake .crosshair-v {
  position: absolute; background: rgba(255,255,255,0.1);
}
.map-fake .crosshair-h { left: 0; right: 0; top: 50%; height: 1px; }
.map-fake .crosshair-v { top: 0; bottom: 0; left: 50%; width: 1px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .right p { margin-left: 0; max-width: none; }
  .usp-row, .pillar-grid, .lessons-grid, .coaches-grid, .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .stations { grid-template-columns: repeat(3, 1fr); }
  .gym-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .gym-grid .item { aspect-ratio: 4 / 3; }
  .gym-grid .item:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff-big-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sim-block { grid-template-columns: 1fr; }
  .sim-block .right { border-left: 0; padding-left: 0; border-top: 1px solid var(--mid-grey); padding-top: 32px; }
  .pillars-3, .steps-grid, .coaching-prices { grid-template-columns: 1fr; }
  .pillars-3 .pillar-item, .steps-grid .step, .coaching-prices .cp { border-right: 0; border-bottom: 1px solid var(--mid-grey); }
  .pillars-3 .pillar-item:last-child, .steps-grid .step:last-child, .coaching-prices .cp:last-child { border-bottom: 0; }
  .badge-strip .row { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 72px; --gutter: 20px; }
  .usp-row, .pillar-grid, .lessons-grid, .coaches-grid, .equipment-grid { grid-template-columns: 1fr; }
  .stations { grid-template-columns: repeat(2, 1fr); }
  .gym-grid .item:nth-child(1) { grid-column: 1; }
  .gym-grid { grid-template-columns: 1fr; }
  .banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: flex-start; }
  .hero { padding-bottom: 56px; }
  .hero-meta { display: none; }
  .scroll-indicator { left: 20px; bottom: 16px; }
  .sim-block { padding: 32px 24px; }
  .quote { font-size: 28px; padding-left: 20px; }
}

/* helpers used in section heads with absolutely-positioned outline number */
.head-stack { position: relative; padding-top: 24px; }
.head-stack .section-num-abs {
  position: absolute;
  right: -8px; top: -56px;
  z-index: 0;
  pointer-events: none;
}
.head-stack .head-content { position: relative; z-index: 1; }

/* small lane-marker line used between headings */
.line-dot {
  display: inline-block;
  width: 36px; height: 2px; background: var(--pure-white);
  vertical-align: middle;
  margin-right: 16px;
}

/* focus styles */
:focus-visible {
  outline: 1px solid var(--pure-white);
  outline-offset: 4px;
}

/* "start" floor mark style */
.start-mark {
  display: inline-block;
  border: 2px solid var(--pure-white);
  padding: 4px 12px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pure-white);
}
