/* ==========================================================
   Allemoeders.nl, huisstijl volgens design handoff
   Bordeaux #5E1224 · Roze #EDC7CF · Crème #FBF4F2
   Libre Caslon Text (koppen, weight 400) · Mulish (al het overige)
   ========================================================== */

:root {
  --bordeaux: #5E1224;
  --bordeaux-hover: #7A1B31;
  --roze: #EDC7CF;
  --roze-hover: #E4B3BE;
  --roze-licht: #F5E4E8;
  --creme: #FBF4F2;
  --kaart-border: #F0DBE0;
  --ink: #3C2229;
  --artikel: #4A2E36;
  --body2: #5A3A42;
  --op-roze: #6B2A3B;
  --tag: #8A4557;
  --eyebrow: #A85D6E;
  --meta: #A88892;
  --accent-zacht: #C98A99;
  --footer-link: #D9A9B4;
  --fout: #B3261E;
  --serif: 'Libre Caslon Text', Georgia, serif;
  --sans: 'Mulish', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #EDC7CF; color: #5E1224; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--creme);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > main { flex: 1; }

img { max-width: 100%; display: block; }
a { color: var(--bordeaux); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--bordeaux); line-height: 1.18; text-wrap: pretty; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; width: 100%; }
.container-md { max-width: 1080px; margin: 0 auto; padding: 0 48px; width: 100%; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 48px; width: 100%; }
.container-artikel { max-width: 760px; margin: 0 auto; padding: 0 48px; width: 100%; }

/* ---------- Aankondiging ---------- */
.topbar {
  background: var(--bordeaux); color: var(--roze);
  text-align: center; padding: 10px 24px;
  font-size: 14px; letter-spacing: 0.02em;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Navigatie ---------- */
.site-header {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 18px 48px; max-width: 1240px; margin: 0 auto; width: 100%;
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 244, 242, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kaart-border);
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.gescrold {
  padding-top: 11px; padding-bottom: 11px;
  box-shadow: 0 6px 24px rgba(94, 18, 36, 0.08);
}
.logo {
  font-family: var(--serif); font-size: 25px; color: var(--bordeaux);
  text-decoration: none; letter-spacing: -0.01em; justify-self: start;
}
.logo span { color: var(--accent-zacht); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 600; justify-self: center; }
.site-nav > a { color: var(--ink); text-decoration: none; position: relative; padding-bottom: 4px; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--roze); border-radius: 2px;
  transition: width .22s ease;
}
.site-nav > a:not(.nav-cta):hover { color: var(--bordeaux); }
.site-nav > a:not(.nav-cta):hover::after { width: 100%; }
.site-nav > a.actief { color: var(--bordeaux); }
.site-nav > a.actief::after { width: 100%; }
.nav-cta {
  background: var(--bordeaux); color: var(--creme) !important;
  padding: 11px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--bordeaux-hover); color: var(--creme) !important; }
.nav-cta-mobiel { display: none; }
.checkout-note { font-size: 14px; color: var(--meta); display: flex; align-items: center; gap: 8px; justify-self: end; }
.nav-mobiel-extra { display: none; }
.nav-rechts { display: flex; align-items: center; gap: 12px; justify-self: end; }

/* Account-icoon + dropdown */
.account { position: relative; }
.account-knop {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1.5px solid var(--roze-hover); background: #fff; color: var(--bordeaux);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.account-knop:hover { border-color: var(--bordeaux); background: var(--roze-licht); }
.account-initiaal {
  font-family: var(--serif); font-size: 17px; color: var(--creme);
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--bordeaux); display: flex; align-items: center; justify-content: center;
}
.account.open .account-knop { border-color: var(--bordeaux); }
.account-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 210px;
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 16px;
  box-shadow: 0 16px 40px rgba(94, 18, 36, 0.14);
  padding: 10px; display: none; flex-direction: column; z-index: 110;
}
.account.open .account-dropdown { display: flex; }
.account-dropdown a {
  display: block; padding: 10px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 600;
}
.account-dropdown a:hover { background: var(--roze-licht); color: var(--bordeaux); }
.account-dropdown a.klein { font-weight: 400; color: var(--tag); font-size: 13.5px; }
.account-groet {
  padding: 8px 14px 10px; font-family: var(--serif); font-size: 15px;
  color: var(--bordeaux); border-bottom: 1px solid var(--roze-licht); margin-bottom: 6px;
}

/* Hamburger */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--roze-hover); background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--bordeaux);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Flash ---------- */
.flash { padding: 12px 48px; font-size: 14.5px; text-align: center; }
.flash-success { background: #EAF3EA; color: #2C5934; }
.flash-error   { background: #F9E4E2; color: var(--fout); }
.flash-info    { background: var(--roze-licht); color: var(--op-roze); }

/* ---------- Typografische bouwstenen ---------- */
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eyebrow);
}
.pagina-kop h1 { font-size: 46px; max-width: 24ch; }
.pagina-kop { display: flex; flex-direction: column; gap: 16px; padding-top: 48px; padding-bottom: 8px; }
.intro { font-size: 17px; line-height: 1.65; color: var(--body2); max-width: 60ch; text-wrap: pretty; }
.meta { font-size: 13px; color: var(--meta); }

/* ---------- Knoppen & links ---------- */
.btn {
  display: inline-block; background: var(--bordeaux); color: var(--creme);
  text-decoration: none; padding: 14px 28px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  border: none; cursor: pointer; text-align: center;
}
.btn:hover { background: var(--bordeaux-hover); }
.btn-roze { background: var(--roze); color: var(--bordeaux); }
.btn-roze:hover { background: var(--roze-hover); }
.btn-roze-licht { background: var(--roze-licht); color: var(--bordeaux); }
.btn-roze-licht:hover { background: var(--roze); }
.btn-blok { display: block; width: 100%; padding: 16px; font-size: 16px; }
.link-onderstreept {
  color: var(--bordeaux); text-decoration: none; font-weight: 700; font-size: 15.5px;
  border-bottom: 2px solid var(--roze); padding-bottom: 2px;
}
.link-onderstreept:hover { border-bottom-color: var(--bordeaux); }

/* ---------- Chips (filters) ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-block; border: 1.5px solid var(--roze-hover); background: transparent;
  color: var(--tag); padding: 9px 20px; border-radius: 999px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 700;
  cursor: pointer; text-decoration: none;
}
.chip:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.chip.actief { border-color: var(--bordeaux); background: var(--bordeaux); color: var(--creme); }

/* ---------- Tags & badges ---------- */
.tag-pill {
  background: var(--roze-licht); color: var(--tag); font-size: 12.5px;
  font-weight: 700; padding: 4px 12px; border-radius: 999px; display: inline-block;
}
.badge-populair {
  background: var(--bordeaux); color: var(--roze); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  display: inline-block;
}
.badge-werkblad {
  background: var(--roze-licht); color: var(--tag); font-size: 11.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; display: inline-block;
}
.kicker-cat {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--eyebrow);
}

/* ---------- Hero (home) ---------- */
.hero {
  max-width: 1240px; margin: 0 auto; padding: 48px 48px 88px; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
}
.hero-tekst { display: flex; flex-direction: column; gap: 26px; }
.hero h1 { font-size: 56px; line-height: 1.12; }
.hero .lead { font-size: 19px; line-height: 1.65; color: var(--body2); max-width: 52ch; text-wrap: pretty; }
.hero .lead em { font-family: var(--serif); }
.hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.foto-boog-wrap { position: relative; }
.foto-boog-wrap::before {
  content: ""; position: absolute; inset: 28px -28px -28px 28px;
  background: var(--roze); border-radius: 200px 200px 24px 24px;
}
.foto-boog {
  position: relative; width: 100%; height: 460px;
  border-radius: 200px 200px 24px 24px; overflow: hidden;
  background: var(--roze-licht); border: 1.5px dashed var(--roze-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--tag); font-size: 14px; text-align: center; padding: 24px;
}
.foto-boog img { width: 100%; height: 100%; object-fit: cover; }
.foto-boog.met-foto { border: none; background: none; padding: 0; }
.foto-boog.met-foto picture { width: 100%; height: 100%; display: block; }
.cover.met-foto, .artikel-beeld.met-foto { border: none; background: none; }
.cover picture, .artikel-beeld picture { width: 100%; height: 100%; display: block; }
.cover picture img, .artikel-beeld picture img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Secties ---------- */
.sectie { max-width: 1240px; margin: 0 auto; padding: 88px 48px 72px; width: 100%; }
.sectie-vlak { background: var(--roze-licht); }
.sectie-wit { background: #fff; border-top: 1px solid var(--kaart-border); border-bottom: 1px solid var(--kaart-border); }
.sectie-kop { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.sectie-kop h2 { font-size: 38px; }
.sectie-kop .sub { font-size: 17px; color: var(--body2); max-width: 56ch; margin-top: 12px; }

/* USP-rij (waarom lezen werkt) */
.usp-rij { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding: 64px 0; }
.usp-rij h3, .usp-rij .usp-titel { font-family: var(--serif); font-size: 22px; color: var(--bordeaux); margin-bottom: 10px; font-weight: 400; }
.usp-rij p { font-size: 15.5px; line-height: 1.65; color: var(--body2); }

/* ---------- Cursuskaarten ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.cursus-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 20px;
  padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 14px; position: relative;
}
.cursus-kaart .badge-populair { position: absolute; top: -13px; left: 34px; }
.cursus-kaart .kaart-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cursus-kaart .fase-label { color: var(--meta); font-size: 13px; font-weight: 600; }
.cursus-kaart h2, .cursus-kaart h3 { font-size: 27px; }
.cursus-kaart h2 a, .cursus-kaart h3 a { text-decoration: none; color: var(--bordeaux); }
.cursus-kaart .beschrijving { font-size: 15.5px; line-height: 1.65; color: var(--body2); text-wrap: pretty; }
.cursus-kaart ul { margin: 0; padding: 0 0 0 20px; font-size: 14.5px; line-height: 1.9; color: var(--body2); }
.kaart-voet {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--roze-licht);
}
.kaart-voet .prijs { font-size: 22px; font-weight: 700; color: var(--bordeaux); display: flex; flex-direction: column; }
.kaart-voet .prijs small { font-size: 13px; font-weight: 400; color: var(--meta); }

/* Cover bovenin een cursuskaart */
.kaart-cover {
  display: block; margin: -34px -34px 8px; height: 190px;
  border-radius: 19px 19px 0 0; overflow: hidden;
}
.kaart-cover picture { width: 100%; height: 100%; display: block; }
.kaart-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cursus-kaart:hover .kaart-cover img { transform: scale(1.03); }

/* Beeld bovenin een blogkaart */
.blog-kaart .kaart-beeld {
  display: block; margin: -28px -28px 6px; height: 150px;
  border-radius: 17px 17px 0 0; overflow: hidden;
}
.blog-kaart .kaart-beeld picture { width: 100%; height: 100%; display: block; }
.blog-kaart .kaart-beeld img { width: 100%; height: 100%; object-fit: cover; }

/* Fase-kaarten (Waar sta jij nu?) */
.fase-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.fase-kaart {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  background: var(--roze-licht); border: 1px solid var(--roze);
  border-radius: 18px; padding: 24px 22px; text-align: center;
  transition: background .2s, transform .2s;
}
.fase-kaart:hover { background: var(--roze); transform: translateY(-3px); }
.fase-kaart .titel { font-family: var(--serif); font-size: 19px; color: var(--bordeaux); }
.fase-kaart .sub { font-size: 13px; color: var(--tag); line-height: 1.5; }

/* Statregel in de hero */
.hero-stats {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: 13.5px; color: var(--meta); margin-top: 18px;
}
.hero-stats .punt { color: var(--accent-zacht); }

.lege-staat {
  background: #fff; border: 1px dashed var(--roze-hover); border-radius: 20px;
  padding: 40px; text-align: center; color: var(--tag); font-size: 16px;
}
.lege-staat a { color: var(--bordeaux); font-weight: 700; }

/* ---------- Bundelkaart ---------- */
.bundel {
  margin-top: 36px; background: var(--bordeaux); border-radius: 20px; padding: 40px 44px;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center;
}
.bundel .titel { font-family: var(--serif); font-size: 28px; color: var(--creme); }
.bundel .sub { font-size: 15.5px; line-height: 1.65; color: var(--roze); max-width: 52ch; margin-top: 10px; }
.bundel-rechts { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; justify-self: end; }
.bundel .prijs { font-size: 34px; font-weight: 700; color: var(--creme); }
.bundel .prijs small { font-size: 15px; font-weight: 600; color: var(--roze); }

.disclaimer-klein { margin-top: 28px; font-size: 13.5px; line-height: 1.6; color: var(--meta); max-width: 72ch; }
.disclaimer-klein a { color: var(--tag); }

/* ---------- Blogkaarten ---------- */
.blog-kaart {
  display: flex; flex-direction: column; gap: 12px; text-decoration: none;
  background: #fff; border-radius: 18px; padding: 28px; border: 1px solid var(--kaart-border);
}
.blog-kaart:hover { border-color: var(--roze-hover); }
.blog-kaart.op-creme { background: var(--creme); border-color: var(--roze-licht); }
.blog-kaart .titel { font-family: var(--serif); font-size: 21px; line-height: 1.35; color: var(--bordeaux); text-wrap: pretty; }
.blog-kaart .excerpt { font-size: 14.5px; line-height: 1.6; color: var(--body2); }
.blog-kaart .meta { margin-top: auto; }
.blog-kaart .kaart-badges { display: flex; align-items: center; gap: 8px; }

/* ---------- Cursusdetail ---------- */
.cursus-hero {
  max-width: 1240px; margin: 0 auto; padding: 40px 48px 72px; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start;
}
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--meta); }
.breadcrumb a { color: var(--eyebrow); text-decoration: none; font-weight: 600; }
.cursus-hero h1 { font-size: 50px; line-height: 1.12; }
.cursus-hero .lead { font-size: 18px; line-height: 1.7; color: var(--body2); max-width: 56ch; text-wrap: pretty; }
.punten { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; color: var(--body2); }
.punten li { display: flex; gap: 12px; align-items: baseline; }
.punten .streep { color: var(--accent-zacht); font-weight: 700; }
.punten .streep-donker { color: var(--eyebrow); font-weight: 700; }

.koopkaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 24px;
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
  position: sticky; top: 24px;
}
.koopkaart .cover {
  width: 100%; height: 220px; border-radius: 16px; overflow: hidden;
  background: var(--roze-licht); border: 1.5px dashed var(--roze-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--tag); font-size: 14px;
}
.koopkaart .cover img { width: 100%; height: 100%; object-fit: cover; }
.koopkaart .prijsregel { display: flex; align-items: baseline; gap: 10px; }
.koopkaart .prijs { font-size: 34px; font-weight: 700; color: var(--bordeaux); }
.koopkaart .garantie { font-size: 13px; line-height: 1.6; color: var(--meta); text-align: center; }

/* ---------- Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--kaart-border); border-radius: 16px; overflow: hidden; }
.accordion-item.op-creme { background: var(--creme); }
.accordion-item.op-wit { background: #fff; }
.accordion-item.open { border-color: var(--roze-hover); }
.accordion-knop {
  display: flex; align-items: center; gap: 18px; width: 100%; text-align: left;
  background: transparent; border: none; padding: 20px 24px; cursor: pointer;
  font-family: var(--sans);
}
.accordion-knop .nr { font-family: var(--serif); font-size: 15px; color: var(--accent-zacht); min-width: 28px; }
.accordion-knop .titel { font-size: 17px; font-weight: 700; color: var(--bordeaux); flex: 1; }
.accordion-knop .chevron { color: var(--eyebrow); font-size: 18px; }
.accordion-inhoud { padding: 0 24px 22px 70px; display: none; flex-direction: column; gap: 10px; }
.accordion-inhoud.zonder-nr { padding-left: 24px; }
.accordion-item.open .accordion-inhoud { display: flex; }
.accordion-inhoud p { font-size: 15px; line-height: 1.7; color: var(--body2); text-wrap: pretty; }
.accordion-inhoud .les-link { font-size: 14px; font-weight: 700; }

/* ---------- Voor wie / niet voor wie ---------- */
.voorwie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.voorwie-kaart { border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.voorwie-kaart.roze { background: var(--roze-licht); }
.voorwie-kaart.wit { background: #fff; border: 1px solid var(--kaart-border); }
.voorwie-kaart h2 { font-size: 26px; }
.voorwie-kaart .twijfel { margin-top: auto; font-size: 13.5px; line-height: 1.6; color: var(--meta); }

/* ---------- Artikel ---------- */
.artikel-body { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; font-size: 17.5px; line-height: 1.8; color: var(--artikel); }
.artikel-body .intro-serif { font-size: 20px; line-height: 1.7; font-family: var(--serif); color: var(--bordeaux); text-wrap: pretty; }
.artikel-body h2 { font-size: 28px; margin-top: 12px; }
.artikel-body blockquote {
  padding: 24px 28px; background: var(--roze-licht); border-radius: 16px;
  font-family: var(--serif); font-size: 21px; line-height: 1.6;
  color: var(--bordeaux); font-style: italic;
}
.artikel-beeld {
  width: 100%; height: 400px; border-radius: 24px; overflow: hidden;
  background: var(--roze-licht); border: 1.5px dashed var(--roze-hover);
  display: flex; align-items: center; justify-content: center; color: var(--tag); font-size: 14px;
}
.artikel-beeld img { width: 100%; height: 100%; object-fit: cover; }

.cursus-cta {
  margin-top: 48px; background: var(--bordeaux); border-radius: 20px;
  padding: 36px 40px; display: flex; flex-direction: column; gap: 14px;
}
.cursus-cta .label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-zacht); }
.cursus-cta .titel { font-family: var(--serif); font-size: 25px; color: var(--creme); text-wrap: pretty; }
.cursus-cta .sub { font-size: 15px; line-height: 1.65; color: var(--roze); }
.cursus-cta .acties { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.cursus-cta .link-licht {
  color: var(--roze); text-decoration: none; font-weight: 700; font-size: 15px;
  border-bottom: 2px solid rgba(237,199,207,0.4); padding-bottom: 2px;
}
.cursus-cta .link-licht:hover { border-bottom-color: var(--roze); }

.auteur-blok {
  margin-top: 36px; display: flex; align-items: center; gap: 18px;
  padding: 24px 28px; background: #fff; border: 1px solid var(--kaart-border); border-radius: 18px;
}
.auteur-blok .avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--roze);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--bordeaux); flex-shrink: 0;
}
.auteur-blok .naam { font-weight: 700; font-size: 15.5px; color: var(--bordeaux); }
.auteur-blok .sub { font-size: 14px; line-height: 1.5; color: var(--body2); }
.auteur-blok .sub a { color: var(--eyebrow); font-weight: 600; }

/* ---------- Reviews (masonry) ---------- */
.reviews-masonry { columns: 3; column-gap: 28px; }
.review-kaart {
  margin: 0 0 28px; break-inside: avoid; background: #fff;
  border: 1px solid var(--kaart-border); border-radius: 20px; padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-kaart blockquote {
  font-family: var(--serif); font-size: 18px; line-height: 1.6;
  color: var(--bordeaux); font-style: italic; text-wrap: pretty;
}
.review-kaart figcaption { font-size: 14px; color: var(--body2); }
.review-kaart figcaption strong { color: var(--eyebrow); }
.review-kaart.op-creme { background: var(--creme); border: none; }

/* ---------- CTA-banner ---------- */
.cta-banner {
  margin-top: 32px; background: var(--bordeaux); border-radius: 20px; padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner .titel { font-family: var(--serif); font-size: 25px; color: var(--creme); }
.cta-banner .sub { font-size: 15.5px; color: var(--roze); margin-top: 6px; }

/* ---------- Nieuwsbrief ---------- */
.nieuwsbrief {
  margin-top: 48px; background: var(--roze); border-radius: 20px; padding: 44px 48px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.nieuwsbrief .titel { font-family: var(--serif); font-size: 26px; color: var(--bordeaux); }
.nieuwsbrief .sub { font-size: 15.5px; line-height: 1.6; color: var(--op-roze); margin-top: 8px; }
.nieuwsbrief form { display: flex; gap: 10px; }
.nieuwsbrief input[type=email] {
  flex: 1; border: 1.5px solid var(--accent-zacht); background: var(--creme);
  border-radius: 999px; padding: 14px 22px; font-family: var(--sans);
  font-size: 15px; color: var(--ink); outline: none; min-width: 0;
}
.nieuwsbrief input[type=email]:focus { border-color: var(--bordeaux); }
.nieuwsbrief .succes {
  background: var(--bordeaux); color: var(--creme); padding: 15px 26px;
  border-radius: 999px; font-size: 15px; font-weight: 600; text-align: center;
}

/* ---------- Over mij ---------- */
.over-grid {
  max-width: 1240px; margin: 0 auto; padding: 48px 48px 88px; width: 100%;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start;
}
.over-grid .foto-kolom { position: sticky; top: 24px; }
.over-grid .foto-boog { height: 480px; }
.over-grid h1 { font-size: 46px; line-height: 1.15; }
.over-tekst { display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.8; color: var(--artikel); }

.info-blok {
  background: var(--roze-licht); border-radius: 16px; padding: 22px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.info-blok .kop { font-weight: 700; font-size: 15px; color: var(--bordeaux); }
.info-blok p { font-size: 14.5px; line-height: 1.65; color: var(--op-roze); }
.info-blok a { color: var(--bordeaux); font-weight: 600; }

.principes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.principes .titel { font-family: var(--serif); font-size: 21px; color: var(--bordeaux); margin-bottom: 10px; }
.principes p { font-size: 15px; line-height: 1.7; color: var(--body2); }

/* ---------- Formulieren ---------- */
input[type=text], input[type=email], input[type=password], select, textarea {
  border: 1.5px solid var(--roze-hover); background: #fff; border-radius: 14px;
  padding: 15px 20px; font-family: var(--sans); font-size: 15.5px;
  color: var(--ink); outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--bordeaux); }
.form-kaart input, .form-kaart select, .form-kaart textarea { background: var(--creme); }
textarea { resize: vertical; min-height: 140px; }
textarea.hoog { min-height: 320px; }
label { display: block; font-size: 14px; font-weight: 700; color: var(--bordeaux); margin-bottom: 6px; }
.form-hint { font-size: 13px; color: var(--meta); margin-top: 4px; }
.form-fout { font-size: 14px; color: var(--fout); font-weight: 600; }

.form-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 24px;
  padding: 36px; display: flex; flex-direction: column; gap: 16px;
}
.form-kaart-smal { max-width: 480px; margin: 48px auto 88px; }
.form-kaart h1 { font-size: 32px; }

.succes-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 24px;
  padding: 48px 40px; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.succes-icoon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--roze);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}

/* ---------- Checkout ---------- */
.checkout-grid {
  max-width: 1080px; margin: 0 auto; padding: 32px 48px 88px; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start;
}
.checkout-stap {
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eyebrow);
}
.bestel-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 24px;
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 24px;
}
.bestel-kaart h2 { font-size: 24px; }
.product-optie {
  display: flex; flex-direction: column; gap: 6px; border: 1.5px solid var(--kaart-border);
  background: #fff; border-radius: 16px; padding: 18px 20px; cursor: pointer;
  font-family: var(--sans); text-align: left; width: 100%; text-decoration: none;
}
.product-optie.actief { border-color: var(--bordeaux); background: var(--roze-licht); }
.product-optie .regel { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-optie .naam, .product-optie .prijs { font-weight: 700; font-size: 15.5px; color: var(--bordeaux); }
.product-optie .sub { font-size: 13.5px; line-height: 1.5; color: var(--body2); }
.totalen { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--roze-licht); font-size: 14.5px; color: var(--body2); }
.totalen .regel { display: flex; justify-content: space-between; }
.totalen .totaal { font-weight: 700; font-size: 18px; color: var(--bordeaux); padding-top: 8px; }
.checkout-usps {
  padding: 16px 20px; list-style: none; background: var(--roze-licht); border-radius: 14px;
  display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; line-height: 1.5; color: var(--op-roze);
}

/* ---------- Les lezen ---------- */
.les-inhoud { display: flex; flex-direction: column; gap: 22px; font-size: 17.5px; line-height: 1.8; color: var(--artikel); }
.les-inhoud h2, .les-inhoud h3 { font-size: 26px; margin-top: 12px; }
.les-inhoud em { font-family: var(--serif); }
.les-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 50px; }

/* ---------- Tabellen (admin) ---------- */
table { width: 100%; border-collapse: collapse; margin: 1em 0 2em; font-size: 14.5px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--kaart-border); }
th { color: var(--bordeaux); }
.actions { white-space: nowrap; }
.actions a { margin-right: 12px; font-size: 14px; }
.badge { font-size: 12px; padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.badge-on  { background: #EAF3EA; color: #2C5934; }
.badge-off { background: var(--roze-licht); color: var(--tag); }
.admin-bar { background: var(--bordeaux); color: var(--creme); padding: 10px 0; font-size: 14px; }
.admin-bar a { color: var(--roze); text-decoration: none; margin-right: 20px; }
.admin-bar a:hover { color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- 404 / lege pagina's ---------- */
.leeg-midden {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 20px; padding: 80px 48px;
}
.leeg-midden .groot { font-family: var(--serif); font-size: 90px; color: var(--roze); line-height: 1; }
.leeg-midden h1 { font-size: 40px; }
.leeg-midden p { font-size: 17px; line-height: 1.65; color: var(--body2); max-width: 46ch; text-wrap: pretty; }
.leeg-acties { display: flex; align-items: center; gap: 18px; margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bordeaux); color: var(--footer-link); margin-top: auto; }
.footer-grid {
  max-width: 1240px; margin: 0 auto; padding: 56px 48px 40px; width: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.footer-grid .logo-f { font-family: var(--serif); font-size: 24px; color: var(--creme); text-decoration: none; }
.footer-grid .logo-f span { color: var(--roze); }
.footer-grid .tagline { font-size: 14.5px; line-height: 1.65; max-width: 40ch; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-col .kop { color: var(--creme); font-weight: 700; margin-bottom: 4px; }
.footer-col a { color: var(--footer-link); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { border-top: 1px solid rgba(237,199,207,0.25); }
.footer-disclaimer p {
  max-width: 1240px; margin: 0 auto; padding: 20px 48px;
  font-size: 13px; line-height: 1.6; color: var(--accent-zacht);
}
.footer-kort { background: var(--bordeaux); color: var(--accent-zacht); margin-top: auto; }
.footer-kort p { max-width: 1240px; margin: 0 auto; padding: 20px 48px; font-size: 13px; line-height: 1.6; }
.footer-kort a { color: var(--footer-link); }

/* ---------- Responsief ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
  .cursus-hero, .checkout-grid, .over-grid { grid-template-columns: 1fr; gap: 40px; }
  .over-grid .foto-kolom { position: static; }
  .koopkaart, .bestel-kaart { position: static; }
  .grid-2, .grid-3, .voorwie-grid, .usp-rij, .principes { grid-template-columns: 1fr; }
  .fase-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-rij { gap: 28px; padding: 48px 0; }
  .reviews-masonry { columns: 1; }
  .bundel { grid-template-columns: 1fr; }
  .bundel-rechts { justify-self: start; }
  .nieuwsbrief { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sectie { padding: 56px 28px 48px; }
  .container, .container-md, .container-sm, .container-artikel { padding: 0 28px; }
  .site-header { padding: 18px 28px; flex-wrap: wrap; }
  .hero { padding: 32px 28px 56px; }
  .hero h1 { font-size: 38px; }
  .pagina-kop h1, .cursus-hero h1, .over-grid h1 { font-size: 34px; }
  .sectie-kop h2 { font-size: 30px; }
  .foto-boog { height: 340px; }

  .nav-toggle { display: flex; }

  /* Schermvullend overlay-menu */
  .site-nav {
    position: fixed; inset: 0; z-index: 90;
    background: var(--creme);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 26px; padding: 90px 32px 48px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  body.menu-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  .site-nav > a:not(.nav-cta) {
    font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--bordeaux);
  }
  .site-nav > a:not(.nav-cta)::after { height: 3px; }
  .nav-mobiel-extra {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding-top: 22px; margin-top: 6px; border-top: 1px solid var(--roze);
    width: min(280px, 100%);
  }
  .nav-mobiel-extra a { color: var(--tag); text-decoration: none; font-size: 15.5px; font-weight: 600; }
  .site-nav .nav-cta-mobiel { display: inline-block; margin-top: 10px; padding: 14px 34px; font-size: 16px; }
  .nav-cta-desktop { display: none; }
  .nav-rechts { position: relative; z-index: 95; }
  .site-header { display: flex; justify-content: space-between; }
}

/* ---- Social login ---- */
.social-knoppen {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-knop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid var(--kaart-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.social-knop:hover {
  border-color: var(--bordeaux);
  box-shadow: 0 4px 14px rgba(94, 18, 36, .08);
  transform: translateY(-1px);
}
.social-knop svg { flex: 0 0 auto; }
.social-scheiding {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--body2);
  font-size: 13.5px;
  margin: 4px 0;
}
.social-scheiding::before,
.social-scheiding::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--kaart-border);
}

/* ---- Mijn overzicht (dashboard) ---- */
.lege-staat .btn { color: var(--creme); } /* fix: knoptekst was onleesbaar op bordeaux */
.dash-band {
  background: var(--bordeaux); border-radius: 20px; padding: 30px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.dash-band h3 { font-family: var(--serif); font-weight: 400; color: #fff; font-size: 24px; margin-bottom: 6px; }
.dash-band p { color: var(--footer-link); font-size: 15px; max-width: 58ch; }
.dash-band .btn { background: var(--roze); color: var(--bordeaux); flex: 0 0 auto; }
.dash-band .btn:hover { background: var(--roze-hover); }
.dash-ontdek { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dash-lezen { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dash-lijst { background: #fff; border: 1px solid var(--kaart-border); border-radius: 20px; padding: 28px 30px; }
.dash-lijst h3 { font-family: var(--serif); font-weight: 400; color: var(--bordeaux); font-size: 21px; margin-bottom: 14px; }
.dash-lijst ul { list-style: none; display: flex; flex-direction: column; }
.dash-lijst li { border-top: 1px solid var(--kaart-border); }
.dash-lijst li:first-child { border-top: none; }
.dash-lijst a { display: block; padding: 12px 0; color: var(--artikel); text-decoration: none; font-size: 15.5px; }
.dash-lijst a:hover { color: var(--bordeaux); }
.dash-lijst .meta { display: block; font-size: 13px; color: var(--meta); margin-top: 2px; }
.dash-lijst .alles { font-weight: 700; color: var(--bordeaux); font-size: 14px; }
.account-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--roze-licht); border-radius: 16px; padding: 18px 26px; font-size: 14.5px; color: var(--op-roze);
}
.account-strip a { color: var(--bordeaux); font-weight: 700; }
@media (max-width: 900px) {
  .dash-ontdek { grid-template-columns: 1fr; }
  .dash-lezen { grid-template-columns: 1fr; }
}

/* ---- Voortgang ---- */
.voortgang { display: flex; flex-direction: column; gap: 7px; }
.voortgang .tekst { font-size: 13px; color: var(--meta); }
.voortgang-balk { height: 7px; background: var(--roze-licht); border-radius: 999px; overflow: hidden; }
.voortgang-balk .vul { height: 100%; background: var(--bordeaux); border-radius: 999px; transition: width .4s ease; }
.vink {
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; border-radius: 50%; flex: 0 0 auto;
  background: var(--bordeaux); color: #fff; font-size: 12px; line-height: 1;
}
.gelezen-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px;
  color: var(--bordeaux); font-weight: 700;
}

/* ---- Scroll-animaties (klasse komt via JS, dus zonder JS is alles gewoon zichtbaar) ---- */
.anim-start { opacity: 0; transform: translateY(18px); }
.anim-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.cursus-kaart, .blog-kaart { transition: transform .25s ease, box-shadow .25s ease; }
.cursus-kaart:hover, .blog-kaart:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(94, 18, 36, .08); }
@media (prefers-reduced-motion: reduce) {
  .anim-start { opacity: 1; transform: none; }
  .cursus-kaart:hover, .blog-kaart:hover { transform: none; }
}

/* ---- Admin, opgefrist ---- */
.admin-bar { padding: 12px 0; }
.admin-bar .container { display: flex; align-items: center; gap: 6px; }
.admin-bar a {
  margin: 0; padding: 8px 16px; border-radius: 999px; font-weight: 600;
  color: var(--roze); transition: background .15s ease, color .15s ease;
}
.admin-bar a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-bar a.actief { background: var(--roze); color: var(--bordeaux); }
.admin-bar .site-link { margin-left: auto; }
.admin-kop { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.admin-kop h1 { font-size: 34px; }
.admin-tabel { background: #fff; border: 1px solid var(--kaart-border); border-radius: 16px; overflow: hidden; margin: 20px 0; }
.admin-tabel table { margin: 0; }
.admin-tabel th { background: var(--roze-licht); color: var(--bordeaux); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; padding: 12px 16px; }
.admin-tabel td { padding: 14px 16px; vertical-align: middle; }
.admin-tabel tr:last-child td { border-bottom: none; }
.admin-tabel tbody tr:hover td, .admin-tabel tr:hover td { background: #FDF9F8; }
.admin-thumb { width: 52px; height: 40px; object-fit: cover; border-radius: 8px; display: block; }
.admin-thumb.leeg {
  display: flex; align-items: center; justify-content: center; background: var(--roze-licht);
  color: var(--bordeaux); font-family: var(--serif); font-size: 18px;
}
.admin-form { display: flex; flex-direction: column; gap: 22px; max-width: 860px; margin-top: 24px; }
.admin-blok { background: #fff; border: 1px solid var(--kaart-border); border-radius: 16px; padding: 26px 28px; display: flex; flex-direction: column; gap: 16px; }
.admin-blok > h2 { font-size: 19px; font-family: var(--serif); font-weight: 400; color: var(--bordeaux); margin-bottom: 2px; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-acties { display: flex; align-items: center; gap: 16px; }
@media (max-width: 700px) { .admin-grid-2 { grid-template-columns: 1fr; } .admin-bar .container { flex-wrap: wrap; } }

/* Quill-editor in admin */
.editor-schil { background: #fff; border: 1px solid var(--kaart-border); border-radius: 12px; overflow: hidden; }
.editor-schil .ql-toolbar { border: none; border-bottom: 1px solid var(--kaart-border); background: #FDF9F8; }
.editor-schil .ql-container { border: none; font-family: var(--sans); font-size: 15.5px; min-height: 420px; }
.editor-schil .ql-editor { min-height: 420px; line-height: 1.7; }
.editor-schil .ql-editor h2 { font-family: var(--serif); color: var(--bordeaux); font-weight: 400; }
.editor-schil .ql-editor h3 { font-family: var(--serif); color: var(--bordeaux); font-weight: 400; }
.html-toggle { font-size: 13.5px; color: var(--tag); cursor: pointer; text-decoration: underline; background: none; border: none; padding: 0; }

/* ---- Admin: statistieken ---- */
.stat-kaarten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.stat-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 16px;
  padding: 22px 24px; display: flex; flex-direction: column; gap: 4px;
}
.stat-kaart .cijfer { font-family: var(--serif); font-size: 36px; color: var(--bordeaux); line-height: 1.1; }
.stat-kaart .label { font-weight: 700; font-size: 14px; color: var(--ink); }
.stat-kaart .sub { font-size: 12.5px; color: var(--meta); }
.staaf-grafiek {
  display: flex; align-items: flex-end; gap: 4px; height: 180px;
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 16px; padding: 18px;
}
.staaf-kolom { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.staaf { width: 100%; background: var(--roze-licht); border-radius: 4px 4px 0 0; position: relative; overflow: hidden; min-height: 2px; }
.staaf .staaf-b { position: absolute; bottom: 0; left: 0; right: 0; background: var(--bordeaux); border-radius: 4px 4px 0 0; }
.staaf-kolom:hover .staaf { background: var(--roze); }
@media (max-width: 900px) { .stat-kaarten { grid-template-columns: repeat(2, 1fr); } }

/* ---- Fix mobiel menu: backdrop-filter maakt de header het referentiekader
   voor position:fixed, waardoor het overlay-menu in de header opgesloten zat.
   Bij open menu de filter uitzetten zodat het menu echt schermvullend is. ---- */
@media (max-width: 980px) {
  body.menu-open .site-header {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: var(--creme); border-bottom-color: transparent; box-shadow: none;
  }
  /* justify-self:center van de desktop-grid liet het fixed menu krimpen tot inhoudsbreedte */
  .site-nav { justify-self: stretch; width: 100%; }
}


/* ---- FAQ-blok op artikel- en cursuspagina's ---- */
.faq-blok { margin-top: 48px; }
.faq-blok h2 { font-size: 26px; margin-bottom: 18px; }
.faq-item { background: #fff; border: 1px solid var(--kaart-border); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; }
.faq-item dt { font-weight: 700; color: var(--bordeaux); font-size: 16px; margin-bottom: 8px; }
.faq-item dd { color: var(--artikel); font-size: 15.5px; line-height: 1.7; }
.seo-tekst { margin-top: 56px; max-width: 72ch; }
.seo-tekst h2 { font-size: 26px; margin: 28px 0 12px; }
.seo-tekst p { color: var(--artikel); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.seo-tekst ul { margin: 0 0 14px 20px; color: var(--artikel); line-height: 1.7; }

/* ---- Promoblok: Ontspan je, mama ---- */
.promo-cursus {
  background: var(--bordeaux); border-radius: 24px; padding: 52px 56px;
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center;
  overflow: hidden;
}
.promo-cursus h2 { font-family: var(--serif); font-weight: 400; color: #fff; font-size: 38px; margin: 10px 0 14px; }
.promo-cursus .pitch { color: var(--roze-licht); font-size: 16.5px; line-height: 1.7; max-width: 56ch; }
.promo-punten { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 8px; }
.promo-punten li { color: var(--footer-link); font-size: 15px; padding-left: 24px; position: relative; }
.promo-punten li::before { content: "✓"; position: absolute; left: 0; color: var(--roze); font-weight: 700; }
.promo-acties { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.promo-beeld { border-radius: 18px; overflow: hidden; min-height: 280px; }
.promo-beeld picture, .promo-beeld img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Zonder cover: een zachte, ademende cirkel */
.promo-adem { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: rgba(237, 199, 207, .08); }
.promo-adem span:first-child {
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,199,207,.45), rgba(237,199,207,.1));
  animation: ademen 6s ease-in-out infinite;
}
.promo-adem span:last-child { color: var(--footer-link); font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; }
@keyframes ademen { 0%, 100% { transform: scale(0.82); } 40% { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .promo-adem span:first-child { animation: none; } }
@media (max-width: 900px) {
  .promo-cursus { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .promo-cursus h2 { font-size: 30px; }
  .promo-beeld { min-height: 200px; }
}

/* ---- Nieuwe hero: zacht canvas met drie ingangen ---- */
.hero-nieuw { position: relative; padding: 76px 48px 92px; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-nieuw-inhoud { position: relative; max-width: 1140px; margin: 0 auto; text-align: center; }
.hero-nieuw-inhoud h1 { font-size: 54px; line-height: 1.15; }
.hero-wissel { font-style: italic; color: var(--eyebrow); transition: opacity .35s ease; }
.hero-nieuw-sub { max-width: 60ch; margin: 22px auto 14px; font-size: 17px; line-height: 1.7; color: var(--body2); }
.hero-nieuw .hero-stats { margin-bottom: 40px; }
.hero-tegels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.hero-tegel {
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  border: 1px solid var(--kaart-border); border-radius: 20px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .35s ease;
  min-height: 300px;
}
.hero-tegel:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(94,18,36,.12); }
.hero-tegel.wisselt { opacity: 0; }
.hero-tegel img { width: 100%; height: 130px; object-fit: cover; border-radius: 12px; }
.hero-tegel .soort { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--eyebrow); }
.hero-tegel .titel { font-family: var(--serif); font-size: 19px; color: var(--bordeaux); line-height: 1.35; }
.hero-tegel .sub { font-size: 14px; color: var(--body2); line-height: 1.6; }
.hero-tegel .pijl { margin-top: auto; font-weight: 700; font-size: 14px; color: var(--bordeaux); }
@media (max-width: 980px) {
  .hero-nieuw { padding: 48px 28px 64px; }
  .hero-nieuw-inhoud h1 { font-size: 36px; }
  .hero-tegels { grid-template-columns: 1fr; }
  .hero-tegel { min-height: 0; }
}
.uur-labels { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--meta); padding: 4px 18px 0; }

/* ---- Tipspagina: uitgelicht + levend filter ---- */
.tip-uitgelicht { border-color: var(--roze); box-shadow: 0 10px 26px rgba(94,18,36,.07); }
.tip-uitgelicht .kicker-cat { background: var(--bordeaux); color: var(--roze-licht); }
.filter-kaart {
  background: #fff; border: 1px solid var(--kaart-border); border-radius: 20px;
  padding: 22px 26px; margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px;
}
.zoekveld { display: flex; align-items: center; gap: 10px; background: var(--creme); border: 1px solid var(--kaart-border); border-radius: 999px; padding: 11px 18px; color: var(--meta); }
.zoekveld input { border: none; background: none; outline: none; flex: 1; font-family: var(--sans); font-size: 15px; color: var(--ink); }
.zoekveld input::placeholder { color: var(--meta); }
.zoekveld:focus-within { border-color: var(--roze-hover); }
.filter-teller { font-size: 13.5px; }
.tip-kaart-filter { animation: tipIn .35s ease both; }
.tip-kaart-filter.weg { display: none; }
@keyframes tipIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .tip-kaart-filter { animation: none; } }

/* ---- Visuals in moduleteksten ---- */
.module-visual { margin: 30px 0; }
.module-visual img { width: 100%; border-radius: 14px; display: block; }
.module-visual.smal { max-width: 420px; margin-left: auto; margin-right: auto; }
.module-visual figcaption { font-size: 13px; color: var(--meta); text-align: center; margin-top: 8px; }

/* ---- Interactieve adem-oefening ---- */
.adem-widget {
  background: var(--bordeaux); border-radius: 24px; padding: 40px 32px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin: 30px auto; max-width: 480px; text-align: center;
}
.adem-canvas-wrap { position: relative; width: 260px; height: 260px; }
.adem-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.adem-tekst {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px; pointer-events: none;
}
.adem-tekst .fase { font-family: var(--serif); font-size: 21px; color: var(--creme); }
.adem-tekst .tel { font-size: 13px; color: var(--footer-link); min-height: 18px; letter-spacing: .08em; font-variant-numeric: tabular-nums; }
.adem-knop { min-width: 200px; }
.adem-sub { font-size: 13.5px; color: var(--footer-link); margin: 0; }
@media (prefers-reduced-motion: reduce) { .adem-widget { display: none; } }

/* ---- Tip insturen ---- */
.tip-insturen {
  background: var(--roze-licht, #F5E4E8); border: 1px solid #F0DBE0;
  border-radius: 20px; padding: 26px 30px;
}
.tip-insturen .kop-rij {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.tip-insturen h2 { font-size: 22px; margin: 0 0 4px; display: inline-block; }
.tip-insturen p { margin: 0; font-size: 15px; color: var(--body2); }
.tip-insturen summary { cursor: pointer; list-style: none; }
.tip-insturen summary::-webkit-details-marker { display: none; }
.tip-insturen details[open] summary .btn { display: none; }
.tip-insturen form { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.tip-insturen form .rij { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tip-insturen form button { align-self: flex-start; }
@media (max-width: 700px) { .tip-insturen form .rij { grid-template-columns: 1fr; } }
