/* =============================================
   JB Keepersacademy — Hoofdstijlen
   ============================================= */
:root {
  --bg:        #0c0c0c;
  --bg-soft:   #121212;
  --panel:     #181818;
  --panel-2:   #1f1f1f;
  --line:      #2a2a2a;
  --accent:    #e01c1c;
  --accent-dark: #b81515;
  --text:      #f5f5f5;
  --muted:     #9a9a9a;
  --dim:       #6a6a6a;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(34px, 5.4vw, 58px); }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: 20px; }

:root { --page-width: 1380px; }
.container { max-width: var(--page-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.08em;
  padding: 13px 22px; border: 1px solid transparent; cursor: pointer;
  transition: all .18s ease; white-space: nowrap;
}
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #f03030; }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1380px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  line-height: 1.25; letter-spacing: .06em; text-transform: uppercase;
}
.nav-logo-text em { font-style: normal; color: var(--text); }
.nav-logo-text em span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .07em; color: var(--muted);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: .2s; }

/* ---------- Flash ---------- */
.flash-wrap { max-width: var(--page-width); margin: 16px auto 0; padding: 0 24px; }
.alert { padding: 13px 18px; font-size: 14px; margin-bottom: 8px; border-left: 3px solid; }
.alert--success { background: rgba(46,160,67,.12); border-color: #2ea043; color: #7ee2a8; }
.alert--error   { background: rgba(248,81,73,.12); border-color: #f85149; color: #ffa198; }
.alert--info    { background: rgba(224,28,28,.1); border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(100deg, rgba(8,8,8,.88) 30%, rgba(8,8,8,.45) 60%, rgba(8,8,8,.15)),
              url('/assets/images/hero.png') center/cover no-repeat, #0a0a0a;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: var(--page-width); margin: 0 auto; padding: 80px 24px; width: 100%; }
.hero-kicker {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-kicker .dot { color: var(--accent); }
.hero h1 { max-width: 560px; margin-bottom: 6px; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero p { max-width: 440px; color: var(--muted); margin: 18px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- USP-rij ---------- */
.usp-row { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.usp-grid {
  max-width: var(--page-width); margin: 0 auto; padding: 38px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.usp { display: flex; gap: 16px; align-items: flex-start; }
.usp + .usp { border-left: 1px solid var(--line); padding-left: 28px; }
.usp svg { flex-shrink: 0; width: 30px; height: 30px; stroke: var(--accent); }
.usp-icon { flex-shrink: 0; width: auto; height: 64px; object-fit: contain; filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(4000%) hue-rotate(350deg); }
.usp h3 { font-size: 14px; letter-spacing: .12em; color: var(--accent); margin-bottom: 6px; }
.usp p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- Sectiekoppen ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-kicker {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 10px;
}
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head-row .section-kicker { margin-bottom: 6px; }
.section-foot { text-align: center; margin-top: 38px; }

/* ---------- Locatiekaarten ---------- */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location-card { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; }
.location-card-head { padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.location-pin {
  width: 38px; height: 38px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-pin svg { width: 18px; height: 18px; stroke: #111; }
.location-card-head h3 { font-size: 17px; }
.location-card-head small { display: block; color: var(--muted); font-family: var(--font-body); font-size: 12px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.location-img { aspect-ratio: 16/9; background: linear-gradient(160deg, #1d2415, #10130c); position: relative; overflow: hidden; }
.location-img img { width: 100%; height: 100%; object-fit: cover; }
.location-card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.location-card-body p { font-size: 15px; color: var(--muted); flex: 1; }
.location-card-body .location-desc { font-size: 15px; color: var(--muted); flex: 1; }
.location-card-body .location-desc p { margin: 0; }
.badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px;
}
.location-card--featured { border-color: var(--accent); background: #140808; }
.location-card--featured h3 { color: var(--accent); }

/* ---------- Activiteitenstrip (kalender) ---------- */
.section-strip { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.events-strip { display: flex; gap: 10px; }
.events-strip .event-card { flex: 1 1 0; min-width: 0; }
.event-card {
  flex: 1; min-width: 0;
  background: var(--panel); border: 1px solid var(--line);
  padding: 16px 14px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: border-color .15s;
  text-decoration: none; color: inherit;
}
.event-card:hover { border-color: var(--accent); }
.event-date { flex-shrink: 0; display: flex; flex-direction: column; gap: 0; position: relative; padding-right: 12px; }
.event-date::after { content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, var(--line) 30%, transparent 100%); }
.event-date .day { font-family: var(--font-head); font-size: 26px; font-weight: 700; line-height: 1; display: block; color: #fff; }
.event-date .month { font-family: var(--font-head); font-size: 22px; font-weight: 700; line-height: 1; color: var(--accent); text-transform: uppercase; margin-top: 4px; display: block; }
.event-date .time { display: flex; align-items: center; gap: 5px; font-size: 14px; color: var(--muted); margin-top: 10px; }
.event-date .time svg { width: 14px; height: 14px; stroke: var(--muted); flex-shrink: 0; }
.event-meta { min-width: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.badge--strip { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .12em; padding: 2px 6px; margin-bottom: 6px; align-self: flex-start; }
.event-meta h3 { font-family: var(--font-head); font-size: 15px; letter-spacing: .08em; line-height: 1.4; font-weight: 700; color: #fff; }

/* ---------- Split-secties ---------- */
/* ---------- 50/50 blokken (Stages + Online) ---------- */
.two-blocks { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.twoblock { flex: 0 0 50%; max-width: 50%; display: flex; flex-direction: column; padding: 52px 44px; }
.twoblock--stages { background: #fff; border-right: 1px solid #e0e0e0; color: #111; }
.twoblock--stages .section-kicker { color: var(--accent-dark); }
.twoblock--stages h2 { color: #111; }
.twoblock--stages .twoblock-text p { color: #555; }
.twoblock--stages .twoblock-mini-usps { border-top-color: #e0e0e0; }
.twoblock--stages .mini-usp svg { stroke: var(--accent-dark); }
.twoblock--stages .mini-usp span { color: #444; }
.twoblock--online { background: linear-gradient(120deg, #131006, #0c0c0c 60%); }
.twoblock-top { display: flex; gap: 28px; flex: 1; }
.twoblock-text { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.twoblock-text h2 { margin: 10px 0 16px; }
.twoblock-text p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.65; }
.twoblock-photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; flex-shrink: 0; width: 44%; align-self: stretch; }
.twoblock-photos .ph { background: #fff; border: 1px solid #e0e0e0; overflow: hidden; }
.twoblock-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.twoblock-device { flex-shrink: 0; width: 42%; display: flex; align-items: stretch; align-self: stretch; }
.device-ph { width: 100%; aspect-ratio: 3/4; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
.device-img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.twoblock-mini-usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border-top: 1px solid var(--line); margin-top: 32px; padding-top: 24px; }
.twoblock-footer { margin-top: 24px; display: flex; justify-content: flex-end; }
.mini-usp { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.mini-usp svg { width: 24px; height: 24px; stroke: var(--accent); }
.mini-usp-icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.mini-usp span { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.online-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 16px; }
.online-features li { display: flex; gap: 14px; align-items: center; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.online-features svg { width: 22px; height: 22px; stroke: var(--accent); flex-shrink: 0; }
.online-feature-icon { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }

/* legacy split (andere pagina's) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.split-img { background: var(--panel); border: 1px solid var(--line); aspect-ratio: 4/3; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

/* ---------- Wall of Fame ---------- */
.wof-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.wof-inner { display: flex; align-items: flex-start; gap: 48px; }
.wof-left {
  flex: 0 0 260px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 16px;
  padding-top: 8px;
}
.wof-title { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.1; margin: 0; }
.wof-desc { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }
.wof-slider-wrap { flex: 1; position: relative; overflow: hidden; }
.wof-slider {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 28px;
}
.wof-slider::-webkit-scrollbar { display: none; }
.wof-card {
  flex: 0 0 180px; scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line);
  overflow: hidden; transition: border-color .15s;
}
.wof-card:hover { border-color: var(--accent); }
.wof-card:hover .wof-img img { transform: scale(1.04); }
.wof-img { aspect-ratio: 3/4; background: #111; position: relative; overflow: hidden; }
.wof-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; display: block; }
.wof-img .wof-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.wof-img .wof-placeholder svg { width: 48px; height: 48px; stroke: #2a2a2a; }
.wof-body { padding: 10px 14px; border-top: 2px solid var(--accent); background: var(--panel); }
.wof-body h3 { font-size: 12px; letter-spacing: .06em; margin: 0 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wof-body span { font-size: 11px; color: var(--muted); }
.wof-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.7); border: 1px solid var(--line); color: var(--text);
  width: 36px; height: 36px; font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background .15s, border-color .15s;
}
.wof-arrow:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.wof-arrow-prev { left: 8px; }
.wof-arrow-next { right: 8px; }
.wof-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.wof-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.wof-dot.active { background: var(--accent); }

/* Wall of Fame overzichtspagina: echte grid */
.wof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---------- App download ---------- */
.app-download-section { padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.app-download-bg {
  background: url('/assets/images/app_stores.png') center right / cover no-repeat;
  position: relative;
}
.app-download-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.2) 100%);
}
.app-download-bg .container { position: relative; z-index: 1; }
.app-download-row { display: flex; align-items: center; padding: 64px 0; }
.app-download-text { max-width: 480px; display: flex; flex-direction: column; gap: 14px; }
.app-download-text h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); }
.app-download-text p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.app-download-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.app-badge-link { display: inline-block; transition: opacity .15s; }
.app-badge-link:hover { opacity: .82; }
.app-badge { height: 44px; width: auto; display: block; }

/* ---------- Nieuws ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .15s; }
.news-card:hover { border-color: var(--accent); }
.news-img { aspect-ratio: 16/9; background: linear-gradient(150deg, #1c2415, #0e1109); position: relative; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-img .badge { position: absolute; top: 14px; left: 14px; }
.news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-body h3 { font-size: 16px; letter-spacing: .03em; }
.news-body p { font-size: 15px; color: var(--muted); flex: 1; }
.news-link { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(90deg, rgba(176,14,14,.92), rgba(224,28,28,.88)), #b00e0e;
  color: #fff;
}
.cta-band-inner {
  max-width: var(--page-width); margin: 0 auto; padding: 46px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); }
.cta-band p { font-size: 16px; margin-top: 4px; }

/* ---------- Footer ---------- */
#footer { background: #0a0a0a; border-top: 1px solid var(--line); }
.footer-grid {
  max-width: var(--page-width); margin: 0 auto; padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 54px; width: auto; }
.footer-logo span { font-family: var(--font-head); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; line-height: 1.3; }
.footer-about p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .15s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-size: 13px; letter-spacing: .15em; margin-bottom: 18px; color: var(--text); }
.footer-col > a { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; }
.footer-col > a:hover { color: var(--accent); }
.footer-location { margin-bottom: 16px; font-size: 14px; }
.footer-location strong { color: var(--accent); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; display: block; margin-bottom: 2px; }
.footer-location span { display: block; color: var(--muted); }
.footer-contact-line { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); padding: 4px 0; }
.footer-contact-line:hover { color: var(--accent); }
.footer-msg-btn { margin-top: 16px; font-size: 12px; padding: 11px 18px; }
.footer-bottom {
  border-top: 1px solid var(--line); max-width: var(--page-width); margin: 0 auto;
  padding: 20px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--dim);
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Paginakop ---------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 64px 0 48px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); }
.page-hero h1 .accent { color: var(--accent); }
.page-hero p { color: var(--muted); max-width: 640px; margin-top: 14px; }

/* ---------- Activiteitenlijst ---------- */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.activity-card { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .15s; }
.activity-card:hover { border-color: var(--accent); }
.activity-card .location-img { border-bottom: 1px solid var(--line); }
.activity-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.activity-card-body h3 { font-size: 17px; }
.activity-date { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--accent); font-family: var(--font-head); letter-spacing: .07em; text-transform: uppercase; font-weight: 500; }
.activity-date svg { width: 14px; height: 14px; stroke: var(--accent); }
.activity-card-body p { font-size: 15px; color: var(--muted); flex: 1; }
.activity-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.activity-price { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--text); }

/* ---------- Activiteit detail ---------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.detail-content h2 { font-size: 22px; margin: 28px 0 12px; }
.detail-content p { color: var(--muted); margin-bottom: 14px; }
.detail-content ul,
.detail-content ol { list-style: none; padding: 0; margin: 0 0 18px 0; color: var(--muted); }
.detail-content ul li,
.detail-content ol li { position: relative; padding: 6px 0 6px 28px; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.55; }
.detail-content ul li:last-child,
.detail-content ol li:last-child { border-bottom: none; }
.detail-content ul li::before,
.detail-content ol li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; background: var(--accent); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); flex-shrink: 0; }
.info-box { background: var(--panel); border: 1px solid var(--line); padding: 26px; position: sticky; top: 96px; }
.info-box h3 { font-size: 15px; letter-spacing: .12em; color: var(--accent); margin-bottom: 18px; }
.info-line { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.info-line:last-of-type { border-bottom: 0; }
.info-line svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-line strong { display: block; font-family: var(--font-head); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.info-line span { color: var(--muted); }
.price-table { width: 100%; border-collapse: collapse; margin: 10px 0 4px; }
.price-table td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.price-table td:last-child { text-align: right; font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 15px; }
.price-table .tier-note { color: var(--accent); font-size: 11px; display: block; }
.info-box .btn { margin-top: 18px; }

/* ---------- Formulieren ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-card { background: var(--panel); border: 1px solid var(--line); padding: 34px; }
.form-section-title { font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 26px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.form-section-title:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group label .req { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; font-family: var(--font-body); font-size: 14px; transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 110px; resize: vertical; }

/* Dagselectie */
.day-options { display: flex; flex-direction: column; gap: 10px; }
.day-option {
  display: flex; align-items: center; gap: 14px; background: var(--bg);
  border: 1px solid var(--line); padding: 14px 16px; cursor: pointer; transition: border-color .15s;
}
.day-option:hover { border-color: var(--dim); }
.day-option input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.day-option.selected { border-color: var(--accent); background: #140808; }
.day-option .day-label { font-family: var(--font-head); font-size: 14px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; flex: 1; }
.day-option .day-time { font-size: 12px; color: var(--muted); }
.price-summary {
  margin-top: 20px; background: #140808; border: 1px solid var(--accent);
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.price-summary .label { font-family: var(--font-head); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.price-summary .label small { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--accent); font-size: 12px; }
.price-summary .amount { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); }

/* ---------- Kalender ---------- */
.calendar-list { display: flex; flex-direction: column; gap: 12px; }
.calendar-row {
  display: flex; align-items: center; gap: 22px; background: var(--panel);
  border: 1px solid var(--line); padding: 18px 22px; transition: border-color .15s;
}
.calendar-row:hover { border-color: var(--accent); }
.calendar-row .event-date { min-width: 64px; }
.calendar-row .cal-info { flex: 1; min-width: 0; }
.calendar-row .cal-info h3 { font-size: 16px; }
.calendar-row .cal-info .cal-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted); margin-top: 4px; flex-wrap: wrap; }
.calendar-month-label { font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 26px 0 4px; }
.calendar-month-label:first-child { margin-top: 0; }

/* ---------- Prijzen / beurtenkaart ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 0 auto; }
.pricing-card { background: var(--panel); border: 1px solid var(--line); padding: 32px; text-align: center; }
.pricing-card--featured { border-color: var(--accent); }
.pricing-card .price { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--accent); }
.pricing-card .price small { font-size: 16px; color: var(--muted); font-weight: 400; }
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card p { font-size: 15px; color: var(--muted); margin-top: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

/* ---------- Blogdetail ---------- */
.post-content { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.75; }
.post-content > img:first-child { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 32px; border-radius: 2px; }
.post-content img { max-width: 100%; height: auto; margin: 20px 0; }
.post-content p { color: #cfcfcf; margin-bottom: 16px; }
.post-content h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: .06em; color: #fff; margin: 36px 0 14px; }
.post-content h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: .05em; color: #fff; margin: 28px 0 12px; }
.post-content ul { color: #cfcfcf; margin: 0 0 18px 0; padding: 0; list-style: none; }
.post-content ol { color: #cfcfcf; margin: 0 0 18px 22px; }
.post-content ul li { margin-bottom: 8px; padding-left: 22px; position: relative; }
.post-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--accent); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.post-content ol li { margin-bottom: 8px; }
.post-content strong, .post-content b { color: #fff; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; margin: 24px 0; color: var(--muted); font-style: italic; background: var(--panel); }
.post-content hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }
.post-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin: 24px 0; }
.post-gallery a { display: block; aspect-ratio: 4/3; overflow: hidden; }
.post-gallery img { width: 100%; height: 100%; object-fit: cover; transition: opacity .15s; }
.post-gallery a:hover img { opacity: .85; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; margin: 24px 0; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.inline-strip { margin: 32px -24px; }
.inline-strip img { padding-bottom: 44px; }
.post-meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: 13px; margin: 14px 0 30px; }

/* ---------- How-it-works stappen ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 0; }
.step-card { background: var(--panel); border: 1px solid var(--line); padding: 36px 28px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; position: relative; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.step-num { font-family: var(--font-head); font-size: 64px; font-weight: 700; line-height: 1; color: var(--line); }
.step-icon { width: 44px; height: 44px; stroke: var(--accent); }
.step-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; line-height: 1.2; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- Over ons — pijlers & foto's ---------- */
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.about-vision-img { background: url('/assets/img/about-vision.jpg') center/cover no-repeat, linear-gradient(160deg, #1c1c1c, #111); min-height: 380px; }
.about-forma-img  { background: url('/assets/img/about-forma.jpg') center/cover no-repeat, linear-gradient(160deg, #1c1c1c, #111); min-height: 380px; }
.pillar-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.pillar-item { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(224,28,28,.1); border: 1px solid rgba(224,28,28,.25); display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.pillar-item strong { display: block; font-family: var(--font-head); font-size: 14px; letter-spacing: .07em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.pillar-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- Over ons — trainers ---------- */
.trainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 0; }
.trainer-card { background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.trainer-img { aspect-ratio: 3/3.4; background: linear-gradient(160deg, #1c1c1c, #0f0f0f); position: relative; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.trainer-img .trainer-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.trainer-img .trainer-ph svg { width: 64px; height: 64px; stroke: #2a2a2a; }
.trainer-body { padding: 18px 20px; border-top: 3px solid var(--accent); }
.trainer-body h3 { font-size: 17px; letter-spacing: .05em; margin-bottom: 4px; }
.trainer-body .trainer-role { font-size: 12px; color: var(--accent); font-family: var(--font-head); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.trainer-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- Responsief ---------- */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp + .usp { border-left: 0; padding-left: 0; }
  .wof-left { flex: 0 0 240px; padding: 32px 28px; }
}
@media (max-width: 900px) {
  .nav { height: 64px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 64px 0 auto 0; background: #0c0c0c;
    flex-direction: column; align-items: flex-start; padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line); gap: 4px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; font-size: 15px; }
  .nav-cta-mobile { display: block; margin-top: 12px; }
  .location-grid, .news-grid, .activity-grid { grid-template-columns: 1fr; }
  .split, .detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }
  .mini-usps { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-box { position: static; }
  /* Stages + Online: volledig breed op tablet/mobiel */
  .two-blocks { flex-direction: column; }
  .twoblock { flex: 0 0 100%; max-width: 100%; padding: 40px 28px; }
  .twoblock--stages { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .twoblock-top { flex-direction: column; gap: 20px; }
  .twoblock-photos { width: 100%; }
  .twoblock-device { width: 100%; max-width: 280px; align-self: center; height: auto; }
  .twoblock-mini-usps { grid-template-columns: repeat(2, 1fr); }
  .twoblock-footer { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .usp-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .hero { min-height: 480px; }
  .calendar-row { flex-wrap: wrap; gap: 14px; }
  .steps-grid, .trainer-grid { grid-template-columns: 1fr; }
  .step-num { font-size: 44px; }
  .twoblock { padding: 32px 20px; }
  .twoblock-device { max-width: 220px; align-self: center; height: auto; }

  /* Komende activiteiten: slider 1 per 1 */
  .events-strip {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }
  .events-strip::-webkit-scrollbar { display: none; }
  .events-strip .event-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Wall of Fame mobiel */
  .wof-inner { flex-direction: column; height: auto; }
  .wof-left { flex: none; border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .wof-slider-wrap { height: 300px; }
  .wof-card { flex: 0 0 160px; width: 160px; }
  .wof-img { height: 232px; }
  .wof-body { height: 68px; }
}

/* ---------- JB Academy Online: prijstabellen + toggle ---------- */
.billing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 0 auto 42px;
}
.billing-toggle .opt { font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .15s; }
.billing-toggle .opt.active { color: var(--accent); }
.billing-toggle .opt .save { display: block; font-family: var(--font-body); font-size: 11px; text-transform: none; letter-spacing: 0; color: var(--accent); text-align: center; }
.switch { position: relative; width: 58px; height: 30px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0; cursor: pointer; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 30px; transition: background .2s;
}
.switch .slider::before {
  content: ""; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px;
  background: var(--accent); border-radius: 50%; transition: transform .2s;
}
.switch input:checked + .slider::before { transform: translateX(28px); }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.price-card { background: var(--panel); border: 1px solid var(--line); padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.price-card--featured { border-color: var(--accent); background: #140808; }
.price-card .plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); }
.price-card h3 { font-size: 20px; margin-bottom: 4px; }
.price-card .plan-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.price-card .plan-price { font-family: var(--font-head); font-size: 46px; font-weight: 700; color: var(--accent); line-height: 1; }
.price-card .plan-price small { font-size: 15px; color: var(--muted); font-weight: 400; }
.price-card .plan-price-note { font-size: 12px; color: var(--muted); min-height: 18px; margin: 6px 0 20px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #cfcfcf; padding: 7px 0; border-bottom: 1px solid var(--line); }
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ---------- Oefeningen ---------- */
/* -----------------------------------------------
   EXERCISES — sidebar layout
----------------------------------------------- */
.exercises-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

/* FILTER SIDEBAR */
.filter-sidebar {
  position: sticky;
  top: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.filter-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.filter-sidebar-title {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text);
}
.filter-reset {
  font-size: 11px; color: var(--muted); text-decoration: none; transition: color .15s;
}
.filter-reset:hover { color: var(--accent); }
.filter-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 2px;
  margin-left: 4px; vertical-align: middle;
}

/* Filter section accordion */
.filter-section { border-bottom: 1px solid var(--line); }
.filter-section:last-child { border-bottom: none; }
.filter-section-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: none; border: none; color: var(--text);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; cursor: pointer;
  transition: color .15s;
}
.filter-section-toggle:hover { color: var(--accent); }
.filter-section-arrow {
  width: 14px; height: 14px; stroke: var(--muted); transition: transform .2s; flex-shrink: 0;
}
.filter-section-arrow.rotated { transform: rotate(180deg); }
.filter-section-body {
  display: none; padding: 4px 0 10px;
}
.filter-section-body.open { display: block; }

/* Filter option row */
.filter-option {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 16px; cursor: pointer; font-size: 13px; color: var(--muted);
  transition: color .12s; user-select: none; line-height: 1;
}
.filter-option:hover { color: var(--text); }
.filter-option.active { color: var(--text); }
.filter-option input[type=checkbox],
.filter-option input[type=radio] {
  width: 14px; height: 14px; flex-shrink: 0; margin: 0;
  accent-color: var(--accent); cursor: pointer;
}

/* Results area */
.exercises-results {}
.exercise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

@media (max-width: 1100px) {
  .exercise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .exercises-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .exercise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .exercise-grid { grid-template-columns: 1fr; }
}
.exercise-card { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .15s; }
.exercise-card:hover { border-color: var(--accent); }
.exercise-img { aspect-ratio: 16/10; background: linear-gradient(150deg, #1c2415, #0e1109); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.exercise-img img { width: 100%; height: 100%; object-fit: cover; }
.exercise-img .lock {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.65); display: flex; align-items: center; justify-content: center;
}
.exercise-img .lock svg { width: 15px; height: 15px; stroke: var(--accent); }
.exercise-body { padding: 14px 16px; }
.exercise-body h3 { font-size: 14px; line-height: 1.35; }
.exercise-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 11px; color: var(--accent); border: 1px solid rgba(224,28,28,.35); padding: 2px 8px; font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase; }
.exercise-body p { font-size: 15px; color: var(--muted); flex: 1; }
.exercise-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); }
.exercise-meta svg { width: 13px; height: 13px; stroke: var(--accent); vertical-align: -2px; }

/* Krantsysteem: vergrendelde inhoud */
.locked-content { position: relative; overflow: hidden; max-height: 230px; }
.locked-content .blurred { filter: blur(7px); user-select: none; pointer-events: none; }

/* ---------- Watermark op ontgrendelde oefeningen ---------- */
.exercise-watermark { position: relative; }
.exercise-watermark::after {
  content: attr(data-wm) ' · JB Keepersacademy';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 600;
  color: rgba(255,255,255,.06);
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  transform: rotate(-20deg);
  z-index: 1;
  background: repeating-linear-gradient(
    -20deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.025) 60px,
    rgba(255,255,255,.025) 62px
  );
}
.locked-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(180deg, rgba(12,12,12,0) 0%, rgba(12,12,12,.88) 55%, var(--bg) 100%);
}
.locked-cta { text-align: center; padding: 0 20px 26px; max-width: 460px; }
.locked-cta .lock-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.locked-cta .lock-icon svg { width: 22px; height: 22px; stroke: #111; }
.locked-cta h3 { font-size: 17px; margin-bottom: 8px; }
.locked-cta p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.locked-cta .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.focus-list { list-style: none; margin: 0; padding: 0; }
.focus-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--line); color: #cfcfcf; font-size: 15px; }
.focus-list li svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; margin-top: 3px; }

.account-stat { background: var(--panel); border: 1px solid var(--line); padding: 22px; text-align: center; }
.account-stat .num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.account-stat .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .price-cards, .exercise-grid { grid-template-columns: 1fr; }
}

/* Account-icoon in nav */
.nav-account { color: var(--muted); display: flex; align-items: center; transition: color .15s; }
.nav-account:hover { color: var(--accent); }
