/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--blk);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }

@media (max-width: 900px) { body { cursor: auto; } button { cursor: pointer; } }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 700px) { .wrap { padding: 0 1.25rem; } }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s ease-out;
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--y); border-radius: 50%; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(249,225,27,.6); border-radius: 50%; transition: transform .18s ease-out, width .2s, height .2s; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(249,225,27,.08); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ TYPO ============ */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .02em; line-height: .95; }
.section-label {
  font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--y); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .7rem;
}
.section-label::before { content: ''; width: 26px; height: 1px; background: var(--y); }
.section-title { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; }
.section-sub { font-size: 1.05rem; color: #b5b5b5; max-width: 640px; margin-bottom: 3rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.8rem; font-family: 'Oswald', sans-serif;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  border-radius: 999px; transition: transform .25s, background .25s, color .25s;
}
.btn-y { background: var(--y); color: var(--blk); }
.btn-y:hover { transform: translateY(-2px); background: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--blk); transform: translateY(-2px); }
.btn-blk { background: var(--blk); color: #fff; }
.btn-blk:hover { background: #fff; color: var(--blk); transform: translateY(-2px); }
.btn-sm { padding: .65rem 1.1rem; font-size: .72rem; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0; transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(12px); padding: .7rem 0; border-color: rgba(255,255,255,.06); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 36px; width: auto; }
.logo-mark {
  width: 38px; height: 38px; background: var(--y); color: var(--blk);
  display: grid; place-items: center; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; border-radius: 6px;
}
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: .08em; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: 'Oswald', sans-serif; font-size: .82rem;
  letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: .3rem 0;
}
.nav-links a::after { content:''; position: absolute; left:0; bottom:0; width:0; height:1px; background: var(--y); transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-socials { display: flex; gap: .5rem; }
.nav-socials a {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Oswald', sans-serif; font-size: .62rem; letter-spacing: .05em;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-socials a:hover { background: var(--y); color: var(--blk); border-color: var(--y); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; transition: .25s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,.98); backdrop-filter: blur(14px);
    flex-direction: column; padding: 2rem; gap: 1.2rem;
    transform: translateX(100%); transition: transform .35s;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-hamburger { display: flex; }
  .nav-socials { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; padding: 9rem 0 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, #1a1a1a 0%, #0a0a0a 60%) center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.2) 0%, rgba(10,10,10,.85) 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-watermark {
  position: absolute; right: -4%; bottom: -8%; z-index: 1;
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(18rem, 40vw, 44rem);
  color: rgba(255,255,255,.025); letter-spacing: -.02em; line-height: .8;
  user-select: none; pointer-events: none;
}
.hero-watermark img { width: clamp(18rem, 40vw, 44rem); opacity: .04; }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.hero-kicker {
  font-family: 'Oswald', sans-serif; font-size: .85rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--y); margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.hero-kicker::before { content: ''; width: 40px; height: 1px; background: var(--y); }
.hero-h1 { font-size: clamp(5.5rem, 14vw, 13rem); line-height: .88; margin-bottom: 2rem; }
.hero-h1 .hl { display: block; }
.hero-acc { color: var(--y); font-style: normal; }
.hl-outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}
.hero-sub { max-width: 560px; font-size: 1.1rem; color: #b5b5b5; margin-bottom: 2.5rem; }
.hero-hours {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .55rem 1.1rem; margin-bottom: 1.8rem;
  background: rgba(249,225,27,.08); border: 1px solid rgba(249,225,27,.3);
  border-radius: 999px;
  font-family: 'Oswald', sans-serif; font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; color: #fff;
}
.hero-hours strong { color: var(--y); font-weight: 700; letter-spacing: .1em; }
.hero-hours-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: 'Oswald', sans-serif; font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.5); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero-scroll span {
  width: 1px; height: 40px; background: rgba(255,255,255,.3); position: relative; overflow: hidden;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 1px; height: 40px;
  background: var(--y); animation: scrollDot 2s infinite;
}
@keyframes scrollDot { 0% { top: -40px; } 100% { top: 40px; } }

/* ============ TICKER ============ */
.ticker {
  background: var(--y); color: var(--blk);
  padding: 1.2rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--blk); border-bottom: 1px solid var(--blk);
}
.ticker-track {
  display: inline-flex; animation: tickerScroll 40s linear infinite;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .08em;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ STATS ============ */
.stats { padding: 5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); color: var(--y); line-height: 1; }
.stat-lbl { font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #888; margin-top: .5rem; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ============ OVER ============ */
.over { padding: 7rem 0; }
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.over-img-wrap { position: relative; }
.over-img {
  aspect-ratio: 4/5; background: linear-gradient(135deg, #1a1a1a, #0a0a0a) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.06);
}
.over-badge {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--y); color: var(--blk); padding: 1.8rem 2.2rem;
}
.over-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; }
.over-badge-txt { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
.over-text p { color: #b5b5b5; margin-bottom: 1rem; }
.over-text .btn { margin-top: 1.5rem; }
@media (max-width: 900px) { .over-grid { grid-template-columns: 1fr; gap: 3rem; } .over-badge { right: 20px; } }

/* ============ HYROX ============ */
.hyrox { padding: 7rem 0; background: var(--dk); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.hyrox-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.06); margin-top: 2rem; }
.hyrox-cell { background: var(--dk); padding: 2rem; transition: background .3s; }
.hyrox-cell:hover { background: var(--dk2); }
.hyrox-num { font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .2em; color: var(--y); margin-bottom: .8rem; }
.hyrox-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: .4rem; }
.hyrox-dist { font-family: 'Oswald', sans-serif; font-size: .78rem; color: #888; letter-spacing: .1em; }
@media (max-width: 900px) { .hyrox-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ YOUNGSTARS ============ */
.youngstars {
  padding: 7rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255,255,255,.04);
}
.youngstars::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,225,27,.08) 0%, transparent 70%);
  pointer-events: none;
}
.youngstars-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.youngstars-text p { color: #b5b5b5; margin-bottom: 1rem; }
.youngstars-text .btn { margin-top: 1rem; }
.youngstars-visual { display: flex; flex-direction: column; gap: 1rem; }
.ys-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.06);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.ys-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.4) 100%);
  pointer-events: none;
}
.ys-photo-empty {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(249,225,27,.2); line-height: .9; text-align: center; letter-spacing: .05em;
}
.youngstars-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
}
.ys-fact {
  background: var(--dk); border: 1px solid rgba(255,255,255,.06);
  padding: 1.2rem 1rem; transition: transform .3s, border-color .3s;
  text-align: center;
}
.ys-fact:hover { transform: translateY(-4px); border-color: rgba(249,225,27,.3); }
.ys-fact-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  color: var(--y); line-height: 1; margin-bottom: .4rem;
}
.ys-fact-lbl {
  font-family: 'Oswald', sans-serif; font-size: .62rem;
  letter-spacing: .15em; text-transform: uppercase; color: #888;
}
@media (max-width: 900px) {
  .youngstars-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 500px) {
  .youngstars-facts { grid-template-columns: 1fr; }
}

/* ============ PERSONAL TRAINING ============ */
.personal {
  padding: 7rem 0; position: relative; overflow: hidden;
  background: var(--blk);
  border-top: 1px solid rgba(255,255,255,.04);
}
.personal::before {
  content: ''; position: absolute; top: 10%; left: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,225,27,.06) 0%, transparent 70%);
  pointer-events: none;
}
.personal-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.personal-visual { position: relative; }
.pt-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.06);
  display: grid; place-items: center;
  position: relative;
}
.pt-photo-empty {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem, 10vw, 8rem);
  color: rgba(249,225,27,.2); line-height: 1;
}
.pt-price {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--y); color: var(--blk);
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 50px rgba(249,225,27,.15);
}
.pt-price-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1; }
.pt-price-sub { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
.personal-text p { color: #b5b5b5; margin-bottom: 1rem; }
.personal-text .btn { margin-top: 1.5rem; }
@media (max-width: 900px) {
  .personal-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pt-price { right: 20px; bottom: -25px; }
}

/* ============ ONLINE COACHING ============ */
.online {
  padding: 7rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #161616 100%);
  border-top: 1px solid rgba(255,255,255,.04);
}
.online::before {
  content: ''; position: absolute; top: -15%; right: -10%;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,225,27,.07) 0%, transparent 70%);
  pointer-events: none;
}
.online-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.online-text p { color: #b5b5b5; margin-bottom: 1rem; }
.online-text .btn { margin-top: 1.5rem; }
.online-visual { position: relative; }
.ol-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.06);
  display: grid; place-items: center;
  position: relative;
}
.ol-photo-empty {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 8vw, 6rem);
  color: rgba(249,225,27,.2); letter-spacing: .05em;
}
.ol-device {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; gap: .35rem;
}
.ol-device-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(249,225,27,.5);
  animation: olPulse 2s infinite;
}
.ol-device-dot:nth-child(2) { animation-delay: .2s; }
.ol-device-dot:nth-child(3) { animation-delay: .4s; }
@keyframes olPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
.ol-price {
  position: absolute; top: 2rem; right: -20px;
  background: var(--y); color: var(--blk);
  padding: 1.3rem 1.8rem;
  box-shadow: 0 20px 50px rgba(249,225,27,.15);
}
.ol-price-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; line-height: 1; }
.ol-price-sub { font-family: 'Oswald', sans-serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 900px) {
  .online-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ol-price { right: 20px; }
}

/* ============ TRAININGEN ============ */
.trainingen { padding: 7rem 0; }
.train-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.train-card {
  background: var(--dk); padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform .35s, background .35s;
  border: 1px solid rgba(255,255,255,.04);
}
.train-card::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--y) 100%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.train-card:hover { transform: translateY(-6px); background: var(--dk2); }
.train-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--y); opacity: .5; line-height: 1; margin-bottom: 1.5rem; }
.train-tag {
  display: inline-block; font-family: 'Oswald', sans-serif; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--y);
  padding: .3rem .7rem; border: 1px solid rgba(249,225,27,.35); border-radius: 999px;
  margin-bottom: 1rem;
}
.train-name { font-size: 1.9rem; margin-bottom: .7rem; }
.train-desc { font-size: .92rem; color: #b5b5b5; margin-bottom: 1.2rem; }
.train-link { font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--y); }
@media (max-width: 1000px) { .train-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .train-grid { grid-template-columns: 1fr; } }

/* ============ ROOSTER ============ */
.rooster { padding: 6rem 0; background: var(--dk); }
.rooster-embed {
  background: var(--dk2); border: 1px solid rgba(255,255,255,.06);
  margin-top: 2rem; overflow: hidden;
}
.rooster-empty { display: grid; place-items: center; height: 100%; color: #666; font-family: 'Oswald', sans-serif; letter-spacing: .15em; text-transform: uppercase; font-size: .85rem; }

/* ============ PROEFLES ============ */
.proefles { padding: 7rem 0; }
.proefles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.perks { list-style: none; margin: 1.5rem 0 2rem; }
.perks li {
  padding: .7rem 0 .7rem 2rem; position: relative; color: #d5d5d5;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.perks li::before {
  content: '✓'; position: absolute; left: 0; top: .7rem;
  width: 20px; height: 20px; background: var(--y); color: var(--blk);
  display: grid; place-items: center; font-size: .7rem; border-radius: 50%;
}
@media (max-width: 900px) { .proefles-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ============ FORM ============ */
.form { display: flex; flex-direction: column; gap: 1rem; background: var(--dk); padding: 2rem; border: 1px solid rgba(255,255,255,.05); }
.form label { display: flex; flex-direction: column; gap: .4rem; font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: #b5b5b5; }
.form input, .form select, .form textarea {
  background: var(--dk2); border: 1px solid rgba(255,255,255,.06);
  color: #fff; padding: .85rem 1rem; font-family: 'DM Sans', sans-serif;
  font-size: .95rem; transition: border-color .25s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--y); }
.form .btn { align-self: flex-start; margin-top: .5rem; }
.form-msg { font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: .1em; color: var(--y); min-height: 1em; }

/* ============ COACHES ============ */
.coaches { padding: 7rem 0; background: var(--dk); }
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.coach-card { background: var(--dk2); border: 1px solid rgba(255,255,255,.04); overflow: hidden; transition: transform .3s; }
.coach-card:hover { transform: translateY(-4px); }
.coach-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a2a2a, #111) center/cover no-repeat;
  display: grid; place-items: center; position: relative;
}
.coach-init { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(249,225,27,.25); }
.coach-info { padding: 1.8rem; }
.coach-info h3 { font-size: 1.8rem; margin-bottom: .3rem; }
.coach-rol { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--y); margin-bottom: .8rem; }
.coach-info p { font-size: .92rem; color: #b5b5b5; }
@media (max-width: 900px) { .coach-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { padding: 7rem 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q {
  width: 100%; text-align: left; padding: 1.5rem 0; display: flex;
  align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500;
  letter-spacing: .05em; color: #fff;
}
.faq-plus { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--y); transition: transform .3s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: #b5b5b5; transition: max-height .4s, padding .3s; padding: 0 0 0 0; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 1.5rem 0; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============ REVIEWS ============ */
.reviews { padding: 7rem 0 4rem; background: var(--dk); }
.reviews-scroll {
  display: flex; gap: 1.5rem; margin-top: 2rem; padding: 0 2rem 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.reviews-scroll::-webkit-scrollbar { height: 4px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--y); }
.review-card {
  flex: 0 0 360px; background: var(--dk2); border: 1px solid rgba(255,255,255,.05);
  padding: 2rem; scroll-snap-align: start;
}
.review-stars { color: var(--y); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-quote { font-size: 1.05rem; color: #e5e5e5; margin-bottom: 1.5rem; line-height: 1.5; }
.review-who strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .05em; }
.review-who span { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--y); }

/* ============ CTA BANNER ============ */
.cta-banner { background: var(--y); color: var(--blk); padding: 5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 4rem); max-width: 700px; }

/* ============ CONTACT ============ */
.contact { padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-block { margin-bottom: 2rem; }
.contact-block strong {
  display: block; font-family: 'Oswald', sans-serif; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--y); margin-bottom: .5rem;
}
.contact-block p { color: #d5d5d5; }
.contact-block a:hover { color: var(--y); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ============ FOOTER ============ */
.footer { background: var(--dk); border-top: 1px solid rgba(255,255,255,.05); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .08em; margin-bottom: .5rem; }
.footer-logo-img { height: 48px; margin-bottom: 1rem; }
.footer-grid strong { display: block; font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--y); margin-bottom: 1rem; }
.footer-grid a { display: block; padding: .3rem 0; color: #b5b5b5; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-socials a { display: inline-block; margin-right: 1rem; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: #666; max-width: 1280px; margin: 0 auto;
}
.footer-bar a { color: #666; }
.footer-bar a:hover { color: var(--y); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ POPUP ============ */
.popup {
  position: fixed; bottom: 2rem; left: 2rem; max-width: 360px; z-index: 200;
  background: var(--dk); border: 1px solid rgba(249,225,27,.3);
  padding: 1.8rem; transform: translateY(200%); transition: transform .5s;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.popup.show { transform: translateY(0); }
.popup-close {
  position: absolute; top: .5rem; right: .7rem; font-size: 1.5rem;
  width: 30px; height: 30px; color: #888;
}
.popup-close:hover { color: var(--y); }
.popup-tag { display: inline-block; background: var(--y); color: var(--blk); padding: .3rem .7rem; font-family: 'Oswald', sans-serif; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .8rem; }
.popup h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.popup p { color: #b5b5b5; font-size: .92rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .popup { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; } }

/* ============ LOGIN OVERLAY ============ */
.login-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center; z-index: 9998;
  backdrop-filter: blur(6px);
}
.login-overlay.show { display: flex; }
.login-box {
  background: var(--dk); padding: 2.5rem; width: 100%; max-width: 400px;
  border: 1px solid rgba(249,225,27,.2); display: flex; flex-direction: column; gap: 1rem;
}
.login-box h3 { font-size: 2rem; margin-bottom: .5rem; }
.login-box input {
  background: var(--dk2); border: 1px solid rgba(255,255,255,.1);
  padding: 1rem; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 1rem;
}
.login-box input:focus { outline: none; border-color: var(--y); }
.btn-close { background: transparent; color: #888; padding: .5rem; font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.btn-close:hover { color: var(--y); }
.login-err { color: #ff6b6b; font-family: 'Oswald', sans-serif; font-size: .8rem; min-height: 1em; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ MOBILE POLISH ============ */
@media (max-width: 700px) {
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-h1 { font-size: clamp(3.2rem, 13vw, 5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-kicker { font-size: .72rem; letter-spacing: .25em; }
  .hero-hours { font-size: .68rem; letter-spacing: .12em; padding: .5rem .9rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-watermark { font-size: clamp(14rem, 60vw, 20rem); }

  .ticker-track { font-size: 1.1rem; }

  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-label { font-size: .7rem; letter-spacing: .25em; }

  .over, .hyrox, .trainingen, .rooster, .proefles, .coaches,
  .faq, .reviews, .contact, .youngstars, .personal, .online {
    padding: 4rem 0;
  }
  .stats { padding: 3rem 0; }

  .over-badge { padding: 1.2rem 1.5rem; right: 10px; bottom: -20px; }
  .over-badge-num { font-size: 2.5rem; }

  .pt-price, .ol-price { position: static; display: inline-block; margin-top: 1rem; padding: 1rem 1.4rem; }
  .pt-price-num, .ol-price-num { font-size: 2rem; }

  .ys-badge { font-size: 1.8rem; padding: 1.4rem; }
  .ys-photo-empty, .ol-photo-empty, .pt-photo-empty { font-size: 3rem; }

  .cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; text-align: left; }
  .cta-inner h2 { font-size: 2rem; }

  .reviews-scroll { padding: 0 1.25rem 2rem; }
  .review-card { flex: 0 0 85%; padding: 1.5rem; }

  .form { padding: 1.5rem; }
  .form .btn { width: 100%; justify-content: center; }

  .nav-inner { padding: 0 1.25rem; gap: .5rem; }
  .logo-text { display: none; }
  .nav .btn-sm { padding: .55rem .9rem; font-size: .68rem; }

  .footer-bar { padding: 1rem 1.25rem; flex-direction: column; gap: .5rem; text-align: center; }
  .footer-logo-img { height: 38px; }

  .popup { padding: 1.4rem; }
  .popup h3 { font-size: 1.3rem; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 3rem; }
  .btn { padding: .85rem 1.4rem; font-size: .72rem; letter-spacing: .15em; }
  .wrap { padding: 0 1rem; }
}

/* Touch devices: larger tap targets */
@media (hover: none) and (pointer: coarse) {
  .faq-q { padding: 1.25rem 0; min-height: 56px; }
  .nav-links a { padding: .7rem 0; }
  button, .btn { min-height: 44px; }
}
