/* ================================================================
   Nachtraad CMS · style.css  (v2 — nightlife redesign)
   Fonts:   Bebas Neue (headings) + Space Grotesk (body)
   Colors:  --pink #ff2d78  --purple #b24bff  --cyan #00f0ff
   Base bg: #08050f
   ================================================================ */

/* No @import here — fonts are loaded via <link> in header.php */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --pink:    #ff2d78;
  --purple:  #b24bff;
  --cyan:    #00f0ff;
  --dark:    #08050f;
  --dark2:   #100c1c;
  --dark3:   #1a1430;
  --text:    #e8e0ff;
  --muted:   #a899c8;
  --body:    rgba(232, 224, 255, .82);
  --border:  rgba(178, 75, 255, .2);
  --r:       8px;
  --r-lg:    14px;
}

/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: #fff; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .06em;
  line-height: 1.1;
}

main { flex: 1; position: relative; z-index: 1; }

/* ── Stars background ──────────────────────────────────────── */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 8%  18%, rgba(255,255,255,.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 62%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 48% 9%,  rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1px 1px at 68% 78%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 83% 33%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px 1px at 91% 52%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 13% 86%, rgba(255,255,255,.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 58% 44%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px 1px at 43% 73%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 76% 11%, rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1px 1px at 36% 28%, rgba(255,255,255,.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 62% 91%, rgba(255,255,255,.55) 0%, transparent 100%);
}

/* ── Floating colour blobs ─────────────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: .28;
}
.blob1 {
  width: 550px; height: 550px;
  background: var(--purple);
  top: -120px; right: -120px;
  animation: float 11s ease-in-out infinite;
}
.blob2 {
  width: 420px; height: 420px;
  background: var(--pink);
  bottom: 8%; left: -120px;
  animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-32px) scale(1.05); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Canvas star layer — drawn by JS, zero DOM overhead */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Neon horizontal rule ──────────────────────────────────── */
.neon-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--purple),
    var(--pink),
    var(--cyan),
    transparent);
  opacity: .45;
  position: relative;
  z-index: 1;
}

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-offset { padding-top: 72px; } /* clears fixed header */

section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header / Nav ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .8rem 2rem;
  transition: background .25s;
}

.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(8, 5, 15, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(178, 75, 255, .2);
  transition: background .25s;
}

.site-header.scrolled::before {
  background: rgba(8, 5, 15, .97);
}

/* Logo — text fallback or image */
.site-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: .14em;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { opacity: .85; }

.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links row */
.site-nav {
  display: flex;
  gap: 1.6rem;
  flex-wrap: nowrap;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--cyan); }

/* Mobile-only nav elements (hidden on desktop) */
.mobile-nav-brand,
.mobile-nav-socials,
.nav-cta--in-nav { display: none; }

/* Left spacer — mirrors right, keeps center group truly centered */
.site-header-spacer { flex: 1; }

/* Right side: flex:1 spacer + hamburger right-aligned */
.site-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* CTA button (desktop, in header-right) */
.nav-cta-btn {
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: .3rem 1rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 45, 120, .3);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 45, 120, .65);
}

/* Mobile hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: .75rem 2rem;
  border-radius: var(--r);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: all .25s;
  line-height: 1;
}

/* gradient pink→purple */
.btn-primary,
.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 45, 120, .4);
}
.btn-primary:hover,
.btn--primary:hover {
  box-shadow: 0 0 40px rgba(255, 45, 120, .7);
  transform: translateY(-2px);
  color: #fff;
}

/* purple outline */
.btn-outline,
.btn--outline {
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
  box-shadow: 0 0 12px rgba(178, 75, 255, .2);
}
.btn-outline:hover,
.btn--outline:hover {
  background: rgba(178, 75, 255, .12);
  box-shadow: 0 0 24px rgba(178, 75, 255, .5);
  transform: translateY(-2px);
  color: var(--purple);
}

/* cyan outline */
.btn--cyan {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, .15);
}
.btn--cyan:hover {
  background: rgba(0, 240, 255, .08);
  box-shadow: 0 0 22px rgba(0, 240, 255, .4);
  transform: translateY(-2px); color: var(--cyan);
}

.btn--ghost {
  background: rgba(178, 75, 255, .08);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: rgba(178, 75, 255, .4); color: var(--text); }

.btn--sm { padding: .45rem 1rem; font-size: .82rem; }

/* ── Section labels / titles ───────────────────────────────── */
.section-label {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .08em;
  background: linear-gradient(90deg, #fff, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 11rem 2rem 6rem;
}

.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(178,75,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(255,45,120,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(0,240,255,.1)   0%, transparent 60%);
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; letter-spacing: .3em;
  text-transform: uppercase; font-weight: 600;
  color: var(--cyan); margin-bottom: 1rem;
  animation: fadeUp .8s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1; letter-spacing: .06em;
  background: linear-gradient(135deg, #fff 30%, var(--purple) 70%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
  animation: fadeUp .8s .1s ease both;
}

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .15em;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, .5);
  margin-bottom: 2rem;
  animation: fadeUp .8s .2s ease both;
}

.hero-desc,
.hero-lead {
  max-width: 680px;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted); margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}

.hero-btns,
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .8s .4s ease both;
}

/* ── Pillar / speerpunt cards ──────────────────────────────── */
.cards,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card,
.pillar-card {
  background: var(--dark2);
  border: 1px solid rgba(178, 75, 255, .2);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all .3s;
}

/* coloured 3px top stripe */
.card::before,
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}
.card:nth-child(2)::before,
.pillar-card:nth-child(2)::before { background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.card:nth-child(3)::before,
.pillar-card:nth-child(3)::before { background: linear-gradient(90deg, var(--cyan), var(--pink)); }

/* explicit colour variants */
.pillar-card--pink::before   { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.pillar-card--purple::before { background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.pillar-card--cyan::before   { background: linear-gradient(90deg, var(--cyan), var(--pink)); }

.card:hover,
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178, 75, 255, .5);
  box-shadow: 0 20px 50px rgba(178, 75, 255, .15);
}

.card-icon,
.pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(178, 75, 255, .12);
  border: 1px solid rgba(178, 75, 255, .25);
}

/* per-child icon colours */
.card:nth-child(1) .card-icon,
.pillar-icon--pink   { background: rgba(255, 45, 120, .1); border-color: rgba(255, 45, 120, .25); }
.card:nth-child(2) .card-icon,
.pillar-icon--purple { background: rgba(178, 75, 255, .1); border-color: rgba(178, 75, 255, .25); }
.card:nth-child(3) .card-icon,
.pillar-icon--cyan   { background: rgba(0, 240, 255, .08); border-color: rgba(0, 240, 255, .25); }

.card h3,
.pillar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: .08em;
  color: #fff; margin-bottom: .75rem;
}

.card p,
.pillar-card p { color: var(--body); font-size: .93rem; line-height: 1.7; }

/* "More →" link */
.more-link {
  display: inline-block; margin-top: 2.5rem;
  color: var(--cyan); font-weight: 700;
  font-size: .95rem; letter-spacing: .05em;
  border-bottom: 1px solid rgba(0, 240, 255, .3);
  transition: all .2s;
}
.more-link:hover { color: #fff; border-color: #fff; }

/* ── Article cards ─────────────────────────────────────────── */
.articles-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.articles-grid--featured { grid-template-columns: repeat(3, 1fr); }
.articles-grid--featured .article-card:first-child { grid-column: 1 / 3; }

.article-card {
  background: var(--dark2);
  border: 1px solid rgba(178, 75, 255, .15);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .3s;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 75, 255, .45);
  box-shadow: 0 18px 45px rgba(178, 75, 255, .15);
  color: inherit;
}

.article-card__thumb,
.article-img {
  aspect-ratio: 16/9;
  background: var(--dark3);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.article-card__thumb img,
.article-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .article-card__thumb img { transform: scale(1.05); }

/* gradient overlay on thumb */
.article-card__thumb::after,
.article-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8,5,15,.65) 0%, transparent 55%);
}

/* placeholder (no image) */
.article-card__thumb-placeholder {
  font-size: 2.2rem;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
}

/* article-img placeholder SVG (from reference design) */
.article-img svg {
  width: 52px; height: 52px; opacity: .5;
  position: relative; z-index: 1;
}
.article-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,15,.65) 0%, transparent 55%);
}

.article-card__body,
.article-body-inner { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.article-card__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: var(--muted);
  margin-bottom: .75rem; flex-wrap: wrap;
}

/* category badge */
.article-card__cat,
.article-tag {
  display: inline-block;
  padding: 2px 9px; border-radius: 20px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(178,75,255,.15); color: var(--purple);
  border: 1px solid rgba(178,75,255,.3);
}

.article-card__cat--veiligheid  { background: rgba(255,45,120,.12); color: var(--pink);   border-color: rgba(255,45,120,.3); }
.article-card__cat--diversiteit { background: rgba(178,75,255,.12); color: var(--purple); border-color: rgba(178,75,255,.3); }
.article-card__cat--gezelligheid{ background: rgba(0,240,255,.08);  color: var(--cyan);   border-color: rgba(0,240,255,.3); }
.article-card__cat--beleid      { background: rgba(0,240,255,.08);  color: var(--cyan);   border-color: rgba(0,240,255,.3); }
.article-card__cat--onderzoek   { background: rgba(178,75,255,.12); color: var(--purple); border-color: rgba(178,75,255,.3); }

.article-card h3,
.article-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .05em;
  color: #fff; margin-bottom: .6rem; line-height: 1.2;
}

.article-card p { font-size: .9rem; color: var(--body); flex: 1; line-height: 1.68; }

.article-card__footer { margin-top: 1.2rem; }

.read-more {
  font-size: .83rem; font-weight: 700; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 1px solid rgba(0,240,255,.3); transition: all .2s;
}
.read-more:hover { color: #fff; border-color: #fff; gap: 8px; }

/* ── Banner / CTA block ────────────────────────────────────── */
.banner-section {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
}
.banner-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,45,120,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(178,75,255,.12) 0%, transparent 55%);
  animation: bannerPulse 4s ease-in-out infinite;
}
@keyframes bannerPulse {
  0%, 100% { opacity: .7; }
  50%       { opacity: 1; }
}

.banner {
  position: relative;
  max-width: 640px; margin: 0 auto;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 45, 120, .28);
  border-radius: var(--r-lg);
  background: rgba(255, 45, 120, .04);
  box-shadow:
    0 0 50px rgba(255, 45, 120, .12),
    0 0 100px rgba(178, 75, 255, .08),
    inset 0 1px 0 rgba(255, 45, 120, .12);
  animation: bannerGlow 4s ease-in-out infinite;
}
@keyframes bannerGlow {
  0%, 100% {
    box-shadow: 0 0 50px rgba(255,45,120,.12), 0 0 100px rgba(178,75,255,.08), inset 0 1px 0 rgba(255,45,120,.12);
    border-color: rgba(255,45,120,.28);
  }
  50% {
    box-shadow: 0 0 80px rgba(255,45,120,.25), 0 0 150px rgba(178,75,255,.18), inset 0 1px 0 rgba(255,45,120,.25);
    border-color: rgba(255,45,120,.5);
  }
}

.banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .08em;
  background: linear-gradient(135deg, #fff 30%, var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.banner p { color: var(--body); margin-bottom: 2rem; }
.banner-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ── Meldpunt / highlighted strip ─────────────────────────── */
.banner-strip {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(255,45,120,.06), rgba(178,75,255,.06));
  border-top: 1px solid rgba(178,75,255,.2);
  border-bottom: 1px solid rgba(178,75,255,.2);
  padding: 4rem 2rem;
  text-align: center;
}

/* ── Page hero ─────────────────────────────────────────────── */
.page-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(255,45,120,.1) 0%, transparent 70%);
}
.page-hero .container { position: relative; }

.page-hero__eyebrow {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--pink); margin-bottom: .8rem;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: .08em;
  background: linear-gradient(135deg, #fff, var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 600px; }

.page-body { padding: 5rem 0; }
.page-content { max-width: 760px; font-size: 1.05rem; line-height: 1.85; }
.page-content h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; color: #fff; }
.page-content h3 { font-size: 1.5rem; margin: 2rem 0 .8rem; color: var(--text); }
.page-content p  { color: var(--body); margin-bottom: 1.2rem; }
.page-content a  { color: var(--cyan); }
.page-content strong { color: var(--text); }

/* ── Single article ────────────────────────────────────────── */
.article-hero {
  padding: 120px 0 56px; border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(178,75,255,.12) 0%, transparent 70%);
}
.article-hero .container { position: relative; }
.article-hero__eyebrow  { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; font-size: .82rem; color: var(--muted); }
.article-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: .06em; line-height: 1.05;
  background: linear-gradient(135deg, #fff 30%, var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.2rem; max-width: 820px;
}
.article-hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 680px; line-height: 1.78; margin-bottom: 2rem; }
.article-hero__meta { display: flex; gap: 20px; color: var(--muted); font-size: .85rem; flex-wrap: wrap; }

.article-cover {
  margin: 3rem 0; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/7; background: var(--dark3); border: 1px solid var(--border);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-content { max-width: 760px; font-size: 1.05rem; line-height: 1.87; padding-bottom: 6rem; }
.article-content h2 { font-size: 2rem; margin: 2.5rem 0 1rem; color: #fff; }
.article-content h3 { font-size: 1.5rem; margin: 2rem 0 .8rem; color: var(--text); }
.article-content p  { color: var(--body); margin-bottom: 1.25rem; }
.article-content a  { color: var(--cyan); }
.article-content strong { color: var(--text); font-weight: 700; }
.article-content blockquote {
  border-left: 3px solid var(--purple);
  padding: 12px 0 12px 24px; margin: 2rem 0;
  color: var(--text); font-size: 1.1rem; font-style: italic;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.5rem; color: var(--muted); }
.contact-detail strong { color: var(--text); display: block; font-size: .78rem; margin-bottom: 2px; letter-spacing: .06em; text-transform: uppercase; }
.contact-detail a { color: var(--cyan); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--text); margin-bottom: .4rem;
  letter-spacing: .07em; text-transform: uppercase;
}
.form-control {
  width: 100%; background: var(--dark2);
  border: 1px solid rgba(178,75,255,.25);
  border-radius: var(--r); color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; padding: .7rem .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(178,75,255,.12), 0 0 14px rgba(178,75,255,.18);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.form-message { padding: .85rem 1rem; border-radius: var(--r); font-size: .9rem; margin-bottom: 1.2rem; }
.form-message--success { background: rgba(0,240,255,.08);  border: 1px solid rgba(0,240,255,.3);  color: var(--cyan); }
.form-message--error   { background: rgba(255,45,120,.08); border: 1px solid rgba(255,45,120,.3); color: var(--pink); }

/* ── Filter pills ──────────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-pill {
  display: inline-flex; align-items: center;
  padding: .4rem 1rem; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  transition: all .2s; text-decoration: none; cursor: pointer;
  font-family: 'Space Grotesk', system-ui, sans-serif; /* reset button font */
  line-height: 1;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--purple); color: var(--purple);
  background: rgba(178,75,255,.1); box-shadow: 0 0 10px rgba(178,75,255,.2);
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 3.5rem; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r);
  font-size: .88rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted); transition: all .2s;
}
.pagination a:hover { border-color: var(--purple); color: var(--purple); box-shadow: 0 0 10px rgba(178,75,255,.3); }
.pagination span.current {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border-color: transparent;
  box-shadow: 0 0 16px rgba(178,75,255,.4);
}

/* ── Back link ─────────────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600;
  color: var(--muted); margin-bottom: 2rem; transition: color .2s;
}
.back-link:hover { color: var(--cyan); }

/* ── Misc helpers ──────────────────────────────────────────── */
.dot-sep::before { content: '·'; margin: 0 6px; color: rgba(178,75,255,.3); }

/* ── Newsletter strip ──────────────────────────────────────── */
.newsletter-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  position: relative; z-index: 1;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.newsletter-inner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: .08em;
  background: linear-gradient(90deg, #fff, var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.newsletter-inner p { color: var(--muted); font-size: .9rem; margin: .3rem 0 0; }
.newsletter-form { display: flex; gap: .6rem; flex-shrink: 0; }
.newsletter-form input {
  width: 250px; background: rgba(178,75,255,.07);
  border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text); font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; padding: .7rem .9rem; outline: none; transition: border-color .2s;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { border-color: var(--purple); }

/* ── Footer ────────────────────────────────────────────────── */
footer,
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(178,75,255,.1);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
  position: relative; z-index: 1;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: .14em;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .5rem;
}

.footer-tagline { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

.footer-links {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.footer-links a {
  color: var(--muted); font-size: .82rem;
  font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-copy {
  color: var(--muted); font-size: .78rem;
  border-top: 1px solid rgba(178,75,255,.1);
  padding-top: 1.5rem;
}

/* ── Article prev/next navigation ─────────────────────────── */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.5rem 0 4rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.article-nav__item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--dark2);
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}
.article-nav__item:hover {
  border-color: rgba(178,75,255,.45);
  box-shadow: 0 8px 28px rgba(178,75,255,.12);
  transform: translateY(-3px);
}
.article-nav__item--next { text-align: right; }
.article-nav__item--next.article-nav__item--only { grid-column: 2; }
.article-nav__item--prev.article-nav__item--only { grid-column: 1; }

.article-nav__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple);
}
.article-nav__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .05em;
  color: #fff;
  line-height: 1.25;
}

/* ── Leden (team members) grid ─────────────────────────────── */
.leden-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.leden-section .section-label { margin-bottom: 1rem; }
.leden-section .section-title { margin-bottom: 2.5rem; }

.leden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.leden-grid--max3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) { .leden-grid--max3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .leden-grid--max3 { grid-template-columns: 1fr; } }

.lid-card {
  background: var(--dark2);
  border: 1px solid rgba(178,75,255,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all .3s;
}
.lid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178,75,255,.4);
  box-shadow: 0 16px 40px rgba(178,75,255,.12);
}

.lid-card__photo {
  aspect-ratio: 1/1;
  background: var(--dark3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lid-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.lid-card__photo-placeholder {
  font-size: 3rem;
  color: var(--muted);
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
}

.lid-card__body { padding: 1.4rem 1.2rem 1.5rem; }

.lid-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: .3rem;
}
.lid-card__role {
  font-size: .78rem;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.lid-card__bio {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: .9rem;
}
.lid-card__email {
  font-size: .8rem;
  color: var(--cyan);
}

/* ── Leden category headings ───────────────────────────────── */
/* ── Project cards (Over Ons) ──────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.project-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: currentColor;
  opacity: .6;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 75, 255, .4);
  box-shadow: 0 14px 36px rgba(178, 75, 255, .12);
}

.project-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}

.project-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .06em;
  color: #fff; margin-bottom: .6rem;
}

.project-card__body {
  font-size: .9rem; color: var(--body); line-height: 1.7;
}

@media (max-width: 700px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.leden-category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .08em;
  color: var(--purple);
  margin: 2.5rem 0 1.2rem;
}
.leden-category-title:first-of-type { margin-top: 0; }

/* ── Footer social icons ───────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
}
.footer-social a:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 14px rgba(178,75,255,.3);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .articles-grid--featured { grid-template-columns: 1fr 1fr; }
  .articles-grid--featured .article-card:first-child { grid-column: 1 / 3; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 860px) {
  /* Header: collapse spacers, logo left + hamburger right */
  .site-header { gap: 0; padding: .85rem 1.2rem; }
  .site-logo   { font-size: 1.4rem; }
  .site-header-spacer { display: none; }
  .site-header-right  { flex: 0; margin-left: auto; justify-content: flex-end; }

  /* Hide desktop CTA, show hamburger */
  .nav-cta-btn { display: none; }
  .nav-toggle  { display: flex; }

  /* Nav: absolute dropdown anchored to the fixed header.
     position:absolute inside a position:fixed parent = relative to header,
     which sidesteps the backdrop-filter containing-block trap. */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: calc(100svh - 62px);
    height: calc(100dvh - 62px);
    background: rgba(8, 5, 15, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    z-index: 99;
  }
  .site-nav.open { display: flex; }

  /* Mobile nav header with logo */
  .mobile-nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(178,75,255,.15);
    border-top: 1px solid rgba(178,75,255,.1);
  }
  .mobile-nav-brand .site-logo { font-size: 2rem; }
  .mobile-nav-brand .site-logo-img { height: 44px; }

  /* Nav links */
  .site-nav a {
    width: 100%;
    padding: .9rem 1.75rem;
    font-size: .9rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(178,75,255,.08);
    display: flex; align-items: center;
  }

  /* CTA in mobile nav */
  .nav-cta--in-nav {
    display: flex;
    margin: 1.25rem 1.75rem;
    width: calc(100% - 3.5rem) !important;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,45,120,.15), rgba(178,75,255,.1));
    border: 1px solid rgba(255,45,120,.4) !important;
    border-radius: var(--r) !important;
    color: var(--pink) !important;
    padding: .85rem 1.5rem !important;
    font-size: .88rem;
    box-shadow: 0 0 20px rgba(255,45,120,.12);
  }
  .nav-cta--in-nav:hover {
    background: rgba(255,45,120,.2) !important;
    color: #fff !important;
  }

  /* Mobile social icons — sit directly under the CTA button */
  .mobile-nav-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.75rem 1.5rem;
    border-top: 1px solid rgba(178,75,255,.1);
  }
  .mobile-nav-socials__label {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: .25rem;
  }
  .mobile-nav-socials__icons { display: flex; gap: 1rem; }
  .mobile-nav-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(178,75,255,.4) !important;
    color: var(--purple) !important;
    padding: 0 !important;
    background: rgba(178,75,255,.1);
    transition: all .2s;
    box-shadow: 0 0 12px rgba(178,75,255,.15);
  }
  .mobile-nav-socials a:hover {
    border-color: var(--purple) !important;
    color: #fff !important;
    background: rgba(178,75,255,.2) !important;
    box-shadow: 0 0 22px rgba(178,75,255,.4);
  }
  .mobile-nav-socials svg { width: 22px; height: 22px; fill: currentColor; }
}

@media (max-width: 700px) {
  section { padding: 4rem 1.2rem; }
  .banner-section { padding: 4rem 1.2rem; }
  .newsletter-strip { padding: 4rem 1.2rem; }
  footer, .site-footer { padding: 2.5rem 1.2rem 1.5rem; }

  .top-offset { padding-top: 60px; }
  .hero { padding: 8rem 1.5rem 4rem; min-height: 90vh; }

  .articles-grid--featured { grid-template-columns: 1fr; }
  .articles-grid--featured .article-card:first-child { grid-column: auto; }

  .article-nav { grid-template-columns: 1fr; }
  .article-nav__item--next { text-align: left; }
  .article-nav__item--next.article-nav__item--only,
  .article-nav__item--prev.article-nav__item--only { grid-column: auto; }

  .leden-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form  { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .footer-links { gap: 1.2rem; }
}
