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

/* ===== DESIGN TOKENS — De Zangerij Luxury ===== */
:root {
  /* Palette — afgeleid van het logo */
  --black:          #07060A;
  --bg:             #0B0910;
  --bg-alt:         #100D16;
  --surface:        #151120;
  --surface-raised: #1B1628;
  --surface-high:   #221D31;

  --crimson:        #C0191F;
  --crimson-dark:   #901318;
  --crimson-glow:   rgba(192, 25, 31, 0.15);

  --gold:           #C9A653;
  --gold-light:     #E4C87A;
  --gold-dim:       #8A7040;
  --gold-glow:      rgba(201, 166, 83, 0.12);
  --gold-border:    rgba(201, 166, 83, 0.25);
  --gold-subtle:    rgba(201, 166, 83, 0.07);

  --white:          #F0E8D4;
  --text:           #E2D8C0;
  --text-muted:     #7A6E5C;
  --text-dim:       #4A4238;
  --border:         #221C2C;
  --border-subtle:  #191427;

  /* Lichte secties */
  --bg-light:           #F5F1EA;
  --bg-light-alt:       #EDE8DF;
  --text-dark:          #1C1612;
  --text-dark-muted:    #5C5245;
  --text-dark-dim:      #96877A;
  --border-light:       rgba(28, 22, 18, 0.10);

  /* Typografie */
  --font-display:   'Cinzel', Georgia, serif;
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Ruimte & vorm */
  --max-width: 1200px;
  --radius:    3px;
  --radius-md: 5px;
  --radius-lg: 7px;

  /* Verfijnde schaduwlaag */
  --shadow:       0 8px 48px rgba(0, 0, 0, 0.65);
  --shadow-lg:    0 20px 80px rgba(0, 0, 0, 0.85);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-gold:  0 6px 32px rgba(201, 166, 83, 0.22), 0 2px 8px rgba(201, 166, 83, 0.12);
  --shadow-up:    0 -8px 40px rgba(201, 166, 83, 0.05);

  /* Animaties */
  --transition:      all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Selectie kleur */
::selection { background: rgba(201,166,83,0.22); color: var(--white); }

/* Premium scrollbar */
::-webkit-scrollbar { width: 5px; background: var(--black); }
::-webkit-scrollbar-thumb { background: #2A2238; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3A3150; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0;
}
h4 { font-family: var(--font-body); font-weight: 500; color: var(--white); line-height: 1.4; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; font-style: italic; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem);  font-weight: 400; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTIES — rijk gelaagde achtergronden ===== */
.section {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(58,46,80,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(42,33,60,0.35) 0%, transparent 55%),
    #120F1A;
  position: relative;
}

/* Subtiele gouden lijn bovenaan elke sectie */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.12) 25%, rgba(201,166,83,0.18) 50%, rgba(201,166,83,0.12) 75%, transparent 100%);
  pointer-events: none;
}

.section--sm { padding: 5rem 0; }
.section--alt {
  background:
    radial-gradient(ellipse 70% 50% at 75% 0%, rgba(48,36,70,0.4) 0%, transparent 60%),
    #0E0B16;
}
.section--surface {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(50,40,74,0.5) 0%, transparent 65%),
    #151120;
}
.section--light {
  background:
    radial-gradient(ellipse 80% 60% at 30% 0%, rgba(240,230,200,0.6) 0%, transparent 65%),
    linear-gradient(180deg, #F6F3ED 0%, #EFEAE2 100%);
}
#keuzes {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(240,230,200,0.5) 0%, transparent 65%),
    linear-gradient(180deg, #F6F3ED 0%, #EFEAE2 100%);
}
.section--mid {
  background:
    radial-gradient(ellipse 80% 50% at 60% 0%, rgba(38,30,56,0.7) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(30,22,48,0.5) 0%, transparent 50%),
    #110E18;
}

/* Gouden lijn-divider */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold) 50%, var(--gold-dim) 70%, transparent 100%);
  margin: 1.4rem auto;
  opacity: 0.65;
  transition: width 0.4s ease, opacity 0.4s ease;
}
.gold-line--left { margin-left: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 7, 14, 0.96);
  border-bottom: 1px solid rgba(42, 34, 58, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(201,166,83,0.06), 0 4px 32px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.logo:hover { text-decoration: none; opacity: 0.85; }

.logo__mark {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(201,166,83,0.25));
}

.logo__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.logo__text-wrap--row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.logo__sep {
  display: block;
  width: 1px;
  height: 26px;
  background: rgba(201,166,83,0.30);
  flex-shrink: 0;
}
.logo__text-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo__sub-svg {
  height: 23px;
  width: auto;
  display: block;
  overflow: visible;
}
/* Footer: stapelen + groter */
.logo--footer .logo__mark { height: 50px !important; width: auto !important; }
.logo--footer .logo__text-img { height: 42px; }
.logo--footer .logo__sub-svg { height: 26px; }
.logo--footer .logo__text-wrap { gap: 7px; }

/* Navigatie */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122, 110, 92, 0.85);
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.nav__link:hover { color: rgba(224, 216, 192, 0.9); text-decoration: none; }
.nav__link.actief { color: var(--gold); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: rgba(22, 17, 32, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(42, 34, 58, 0.8);
  border-top: 1px solid rgba(201,166,83,0.25);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  box-shadow: 0 16px 60px rgba(0,0,0,0.7), 0 4px 16px rgba(0,0,0,0.5);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dropdown a {
  display: block;
  padding: 0.75rem 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition);
  border-bottom: 1px solid rgba(42, 34, 58, 0.6);
  text-decoration: none;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { color: var(--gold-light); background: rgba(201,166,83,0.07); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-muted); transition: var(--transition);
}

/* ===== KNOPPEN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;            /* mobile tap-target — Apple HIG / Material */
  padding: 0.85rem 1.875rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { text-decoration: none; }

/* Shimmer-overlay op alle knoppen */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 100%; }

/* Goud — primaire actie */
.btn--gold {
  background: linear-gradient(135deg, #D4AD5C 0%, #C9A653 45%, #B8944A 100%);
  color: #12100A;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(201,166,83,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #E4C87A 0%, #D4AD5C 45%, #C9A653 100%);
  color: #0D0B07;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn--gold:active { transform: translateY(0); }

/* Crimson — secondaire actie */
.btn--crimson {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}
.btn--crimson:hover {
  background: var(--crimson);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(192, 25, 31, 0.3);
}

/* Outline — secundaire actie */
.btn--outline {
  background: transparent;
  color: rgba(138, 112, 64, 0.9);
  border-color: rgba(201, 166, 83, 0.22);
}
.btn--outline:hover {
  border-color: rgba(201, 166, 83, 0.7);
  color: var(--gold-light);
  background: rgba(201,166,83,0.06);
  transform: translateY(-1px);
}

/* Ghost wit */
.btn--ghost {
  background: transparent;
  color: rgba(240,232,212,0.55);
  border-color: rgba(240,232,212,0.16);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(240,232,212,0.35);
  background: rgba(255,255,255,0.04);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.83rem; letter-spacing: 0.13em; }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.72rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

/* ---- Home hero ---- */
.hero--home {
  background: #000000 url('logo-de-zangerij-spotlight-landscape.jpg') 40% top / clamp(504.54px, 50.454vw, 743.53px) clamp(334.4px, 33.44vw, 492.8px) no-repeat;
  height: clamp(380px, 38vw, 560px);
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dramatische vignette + sfeer overlay */
.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Gecentreerde inhoud */
.hero__home-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 2rem;
  gap: 0;
}

/* Logo-wordmark bovenaan de hero */
.hero__logo-img {
  display: block;
  width: auto;
  max-width: 79%;
  max-height: clamp(42px, 6.05vw, 68px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
  transform: scale(0.784);
  transform-origin: center center;
}

/* Ondertitel SVG — "Ambachtelijke Zanglessen" */
.hero__subtitle-svg {
  display: block;
  width: clamp(180px, 32vw, 363px);
  height: auto;
  margin-top: 0.9rem;
}

/* Tagline */
.hero__tagline {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 400;
  color: rgba(122, 110, 92, 0.9);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 1.35rem 0 0;
}

/* CTA-knop */
.hero__cta {
  margin-top: 2.25rem;
}

/* ---- Sub-hero (inner pages) ---- */
.hero--sub {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 100% at 70% -20%, rgba(50,38,72,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(34,26,52,0.5) 0%, transparent 55%),
    var(--bg);
}

.hero--sub::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 700px;
  background: radial-gradient(ellipse at top right, rgba(201,166,83,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.hero__content { max-width: 600px; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.hero__label::before {
  display: none;
}

.hero h1 {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-style: normal;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.hero h1 em { font-style: normal; color: var(--crimson); }
.hero__h1-deco { font-family: 'Cinzel Decorative', serif; font-weight: 700; }
.hero--sub h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero--sub .hero__ctas { justify-content: flex-start; }

/* Info-badges in hero */
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(42,34,58,0.8);
  background: rgba(21,17,32,0.5);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: border-color 0.25s;
}
.hero__badge:hover { border-color: rgba(201,166,83,0.2); }
.hero__badge span:first-child {
  font-size: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
  opacity: 0.75;
}
.hero__content--full { max-width: 700px; }

/* ===== SECTIE HEADER ===== */
.sectie-hoofd {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.sectie-hoofd h2 { margin-bottom: 1.25rem; }
.sectie-hoofd p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 1.25rem auto 0;
  line-height: 1.9;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(138, 112, 64, 0.85);
  margin-bottom: 1rem;
}
.label::before,
.label::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
  opacity: 0.6;
  flex-shrink: 0;
}
.label::after {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.label--display {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.h2--display {
  font-family: 'Cinzel Decorative', serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== KAARTEN ===== */
.kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: rgba(34, 28, 44, 0.8);
  border: 1px solid rgba(34, 28, 44, 0.9);
  box-shadow: var(--shadow-card);
}

.kaart {
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 25%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.kaart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.08) 50%, transparent 100%);
  pointer-events: none;
}
.kaart:hover {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface-raised) 25%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.25);
}

/* Gouden top-accent op featured kaart */
.kaart--uitgelicht {
  background: linear-gradient(160deg, rgba(201,166,83,0.06) 0%, var(--surface-raised) 20%);
}
.kaart--uitgelicht::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,166,83,0.3) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, rgba(201,166,83,0.3) 100%);
  pointer-events: none;
}

.kaart__icon {
  display: flex;
  align-items: flex-end;
  height: 48px;
  margin-bottom: 1.1rem;
  opacity: 0.82;
}
.kaart__icon img {
  height: 48px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  object-position: left bottom;
}

.kaart__label {
  font-family: 'Cinzel', Georgia, serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.kaart h3 { margin-bottom: 0.75rem; color: var(--white); font-style: italic; }
.kaart h4 { color: var(--text-muted); font-size: 0.88rem; font-weight: 400; margin-bottom: 1.25rem; font-style: italic; }
.kaart p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 0; }
.kaart .checklist { flex: 1; }
.kaart .btn { margin-top: auto; padding-top: 2.25rem; align-self: flex-start; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; margin: 1.25rem 0 1.5rem; }
.checklist li {
  padding: 0.65rem 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(34, 28, 44, 0.7);
  padding-left: 1rem;
  position: relative;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--gold-dim);
  border-radius: 50%;
  opacity: 0.7;
}
.checklist li:last-child { border-bottom: none; }

.checklist--wit li { color: rgba(240,232,212,0.75); border-color: rgba(255,255,255,0.06); }
.checklist--wit li::before { background: var(--gold-light); }

/* ===== INFO STRIP ===== */
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}
.info-strip__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  background: rgba(21,17,32,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: border-color 0.25s;
}
.info-strip__item:hover { border-color: rgba(201,166,83,0.2); }
.info-strip__item span:first-child { color: var(--gold); font-size: 0.9rem; }

/* ===== PRIJSBLOK ===== */
.prijs-blok {
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 20%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}
.prijs-blok::before {
  content: '';
  position: absolute;
  top: 2px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,200,122,0.15), transparent);
  pointer-events: none;
}
.prijs-blok h3 { color: var(--gold); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; font-style: normal; }
.prijs-rij {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
}
.prijs-rij:last-of-type { border-bottom: none; }
.prijs-rij__label { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.03em; }
.prijs-rij__bedrag { font-size: 1.2rem; font-weight: 600; color: var(--white); font-family: var(--font-heading); }
.prijs-promo {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(201,166,83,0.06);
  border: 1px solid rgba(201,166,83,0.18);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.prijs-promo strong { color: var(--gold); }

/* ===== FAQ ===== */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid rgba(34, 28, 44, 0.8);
}
.faq__vraag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.faq__vraag:hover { color: var(--white); }
.faq__vraag::-webkit-details-marker { display: none; }
.faq__vraag::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold-dim);
  flex-shrink: 0;
  line-height: 1;
  font-family: var(--font-body);
  font-weight: 300;
  transition: var(--transition);
  opacity: 0.7;
}
details[open] .faq__vraag::after { content: '−'; color: var(--gold); opacity: 1; }
.faq__antwoord { padding: 0 0 1.5rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.85; }

/* ===== TRAJECT VISUAL ===== */
.traject {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 3rem 0;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.traject__stap {
  text-align: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 30%);
  flex: 1;
  text-decoration: none;
  transition: var(--transition);
  border-right: 1px solid var(--border);
  position: relative;
}
.traject__stap:last-child { border-right: none; }
.traject__stap:hover { background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface-raised) 30%); text-decoration: none; }
.traject__stap.actief {
  background: linear-gradient(160deg, rgba(201,166,83,0.06) 0%, var(--surface-raised) 30%);
  border-top: 2px solid var(--gold);
  margin-top: -1px;
}
.traject__nummer {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}
.traject__stap.actief .traject__nummer { color: var(--gold); }
.traject__stap h4 { font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; color: var(--text-muted); margin: 0; font-weight: 400; }
.traject__stap.actief h4 { color: var(--white); }
.traject__sub { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.3rem; letter-spacing: 0.04em; }
.traject__stap.actief .traject__sub { color: var(--text-muted); }
.traject__ster {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* ===== TRAJECT — VORKMODEL ===== */
.traject--fork {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto;
  max-width: 680px;
  gap: 0;
  border: none;
  overflow: visible;
  box-shadow: none;
}
.traject__fork-top {
  display: flex;
  justify-content: center;
  width: 100%;
}
.traject__fork-top .traject__stap {
  flex: none;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: none;
}
.traject__fork-top .traject__stap.actief {
  border-color: var(--gold-border);
  border-top: 2px solid var(--gold);
}
.traject__fork-pijl {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.4rem 0;
  opacity: 0.6;
}
.traject__fork-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.traject__fork-row .traject__stap {
  flex: 1;
  border: none;
  border-radius: 0;
}
.traject__fork-row .traject__stap:first-child {
  border-right: 1px solid var(--border);
}
.traject__fork-row .traject__stap.actief {
  border-top: 2px solid var(--gold);
  margin-top: -1px;
  border-right-color: var(--border);
}
.traject__fork-wissel {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 30%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.traject__label-klein {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.traject__stap.actief .traject__label-klein { color: var(--gold); }
.traject__note {
  margin-top: 1.75rem;
  text-align: center;
  line-height: 1.6;
  font-style: normal;
}
.traject__note-hoofd {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}
.traject__note-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  font-style: italic;
  margin-top: 0.4rem;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .traject__fork-row {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .traject__fork-row .traject__stap:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .traject__fork-wissel {
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.4rem;
    justify-content: center;
  }
  .traject__fork-top .traject__stap { min-width: unset; width: 100%; }
}

/* ===== TRAJECT — SLIM (diagonal fork) ===== */
.traject--slim {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  margin: 2.5rem auto;
  border: none;
  overflow: visible;
  gap: 0;
  box-shadow: none;
}
.traject__slim-top {
  display: flex;
  justify-content: center;
  width: 100%;
}
.traject__slim-stap {
  text-align: center;
  padding: 0.9rem 2rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 25%);
  border: 1px solid rgba(34,28,44,0.9);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  min-width: 190px;
  position: relative;
  overflow: hidden;
}
.traject__slim-stap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.08) 50%, transparent 100%);
  pointer-events: none;
}
.traject__slim-stap:hover {
  border-color: rgba(201,166,83,0.35);
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface-raised) 25%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.25);
}
.traject__slim-stap.actief {
  border-color: rgba(201,166,83,0.5);
  border-top: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(201,166,83,0.06) 0%, var(--surface-raised) 20%);
}
.traject__slim-naam {
  font-family: 'Cinzel', Georgia, serif;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.12em;
}
.traject__slim-stap:hover .traject__slim-naam,
.traject__slim-stap.actief .traject__slim-naam { color: var(--white); }
.traject__slim-sub {
  font-size: 0.62rem;
  color: rgba(226, 216, 192, 0.52);
  margin-top: 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.traject__slim-connector {
  width: 70%;
  height: 50px;
  display: block;
  flex-shrink: 0;
}
.traject__slim-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}
.traject__slim-bottom {
  display: flex;
  width: 100%;
  gap: 1px;
  align-items: stretch;
}
.traject__slim-bottom .traject__slim-stap {
  flex: 1;
  min-width: 0;
}

/* Traject schema icons */
.traject__slim-icon {
  height: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.55rem;
  opacity: 0.72;
}
.traject__slim-icon img {
  height: 28px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  object-position: center bottom;
}

/* Hero sub-page icons */
.hero__sub-icon {
  height: 44px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
  opacity: 0.82;
}
.hero__sub-icon img {
  height: 44px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  object-position: left bottom;
}
.traject__slim-wissel {
  width: 52px;
  background: transparent;
  flex-shrink: 0;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 540px) {
  .traject__slim-bottom { flex-direction: column; gap: 1px; }
  .traject__slim-connector { width: 1px; height: 24px; overflow: hidden; opacity: 0; }
  .traject__slim-wissel { width: 100%; height: 36px; }
}

/* ===== GETUIGENISSEN CARROUSEL ===== */

/* Rating badge */
.getuigenissen-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.getuigenissen-badge strong {
  color: var(--gold);
  font-size: 1rem;
}

/* Wrapper: arrows + viewport */
.getuigenissen-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  position: relative;
}
.getuigenissen-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.getuigenissen-track {
  display: flex;
  will-change: transform;
}

/* Single card */
.getuigenis {
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 25%);
  border: 1px solid rgba(34,28,44,0.9);
  padding: 2.25rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.getuigenis:hover {
  border-color: rgba(201,166,83,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Top row: avatar + name + google logo */
.getuigenis__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.getuigenis__foto-wrap {
  flex-shrink: 0;
}
.getuigenis__foto-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
}
.getuigenis__foto {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.getuigenis__meta {
  flex: 1;
  min-width: 0;
}
.getuigenis__naam {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.getuigenis__sterren {
  display: flex;
  gap: 1px;
  margin-top: 0.2rem;
}
.getuigenis__bron {
  flex-shrink: 0;
  opacity: 0.6;
  display: flex;
  align-items: center;
}

/* Review text */
.getuigenis__citaat {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  position: relative;
  flex: 1;
}
.getuigenis__citaat::before {
  content: '\201C';
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -1.1rem;
  margin-right: 0.05em;
  font-family: Georgia, serif;
  opacity: 0.2;
}

/* "Lees meer" button */
.getuigenis__lees-meer {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.78rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.06em;
  text-align: left;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-top: -0.25rem;
  align-self: flex-start;
}
.getuigenis__lees-meer:hover { opacity: 1; }

/* Navigation arrows */
.carousel-btn {
  background: rgba(21,17,32,0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  padding: 0 0 2px;
  user-select: none;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: var(--surface-raised); border-color: rgba(201,166,83,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }

/* CTA below carousel */
.getuigenissen-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Review modal overlay */
.review-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.review-modal[hidden] { display: none; }
.review-modal__box {
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 20%);
  border: 1px solid rgba(201,166,83,0.2);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,166,83,0.05);
}
.review-modal__sluit {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.review-modal__sluit:hover { color: var(--white); }
.review-modal__sterren {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.review-modal__tekst {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Responsive */
@media (max-width: 580px) {
  .carousel-btn { width: 32px; height: 32px; font-size: 1.25rem; }
  .getuigenissen-wrapper { gap: 0.4rem; }
}

/* ===== OVER MIJ ===== */
.over-mij-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}
.over-mij-grid p { color: var(--text-muted); }
.over-mij__meta {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.over-mij-foto {
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.over-mij-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.over-mij-foto:hover img { transform: scale(1.04); }
.over-mij-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(201,166,83,0.08) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 60%, rgba(7,6,10,0.5) 100%);
  pointer-events: none;
}

/* ===== CONVERSIEBLOK ===== */
.conversie {
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 15%);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(201,166,83,0.2);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.conversie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.3) 25%, rgba(228,200,122,0.5) 50%, rgba(201,166,83,0.3) 75%, transparent 100%);
  pointer-events: none;
}
.conversie::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 160px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,166,83,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.conversie h2 { margin-bottom: 0.75rem; }
.conversie > p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.conversie__intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.conversie__intro-sub {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 400;
}
.conversie__intro-main {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
}
.conversie__contact {
  margin-top: 2rem;
  text-align: center;
}
.conversie__mail {
  font-size: 0.82rem;
  color: rgba(138, 112, 64, 0.85);
  letter-spacing: 0.08em;
  text-decoration: none;
  font-family: var(--font-body);
  transition: var(--transition);
  border-bottom: 1px solid rgba(201,166,83,0.18);
  padding-bottom: 1px;
}
.conversie__mail:hover {
  color: rgba(201, 166, 83, 0.95);
  border-bottom-color: rgba(201,166,83,0.38);
}
.conversie__kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(34,28,44,0.8);
  border: 1px solid rgba(34,28,44,0.9);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
}
.conversie__kaart {
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface-raised) 30%);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.conversie__kaart:hover { background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface-high) 30%); }

/* Uitgelicht-variant — zelfde gold-accent als .kaart--uitgelicht (homepage Master) */
.conversie__kaart--uitgelicht {
  position: relative;
  background: linear-gradient(160deg, rgba(201,166,83,0.06) 0%, var(--surface-raised) 30%);
}
.conversie__kaart--uitgelicht::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,166,83,0.3) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, rgba(201,166,83,0.3) 100%);
  pointer-events: none;
}
.conversie__kaart-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 40px;
  margin-bottom: 1rem;
  opacity: 0.80;
}
.conversie__kaart-icon img {
  height: 40px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  object-position: center bottom;
}
.conversie__kaart h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.conversie__kaart p { color: rgba(226, 216, 192, 0.52); font-size: 0.88rem; margin-bottom: 1.25rem; }
.conversie__kaart .btn { width: 100%; justify-content: center; }

/* ===== HERKENNING ===== */
.herkenning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.herkenning__citaat {
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 30%);
  border: 1px solid var(--border);
  border-left: 2px solid var(--crimson);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.herkenning__citaat-tekst {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.herkenning__citaat p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ===== RESULTATEN ===== */
.resultaten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(34,28,44,0.8);
  border: 1px solid rgba(34,28,44,0.9);
  box-shadow: var(--shadow-card);
}
.resultaat-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 30%);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.resultaat-item:hover {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface-raised) 30%);
}
.resultaat-item__symbool {
  font-size: 0;
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}
.resultaat-item h4 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; line-height: 1.5; }

/* ===== TWIJFEL / KEUZEBLOK ===== */
.twijfel {
  background: linear-gradient(160deg, rgba(255,255,255,0.02) 0%, var(--surface) 30%);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.twijfel h3 { margin-bottom: 1.5rem; font-style: italic; }
.twijfel__opties { display: flex; flex-direction: column; gap: 1px; background: rgba(34,28,44,0.8); }
.twijfel__optie {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.015) 0%, var(--surface-raised) 30%);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.twijfel__optie:hover { background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, var(--surface-high) 30%); color: var(--white); text-decoration: none; }
.twijfel__optie-symbool {
  font-size: 0;
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  opacity: 0.55;
}
.twijfel__optie-tekst { flex: 1; }
.twijfel__optie-tekst strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; color: var(--white); }
.twijfel__optie-tekst span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.02em; }
.twijfel__optie-pijl { color: var(--gold-dim); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.25s ease; }
.twijfel__optie:hover .twijfel__optie-pijl { transform: translateX(3px); color: var(--gold); }

/* ===== THEMA KAARTEN (Deep Dives) ===== */
.thema-kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.thema-kaart {
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, var(--surface) 25%);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.thema-kaart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.08) 50%, transparent 100%);
  pointer-events: none;
}
.thema-kaart:hover {
  background: linear-gradient(160deg, rgba(201,166,83,0.04) 0%, var(--surface-raised) 25%);
  border-color: rgba(201,166,83,0.22);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 4px 16px rgba(201,166,83,0.06);
}
.thema-kaart__ster {
  font-size: 0;
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
  margin-bottom: 1.75rem;
  opacity: 0.55;
}
.thema-kaart h3 { margin-bottom: 0.25rem; font-style: italic; }
.thema-kaart__sub { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.thema-kaart .checklist { flex: 1; }

/* ===== TWEE KOLOMMEN ===== */
.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 0.6rem 0 0; font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.04em; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-dim); }
.breadcrumb__sep { margin: 0 0.5rem; opacity: 0.4; }

/* ===== GOLD SECTION DIVIDER ===== */
.section-divider {
  height: 80px;
  border-top: 1px solid rgba(201, 166, 83, 0.15);
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,83,0.4), transparent);
}

.sectie-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.sectie-divider__lijn {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.sectie-divider__lijn:last-child {
  background: linear-gradient(270deg, var(--border), transparent);
}
.sectie-divider__symbool { color: var(--gold-dim); font-size: 0.9rem; letter-spacing: 0.1em; opacity: 0.7; }

/* ===== FEATURE BOX ===== */
.feature-box {
  background: linear-gradient(160deg, rgba(201,166,83,0.04) 0%, var(--surface) 30%);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(201,166,83,0.5);
  padding: 1.75rem;
  margin-top: 1.5rem;
  transition: border-color 0.25s;
}
.feature-box:hover { border-left-color: var(--gold); }
.feature-box h4 { color: var(--gold-dim); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }
.feature-box p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===== INFO NOTICE ===== */
.notice {
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(21,17,32,0.4);
}
.notice--gold {
  border-color: rgba(201,166,83,0.18);
  background: rgba(201,166,83,0.03);
  color: var(--text-muted);
}
.notice--gold strong { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(30,22,44,0.6) 0%, transparent 60%),
    #07060A;
  border-top: 1px solid rgba(34,28,44,0.8);
  padding: 5.5rem 0 3rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.15) 25%, rgba(201,166,83,0.22) 50%, rgba(201,166,83,0.15) 75%, transparent 100%);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.footer__merk .logo { margin-bottom: 0.75rem; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.footer__merk p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; }
.footer__aanbod-label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(34,28,44,0.8);
  text-align: center;
  line-height: 1.2;
}
.footer__col--over h4 {
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(34,28,44,0.8);
  margin-bottom: 1rem;
}
.footer__aanbod-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer__col h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { color: var(--text-dim); font-size: 0.85rem; text-decoration: none; transition: var(--transition); }
.footer__links a:hover { color: var(--gold-light); }
.footer__links-traject { margin-top: 1rem; margin-bottom: 0.35rem !important; }
.footer__links-traject:first-child { margin-top: 0; }
.footer__links-traject a { color: var(--text-muted) !important; font-size: 0.78rem !important; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-body); font-weight: 500; }
.footer__bottom {
  border-top: 1px solid rgba(34,28,44,0.7);
  padding-top: 1.75rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__logo-blok { display: none; }
}

@media (max-width: 960px) {
  .over-mij-grid { grid-template-columns: 1fr; }
  .over-mij-foto { display: none; }
  .herkenning { grid-template-columns: 1fr; gap: 2.5rem; }
  .herkenning__citaat { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .twee-kolommen { grid-template-columns: 1fr; gap: 2.5rem; }
  .traject { flex-direction: column; border: 1px solid var(--border); }
  .traject__stap { border-right: none; border-bottom: 1px solid var(--border); }
  .traject__stap:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: 0; right: 0; background: rgba(9,7,14,0.98); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 1rem 2rem 1.5rem; gap: 0; z-index: 99; }
  .nav.open { display: flex; }
  .nav__link { padding: 0.95rem 0; border-bottom: 1px solid var(--border-subtle); width: 100%; min-height: 44px; display: flex; align-items: center; }
  .nav__dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--border-subtle); padding-left: 0.75rem; min-width: unset; display: none; background: transparent; backdrop-filter: none; }
  .nav__item.open .nav__dropdown { display: block; }
  .nav__dropdown a { padding: 0.85rem 0; border-bottom: 1px solid var(--border-subtle); min-height: 44px; display: flex; align-items: center; }
  .hamburger { display: flex; }
  .header__inner { position: relative; }
  .conversie { padding: 2.5rem 1.5rem; }
  .section { padding: 5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .hero--sub { padding: 3rem 0 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 540px) {
  .kaarten { grid-template-columns: 1fr; gap: 0; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .resultaten-grid { grid-template-columns: 1fr 1fr; }
  .thema-kaarten { grid-template-columns: 1fr; }
  .conversie__kaarten { grid-template-columns: 1fr; }
  .getuigenissen { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ===== NOTICE ICON — gouden stip ===== */
.notice > span:first-child {
  font-size: 0;
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--gold);
  border-radius: 50%;
  align-self: flex-start;
  margin-top: 0.4rem;
  flex-shrink: 0;
  opacity: 0.65;
}

/* ===== LICHTE & MIDDENLAAG SECTIES ===== */

/* Typografie op lichte achtergrond */
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--text-dark);
}
.section--light .sectie-hoofd p {
  color: var(--text-dark-muted);
}
.section--light p {
  color: var(--text-dark-muted);
}
.section--light .label {
  color: var(--text-dark-dim);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.section--light .label::before,
.section--light .label::after {
  background: rgba(96, 82, 58, 0.4);
}
.section--light .gold-line {
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent 100%);
  opacity: 0.5;
}
.section--light::before {
  background: linear-gradient(90deg, transparent 0%, rgba(139,112,64,0.12) 25%, rgba(139,112,64,0.18) 50%, rgba(139,112,64,0.12) 75%, transparent 100%);
}

/* Kaarten op lichte achtergrond */
.section--light .kaarten {
  background: rgba(210, 200, 180, 0.3);
  border-color: rgba(210, 200, 180, 0.4);
}
.section--light .kaart {
  background: linear-gradient(160deg, rgba(255,255,255,0.9) 0%, #FFFFFF 30%);
}
.section--light .kaart:hover {
  background: linear-gradient(160deg, #FDFAF4 0%, #FAFAF7 30%);
  box-shadow: 0 8px 32px rgba(28,22,18,0.08), 0 2px 8px rgba(28,22,18,0.06);
}
.section--light .kaart--uitgelicht {
  background: linear-gradient(160deg, rgba(201,166,83,0.06) 0%, #FFFFFF 20%);
}
.section--light .kaart h3 {
  color: var(--text-dark);
}
.section--light .kaart p {
  color: var(--text-dark-muted);
}
.section--light .kaart__label {
  color: var(--gold-dim);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.section--light .checklist li {
  color: var(--text-dark-muted);
  border-color: rgba(28, 22, 18, 0.07);
}
.section--light .checklist li::before {
  background: var(--gold-dim);
}

/* Outline knop op lichte achtergrond */
.section--light .btn--outline {
  color: var(--text-dark);
  border-color: rgba(28, 22, 18, 0.18);
}
.section--light .btn--outline:hover {
  border-color: var(--gold);
  color: rgba(150,120,60,0.9);
  background: rgba(201, 166, 83, 0.06);
}

/* Over mij op lichte achtergrond */
.section--light .over-mij-foto {
  background: var(--bg-light-alt);
  border-color: var(--border-light);
}
.section--light .over-mij__meta {
  color: var(--gold-dim);
}
.section--light .over-mij-grid p { color: var(--text-dark-muted); }

/* Traject slim op lichte achtergrond */
.section--light .traject__slim-stap {
  background: linear-gradient(160deg, rgba(255,255,255,0.9) 0%, #FFFFFF 25%);
  border-color: rgba(210,200,180,0.5);
  box-shadow: 0 2px 12px rgba(28,22,18,0.08), 0 1px 3px rgba(28,22,18,0.06);
}
.section--light .traject__slim-stap::before {
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.12) 50%, transparent 100%);
}
.section--light .traject__slim-stap:hover {
  background: linear-gradient(160deg, #FDFAF4 0%, #FAFAF7 25%);
  border-color: rgba(201, 166, 83, 0.35);
  box-shadow: 0 8px 32px rgba(28,22,18,0.08), 0 2px 8px rgba(28,22,18,0.06);
}
.section--light .traject__slim-naam {
  color: var(--text-dark);
}
.section--light .traject__slim-sub {
  color: var(--text-dark-dim);
}
.section--light .traject__note {
  color: var(--gold-dim);
}

/* Resultaten grid op lichte achtergrond */
.section--light .resultaten-grid {
  background: rgba(210, 200, 180, 0.3);
  border-color: rgba(210, 200, 180, 0.4);
}
.section--light .resultaat-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.9) 0%, #FFFFFF 30%);
}
.section--light .resultaat-item:hover {
  background: linear-gradient(160deg, rgba(201,166,83,0.04) 0%, #FAFAF7 30%);
}
.section--light .resultaat-item h4 {
  color: var(--text-dark-muted);
}
.section--light .resultaat-item__symbool {
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Herkenning-blok op lichte achtergrond — zie uitgebreide overrides verderop */

/* FAQ op lichte achtergrond */
.section--light .faq__item {
  border-color: var(--border-light);
}
.section--light .faq__vraag {
  color: var(--text-dark);
}
.section--light .faq__vraag:hover {
  color: var(--text-dark);
}
.section--light .faq__vraag::after {
  color: var(--gold-dim);
}
.section--light details[open] .faq__vraag::after {
  color: var(--gold-dim);
  opacity: 1;
}
.section--light .faq__antwoord {
  color: var(--text-dark-muted);
}

/* Feature-box op lichte achtergrond */
.section--light .feature-box {
  background: linear-gradient(160deg, rgba(201,166,83,0.04) 0%, rgba(255,255,255,0.85) 30%);
  border-color: var(--border-light);
  border-left-color: rgba(201,166,83,0.45);
}
.section--light .feature-box:hover {
  border-left-color: var(--gold-dim);
}
.section--light .feature-box h4 {
  color: var(--gold-dim);
}
.section--light .feature-box p {
  color: var(--text-dark-muted);
}

/* Notice op lichte achtergrond */
.section--light .notice {
  background: rgba(240,235,220,0.6);
  border-color: var(--border-light);
  color: var(--text-dark-muted);
}
.section--light .notice--gold {
  background: rgba(201,166,83,0.06);
  border-color: rgba(201,166,83,0.25);
}
.section--light .notice--gold strong {
  color: var(--gold-dim);
}

/* ===== HERKENNING CITAAT op lichte achtergrond ===== */
.section--light .herkenning__citaat {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 50%, #F5F0E8 100%);
  border: 1px solid rgba(201, 166, 83, 0.22);
  border-left: 2px solid rgba(201, 166, 83, 0.55);
  box-shadow: 0 4px 24px rgba(28, 22, 18, 0.07), 0 1px 4px rgba(28, 22, 18, 0.04);
}
.section--light .herkenning__citaat-tekst {
  color: var(--text-dark);
}
.section--light .herkenning__citaat p {
  color: var(--text-dark-muted);
}

/* ===== TWIJFEL / KEUZEBLOK op lichte achtergrond ===== */
.section--light .twijfel {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 50%, #F5F0E8 100%);
  border: 1px solid rgba(201, 166, 83, 0.22);
  box-shadow: 0 4px 24px rgba(28, 22, 18, 0.07), 0 1px 4px rgba(28, 22, 18, 0.04);
}
.section--light .twijfel h3 {
  color: var(--text-dark);
}
.section--light .twijfel__opties {
  background: rgba(201, 166, 83, 0.10);
  gap: 1px;
}
.section--light .twijfel__optie {
  background: #FFFFFF;
  color: var(--text-dark-muted);
  transition: var(--transition);
}
.section--light .twijfel__optie:hover {
  background: linear-gradient(160deg, rgba(201,166,83,0.05) 0%, #FDFAF4 30%);
  color: var(--text-dark);
  text-decoration: none;
}
.section--light .twijfel__optie-tekst strong {
  color: var(--text-dark);
}
.section--light .twijfel__optie-tekst span {
  color: var(--text-dark-dim);
}
.section--light .twijfel__optie-pijl {
  color: var(--gold-dim);
}

/* ===== GETUIGENISSEN CARROUSEL op lichte achtergrond ===== */
.section--light .getuigenis {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 40%, #F6F3ED 100%);
  border: 1px solid rgba(201, 166, 83, 0.18);
  box-shadow: 0 4px 20px rgba(28, 22, 18, 0.07), 0 1px 4px rgba(28, 22, 18, 0.04);
}
.section--light .getuigenis:hover {
  border-color: rgba(201, 166, 83, 0.35);
  box-shadow: 0 8px 32px rgba(28, 22, 18, 0.10), 0 2px 8px rgba(28, 22, 18, 0.05);
}
.section--light .getuigenis__naam {
  color: var(--text-dark);
}
.section--light .getuigenis__citaat {
  color: var(--text-dark-muted);
}
.section--light .getuigenis__foto-placeholder circle:first-child {
  fill: #E8E2D8;
}
.section--light .getuigenis__foto-placeholder circle:nth-child(2),
.section--light .getuigenis__foto-placeholder path {
  fill: #C8BEA8;
}
.section--light .getuigenissen-badge {
  color: var(--text-dark-muted);
}
.section--light .carousel-btn {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 166, 83, 0.28);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(28, 22, 18, 0.08);
}
.section--light .carousel-btn:hover {
  background: #FFFFFF;
  border-color: rgba(201, 166, 83, 0.50);
  box-shadow: 0 4px 20px rgba(28, 22, 18, 0.12);
}

/* ===== CONVERSIEBLOK op lichte achtergrond ===== */
.section--light .conversie {
  background: transparent;
  border: none;
  border-top: none;
  box-shadow: none;
}
.section--light .conversie::before {
  display: none;
}
.section--light .conversie::after {
  display: none;
}
.section--light .conversie h2 {
  color: var(--text-dark);
}
.section--light .conversie > p {
  color: var(--text-dark-muted);
}
.section--light .conversie__intro {
  color: var(--text-dark-muted);
}
.section--light .conversie__intro-main {
  color: var(--text-dark);
}
.section--light .conversie__intro-sub {
  color: var(--text-dark-dim);
}
.section--light .conversie__kaarten {
  background: rgba(210, 200, 180, 0.3);
  border-color: rgba(210, 200, 180, 0.4);
  box-shadow: none;
}
.section--light .conversie__kaart {
  background: linear-gradient(160deg, rgba(255,255,255,0.9) 0%, #FFFFFF 30%);
}
.section--light .conversie__kaart:hover {
  background: linear-gradient(160deg, #FDFAF4 0%, #FAFAF7 30%);
  box-shadow: 0 8px 32px rgba(28,22,18,0.08), 0 2px 8px rgba(28,22,18,0.06);
}
.section--light .conversie__kaart h4 {
  color: var(--text-dark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.section--light .conversie__kaart p {
  color: var(--text-dark-muted);
}
.section--light .conversie__mail {
  color: rgba(120, 90, 40, 0.85);
  border-bottom-color: rgba(201,166,83,0.22);
}
.section--light .conversie__mail:hover {
  color: rgba(150, 115, 50, 0.95);
  border-bottom-color: rgba(201,166,83,0.45);
}

/* ===== THEMA KAARTEN op lichte achtergrond ===== */
.section--light .thema-kaart {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 40%, #F5F0E8 100%);
  border: 1px solid rgba(201, 166, 83, 0.18);
  box-shadow: 0 4px 20px rgba(28, 22, 18, 0.07), 0 1px 4px rgba(28, 22, 18, 0.04);
}
.section--light .thema-kaart::before {
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,83,0.18) 50%, transparent 100%);
}
.section--light .thema-kaart:hover {
  background: linear-gradient(160deg, rgba(201,166,83,0.04) 0%, #FDFAF4 30%);
  border-color: rgba(201, 166, 83, 0.38);
  box-shadow: 0 10px 40px rgba(28, 22, 18, 0.10), 0 3px 10px rgba(201,166,83,0.06);
}
.section--light .thema-kaart h3 {
  color: var(--text-dark);
}
.section--light .thema-kaart__sub {
  color: var(--text-dark-dim);
}

/* ===== INFO STRIP op lichte achtergrond ===== */
.section--light .info-strip__item {
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(201, 166, 83, 0.22);
  color: var(--text-dark-muted);
}
.section--light .info-strip__item:hover {
  border-color: rgba(201, 166, 83, 0.40);
  background: #FFFFFF;
}

/* ===== PRIJSBLOK op lichte achtergrond ===== */
.section--light .prijs-blok {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 40%, #F5F0E8 100%);
  border: 1px solid rgba(201, 166, 83, 0.22);
  border-top: 2px solid rgba(201, 166, 83, 0.65);
  box-shadow: 0 4px 24px rgba(28, 22, 18, 0.07), 0 1px 4px rgba(28, 22, 18, 0.04);
}
.section--light .prijs-rij {
  border-bottom-color: rgba(28, 22, 18, 0.07);
}
.section--light .prijs-rij__label {
  color: var(--text-dark-muted);
}
.section--light .prijs-rij__bedrag {
  color: var(--text-dark);
}
.section--light .prijs-promo {
  background: rgba(201,166,83,0.06);
  border-color: rgba(201,166,83,0.22);
  color: var(--text-dark-muted);
}

/* ===== PREMIUM SCROLL-REVEAL ANIMATIES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Klassen toegevoegd via IntersectionObserver in JS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Gold line hover enhancement */
.sectie-hoofd:hover .gold-line,
.sectie-hoofd:focus-within .gold-line {
  width: 72px;
  opacity: 0.85;
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 1px solid rgba(201,166,83,0.6);
  outline-offset: 3px;
}

/* ============================================================
   MOBIELE FIXES — laag D na audit screenshots (1 mei 2026)
   ============================================================ */

/* === Kaart-grids stacken op mobiel — overruleert inline grid-template-columns === */
@media (max-width: 768px) {
  .kaarten,
  .kaarten[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  /* Resultaten-grid: van 3-4 kolommen naar 2 op tablet/phone */
  .resultaten-grid,
  .resultaten-grid[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }

  /* Twee-kolommen forceren te stacken (was al 768 maar voor de zekerheid) */
  .twee-kolommen {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* Prijs-blok: minder padding, prijs-rij mag wrappen */
  .prijs-blok { padding: 1.75rem 1.25rem; }
  .prijs-rij {
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
  }
  .prijs-rij__bedrag {
    text-align: right;
    flex-shrink: 0;
    word-break: break-word;
  }

  /* Lange knop-teksten mogen op mobiel afbreken (BEKIJK DE REEKSEN & SCHRIJF JE IN) */
  .prijs-blok .btn,
  .conversie__kaart .btn,
  .btn--block-mobile {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* Studentenportaal-knop verbergen op mobile drawer-modus; vervang door nav-entry */
  .header__inner > .btn--gold {
    display: none;
  }
  .nav__item--mobile-only {
    display: block !important;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gold-border);
  }
  .nav__item--mobile-only .nav__link {
    color: var(--gold) !important;
    font-weight: 600;
  }
}

/* Op desktop: verberg de mobile-only entry */
.nav__item--mobile-only { display: none; }

@media (max-width: 540px) {
  /* Resultaten-grid op echt smal scherm: 1 kolom */
  .resultaten-grid,
  .resultaten-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Prijs-blok nog compacter */
  .prijs-blok { padding: 1.5rem 1rem; }
  .prijs-rij__bedrag { font-size: 1.05rem; }

  /* Container-padding fijner */
  .container { padding: 0 1rem; }
}
