/* ===================================================================
   FoxFit Family Festival
   Bold screenprint / sportsposter-stijl.
   Palette uit de poster-beelden: petrol-blauw, gouden baan, atletisch
   groen, warm bruin, cream. Stoere display-koppen + textuur.
   =================================================================== */

:root {
  /* Brand (uit de poster-beelden) */
  --teal-900: #103238;
  --teal-700: #15616d;
  --teal-600: #1a7280;
  --teal-500: #228c9b;
  --gold:      #e8a02a;
  --gold-deep: #cf7f1e;
  --orange:    #e0702e;
  --green:     #4f9d4a;
  --green-br:  #6cbf4f;
  --brown:     #7c4a26;
  --cream:     #f7edd6;
  --cream-soft:#f0e1c2;
  --ink:       #16282b;
  --ink-soft:  #4f6364;

  --shadow-hard: 6px 6px 0 var(--teal-900);
  --shadow-hard-sm: 4px 4px 0 var(--teal-900);
  --shadow-soft: 0 18px 40px -20px rgba(16,50,56,.5);

  --font-display: "Anton", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtiele screenprint-korrel over alles */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1; letter-spacing: .01em; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── Bunting ─── */
.bunting { position: fixed; top: 0; left: 0; right: 0; height: 42px; z-index: 120; pointer-events: none; }
.bunting__svg { width: 100%; height: 100%; }

/* ─── NAV ─── */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 110; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 9px 12px 9px 18px;
  box-shadow: var(--shadow-hard-sm);
}
.nav__logo { display: flex; align-items: center; gap: 9px; }
.nav__logo-mark { font-size: 24px; line-height: 1; }
.nav__logo-text { font-family: var(--font-display); font-size: 21px; letter-spacing: .02em; text-transform: uppercase; }
.nav__logo-accent { color: var(--orange); }
.nav__links { display: none; gap: 26px; }
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__link { font-size: 15px; font-weight: 800; color: var(--teal-700); transition: color .15s; }
.nav__link:hover { color: var(--orange); }
.nav__cta {
  font-family: var(--font-display); font-size: 16px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  border: 2.5px solid var(--ink); border-radius: 12px;
  padding: 8px 18px; box-shadow: var(--shadow-hard-sm);
  transition: transform .12s, box-shadow .12s;
}
.nav__cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--teal-900); }
.nav__cta:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--teal-900); }

/* ─── Buttons (poster hard-shadow) ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-size: 18px; letter-spacing: .03em; text-transform: uppercase;
  padding: 14px 28px; border: 2.5px solid var(--ink); border-radius: 14px; cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn--primary { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--primary:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--teal-900); background: #f2ac38; }
.btn--primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--teal-900); }
.btn--ghost { background: var(--cream); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--ghost:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--teal-900); background: #fff; }
.btn--ghost:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--teal-900); }
.btn--lg { font-size: 20px; padding: 17px 32px; width: 100%; }
.btn--on-teal { box-shadow: 6px 6px 0 #0a2024; }
.btn--on-teal:hover { box-shadow: 9px 9px 0 #0a2024; }

/* ─── Eyebrow / pills ─── */
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  background: var(--gold); border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 16px; margin-bottom: 18px; box-shadow: var(--shadow-hard-sm);
}
.eyebrow--teal { background: var(--teal-600); color: var(--cream); }
.pill {
  font-size: 14px; font-weight: 800; color: var(--ink);
  background: var(--cream); border: 2px solid var(--ink);
  padding: 7px 15px; border-radius: 999px; box-shadow: 3px 3px 0 var(--teal-900);
}

/* ─── HERO ─── */
.hero { position: relative; padding: 132px 0 72px; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.hero__blob--1 { width: 460px; height: 460px; top: -120px; left: -120px; background: radial-gradient(circle, rgba(232,160,42,.45), transparent 70%); }
.hero__blob--2 { width: 420px; height: 420px; bottom: -160px; right: -100px; background: radial-gradient(circle, rgba(21,97,109,.4), transparent 70%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 940px) { .hero__inner { grid-template-columns: 1.02fr .98fr; gap: 48px; } }

.hero__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--cream); background: var(--teal-700);
  border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 7px 17px; box-shadow: var(--shadow-hard-sm); margin-bottom: 22px;
}
.hero__label-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-br); box-shadow: 0 0 0 0 rgba(108,191,79,.7); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(108,191,79,.6); } 70% { box-shadow: 0 0 0 10px rgba(108,191,79,0); } 100% { box-shadow: 0 0 0 0 rgba(108,191,79,0); } }

.hero__title { font-size: clamp(54px, 9vw, 104px); text-transform: uppercase; color: var(--ink); }
.hero__title-grad { color: var(--orange); -webkit-text-stroke: 0; }
.hero__title .line2 { color: var(--teal-700); }
.hero__sub { font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; color: var(--ink-soft); max-width: 460px; margin-top: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* Hero beeld als poster-print */
.hero__art { position: relative; }
.hero__frame {
  position: relative; border: 4px solid var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 12px 12px 0 var(--teal-700); transform: rotate(-1.6deg);
  background: var(--cream);
}
.hero__frame img { width: 100%; height: auto; display: block; }
.hero__sticker {
  position: absolute; right: -16px; top: -16px; z-index: 2;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--ink); box-shadow: var(--shadow-hard-sm);
  display: grid; place-items: center; text-align: center; transform: rotate(10deg);
  font-family: var(--font-display); text-transform: uppercase; line-height: .95; font-size: 15px; color: var(--ink);
}
.hero__sticker span { font-size: 22px; display: block; }

/* ─── Intro ─── */
.intro { padding: 28px 0 4px; }
.intro__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.intro__text { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); line-height: 1.12; text-transform: uppercase; color: var(--ink); }
.intro__text b { color: var(--orange); }

/* ─── Sections ─── */
.section { padding: 86px 0; position: relative; }
.section--teal { background: var(--teal-700); color: var(--cream); }
.section--teal .section__lead { color: rgba(247,237,214,.82); }
.section--cream2 { background: var(--cream-soft); }
.section__head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section__title { font-size: clamp(38px, 5.4vw, 68px); text-transform: uppercase; }
.section--teal .section__title { color: var(--cream); }
.section__title .accent { color: var(--gold); }
.section__lead { font-size: 18px; font-weight: 600; color: var(--ink-soft); margin-top: 14px; }

/* ─── DE BATTLES (interactief) ─── */
.battles { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .battles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .battles { grid-template-columns: repeat(3, 1fr); } }

.battle {
  text-align: left; width: 100%; cursor: pointer; font-family: var(--font-body);
  background: var(--cream); border: 3px solid var(--ink); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-hard); transition: transform .14s, box-shadow .14s;
}
.battle:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--teal-900); }
.battle.is-open { box-shadow: 9px 9px 0 var(--gold-deep); }
.battle__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--teal-700); }
.battle__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.battle:hover .battle__media img { transform: scale(1.06); }
.battle__vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-8deg);
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold); border: 3px solid var(--ink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; color: var(--ink);
  box-shadow: var(--shadow-hard-sm);
}
.battle__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; }
.battle__title { font-family: var(--font-display); font-size: 23px; text-transform: uppercase; line-height: 1; }
.battle__chev {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-700); color: var(--cream);
  display: grid; place-items: center; transition: transform .3s, background .2s; font-size: 18px; font-weight: 900;
}
.battle.is-open .battle__chev { transform: rotate(45deg); background: var(--orange); }

/* duidelijke klik-affordance */
.battle__hint {
  display: flex; align-items: center; gap: 8px; margin: 0 18px 16px;
  font-family: var(--font-display); text-transform: uppercase; font-size: 14px; letter-spacing: .04em;
  color: var(--ink); background: var(--gold); border: 2px solid var(--ink); border-radius: 999px;
  padding: 7px 14px; width: fit-content; box-shadow: 3px 3px 0 var(--teal-900);
}
.battle__hint .arrow { transition: transform .25s; }
.battle:hover .battle__hint { animation: nudge 1s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.battle.is-open .battle__hint { background: var(--green); color: #fff; }

.battle__detail { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.battle.is-open .battle__detail { max-height: 460px; }
.battle__detail-inner { padding: 4px 18px 22px; border-top: 2px dashed rgba(22,40,43,.25); margin-top: 2px; }
.battle__detail-inner p { font-weight: 600; color: var(--ink-soft); margin: 14px 0 14px; }
.battle__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.battle__tag { font-size: 13px; font-weight: 800; color: var(--teal-900); background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 4px 12px; }

/* ─── Parcours (interactieve, kronkelende route) ─── */
.route { display: grid; gap: 26px; position: relative; }
.route__hint { position: absolute; top: -6px; left: 2.5%; z-index: 6; width: 200px; pointer-events: none; transform: rotate(-6deg); }
.route__hint-text { display: block; font-family: "Caveat", cursive; font-weight: 700; font-size: clamp(26px, 3vw, 34px); line-height: .92; color: var(--cream); margin-left: 12px; text-shadow: 1px 2px 0 rgba(10,32,36,.35); }
.route__hint-arrow { width: 86px; height: 86px; color: var(--gold); margin-top: -4px; }
@media (max-width: 720px) { .route__hint { display: none; } }
.route__scroller { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; padding: 26px 4px 22px; }
.route__scroller::-webkit-scrollbar { display: none; }
.route__map { position: relative; min-width: 860px; width: 100%; margin: 0 auto; }
.route__svg { display: block; width: 100%; height: auto; overflow: visible; }
.route__trail { fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 0.1 18; opacity: .92; }
.route__fox { position: absolute; left: 0; top: 0; z-index: 4; font-size: 30px; transform: translate(-50%, -62%); pointer-events: none; filter: drop-shadow(0 3px 0 rgba(10,32,36,.45)); will-change: left, top; }
.route__stops { position: absolute; inset: 0; z-index: 2; }

.stop { position: absolute; transform: translate(-50%, -50%); width: 60px; height: 60px; padding: 0; border-radius: 50%; cursor: pointer; background: var(--cream); border: 3px solid var(--ink); box-shadow: var(--shadow-hard-sm); display: grid; place-items: center; color: var(--ink); transition: transform .15s, background .2s, box-shadow .15s; }
.stop:hover, .stop:focus-visible { transform: translate(-50%, -50%) scale(1.14); z-index: 6; outline: none; }
.stop.is-active { background: var(--gold); box-shadow: 5px 6px 0 #0a2024; }
.stop.is-active:hover, .stop.is-active:focus-visible { transform: translate(-50%, -50%) scale(1.14); }
.stop__icon { display: grid; place-items: center; pointer-events: none; }
.stop__icon svg { width: 28px; height: 28px; display: block; }
.stop__badge { position: absolute; top: -9px; right: -9px; z-index: 3; font-family: var(--font-display); font-size: 11px; color: var(--ink); background: var(--orange); border: 2px solid var(--ink); border-radius: 999px; padding: 0 6px; transform: rotate(8deg); pointer-events: none; }

.stop__tip { position: absolute; bottom: calc(100% + 14px); left: 50%; width: 200px; transform: translateX(-50%) translateY(6px); background: var(--cream); color: var(--ink); border: 2.5px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow-hard-sm); padding: 11px 13px; text-align: center; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; pointer-events: none; z-index: 8; }
.stop__tip b { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 14px; }
.stop__tip span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 4px; line-height: 1.35; }
.stop__tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 9px solid transparent; border-top-color: var(--ink); }
.stop:hover .stop__tip, .stop:focus-visible .stop__tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.stop.tip-below .stop__tip { bottom: auto; top: calc(100% + 14px); transform: translateX(-50%) translateY(-6px); }
.stop.tip-below .stop__tip::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: var(--ink); }
.stop.tip-below:hover .stop__tip, .stop.tip-below:focus-visible .stop__tip { transform: translateX(-50%) translateY(0); }

/* mobiel: route als verticale, tikbare lijst (geen horizontaal scrollen) */
@media (max-width: 720px) {
  .route__scroller { overflow-x: visible; padding: 2px 0 4px; }
  .route__map { min-width: 0; }
  .route__svg, .route__fox { display: none; }
  .route__stops { position: static; inset: auto; display: flex; flex-direction: column; gap: 12px; }

  .stop { position: static; transform: none !important; width: 100%; height: auto; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; padding: 12px 14px; border-radius: 16px; text-align: left; }
  .stop:hover, .stop:focus-visible { transform: none !important; }
  .stop.is-active { background: var(--gold); }

  .stop__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--cream-soft); border: 2.5px solid var(--ink); }
  .stop.is-active .stop__icon { background: #fff; }
  .stop__icon svg { width: 24px; height: 24px; }

  .stop__tip { order: 1; position: static; opacity: 1; visibility: visible; transform: none; pointer-events: auto; width: auto; flex: 1; min-width: 0; background: none; border: none; box-shadow: none; padding: 0; text-align: left; }
  .stop__tip::after { display: none; }
  .stop__tip b { font-size: 15px; }
  .stop__tip span { font-size: 12.5px; margin-top: 2px; }

  .stop__badge { order: 2; position: static; transform: rotate(0deg); margin-left: auto; align-self: center; flex-shrink: 0; }
}

/* inclusiviteit-callout */
.inclus { display: flex; align-items: center; gap: 16px; max-width: 760px; margin: 4px auto 0; background: var(--cream); color: var(--ink); border: 3px solid var(--ink); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-hard-sm); }
.inclus__emoji { font-size: 34px; flex-shrink: 0; }
.inclus p { font-weight: 600; font-size: 16px; }
.inclus b { font-family: var(--font-display); text-transform: uppercase; }

/* nettere icoontjes in het detail-paneel + voor-wie */
.ev__big svg { width: 60px; height: 60px; color: var(--gold-deep); }
.forwho__ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); border: 2.5px solid var(--ink); display: grid; place-items: center; color: var(--ink); box-shadow: 3px 3px 0 rgba(16,50,56,.18); }
.forwho__ico svg { width: 21px; height: 21px; }

/* ─── Afsluiter (van ons gezin) ─── */
.closing { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 880px) { .closing { grid-template-columns: .85fr 1.15fr; gap: 56px; } }
.closing__art .hero__frame { transform: rotate(-1.6deg); box-shadow: 12px 12px 0 var(--teal-700); max-width: 380px; margin: 0 auto; }
.closing__text { font-size: 18px; font-weight: 600; color: var(--ink-soft); margin-top: 16px; }

/* parcours: strakker boven de route + confetti bij de finish */
#parcours .section__head { margin-bottom: 26px; }
.confetti { position: fixed; inset: 0; z-index: 9998; pointer-events: none; overflow: hidden; }
.confetti i { position: absolute; top: -24px; width: 10px; height: 14px; opacity: .95; animation-name: confFall; animation-timing-function: cubic-bezier(.3,.55,.55,1); animation-fill-mode: forwards; }
@keyframes confFall { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(112vh) rotate(700deg); opacity: 1; } }

/* detail-paneel */
.ev { display: grid; grid-template-columns: 1fr; overflow: hidden; background: var(--cream); color: var(--ink); border: 3px solid var(--ink); border-radius: 22px; box-shadow: var(--shadow-hard); animation: pop .4s cubic-bezier(.2,.9,.3,1.2); }
@media (min-width: 760px) { .ev--img { grid-template-columns: 1.05fr 1fr; } }
.ev__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--teal-700); border-bottom: 3px solid var(--ink); }
@media (min-width: 760px) { .ev--img .ev__media { aspect-ratio: auto; border-bottom: none; border-right: 3px solid var(--ink); } }
.ev__media img { width: 100%; height: 100%; object-fit: cover; }
.ev__vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-8deg); width: 66px; height: 66px; border-radius: 50%; background: var(--gold); border: 3px solid var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; color: var(--ink); box-shadow: var(--shadow-hard-sm); }
.ev__body { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.ev__kicker { font-family: var(--font-display); text-transform: uppercase; font-size: 13px; letter-spacing: .1em; color: var(--gold-deep); margin-bottom: 10px; }
.ev__big { font-size: 54px; line-height: 1; margin-bottom: 10px; }
.ev__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(26px, 3.4vw, 40px); line-height: 1; }
.ev__desc { font-weight: 600; color: var(--ink-soft); margin: 14px 0 18px; }
.ev__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ev__tag { font-size: 13px; font-weight: 800; color: var(--teal-900); background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 4px 12px; }

/* ─── Voor wie ─── */
.forwho { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .forwho { grid-template-columns: .92fr 1.08fr; gap: 56px; } }
.forwho__art .hero__frame { transform: rotate(1.4deg); box-shadow: 12px 12px 0 var(--gold); }
.forwho__text { font-size: 18px; font-weight: 600; color: var(--ink-soft); margin-top: 14px; }
.forwho__list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.forwho__list li { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 16px; }
.forwho__list span { font-size: 24px; }

/* ─── Praktisch ─── */
.facts { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact { display: flex; align-items: center; gap: 16px; background: var(--cream); border: 2.5px solid var(--ink); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-hard-sm); transition: transform .15s, box-shadow .15s; }
.fact:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--teal-900); }
.fact__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); border: 2.5px solid var(--ink); display: grid; place-items: center; color: var(--ink); box-shadow: 3px 3px 0 rgba(16,50,56,.18); }
.fact__ico svg { width: 23px; height: 23px; }
.fact h4 { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; }
.fact p { color: var(--ink-soft); font-size: 15px; font-weight: 700; margin-top: 2px; }

/* ─── Aanmelden ─── */
.signup { position: relative; max-width: 720px; margin: 0 auto; background: var(--cream); border: 3px solid var(--ink); border-radius: 24px; padding: clamp(26px, 5vw, 50px); box-shadow: var(--shadow-hard); }
.signup__head { text-align: center; margin-bottom: 28px; }
.signup__title { font-size: clamp(34px, 5vw, 56px); text-transform: uppercase; }
.signup__title .accent { color: var(--orange); }
.signup__sub { color: var(--ink-soft); font-size: 17px; font-weight: 600; margin-top: 10px; }
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-family: var(--font-display); font-size: 15px; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }
.field__opt { color: var(--ink-soft); font-family: var(--font-body); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 13px; }
.field input, .field textarea { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); background: #fff; border: 2.5px solid var(--ink); border-radius: 12px; padding: 13px 16px; transition: box-shadow .15s, border-color .15s; }
.field input::placeholder, .field textarea::placeholder { color: #9aa6a2; font-weight: 500; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: var(--shadow-hard-sm); }
.field textarea { resize: vertical; min-height: 92px; }
.form__submit { margin-top: 6px; }
.form__note { text-align: center; font-size: 13.5px; color: var(--ink-soft); font-weight: 700; }
.field--error input, .field--error textarea { border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange); }

.signup__done { text-align: center; padding: 18px 0; animation: pop .5s cubic-bezier(.2,.9,.3,1.3); }
.signup__done-emoji { font-size: 64px; line-height: 1; }
.signup__done h3 { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; margin: 14px 0 8px; }
.signup__done p { color: var(--ink-soft); font-size: 17px; font-weight: 600; margin-bottom: 22px; }
@keyframes pop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* ─── Footer ─── */
.footer { background: var(--teal-900); color: var(--cream); padding: 52px 0; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: .03em; }
.footer__line { color: rgba(247,237,214,.8); margin-top: 12px; font-weight: 600; }
.footer__meta { color: rgba(247,237,214,.5); font-size: 14px; margin-top: 8px; font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 480px) {
  .form__row--2 { grid-template-columns: 1fr; }
  .nav__inner { padding: 8px 10px 8px 14px; }
  .nav__cta { padding: 7px 13px; font-size: 14px; }
  .hero__sticker { width: 78px; height: 78px; font-size: 13px; }
}
