/* =========================================================
   FLORIEN KRIJNEN — styles
   Palette: black · off-white · volt green · redline orange
   Type:    Anton (display) · Syne (head) · Manrope (body) · Space Mono (mono)
   ========================================================= */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #0e0e11;
  --surface:   #161619;
  --surface-2: #1e1e23;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);
  --text:      #f5f5f6;
  --muted:     #9a9aa3;
  --volt:      #c8ff00;
  --volt-dim:  #aadb00;
  --redline:   #ff4d2e;
  --blush:     #ff7a9c;

  --f-display: 'Anton', Impact, sans-serif;
  --f-head:    'Syne', sans-serif;
  --f-body:    'Manrope', system-ui, sans-serif;
  --f-mono:    'Space Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --r: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--volt); color: #0a0a0b; }

/* ---------- helpers ---------- */
.muted { color: var(--muted); }
.small { font-size: .92rem; }
.hl {
  color: var(--volt);
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 1rem;
}
section { position: relative; padding: clamp(70px, 11vw, 160px) var(--pad); }
h2 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.02em;
}

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; width: min(280px, 70vw); }
.loader__gauge { width: 100%; height: auto; overflow: visible; }
.loader__track { fill: none; stroke: var(--line); stroke-width: 6; stroke-linecap: round; }
.loader__fill {
  fill: none; stroke: var(--volt); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 251; stroke-dashoffset: 251;
}
.loader__needle { stroke: var(--redline); stroke-width: 4; stroke-linecap: round; transform-origin: 100px 110px; transform: rotate(-90deg); }
.loader__hub { fill: var(--text); }
.loader__count { font-family: var(--f-display); font-size: 2.4rem; margin-top: -.2em; }
.loader__count small { font-size: 1rem; color: var(--muted); }
.loader__label { font-family: var(--f-mono); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .4em; }

/* =========================================================
   RPM SCROLL BAR + CURSOR
   ========================================================= */
.rpm { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200; background: transparent; }
.rpm__bar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--volt), var(--redline));
  transition: width .1s linear;
}
.cursor {
  position: fixed; top: 0; left: 0; width: 30px; height: 30px;
  border: 1.5px solid var(--volt); border-radius: 50%;
  transform: translate(-50%,-50%); pointer-events: none; z-index: 9998;
  transition: width .2s var(--ease), height .2s var(--ease), background .2s, opacity .3s, border-color .2s;
  mix-blend-mode: difference; opacity: 0;
}
.cursor.is-hover { width: 54px; height: 54px; background: rgba(200,255,0,.15); }
.cursor.is-down { width: 20px; height: 20px; }
@media (hover: none) { .cursor { display: none; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 18px var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px var(--pad);
}
.nav__brand { display: flex; align-items: center; gap: .55rem; font-family: var(--f-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.nav__bird { width: 30px; height: 30px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; transition: transform .3s var(--ease), background .3s; }
.nav__bird svg { width: 20px; height: 20px; fill: var(--volt); }
.nav__bird:hover { transform: rotate(-8deg) scale(1.05); }
.bird__eye { fill: var(--bg) !important; }
.nav__glyph { color: var(--volt); margin: 0 .05em; }
.nav__name { white-space: nowrap; }

.nav__links { display: flex; gap: 1.6rem; font-weight: 600; font-size: .98rem; }
.nav__links a { position: relative; padding: 4px 0; color: var(--muted); transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--volt); transition: width .3s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__social { display: flex; gap: .5rem; }
.nav__social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  font-family: var(--f-mono); font-size: .8rem; font-weight: 700; color: var(--muted);
  transition: all .25s var(--ease);
}
.nav__social a:hover { background: var(--volt); color: #0a0a0b; border-color: var(--volt); transform: translateY(-2px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; justify-content: center; align-items: center; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 15px 26px; border-radius: 100px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  will-change: transform; cursor: pointer; white-space: nowrap;
}
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--primary { background: var(--volt); color: #0a0a0b; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.btn--primary:hover { box-shadow: 0 10px 28px rgba(0,0,0,.45); transform: translateY(-3px); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: var(--surface); border-color: var(--volt); transform: translateY(-3px); }
.btn__code {
  font-family: var(--f-mono); font-size: .78rem; font-weight: 700;
  background: rgba(10,10,11,.18); padding: 3px 9px; border-radius: 6px; letter-spacing: .04em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 120px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr minmax(260px, 400px); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__photo { aspect-ratio: 4/5; border-radius: var(--r); }
.hero__photo img { transition: opacity .6s var(--ease); }
.hero__kicker { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-mono); font-size: clamp(.7rem,1.6vw,.9rem); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: clamp(1rem,3vw,1.8rem); }
.hero__kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--volt); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.hero__title { font-family: var(--f-display); font-weight: 400; line-height: .84; letter-spacing: -.01em; text-transform: uppercase; font-size: clamp(2.8rem, 8.5vw, 7.4rem); }
.hero__line { display: block; overflow: hidden; }
.hero__line .word { display: inline-block; transform: translateY(110%); }
.hero.is-in .hero__line:nth-child(1) .word { animation: rise .9s var(--ease) .1s forwards; }
.hero.is-in .hero__line:nth-child(2) .word { animation: rise .9s var(--ease) .24s forwards; }
@keyframes rise { to { transform: translateY(0); } }
.hero__glyph { font-style: normal; color: var(--volt); font-size: .5em; margin-left: .1em; display: inline-block; cursor: pointer; transition: transform .3s var(--ease); -webkit-user-select: none; user-select: none; }
.hero__glyph:hover { transform: translateY(-8px) rotate(-12deg); }

.hero__sub { max-width: 620px; font-size: clamp(1rem, 2.4vw, 1.3rem); color: #d4d4d8; margin: clamp(1.4rem,3vw,2rem) 0 clamp(1.8rem,4vw,2.6rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.hero__scroll svg { width: 20px; height: 20px; fill: none; stroke: var(--volt); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* =========================================================
   TICKER
   ========================================================= */
.ticker { background: var(--volt); color: #0a0a0b; padding: 14px 0; overflow: hidden; border-top: 1px solid #0a0a0b; border-bottom: 1px solid #0a0a0b; }
.ticker__track { display: inline-flex; align-items: center; gap: 2rem; white-space: nowrap; font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; animation: marquee 26s linear infinite; will-change: transform; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__dot { font-size: .6rem; opacity: .6; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* =========================================================
   STATS
   ========================================================= */
.stats { padding-block: clamp(50px,8vw,90px); }
.stats__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,3vw,2.5rem); }
.stat { text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(180deg, var(--surface), transparent); transition: transform .3s var(--ease), border-color .3s; }
.stat:hover { transform: translateY(-5px); border-color: var(--volt); }
.stat__num { display: block; font-family: var(--f-display); font-size: clamp(2.6rem,7vw,4.4rem); line-height: 1; color: var(--volt); }
.stat__label { display: block; margin-top: .5rem; font-size: .92rem; color: var(--muted); }

/* =========================================================
   OVER / ABOUT
   ========================================================= */
.over { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,6vw,6rem); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.over__media { position: relative; isolation: isolate; }
.over__media .ph { aspect-ratio: 4/5; border-radius: var(--r); }
.over__sticker {
  position: absolute; bottom: -16px; right: -10px; rotate: -7deg; z-index: 5;
  background: var(--redline); color: #0a0a0b; font-family: var(--f-mono); font-weight: 700;
  font-size: .8rem; padding: 8px 14px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.over__text h2 { margin-bottom: 1.3rem; }
.over__text p { color: #cfcfd4; margin-bottom: 1.1rem; max-width: 52ch; }
.pullquote { font-family: var(--f-head); font-weight: 700; font-size: clamp(1.3rem,3vw,1.9rem); line-height: 1.2; color: var(--text); border-left: 3px solid var(--volt); padding-left: 1.2rem; margin: 1.6rem 0; }
.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.tags li { font-family: var(--f-mono); font-size: .82rem; padding: 6px 14px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); transition: all .25s; }
.tags li:hover { color: #0a0a0b; background: var(--volt); border-color: var(--volt); }

/* =========================================================
   PLACEHOLDER (.ph)
   ========================================================= */
.ph { position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(200,255,0,.06), transparent 60%),
    repeating-linear-gradient(45deg, #1c1c22 0 14px, #232329 14px 28px);
  border: 1px dashed rgba(255,255,255,.16);
}
.ph::before {
  content: "📷"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(2rem,5vw,3.4rem); opacity: .9; z-index: 1; padding-bottom: 1.4em;
  filter: grayscale(.3);
}
.ph::after {
  content: "voeg toe · " attr(data-label); position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: .7rem; color: #b7b7c0; z-index: 2; text-align: center; max-width: 86%;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.14); padding: 4px 11px; border-radius: 12px;
}
.ph img { position: relative; z-index: 3; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.ph.loaded { border-color: transparent; }
.ph.loaded img { opacity: 1; }
.ph.loaded::before, .ph.loaded::after { display: none; }

/* =========================================================
   WERK / GALLERY
   ========================================================= */
.werk { max-width: var(--maxw); margin: 0 auto; }
.werk__head { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(2rem,5vw,3.5rem); }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter { font-family: var(--f-mono); font-size: .85rem; padding: 9px 18px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); transition: all .25s var(--ease); }
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.is-active { background: var(--volt); color: #0a0a0b; border-color: var(--volt); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: clamp(.7rem,1.5vw,1.1rem); grid-auto-flow: dense; }
.card { border-radius: var(--r); cursor: pointer; }
.card.tall { grid-row: span 2; }
.card.wide { grid-column: span 2; }
.card img { transition: transform .7s var(--ease), opacity .6s var(--ease); }
.card:hover img { transform: scale(1.07); }
.card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 1.6rem 1.1rem .9rem; font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  background: linear-gradient(transparent, rgba(10,10,11,.85)); color: #fff;
  transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.card:hover figcaption { transform: translateY(0); opacity: 1; }
.card.is-hidden { display: none; }
.card.is-dim { opacity: .18; filter: grayscale(1); pointer-events: none; }

/* =========================================================
   PROMO / GYMSHARK
   ========================================================= */
.promo { background: var(--bg-2); border-block: 1px solid var(--line); text-align: center; }
.promo__inner { max-width: 760px; margin: 0 auto; }
.promo__lead { font-size: clamp(1.05rem,2.4vw,1.3rem); color: #d4d4d8; margin: 1.4rem auto 2.4rem; max-width: 56ch; }
.promo__codebox { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: stretch; }
.code {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .15rem;
  padding: 16px 28px; border: 2px dashed var(--volt); border-radius: 14px; background: rgba(200,255,0,.05);
  transition: transform .25s var(--ease), background .25s; text-align: left;
}
.code:hover { background: rgba(200,255,0,.12); transform: translateY(-3px); }
.code__label { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.code__value { font-family: var(--f-display); font-size: clamp(1.8rem,5vw,2.6rem); line-height: 1; color: var(--volt); letter-spacing: .02em; }
.code__hint { font-family: var(--f-mono); font-size: .68rem; color: var(--muted); }
.code.copied .code__hint { color: var(--volt); }
.promo__fineprint { margin-top: 1.6rem; font-size: .82rem; color: var(--muted); }

/* =========================================================
   VOLG / SOCIALS
   ========================================================= */
.volg { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.volg h2 { margin-bottom: clamp(2rem,5vw,3.5rem); }
.volg__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,1.6rem); text-align: left; }
.social {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: .4rem;
  padding: clamp(1.6rem,4vw,2.6rem); border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); transition: transform .35s var(--ease), border-color .35s, background .35s; min-height: 200px;
}
.social:hover { transform: translateY(-6px); border-color: var(--volt); }
.social__top { display: flex; justify-content: space-between; align-items: center; }
.social__plat { font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; }
.social__arrow { font-size: 1.4rem; color: var(--volt); transition: transform .3s var(--ease); }
.social:hover .social__arrow { transform: translate(4px,-4px); }
.social__handle { font-family: var(--f-mono); color: var(--volt); }
.social__meta { color: var(--muted); margin-top: auto; }
.social__bird { position: absolute; right: -10px; bottom: -30px; font-size: 9rem; color: var(--line); z-index: 0; pointer-events: none; transition: transform .5s var(--ease); }
.social:hover .social__bird { transform: rotate(-12deg) scale(1.05); }
.social > *:not(.social__bird) { position: relative; z-index: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { text-align: center; }
.contact__inner { max-width: 740px; margin: 0 auto; }
.contact__lead { font-size: clamp(1.05rem,2.4vw,1.25rem); color: #d4d4d8; margin: 1.4rem auto 2.4rem; max-width: 52ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: clamp(40px,7vw,70px) var(--pad) 30px; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__top { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; max-width: var(--maxw); margin: 0 auto 2rem; }
.footer__brand { font-family: var(--f-head); font-weight: 800; font-size: 1.6rem; }
.footer__social { display: flex; gap: 1.4rem; font-weight: 600; }
.footer__social a { color: var(--muted); transition: color .25s; }
.footer__social a:hover { color: var(--volt); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; max-width: var(--maxw); margin: 0 auto; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer__joke { font-family: var(--f-mono); font-size: .8rem; }
.footer__top-btn { font-family: var(--f-mono); font-size: .8rem; color: var(--muted); transition: color .25s; }
.footer__top-btn:hover { color: var(--volt); }
.footer__hint { max-width: var(--maxw); margin: 1.6rem auto 0; text-align: center; font-family: var(--f-mono); font-size: .72rem; color: rgba(255,255,255,.25); }
.footer__hint kbd { display: inline-block; padding: 1px 6px; margin: 0 1px; border: 1px solid var(--line-2); border-radius: 4px; font-size: .7rem; }

/* =========================================================
   TOASTS
   ========================================================= */
.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9990; display: flex; flex-direction: column; gap: .6rem; align-items: center; pointer-events: none; width: max-content; max-width: 90vw; }
.toast {
  pointer-events: auto; background: var(--surface-2); color: var(--text);
  border: 1px solid var(--line-2); border-left: 3px solid var(--volt);
  padding: 12px 18px; border-radius: 12px; font-weight: 600; font-size: .95rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: toastIn .4s var(--ease), toastOut .4s var(--ease) 3.4s forwards;
}
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } }
@keyframes toastOut { to { transform: translateY(20px); opacity: 0; } }

/* =========================================================
   EASTER EGGS — bike / bird / beast
   ========================================================= */
.flyer { position: fixed; z-index: 9995; pointer-events: none; font-size: 2.4rem; will-change: transform; }
.bike { position: fixed; bottom: 8px; z-index: 600; font-size: 2.2rem; cursor: pointer; pointer-events: auto; will-change: transform; -webkit-user-select: none; user-select: none; }

.beast { position: fixed; inset: 0; z-index: 9997; display: grid; place-items: center; background: rgba(10,10,11,.86); opacity: 0; visibility: hidden; transition: opacity .3s; text-align: center; }
.beast.is-on { opacity: 1; visibility: visible; }
.beast__text { font-family: var(--f-display); font-size: clamp(4rem,20vw,16rem); line-height: .85; color: var(--volt); text-shadow: 0 0 60px rgba(200,255,0,.6); animation: beatGlitch .15s steps(2) infinite; }
.beast__sub { font-family: var(--f-mono); margin-top: 1rem; color: var(--text); }
@keyframes beatGlitch { 0%{ transform: translate(0,0);} 50%{ transform: translate(-3px,2px);} 100%{ transform: translate(3px,-2px);} }
body.quake { animation: shake .4s var(--ease) infinite; }
body.beast-mode .hero__glow { background: radial-gradient(circle, rgba(255,77,46,.4), transparent 60%); }
body.beast-mode .ticker__track { animation-duration: 7s; }
body.beast-mode .stat__num, body.beast-mode .hl { color: var(--redline); text-shadow: 0 0 30px rgba(255,77,46,.5); }
@keyframes shake { 0%,100%{ transform: translate(0,0);} 25%{ transform: translate(2px,-2px);} 75%{ transform: translate(-2px,2px);} }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9994; display: grid; place-items: center; padding: 5vw;
  background: rgba(6,6,7,.92); backdrop-filter: blur(8px); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.is-on { opacity: 1; }
.lightbox__fig { max-width: 900px; width: 100%; transform: scale(.96); transition: transform .3s var(--ease); }
.lightbox.is-on .lightbox__fig { transform: scale(1); }
.lightbox__fig img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r); }
.lightbox__ph { aspect-ratio: 4/3; display: grid; place-content: center; justify-items: center; gap: .6rem; font-size: 3rem;
  background: repeating-linear-gradient(45deg, var(--surface) 0 16px, var(--surface-2) 16px 32px); border-radius: var(--r); color: var(--muted); }
.lightbox__ph span { font-family: var(--f-mono); font-size: .85rem; }
.lightbox__fig figcaption { margin-top: 1rem; font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; text-align: center; }
.lightbox__close { position: fixed; top: 24px; right: 30px; font-size: 2.4rem; line-height: 1; color: var(--text); width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); transition: background .25s, color .25s; }
.lightbox__close:hover { background: var(--volt); color: #0a0a0b; }

/* =========================================================
   DRIE WOORDEN (vrolijk · lief · gek)
   ========================================================= */
.three { margin: 1.8rem 0 .4rem; }
.three__label { display: block; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.three__words { display: flex; flex-wrap: wrap; gap: .4rem 1.3rem; font-family: var(--f-display); font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1; text-transform: uppercase; }
.three__words .w { cursor: default; transition: transform .25s var(--ease); animation: floaty 3.4s ease-in-out infinite; }
.three__words .w:nth-child(2) { animation-delay: .5s; }
.three__words .w:nth-child(3) { animation-delay: 1s; }
.three__words .w:hover { transform: translateY(-7px) rotate(-3deg) scale(1.05); }
.w--joy  { color: var(--volt); }
.w--love { color: var(--blush); }
.w--mad  { color: var(--redline); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav__links, .nav__social { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(10,10,11,.96); backdrop-filter: blur(14px); padding: 1rem var(--pad) 2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 16px 0; font-size: 1.3rem; border-bottom: 1px solid var(--line); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { order: -1; max-width: 260px; margin: 0 auto; aspect-ratio: 4/5; }
  .over { grid-template-columns: 1fr; }
  .over__media { max-width: 440px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .card.wide { grid-column: span 2; }
  .volg__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .card.wide, .card.tall { grid-column: auto; grid-row: auto; }
  .footer__bottom { justify-content: flex-start; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .1ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__line .word { transform: none; }
  .cursor { display: none; }
}
