*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cobalt: #1a3a7c;
  --cobalt-deep: #0d2154;
  --cobalt-mid: #2a4fa0;
  --cobalt-light: #d6e0f5;
  --cobalt-pale: #eef2fb;
  --warm: #f7f4ef;
  --stone: #c8bfb0;
  --gold: #b5843a;
  --ink: #0d1a38;
  --muted: rgba(13,26,56,0.65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--cobalt-pale);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 3rem;
  background: rgba(238,242,251,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,58,124,0.08);
}
.logo-wrap { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-main {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
}
.logo-aer {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cobalt);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

/* HERO */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(42,79,160,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 70%, rgba(26,58,124,0.1) 0%, transparent 60%),
    var(--cobalt-pale);
}
.hero-watermark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(26,58,124,0.04);
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cobalt-deep);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--cobalt-mid); }
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 400px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

/* AER STRIP */
.aer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(26,58,124,0.1);
  border-bottom: 1px solid rgba(26,58,124,0.1);
  background: #fff;
}
.aer-item {
  padding: 3rem;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  border-right: 1px solid rgba(26,58,124,0.08);
}
.aer-item:last-child { border-right: none; }
.aer-letter {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cobalt);
  line-height: 1;
  opacity: 0.2;
}
.aer-word { display: flex; flex-direction: column; gap: 0.25rem; }
.aer-word strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cobalt-deep);
}
.aer-word span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* INTRO */
.intro {
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.intro-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--cobalt-deep);
}
.intro-right p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(26,58,124,0.2);
  padding: 0.6rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cobalt);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.cert-badge:hover {
  border-color: rgba(26,58,124,0.4);
  background: rgba(26,58,124,0.04);
}
.cert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* FEATURED */
.featured {
  margin: 0 3rem 2rem;
  background: var(--cobalt-deep);
  color: var(--warm);
  padding: 5rem;
  position: relative;
  overflow: hidden;
}
.featured::after {
  content: 'IBR';
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  font-family: var(--serif);
  font-size: 18rem;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.featured-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,132,58,0.35);
  padding: 0.4rem 1rem;
  margin-bottom: 3rem;
}
.featured-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm);
  margin-bottom: 0.75rem;
  max-width: 500px;
}
.featured-it {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(247,244,239,0.45);
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
}
.featured-body { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.featured-body p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(247,244,239,0.55);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.pillars { display: flex; flex-direction: column; }
.pillar {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(247,244,239,0.07);
}
.pillar:first-child { border-top: 1px solid rgba(247,244,239,0.07); }
.pillar-dash { color: var(--gold); opacity: 0.6; font-size: 0.95rem; flex-shrink: 0; padding-top: 0.1rem; }
.pillar-text { font-size: 0.92rem; line-height: 1.6; color: rgba(247,244,239,0.55); }

/* DIENSTEN */
.diensten { padding: 7rem 3rem; }
.section-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 4rem; }
.section-rule { flex: 1; height: 1px; background: rgba(26,58,124,0.12); }
.diensten-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dienst {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(26,58,124,0.1);
  background: #fff;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.dienst:hover { border-color: rgba(26,58,124,0.3); box-shadow: 0 4px 24px rgba(26,58,124,0.06); }
.dienst-num { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); opacity: 0.7; margin-bottom: 1.5rem; }
.dienst-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--cobalt-deep); margin-bottom: 0.75rem; line-height: 1.2; }
.dienst-body { font-size: 0.9rem; line-height: 1.8; color: var(--muted); letter-spacing: 0.02em; }

/* VOOR WIE */
.voor-wie {
  padding: 7rem 3rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.voor-wie h2 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 300; color: var(--cobalt-deep); line-height: 1.35; }
.vw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vw-item { padding: 1.5rem 1.5rem 1.5rem 1.25rem; border-left: 2px solid rgba(26,58,124,0.12); }
.vw-item h3 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--cobalt-deep); margin-bottom: 0.5rem; }
.vw-item p { font-size: 0.9rem; line-height: 1.75; color: var(--muted); }

/* PATREON */
.patreon-sectie {
  padding: 7rem 3rem;
  background: #fff;
  border-top: 1px solid rgba(26,58,124,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.patreon-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cobalt-deep);
  line-height: 1.15;
}
.patreon-left h2 em {
  font-style: italic;
  color: var(--cobalt-mid);
}
.patreon-right p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.patreon-btn {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  background: var(--cobalt-pale);
  border: 1px solid rgba(26,58,124,0.2);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 0.5rem;
  font-weight: 400;
}
.patreon-btn:hover { background: var(--cobalt-light); }

/* PATREON */
.patreon-sectie {
  padding: 7rem 3rem;
  background: #fff;
  border-top: 1px solid rgba(26,58,124,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.patreon-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cobalt-deep);
  line-height: 1.15;
}
.patreon-left h2 em {
  font-style: italic;
  color: var(--cobalt-mid);
}
.patreon-right p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.patreon-btn {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  background: var(--cobalt-pale);
  border: 1px solid rgba(26,58,124,0.2);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 0.5rem;
  font-weight: 400;
}
.patreon-btn:hover { background: var(--cobalt-light); }

/* ERVARINGEN */
.ervaringen {
  padding: 7rem 3rem;
  background: var(--cobalt-deep);
}
.ervaringen .section-header { margin-bottom: 4rem; }
.ervaringen .section-rule { background: rgba(247,244,239,0.1); }
.ervaringen .section-eyebrow { color: var(--gold); }
.ervaringen-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.ervaring {
  padding: 2.5rem;
  border: 1px solid rgba(247,244,239,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.4s;
}
.ervaring:hover { border-color: rgba(181,132,58,0.3); }
.quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(247,244,239,0.75);
  flex: 1;
}
.naam {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* CONTACT */
.contact-strip {
  margin: 3rem;
  background: var(--cobalt);
  padding: 4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.contact-strip h2 { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 300; color: var(--warm); margin-bottom: 0.5rem; }
.contact-strip p { font-size: 0.82rem; color: rgba(247,244,239,0.45); letter-spacing: 0.05em; }
.cta-btn {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  background: var(--warm);
  padding: 1rem 2.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
  flex-shrink: 0;
  font-weight: 400;
}
.cta-btn:hover { background: var(--cobalt-light); }

/* FOOTER */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(26,58,124,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(13,26,56,0.3); }
.footer-links { display: flex; gap: 2rem; }
footer a { color: rgba(13,26,56,0.35); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
footer a:hover { color: var(--cobalt); }

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

@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  .page-header,
  .intro,
  .profile-section,
  .aanpak,
  .muziek-sectie,
  .voor-wie,
  .verloop,
  .tarief,
  .oa-sectie,
  .muziek,
  .niet-wel,
  .wat,
  .contact-strip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  .page-header {
    padding: 7rem 1.5rem 3rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 55vh;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .aer-strip {
    grid-template-columns: 1fr;
  }
  .aer-item {
    border-right: none;
    border-bottom: 1px solid rgba(26,58,124,0.08);
    padding: 2rem 1.5rem;
  }
  .aer-item:last-child { border-bottom: none; }

  .intro-strip {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .diensten-grid,
  .themas-grid,
  .formats-grid,
  .vw-grid,
  .lagen-grid,
  .stappen,
  .voor-wie .vw-grid,
  .ervaringen-grid,
  .patreon-sectie,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .facts-strip {
    grid-template-columns: 1fr 1fr;
  }
  .fact {
    border-right: none;
    border-bottom: 1px solid rgba(26,58,124,0.08);
    padding: 1.75rem 1.5rem;
  }

  .featured {
    margin: 0 1.5rem 2rem;
    padding: 3rem 2rem;
  }
  .featured-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .niet-wel {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 2rem;
    gap: 2px;
  }

  .contact-strip {
    margin: 0 1.5rem 4rem;
    padding: 3rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .muziek {
    margin: 0 1.5rem 2rem;
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .oa-sectie {
    margin: 0 1.5rem 2rem;
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tarief-right {
    padding: 2rem 1.5rem;
  }

  .profile-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }
  .photo-wrap img {
    aspect-ratio: 1/1;
  }

  .aanpak,
  .verloop,
  .themas,
  .formats,
  .hoe,
  .lagen,
  .voor-wie,
  .muziek-sectie,
  .diensten,
  .aanbod {
    padding: 4rem 1.5rem;
  }

  .voor-wie-items {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .formats-grid {
    gap: 1rem;
  }

  .hoe .stappen {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stap {
    border-top: none;
    border-bottom: 1px solid rgba(26,58,124,0.08);
    padding: 1.5rem 0;
  }
  .stap:last-child { border-bottom: none; }
}


  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cobalt-deep);
    transition: all 0.3s;
  }
  .nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(238,242,251,0.97);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--cobalt-deep);
    text-decoration: none;
    letter-spacing: 0.05em;
    opacity: 0.8;
  }
  .nav-mobile a:hover { opacity: 1; }
  .nav-mobile .close-btn {
    position: absolute;
    top: 1.75rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--cobalt-deep);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--sans);
    opacity: 0.5;
  }
  @media (max-width: 768px) {
    .hamburger { display: flex; }
  }
