/* =========================================================
   INSPECTIVE — MURDER MYSTERY GAME — DESIGN SYSTEM v6
   Volledig donker thema · Strak · Consistent · Leesbaar
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Background layers — donker, consistent */
  --bg-base:      #0d0f12;
  --bg-card:      #151a21;
  --bg-raised:    #1a2028;
  --bg-hover:     #1f2733;

  /* Tekst */
  --text-primary: #e8dfc8;
  --text-secondary: rgba(232,223,200,.65);
  --text-muted:   rgba(232,223,200,.42);
  --text-faint:   rgba(232,223,200,.25);

  /* Accenten */
  --red:          #8b1a1a;
  --red-bright:   #b52020;
  --gold:         #c9a84c;
  --gold-bright:  #e0c46a;
  --gold-dim:     rgba(201,168,76,.15);

  /* Grenzen */
  --border:       rgba(201,168,76,.12);
  --border-strong:rgba(201,168,76,.22);
  --border-card:  rgba(255,255,255,.06);

  /* Typografie */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  /* Schaduwen */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.4);
  --shadow-md:    0 6px 24px rgba(0,0,0,.5);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.6);

  --max-w:        1240px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container, .wrap {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

/* ── TYPOGRAPHY ── */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 900; font-style: italic;
  line-height: 1.02; letter-spacing: -.025em;
  color: var(--text-primary); margin: 0 0 18px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 700; font-style: italic;
  line-height: 1.08; letter-spacing: -.018em;
  color: var(--text-primary); margin: 0 0 16px;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700; line-height: 1.25;
  color: var(--text-primary); margin: 0 0 10px;
}
.lead {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: var(--text-secondary); max-width: 60ch; margin: 0;
}
p.lead { padding-bottom: 14px; }
.body-text { font-size: 17px; line-height: 1.75; color: var(--text-secondary); }
.muted { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.small { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.kicker::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.section { padding: 72px 0; }
.sectionHead { margin: 0 0 40px; }

/* ── BUTTONS ── */
.btnRow, .ctaRow { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 0 28px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: 3px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btnPrimary {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(139,26,26,.4);
}
.btnPrimary:hover {
  background: var(--red-bright); border-color: var(--red-bright);
  box-shadow: 0 6px 24px rgba(181,32,32,.5);
}
.btnGold {
  background: var(--gold); border-color: var(--gold);
  color: #0d0f12; font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.btnGold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
}
.btnGhost {
  background: transparent;
  border-color: rgba(232,223,200,.25);
  color: var(--text-primary);
}
.btnGhost:hover { border-color: var(--gold); color: var(--gold); }
.btnLg { min-height: 54px; padding: 0 36px; font-size: 13px; }

.pill {
  display: inline-flex; align-items: center; padding: 3px 12px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-dim); border: 1px solid var(--border-strong);
  color: var(--gold); border-radius: 2px; white-space: nowrap;
}

/* ── HEADER ── */
.siteHeader {
  position: sticky; top: 0; z-index: 500;
  height: 68px; display: flex; align-items: center;
  background: rgba(13,15,18,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.headerInner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; height: 100%;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brandLogo { height: 33px; }
.brandName {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 900; font-style: italic; color: var(--text-primary);
}
.brandSub {
  display: block; font-family: var(--font-ui);
  font-size: 9px; letter-spacing: .2em; color: var(--gold);
  text-transform: uppercase; margin-top: -2px; font-weight: 500;
}
.mainNav { display: flex; align-items: center; }
.mainNav a {
  padding: 7px 13px; font-family: var(--font-ui); font-size: 11.5px;
  font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted); position: relative; transition: color .2s;
}
.mainNav a::after {
  content: ''; position: absolute; bottom: -1px; left: 13px; right: 13px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .28s; border-radius: 1px;
}
.mainNav a:hover { color: var(--text-primary); }
.mainNav a:hover::after, .mainNav a.active::after { transform: scaleX(1); }
.mainNav a.active { color: var(--text-primary); }

.navToggle {
  display: none; background: rgba(201,168,76,.08);
  border: 1px solid var(--border); color: var(--text-primary);
  padding: 9px 12px; cursor: pointer; align-items: center; justify-content: center;
}
.navToggleBars, .navToggleBars span {
  display: block; width: 22px; height: 2px; background: var(--text-primary);
  position: relative;
}
.navToggleBars span { position: absolute; left: 0; }
.navToggleBars span:first-child { top: -7px; }
.navToggleBars span:last-child { top: 7px; }
.srOnly { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── HERO HOMEPAGE ── */
.heroHome {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg-base);
}
.heroBg {
  position: absolute; inset: 0; z-index: 0;
}
.heroBg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(.85);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }

/* Gradient: alleen links donker, foto rechts zichtbaar */
.heroHome::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,15,18,.95) 0%,
    rgba(13,15,18,.85) 30%,
    rgba(13,15,18,.5) 55%,
    rgba(13,15,18,.1) 100%
  );
}
/* Onderkant: foto loopt door, géén overlay in de foto */
.heroHome::after { display: none; }

.heroContent {
  position: relative; z-index: 2;
  width: min(var(--max-w), calc(100% - 40px)); margin-inline: auto;
  padding: 100px 0;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
}
.heroLeft { display: flex; flex-direction: column; }
.heroLeft > * { opacity: 0; transform: translateY(18px); animation: hFade .85s ease forwards; }
.heroLeft > *:nth-child(1) { animation-delay: .1s; }
.heroLeft > *:nth-child(2) { animation-delay: .25s; }
.heroLeft > *:nth-child(3) { animation-delay: .4s; }
.heroLeft > *:nth-child(4) { animation-delay: .55s; }
.heroLeft > *:nth-child(5) { animation-delay: .7s; }
@keyframes hFade { to { opacity: 1; transform: none; } }

.heroEyebrow {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: .25em; color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.heroEyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.heroH1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 900; font-style: italic;
  line-height: .98; color: var(--text-primary);
  margin-bottom: 24px; letter-spacing: -.025em;
}
.heroH1 em { color: var(--red-bright); display: block; font-style: italic; }
.heroSub {
  font-size: 18px; font-weight: 300; line-height: 1.78;
  color: var(--text-secondary); max-width: 440px; margin-bottom: 36px;
}
.heroCtas { display: flex; gap: 14px; flex-wrap: wrap; }

.heroRight { opacity: 0; animation: hFade 1.2s ease .5s forwards; }
.heroStats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border-strong); border: 1px solid var(--border-strong);
}
.heroStat {
  background: rgba(13,15,18,.82); backdrop-filter: blur(12px);
  padding: 26px 22px; text-align: center;
}
.heroStatNum {
  font-family: var(--font-display); font-size: 42px;
  font-weight: 900; font-style: italic; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 5px;
}
.heroStatLabel {
  font-family: var(--font-ui); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; color: var(--text-muted); text-transform: uppercase;
}
.heroScroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 9px; letter-spacing: .25em;
  color: var(--text-muted); text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50% { opacity: .7; transform: translateX(-50%) translateY(6px); }
}
.heroScroll::after { content: '↓'; font-size: 14px; color: var(--gold); }

/* ── CTA STRIP ── */
.ctaStrip { background: var(--bg-card); border-bottom: 1px solid var(--border); }
.ctaStripGrid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ctaStripCard {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px; background: var(--bg-card);
  transition: background .2s; text-decoration: none;
  position: relative; overflow: hidden;
}
.ctaStripCard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.ctaStripCard:hover { background: var(--bg-raised); }
.ctaStripCard:hover::after { transform: scaleX(1); }
.ctaStripCard + .ctaStripCard { border-left: 1px solid var(--border); }
.ctaStripIcon {
  flex-shrink: 0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(139,26,26,.15); color: var(--red);
  transition: background .2s;
}
.ctaStripCard:hover .ctaStripIcon { background: rgba(139,26,26,.25); }
.ctaStripIcon svg { width: 20px; height: 20px; }
.ctaStripText { flex: 1; }
.ctaStripTitle {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 3px;
}
.ctaStripSub { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.ctaStripArrow { color: var(--gold); font-size: 18px; transition: transform .2s; }
.ctaStripCard:hover .ctaStripArrow { transform: translateX(5px); }

/* ── PAGE HERO (categorie/inner) ── */
/* Foto zichtbaar, gradient ALLEEN onderaan voor tekst-leesbaarheid */
.pageHero {
  position: relative; min-height: 360px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg-base);
}
.pageHeroBg { position: absolute; inset: 0; }
.pageHeroBg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.6) saturate(.85);
}
/* Gradient ALLEEN links voor tekst-leesbaarheid — rechts foto volledig zichtbaar */
.pageHero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(13,15,18,.92) 0%,
    rgba(13,15,18,.7) 40%,
    rgba(13,15,18,.2) 70%,
    transparent 100%
  );
}
/* GEEN gradiënt omhoog in de foto — alleen een dunne lijn aan de onderkant */
.pageHero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}
.pageHeroContent {
  position: relative; z-index: 2;
  padding: 60px 0 50px; width: 100%;
}
.pageHeroContent .kicker { color: var(--gold); }
.pageHeroContent .h1 { color: var(--text-primary); }
.pageHeroContent .lead { color: rgba(232,223,200,.75); }

/* ── CARDS ── */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 4px; overflow: hidden; position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.card:hover::before { transform: scaleX(1); }
.cardBody { padding: 20px; display: flex; flex-direction: column; height: 100%; }
.cardMeta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.ratingLine { display: flex; align-items: center; gap: 6px; }
.starsText { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.ratingText { font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: var(--text-muted); }
.cardMedia { margin: 10px -20px 14px; overflow: hidden; height: 190px; }
.cardMedia img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: brightness(.85); }
.card:hover .cardMedia img { transform: scale(1.04); filter: brightness(.95); }
.microHighlights { margin-bottom: 12px; }
.featureScore { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.featureLabel {
  font-family: var(--font-ui); font-size: 10px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); width: 70px; flex-shrink: 0;
}
.featureTrack { flex: 1; height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; }
.featureFill { display: block; height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 2px; }
.featureFill.is-1 { width: 20%; } .featureFill.is-2 { width: 40%; }
.featureFill.is-3 { width: 62%; } .featureFill.is-4 { width: 82%; } .featureFill.is-5 { width: 100%; }
.card .small, .card p.small { font-size: 15px; line-height: 1.65; color: var(--text-muted); }
.cardBottom { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-card); }
.cardBottomStack { display: flex; flex-direction: column; gap: 10px; }
.price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.cardCtaWide { width: 100%; justify-content: center; }

/* ── FEATURE PHOTOS (homepage) ── */
.featurePhotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.featurePhotoCard {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 4px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.featurePhotoCard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.featurePhotoMedia { overflow: hidden; aspect-ratio: 16/9; }
.featurePhotoMedia img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8); transition: transform .5s, filter .4s; }
.featurePhotoCard:hover .featurePhotoMedia img { transform: scale(1.04); filter: brightness(.95); }
.featurePhotoBody { padding: 22px; }
.featurePhotoBody .h3 { color: var(--text-primary); }
.featurePhotoBody .muted { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }

/* ── GAME HERO ── */
.gameHero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; background: var(--bg-base); overflow: hidden;
  position: relative;
}
/* GEEN gradient overlay in de foto — thumbnails blijven klikbaar */
.gameHero::after { display: none; }

.gameHeroLeft {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 52px 72px max(20px, calc((100vw - 1240px)/2 + 20px));
  position: relative; z-index: 3;
  background: linear-gradient(to right, var(--bg-base) 55%, transparent 100%);
}
.gameHeroLeft .kicker { color: var(--gold); }
.gameHeroLeft .h1 { color: var(--text-primary); }
.gameHeroLeft .lead { color: var(--text-secondary); font-size: 17px; }
.gameHeroLeft > * { opacity: 0; transform: translateY(14px); animation: hFade .8s ease forwards; }
.gameHeroLeft > *:nth-child(1) { animation-delay: .1s; }
.gameHeroLeft > *:nth-child(2) { animation-delay: .24s; }
.gameHeroLeft > *:nth-child(3) { animation-delay: .38s; }
.gameHeroLeft > *:nth-child(4) { animation-delay: .52s; }

.gameHeroRight { position: relative; overflow: hidden; }
.gameHeroImg { width: 100%; height: 100%; object-fit: cover; filter: brightness(.65); transition: opacity .3s; }
/* Dunne zijdelingse gradient voor overgang tekst/foto */
.gameHeroRight::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--bg-base) 0%, rgba(13,15,18,.2) 30%, transparent 60%);
}
/* Thumbnails: helemaal onderaan, BOVEN de foto — geen gradient erover */
.gameThumbStrip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 4px; padding: 12px 14px;
  z-index: 10; /* Hoog genoeg boven alles */
  overflow-x: auto; scrollbar-width: none;
  background: linear-gradient(to top, rgba(13,15,18,.85) 0%, transparent 100%);
}
.gameThumbStrip::-webkit-scrollbar { display: none; }
.gameThumb {
  width: 58px; height: 40px; object-fit: cover;
  border: 2px solid transparent; cursor: pointer;
  opacity: .5; transition: opacity .2s, border-color .2s, transform .2s;
  flex-shrink: 0; border-radius: 2px;
}
.gameThumb:hover { opacity: .85; transform: scale(1.07); }
.gameThumb.active { border-color: var(--gold); opacity: 1; }

/* ── DARK SECTIONS (product pages) ── */
.darkContentSection {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.darkContentSection .h2 { color: var(--text-primary); }
.darkContentSection .muted { color: var(--text-secondary); font-size: 17px; line-height: 1.75; }

/* ── CONTENT SECTION ── */
.contentSection {
  background: var(--bg-card);
  padding: 72px 0;
}
.twoCol { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Checklist */
.checkList { list-style: none; margin: 0 0 26px; padding: 0; }
.checkList li {
  padding: 11px 0 11px 28px; position: relative;
  font-size: 17px; line-height: 1.65; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-card);
}
.checkList li:last-child { border-bottom: none; }
.checkList li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 13px; }

/* Order box */
.orderSummary {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 22px 24px; margin: 22px 0; border-radius: 0 4px 4px 0;
}
.miniTitle {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 8px;
}
.priceBig {
  font-family: var(--font-display); font-size: 38px; font-weight: 900;
  color: var(--text-primary); margin: 0 0 14px; line-height: 1;
}
.orderHighlights { list-style: none; margin: 0; padding: 0; }
.orderHighlights li {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; font-family: var(--font-ui); font-size: 14px;
  color: var(--text-secondary);
}
.orderHighlights .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* Media stack */
.mediaStack { display: flex; flex-direction: column; gap: 12px; }
.mediaCard {
  overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.mediaCard:hover { transform: scale(1.01); }
.mediaCard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(.8); cursor: zoom-in; }

/* ── VICTIM SECTION ── */
.victimBlock { background: var(--bg-raised); padding: 60px 0; }
.victimGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.victimThumb {
  display: block; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border-card); position: relative; cursor: pointer;
}
.victimThumb img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(.8) saturate(.9);
  transition: transform .4s, filter .4s;
}
.victimThumb:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }
/* Naam label onder de foto */
.victimName {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,15,18,.88);
  padding: 8px 10px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-primary); text-align: center;
}

/* ── FEATURE CARDS ── */
.featureRow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.featureCard {
  background: var(--bg-raised); border: 1px solid var(--border-card);
  border-radius: 4px; padding: 26px 22px;
  transition: transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.featureCard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.featureCard:hover { transform: translateY(-3px); border-color: var(--border); }
.featureCard:hover::before { transform: scaleX(1); }
.featureCard .h3 { color: var(--text-primary); }
.featureCard .muted { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* ── HOE WERKT HET — category cards met foto's ── */
.howItWorksGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.howItWorksCard {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 4px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.howItWorksCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.howItWorksPhoto { overflow: hidden; aspect-ratio: 16/9; }
.howItWorksPhoto img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); transition: transform .5s, filter .4s; }
.howItWorksCard:hover .howItWorksPhoto img { transform: scale(1.04); filter: brightness(.9); }
.howItWorksBody { padding: 22px; }
.howItWorksBody .h3 { color: var(--text-primary); margin-bottom: 10px; }
.howItWorksBody p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 16px; }

/* ── STEPS ── */
.stepsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.stepCard {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 4px; padding: 30px 24px; position: relative; overflow: hidden;
}
.stepCard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--red), var(--gold));
}
.stepNum {
  font-family: var(--font-display); font-size: 56px; font-weight: 900; font-style: italic;
  color: rgba(201,168,76,.1); line-height: 1; margin-bottom: -14px;
}
.stepTitle { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.stepText { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* ── QUOTE BAND ── */
.quoteBand {
  background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.quoteBand::before {
  content: '"'; font-family: var(--font-display); font-size: 360px;
  color: rgba(201,168,76,.05); position: absolute; top: -80px; left: 20px;
  font-weight: 900; line-height: 1; pointer-events: none; z-index: 0;
}
.quoteBandInner { position: relative; z-index: 1; }
.quoteBandText {
  font-family: var(--font-display); font-size: clamp(18px, 2.6vw, 30px);
  font-style: italic; color: var(--text-primary);
  max-width: 760px; margin: 0 auto 16px; line-height: 1.55;
}
.quoteBandMeta {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
}

/* ── FAQ ── */
.faqSection { background: var(--bg-base); }
.faqGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.faqItem {
  border: 1px solid var(--border-card); margin: -1px 0 0 -1px;
  background: var(--bg-card);
}
.faqQ {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: transparent; border: none;
  color: var(--text-primary); font-family: var(--font-body); font-size: 17px;
  font-weight: 600; cursor: pointer; text-align: left; gap: 12px; transition: background .2s;
}
.faqQ:hover { background: var(--bg-raised); }
.faqQ span { flex: 1; }
.faqQ::after {
  content: '+'; color: var(--gold); font-size: 20px; font-weight: 300;
  flex-shrink: 0; transition: transform .3s; font-family: var(--font-ui);
}
.faqItem.isOpen .faqQ::after { transform: rotate(45deg); }
.faqA { display: none; padding: 0 20px 18px; }
.faqA p { margin: 0; font-size: 16px; color: var(--text-secondary); line-height: 1.75; }
.faqItem.isOpen .faqA { display: block; }

/* ── FILTER BAR ── */
.filterBar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filterBtn {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 20px; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-muted);
  cursor: pointer; transition: all .2s; border-radius: 3px;
}
.filterBtn:hover { border-color: var(--gold); color: var(--gold); }
.filterBtn.active { background: var(--red); border-color: var(--red); color: #fff; }
.filterCount {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  color: var(--text-muted); margin-left: auto; letter-spacing: .04em;
}
.gameCard.hidden { display: none; }

/* ── CONTACT ── */
.contactGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.formGroup { margin-bottom: 18px; }
.formLabel {
  display: block; font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 7px;
}
.formInput, .formTextarea, .formGrid input, .formGrid select, .formGrid textarea {
  width: 100%; background: var(--bg-raised); border: 1.5px solid var(--border);
  color: var(--text-primary); font-family: var(--font-body); font-size: 17px;
  padding: 12px 16px; outline: none; border-radius: 3px; transition: border-color .2s;
}
.formInput:focus, .formTextarea:focus,
.formGrid input:focus, .formGrid select:focus, .formGrid textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.formInput::placeholder, .formTextarea::placeholder { color: var(--text-muted); }
.formTextarea { resize: vertical; min-height: 120px; }
.formNotice {
  padding: 12px 16px; margin: 14px 0; font-size: 15px;
  border-radius: 3px; font-family: var(--font-ui);
}
.formNotice.isSuccess { background: rgba(39,125,61,.12); border-left: 3px solid #4caf78; color: #4caf78; }
.formNotice.isError { background: rgba(139,26,26,.15); border-left: 3px solid var(--red-bright); color: var(--red-bright); }
.spamRow { display: flex; align-items: center; gap: 14px; }
.spamPrompt { font-size: 17px; color: var(--gold); font-weight: 600; font-family: var(--font-body); }
.hpWrap { display: none; }
.formGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.formGrid .fieldFull { grid-column: 1 / -1; }
.formGrid label {
  display: block; font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 6px;
}

/* Contact info card */
.contactInfoCard {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 4px; padding: 28px; margin-bottom: 16px;
}
.contactInfoCard .miniTitle { color: var(--gold); font-size: 10px; }
.contactInfoCard p { color: var(--text-secondary); font-size: 16px; margin: 0 0 6px; line-height: 1.6; }
.contactInfoCard a { color: var(--gold); transition: color .2s; }
.contactInfoCard a:hover { color: var(--gold-bright); }

/* ── FOOTER ── */
.siteFooter {
  background: var(--bg-card); border-top: 1px solid var(--border-strong);
  padding-top: 60px;
}
.footerGrid { display: grid; grid-template-columns: 2fr 2fr 1.5fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footerBrand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footerLogo { height: 32px; }
.footerBrandName { font-family: var(--font-display); font-size: 15px; font-weight: 900; font-style: italic; color: var(--text-primary); }
.footerBrandTag { font-family: var(--font-ui); font-size: 9px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 500; }
.footerText { font-family: var(--font-ui); font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 30ch; }
.footerNav { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footerNavTitle { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footerNavGrid { display: flex; flex-direction: column; gap: 9px; }
.footerNavGrid a { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footerNavGrid a:hover { color: var(--text-primary); }
.footerTrustCard { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.trustTop { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.trustScore { font-family: var(--font-display); font-size: 40px; font-weight: 900; font-style: italic; color: var(--gold); line-height: 1; }
.trustLabel { font-family: var(--font-ui); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.footerTextSmall { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); line-height: 1.6; font-style: italic; margin: 0 0 14px; }
.footerGamePhoto { overflow: hidden; margin-bottom: 14px; height: 108px; border-radius: 3px; }
.footerGamePhoto img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.footerMiniCtas { display: flex; gap: 8px; }
.footerMiniCtas .btn { padding: 8px 14px; min-height: 34px; font-size: 11px; }
.footerBottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--font-ui); font-size: 12px; color: var(--text-faint); }
.footerLegal { display: flex; gap: 20px; }
.footerLegal a { color: var(--text-faint); transition: color .2s; }
.footerLegal a:hover { color: var(--text-primary); }

/* ── GAMESECTION ── */
.gamesSection { background: var(--bg-card); }
.gamesSection .h2 { color: var(--text-primary); }
.gamesSection .lead { color: var(--text-secondary); }

/* ── LIGHTBOX ── */
.lightboxOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.95);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(6px);
}
.lightboxOverlay.isOpen { opacity: 1; pointer-events: all; }
.lightboxDialog {
  position: relative; max-width: 88vw; max-height: 88vh;
  /* Niet fullscreen op mobiel */
}
.lightboxImg { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 3px; display: block; }
.lightboxClose {
  position: absolute; top: -50px; right: 0;
  background: var(--red); border: none; color: #fff;
  padding: 10px 20px; cursor: pointer; border-radius: 3px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s;
  /* Altijd zichtbaar, groot kruisje */
  min-width: 100px;
}
.lightboxClose:hover { background: var(--red-bright); }
/* Mobiel: kruisje boven de afbeelding, buiten de foto */
@media (max-width: 600px) {
  .lightboxDialog { max-width: 95vw; }
  .lightboxImg { max-height: 70vh; }
  .lightboxClose {
    position: fixed; top: 20px; right: 20px;
    z-index: 10001; top: 20px;
  }
}
body.noScroll { overflow: hidden; }

/* ── MODAL ── */
.modalOverlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modalOverlay.isOpen { opacity: 1; pointer-events: all; }
.modalDialog { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 4px; padding: 40px; max-width: 420px; width: calc(100% - 40px); position: relative; box-shadow: var(--shadow-lg); }
.modalClose { position: absolute; top: 14px; right: 16px; background: transparent; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; transition: color .2s; }
.modalClose:hover { color: var(--text-primary); }
.modalDialog .h2, .modalDialog h3 { color: var(--text-primary); }
.modalDialog p { color: var(--text-secondary); }

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

/* ── PAPERPAGINA ── */
.paperPage { background: var(--bg-base); }
.paperPage .section { background: var(--bg-base); }
.paperPage .section:nth-child(even) { background: var(--bg-card); }

/* ── SECTIONDIVIDER ── */
.sectionDivider { border-top: 1px solid var(--border); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .navToggle { display: flex; }
  .mainNav {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(13,15,18,.99); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 20px 0; gap: 0; border-bottom: 1px solid var(--border-strong);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .3s, opacity .3s; z-index: 400;
  }
  .mainNav.isOpen { transform: none; opacity: 1; pointer-events: all; }
  .mainNav a { padding: 13px 24px; width: 100%; font-size: 13px; border-bottom: 1px solid var(--border-card); }
  .mainNav a::after { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .heroContent { grid-template-columns: 1fr; gap: 40px; }
  .heroRight { display: none; }
  .grid3 { grid-template-columns: repeat(2, 1fr); }
  .featurePhotos { grid-template-columns: repeat(2, 1fr); }
  .stepsGrid { grid-template-columns: repeat(2, 1fr); }
  .howItWorksGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .ctaStripGrid { grid-template-columns: 1fr; }
  .ctaStripCard + .ctaStripCard { border-left: none; border-top: 1px solid var(--border); }
  .gameHero { grid-template-columns: 1fr; min-height: auto; }
  .gameHeroLeft { padding: 48px 20px 40px; background: var(--bg-base); }
  .gameHeroRight { height: 280px; }
  .twoCol { grid-template-columns: 1fr; gap: 32px; }
  .featureRow { grid-template-columns: 1fr; }
  .faqGrid { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr; gap: 32px; }
  .footerNav { grid-template-columns: 1fr 1fr; }
  .victimGrid { grid-template-columns: repeat(2, 1fr); }
  .quoteBand { padding: 56px 24px; }
  .heroHome { min-height: 75vh; }
  .heroContent { padding: 80px 0 60px; }
  .contactGrid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .grid3, .grid4 { grid-template-columns: 1fr; }
  .featurePhotos { grid-template-columns: 1fr; }
  .stepsGrid { grid-template-columns: 1fr; }
  .howItWorksGrid { grid-template-columns: 1fr; }
  .filterBar { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   FIXES v6.1 — Marge, slachtoffers, tekstgrootte
   ================================================================ */

/* 1. BASISTEKST GROTER — minimaal 17px, leads 19px */
body { font-size: 17px !important; }
p, li, .muted, .body-text { font-size: 17px; line-height: 1.75; }
.lead { font-size: 19px !important; line-height: 1.75; }
.small { font-size: 15px; }
.checkList li { font-size: 17px; }
.orderHighlights li { font-size: 15px; }
.featureCard .muted, .featurePhotoBody .muted, .stepText { font-size: 16px; }
.faqA p { font-size: 17px; line-height: 1.75; }
.howItWorksBody p { font-size: 16px; line-height: 1.75; }

/* 2. PAGE HERO — content marge zodat tekst niet tegen de zijkant zit */
.pageHeroContent {
  padding: 64px 0 56px !important;
}
/* De .container in pageHeroContent zorgt voor automatische marge */
/* Maar de pageHeroContent zelf heeft geen container — voeg padding toe */
.pageHero .container {
  position: relative;
  z-index: 2;
}
/* Zorg dat tekst minimaal 20px van de rand zit via de container */
.pageHeroContent .h1 { 
  max-width: 70%;  /* Voorkomt dat lange titels tot de rand lopen */
}
.pageHeroContent .lead {
  max-width: 55ch;
}

/* 3. SLACHTOFFERS — volledig portret tonen, niet afkappen */
/* Grid: elke foto krijgt voldoende hoogte voor portret */
.victimGrid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  margin-top: 28px !important;
}
.victimThumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
/* Verwijder de 3:4 aspect ratio die afkapping veroorzaakt
   Gebruik nu 2:3 voor portretfoto — meer van de persoon zichtbaar */
.victimThumb img {
  width: 100%;
  height: auto !important;  /* Laat de foto zijn eigen hoogte bepalen */
  aspect-ratio: unset !important;  /* Geen geforceerde ratio */
  object-fit: cover !important;
  object-position: top center !important;  /* Gezicht altijd bovenaan */
  display: block;
  filter: brightness(.88) saturate(.9);
  transition: transform .4s, filter .4s;
  min-height: 200px;
  max-height: 320px;
}
.victimThumb:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.05); }

/* Naam label altijd zichtbaar */
.victimName {
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  background: linear-gradient(transparent, rgba(13,15,18,.92)) !important;
  padding: 24px 12px 10px !important;
  font-family: var(--font-ui) !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: .1em !important; text-transform: uppercase !important;
  color: var(--text-primary) !important; text-align: center !important;
}

/* 4. HOE WERKT HET — zorg dat foto-cards correct renderen */
/* Als de section nog de featureRow gebruikt: overschrijf met photo layout */
.howItWorksGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.howItWorksCard {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.howItWorksCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.howItWorksPhoto {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.howItWorksPhoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: transform .5s, filter .4s;
  display: block;
}
.howItWorksCard:hover .howItWorksPhoto img { transform: scale(1.04); filter: brightness(.9); }
.howItWorksBody {
  padding: 22px;
}
.howItWorksBody .h3 { color: var(--text-primary); margin-bottom: 10px; }
.howItWorksBody p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 18px;
}

/* 5. EXTRA: game section tekst altijd leesbaar donker */
.gamesSection { background: var(--bg-card); }
.gamesSection .h2 { color: var(--text-primary); }
.gamesSection .lead { color: var(--text-secondary); }

/* 6. BUTTONS in "andere formats" section — zichtbaar op donkere achtergrond */
.contentSection .btnGhost,
.sectionDivider .btnGhost {
  border-color: rgba(232,223,200,.3) !important;
  color: var(--text-primary) !important;
}
.contentSection .btnGhost:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* 7. Responsive victimGrid */
@media (max-width: 800px) {
  .victimGrid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .victimGrid { grid-template-columns: 1fr 1fr !important; }
}

/* Ensure container class inside pageHero works correctly */
.container.pageHeroContent,
.pageHeroContent .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 52px;
}
.container.pageHeroContent .h1,
.pageHeroContent .container .h1 {
  max-width: 70%;
  color: var(--text-primary);
}
.container.pageHeroContent .kicker,
.pageHeroContent .container .kicker {
  color: var(--gold);
}
.container.pageHeroContent .lead,
.pageHeroContent .container .lead {
  color: rgba(232,223,200,.8);
  max-width: 52ch;
  font-size: 18px;
}

/* ================================================================
   CRITICAL FIX: pageHero tekst marge
   De .container in .pageHero had geen correcte positionering
   ================================================================ */
.pageHero {
  display: flex;
  align-items: flex-end;
}
.pageHero .pageHeroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pageHero .pageHeroBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(.85);
}
/* Gradient overlay */
.pageHero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(13,15,18,.92) 0%,
    rgba(13,15,18,.72) 40%,
    rgba(13,15,18,.25) 70%,
    transparent 100%
  );
}
.pageHero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}

/* DE ECHTE FIX: container krijgt expliciete breedte en marge */
.container.pageHeroContent {
  /* Overschrijf alles */
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  /* Gebruik calc zodat er ALTIJD marge is, ook op kleine schermen */
  width: calc(100% - 80px) !important;
  max-width: var(--max-w) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 64px !important;
  padding-bottom: 52px !important;
  /* Op hele kleine schermen: minimaal 20px aan elke kant */
  min-padding-inline: 20px;
}
/* Extra zekerheid voor kleine schermen */
@media (max-width: 600px) {
  .container.pageHeroContent {
    width: calc(100% - 40px) !important;
  }
}

/* Tekst binnen hero */
.container.pageHeroContent .h1 {
  color: var(--text-primary);
  max-width: 72%;
  margin-bottom: 18px;
}
.container.pageHeroContent .kicker {
  color: var(--gold);
}
.container.pageHeroContent .lead {
  color: rgba(232,223,200,.8);
  font-size: 18px;
  max-width: 52ch;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .container.pageHeroContent .h1 {
    max-width: 90%;
  }
}
