/* Tom Dumoulin Bike Park Sittard-Geleen — V2
   Huisstijl: zwart/wit + roze #d9137c, Manrope. Mobiel-eerst. */

@font-face { font-family: Manrope; src: url("../assets/fonts/manrope-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: Manrope; src: url("../assets/fonts/manrope-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: Manrope; src: url("../assets/fonts/manrope-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: Manrope; src: url("../assets/fonts/manrope-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }

:root {
  --roze: #d9137c;
  --zwart: #0a0a0a;
  --wit: #ffffff;
  --grijs: #575757;
  --lijn: #e6e6e6;
  --vlak: #f6f6f6;
  --radius: 16px;
  --sectie: clamp(72px, 12vw, 140px);
  --rand: clamp(20px, 4vw, 48px);
  --duur: .65s;
  --veer: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--zwart);
  background: var(--wit);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--roze); color: #fff; }

h1, h2, h3 { font-weight: 800; line-height: 1.05; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 10vw, 5.6rem); }
h2 { font-size: clamp(2rem, 6vw, 3.4rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { max-width: 62ch; }

.omlijsting { max-width: 1200px; margin: 0 auto; padding-left: var(--rand); padding-right: var(--rand); }
section { padding: var(--sectie) 0; }

/* Vooraftitel met roze streepje (verwijst naar de originele "preheading") */
.vooraf {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: .95rem; color: var(--zwart);
  margin-bottom: 18px;
}
.vooraf::before { content: ""; width: 34px; height: 2px; background: var(--roze); }
.sectiekop { margin-bottom: clamp(28px, 5vw, 56px); }
.sectiekop p.leidend { margin-top: 16px; color: var(--grijs); font-size: 1.05rem; }

/* ---------- Knoppen ---------- */
.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .25s var(--veer), box-shadow .25s var(--veer), background .25s;
}
.knop:active { transform: scale(.97); }
.knop-roze { background: var(--roze); color: #fff; }
.knop-roze:hover { box-shadow: 0 10px 30px rgba(217, 19, 124, .35); transform: translateY(-2px); }
.knop-omlijnd { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .6); }
.knop-omlijnd:hover { box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-2px); }
.knop-zwart { background: var(--zwart); color: #fff; }
.knop-zwart:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, .25); }
.knop-pijl::after { content: "→"; transition: transform .25s var(--veer); }
.knop-pijl:hover::after { transform: translateX(4px); }

/* ---------- Navigatie ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav-binnen {
  max-width: 1200px; margin: 0 auto;
  padding: 14px var(--rand);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-weight: 800; }
.nav-logo img { width: 40px; height: 40px; }
.nav-logo span { font-size: .95rem; line-height: 1.2; }
.nav-logo small { display: block; color: var(--roze); font-weight: 700; font-size: .72rem; letter-spacing: .06em; }
.nav-links { display: none; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; position: relative; }
.nav-links a:not(.knop)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--roze); transition: width .3s var(--veer);
}
.nav-links a:not(.knop):hover::after { width: 100%; }
.nav-links .knop { padding: 10px 22px; font-size: .9rem; }
.nav.vast { background: rgba(10, 10, 10, .82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); }
body.lichte-nav .nav.vast { background: rgba(255, 255, 255, .85); box-shadow: 0 1px 0 var(--lijn); }
body.lichte-nav .nav.vast .nav-links a:not(.knop), body.lichte-nav .nav.vast .nav-logo { color: var(--zwart); }
body.lichte-nav .nav:not(.vast) .nav-links a:not(.knop), body.lichte-nav .nav:not(.vast) .nav-logo { color: var(--zwart); }

/* Hamburger + mobiel menu */
.nav-knop {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; z-index: 70;
}
.nav-knop span, .nav-knop span::before, .nav-knop span::after {
  content: ""; display: block; width: 24px; height: 2px; border-radius: 2px;
  background: #fff; position: relative; transition: transform .3s var(--veer), opacity .3s, background .3s;
}
body.lichte-nav .nav-knop span, body.lichte-nav .nav-knop span::before, body.lichte-nav .nav-knop span::after { background: var(--zwart); }
.nav-knop span::before { position: absolute; top: -7px; }
.nav-knop span::after { position: absolute; top: 7px; }
body.menu-open .nav-knop span { background: transparent !important; }
body.menu-open .nav-knop span::before { transform: translateY(7px) rotate(45deg); background: #fff; }
body.menu-open .nav-knop span::after { transform: translateY(-7px) rotate(-45deg); background: #fff; }
.mobiel-menu {
  position: fixed; inset: 0; z-index: 65; background: var(--zwart);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--rand);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
body.menu-open .mobiel-menu { opacity: 1; pointer-events: auto; }
.mobiel-menu a {
  color: #fff; text-decoration: none; font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem); padding: 10px 0; letter-spacing: -.02em;
  transform: translateY(18px); opacity: 0; transition: transform .45s var(--veer), opacity .45s;
}
.mobiel-menu a:hover { color: var(--roze); }
body.menu-open .mobiel-menu a { transform: none; opacity: 1; }
body.menu-open .mobiel-menu a:nth-child(2) { transition-delay: .05s; }
body.menu-open .mobiel-menu a:nth-child(3) { transition-delay: .1s; }
body.menu-open .mobiel-menu a:nth-child(4) { transition-delay: .15s; }
body.menu-open .mobiel-menu a:nth-child(5) { transition-delay: .2s; }
.mobiel-menu .m-voet { margin-top: 32px; color: var(--grijs); font-size: .9rem; }
body.menu-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-knop, .mobiel-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; padding: 0;
  display: flex; align-items: flex-end;
  background: var(--zwart); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5, 5, 5, .88) 0%, rgba(5, 5, 5, .35) 45%, rgba(5, 5, 5, .45) 100%);
}
.hero-inhoud { position: relative; z-index: 2; width: 100%; padding: 140px 0 clamp(40px, 8vh, 88px); will-change: transform, opacity; }
.hero .vooraf { color: #fff; }
.hero p.intro { margin: 22px 0 30px; color: rgba(255, 255, 255, .85); font-size: clamp(1rem, 2.2vw, 1.15rem); max-width: 56ch; }
.hero-knoppen { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-strook { display: flex; align-items: center; gap: 12px; margin-top: 36px; color: rgba(255, 255, 255, .9); font-weight: 600; font-size: .95rem; }
.sterren { color: var(--roze); letter-spacing: 2px; font-size: 1.05rem; }
.scrollhint {
  position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 14px;
}
.scrollhint::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; border-radius: 3px;
  background: var(--roze); transform: translateX(-50%);
  animation: scrollpuls 1.8s infinite var(--veer);
}
@keyframes scrollpuls { 0% { opacity: 1; transform: translate(-50%, 0); } 70% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ---------- Statistieken ---------- */
.statgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
.stat { border-top: 2px solid var(--lijn); padding-top: 18px; }
.stat b { display: block; font-size: clamp(2.4rem, 7vw, 3.6rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stat b em { font-style: normal; color: var(--roze); }
.stat span { color: var(--grijs); font-weight: 600; font-size: .95rem; }
@media (min-width: 900px) { .statgrid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Mogelijkheden ---------- */
.kaarten { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .kaarten { grid-template-columns: 1fr 1fr; } }
.kaart {
  border: 1px solid var(--lijn); border-radius: var(--radius); overflow: hidden; background: #fff;
  transition: transform .35s var(--veer), box-shadow .35s var(--veer);
}
.kaart:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0, 0, 0, .1); }
.kaart figure { aspect-ratio: 16 / 10; overflow: hidden; background: var(--vlak); }
.kaart figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--veer); }
.kaart:hover figure img { transform: scale(1.05); }
.kaart-tekst { padding: 22px 24px 26px; }
.kaart-tekst h3 { margin-bottom: 12px; }
.kaart-tekst ul { list-style: none; display: grid; gap: 9px; }
.kaart-tekst li { display: flex; gap: 10px; color: var(--grijs); font-size: .95rem; line-height: 1.45; }
.kaart-tekst li::before { content: "✓"; color: var(--roze); font-weight: 800; flex: none; }

/* ---------- 3D-parcours ---------- */
.parcours { background: var(--vlak); overflow: hidden; }
.parcours-omslag { position: relative; border-radius: var(--radius); background: #fff; border: 1px solid var(--lijn); overflow: hidden; }
.parcours-canvas { height: clamp(380px, 62vh, 560px); position: relative; }
.parcours-canvas canvas { display: block; width: 100%; height: 100%; touch-action: pan-y; }
.parcours-chips {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 8px; pointer-events: none;
}
.chip {
  background: rgba(10, 10, 10, .85); color: #fff; backdrop-filter: blur(6px);
  border-radius: 999px; padding: 8px 14px; font-size: .82rem; font-weight: 700;
}
.chip em { font-style: normal; color: var(--roze); }
/* SVG-fallback (geen WebGL / tot 3D geladen is) */
.parcours-fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; background: #fff; }
.parcours-fallback svg { width: min(720px, 100%); height: auto; }
.parcours-fallback .profiellijn {
  fill: none; stroke: var(--roze); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.parcours-omslag.zichtbaar .profiellijn { animation: tekenen 2.4s var(--veer) forwards .2s; }
@keyframes tekenen { to { stroke-dashoffset: 0; } }

/* ---------- Reserveren ---------- */
.wetenswaard { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 36px; }
@media (min-width: 800px) { .wetenswaard { grid-template-columns: 1fr 1fr; } }
.weetje { border: 1px solid var(--lijn); border-radius: var(--radius); padding: 26px 28px; background: #fff; }
.weetje .label {
  display: inline-block; border-radius: 999px; padding: 5px 14px; font-size: .8rem; font-weight: 800;
  margin-bottom: 14px; background: var(--vlak); color: var(--zwart);
}
.weetje.accent .label { background: var(--roze); color: #fff; }
.weetje p { color: var(--grijs); font-size: .97rem; }
.moduul {
  border: 1px solid var(--lijn); border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: 0 30px 60px rgba(0, 0, 0, .07);
  max-width: 820px; margin: 0 auto;
}
.moduul iframe { width: 100%; border: none; display: block; height: 900px; }

/* ---------- Openingstijden ---------- */
.tijden { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .tijden { grid-template-columns: 1.1fr .9fr; } }
.tijden table { width: 100%; border-collapse: collapse; }
.tijden td { padding: 13px 4px; border-bottom: 1px solid var(--lijn); font-weight: 600; }
.tijden td:last-child { text-align: right; color: var(--grijs); font-variant-numeric: tabular-nums; }
.tijden tr.dicht td:last-child { color: var(--roze); font-weight: 700; }
.tijden aside { color: var(--grijs); }
.tijden aside .knopjes { display: flex; gap: 12px; margin-top: 18px; }

/* ---------- Marquee ---------- */
.marquee { background: var(--zwart); color: #fff; padding: 26px 0; overflow: hidden; white-space: nowrap; }
.marquee-baan { display: inline-flex; gap: 48px; padding-right: 48px; animation: schuiven 26s linear infinite; will-change: transform; }
.marquee span { font-weight: 800; font-size: clamp(1.1rem, 3vw, 1.6rem); letter-spacing: .02em; }
.marquee span em { font-style: normal; color: var(--roze); }
@keyframes schuiven { to { transform: translateX(-50%); } }

/* ---------- Pagina-hero (events/contact) ---------- */
.pagina-hero { background: var(--zwart); color: #fff; padding: 170px 0 76px; }
.pagina-hero p { color: rgba(255, 255, 255, .75); margin-top: 18px; }

/* ---------- Events ---------- */
.event {
  border: 1px solid var(--lijn); border-radius: var(--radius); padding: clamp(24px, 5vw, 44px);
  display: grid; gap: 22px; background: #fff;
}
.event .datum {
  display: inline-flex; align-items: center; gap: 10px; align-self: start;
  background: var(--roze); color: #fff; font-weight: 800; border-radius: 999px; padding: 8px 18px; font-size: .9rem;
}
.event h3 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
.event .route { display: grid; gap: 8px; border-left: 3px solid var(--roze); padding-left: 18px; font-weight: 600; }
.event .route small { color: var(--grijs); font-weight: 600; display: block; }
.event p { color: var(--grijs); }

/* ---------- Contact ---------- */
.contactgrid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contactgrid { grid-template-columns: .9fr 1.1fr; } }
.contactlijst { display: grid; gap: 14px; align-content: start; }
.contactlijst a.regel, .contactlijst .regel {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  border: 1px solid var(--lijn); border-radius: var(--radius); padding: 18px 20px; font-weight: 700;
  transition: transform .3s var(--veer), box-shadow .3s var(--veer);
}
.contactlijst a.regel:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, .08); }
.contactlijst .regel .ikoon { width: 40px; height: 40px; border-radius: 12px; background: var(--vlak); display: grid; place-items: center; color: var(--roze); flex: none; }
.formulier { display: grid; gap: 16px; }
.formulier label { font-weight: 700; font-size: .95rem; display: grid; gap: 7px; }
.formulier input, .formulier textarea {
  font: inherit; padding: 13px 16px; border: 1.5px solid var(--lijn); border-radius: 12px; width: 100%;
  transition: border-color .25s; background: #fff;
}
.formulier input:focus, .formulier textarea:focus { outline: none; border-color: var(--roze); }
.formulier textarea { resize: vertical; min-height: 130px; }
.formulier .hp { position: absolute; left: -9999px; }
.formulier .melding { border-radius: 12px; padding: 13px 16px; font-weight: 600; font-size: .95rem; }
.formulier .melding.ok { background: #e8f7ee; color: #0a7a2f; }
.formulier .melding.fout { background: #fdecef; color: #b00020; }

/* ---------- Footer ---------- */
footer { background: var(--zwart); color: #fff; padding: clamp(56px, 8vw, 90px) 0 32px; }
.voetgrid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .voetgrid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.voetmerk { grid-column: 1 / -1; }
@media (min-width: 900px) { .voetmerk { grid-column: auto; } }
.voetmerk .nav-logo { margin-bottom: 16px; }
.voetmerk p { color: rgba(255, 255, 255, .6); font-size: .93rem; max-width: 34ch; }
footer h4 { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; }
footer ul a:hover { color: var(--roze); }
.voetstreep {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: rgba(255, 255, 255, .5); font-size: .85rem;
}
.voetstreep a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.voetstreep a:hover { color: var(--roze); }

/* ---------- Scroll-reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--duur) var(--veer), transform var(--duur) var(--veer); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.zichtbaar { opacity: 1; transform: none; }

/* ---------- Toegankelijkheid / reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-baan { animation: none; }
  .hero-media { transform: none !important; }
}
:focus-visible { outline: 2px solid var(--roze); outline-offset: 3px; border-radius: 4px; }
.skiplink {
  position: absolute; left: -9999px; z-index: 100; background: var(--roze); color: #fff;
  padding: 10px 18px; border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skiplink:focus { left: 12px; top: 12px; }

/* ---------- Blog ---------- */
.omlijsting.smal { max-width: 760px; }

/* Indexkaarten met uitgelicht beeld */
.blogkaart { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blogkaart figure { aspect-ratio: 16 / 9; overflow: hidden; background: var(--vlak); }
.blogkaart figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--veer); }
.blogkaart:hover figure img { transform: scale(1.05); }
.blogkaart h3 { line-height: 1.3; font-size: 1.3rem; }
.blogmeta { margin: 0 0 10px; color: var(--grijs); font-size: .85rem; font-weight: 600; }
.blogsamenvatting { color: var(--grijs); font-size: .95rem; margin-top: 10px; line-height: 1.6; }
.bloglees { color: var(--roze); font-weight: 700; margin-top: 16px; }

/* Artikelkop: licht, rustig, veel lucht */
.artikel-kop { padding: clamp(120px, 16vw, 180px) 0 clamp(20px, 3vw, 36px); }
.artikel-titel { font-size: clamp(1.9rem, 5.2vw, 3.2rem); line-height: 1.12; letter-spacing: -.02em; }
.artikel-meta { display: flex; align-items: center; gap: 10px; color: var(--grijs); font-weight: 600; font-size: .92rem; margin-top: 18px; }
.artikel-meta span { color: var(--roze); }

/* Uitgelicht beeld */
.artikel-beeld { margin: clamp(16px, 3vw, 32px) 0; border-radius: var(--radius); overflow: hidden; }
.artikel-beeld img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
@media (max-width: 700px) { .artikel-beeld img { aspect-ratio: 16 / 10; } }

/* Leeslayout: ruime maat, lucht tussen alles */
.artikel {
  max-width: 680px; margin: clamp(8px, 2vw, 24px) auto 0;
  font-size: 1.1rem; line-height: 1.85; color: #222;
}
.artikel > p:first-child {
  font-size: 1.28rem; line-height: 1.7; color: var(--zwart); font-weight: 500;
  margin-bottom: 34px;
}
.artikel p { margin: 0 0 26px; max-width: none; }
.artikel h2 {
  font-size: clamp(1.45rem, 3.4vw, 1.85rem); line-height: 1.25;
  margin: 56px 0 18px; padding-top: 22px; position: relative;
}
.artikel h2::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--roze); border-radius: 2px; }
.artikel h3 { font-size: 1.2rem; margin: 40px 0 14px; }
.artikel ul, .artikel ol { margin: 0 0 26px; padding-left: 4px; list-style: none; }
.artikel li { margin-bottom: 12px; padding-left: 28px; position: relative; }
.artikel ul li::before { content: "✓"; position: absolute; left: 0; color: var(--roze); font-weight: 800; }
.artikel ol { counter-reset: stap; }
.artikel ol li::before { counter-increment: stap; content: counter(stap) "."; position: absolute; left: 0; color: var(--roze); font-weight: 800; }
.artikel strong { font-weight: 700; color: var(--zwart); }
.artikel-cta { max-width: 680px; margin: 56px auto 0; }

/* ---------- Instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.insta-tegel {
  display: block; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  position: relative; background: var(--vlak);
}
.insta-tegel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--veer); }
.insta-tegel:hover img { transform: scale(1.06); }
.insta-tegel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.35), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.insta-tegel:hover::after { opacity: 1; }
.insta-onderschrift {
  position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 1;
  color: #fff; font-size: .8rem; font-weight: 600; line-height: 1.35;
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.insta-tegel:hover .insta-onderschrift { opacity: 1; transform: none; }
.insta-video-badge {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(10, 10, 10, .55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; padding-left: 2px;
}
.insta-voet { display: flex; justify-content: center; margin-top: 28px; }

/* ---------- Info-/juridische pagina's (voorwaarden, huisregels) ---------- */
.doc { max-width: 760px; margin: 0 auto; }
.doc .doc-intro { font-size: 1.12rem; line-height: 1.7; color: var(--zwart); }
.doc .doc-intro + .doc-intro { margin-top: 14px; }
.doc .doc-meta { color: var(--grijs); font-size: .9rem; font-weight: 600; margin: 22px 0 0; }
.doc .doc-blok { margin-top: 30px; padding: 22px 24px; border: 1px solid var(--lijn); border-radius: var(--radius); background: #fff; }
.doc-blok .label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--roze); color: #fff; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.doc section { margin-top: 40px; }
.doc h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem); line-height: 1.25;
  margin: 0 0 14px; padding-top: 20px; position: relative;
}
.doc h2::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--roze); border-radius: 2px; }
.doc p { color: #333; line-height: 1.75; margin: 0 0 14px; }
.doc ul, .doc ol { margin: 0 0 14px; padding-left: 0; list-style: none; }
.doc li { position: relative; padding-left: 28px; margin-bottom: 11px; line-height: 1.7; color: #333; }
.doc ul > li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--roze); font-weight: 800; }
.doc ol { counter-reset: item; }
.doc ol > li::before { counter-increment: item; content: counter(item) "."; position: absolute; left: 0; color: var(--roze); font-weight: 800; }
.doc li ul { margin: 10px 0 0; }
.doc li ul li::before { content: "–"; color: var(--grijs); }
.doc .doc-contact { margin-top: 40px; color: var(--grijs); font-size: .97rem; }
.doc .doc-contact a { color: var(--roze); font-weight: 700; }
