/* =====================================================
   MERKHANDBOEK — Merqo Creative Agency
   Web scroll layout v5.0 — Merqo design system
   Refactor: unified warm cream background, white cards,
   reduced color variance, smaller section titles
   ===================================================== */

@font-face {
  font-family: 'PolySans';
  src: url('/fonts/PolySans-Median.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SeasonSans';
  src: url('/fonts/SeasonSans-Heavy.otf') format('opentype');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ───────────────────────────────────── */
:root {
  /* Merqo brand — exact uit design system */
  --dark:        #3B2A1A;   /* Tabaksbruin Bij Marie - donkere secties */
  --dark-2:      #25201A;   /* Iets lichter voor kaarten op dark bg */
  --green:       #1C1710;   /* alias voor backwards compat */
  --green-dark:  #1C1710;
  --bg:          #EFEEEA;   /* Greige — officiële achtergrond */
  --cream:       #F0EDE7;   /* Warme crème — lichte secties */
  --sand:        #E8E4DC;   /* Warm zand — donkerdere lichte secties */
  --white:       #FFFFFF;
  --text:        #1E1F1B;   /* Primaire tekst */
  --muted:       #6B6860;   /* Subtekst, labels */
  --border:      #D6D2CB;   /* Scheidingslijnen */

  /* Merqo brand accenten */
  --coral:       #ED6B46;   /* Merqo primaire accent */
  --coral-mid:   #D45A35;   /* Coral hover */
  --teal-brand:  #A8C8CA;   /* Merqo teal brand */

  /* Client accentkleur — wordt per handboek overschreven */
  --teal:        #5F8F95;   /* fallback */
  --teal-light:  #A8C8CA;
  --green-mid:   #5F8F95;
  --green-light: #d4e9eb;

  /* Typography */
  --font-head:   'SeasonSans', 'PolySans', 'Plus Jakarta Sans', sans-serif;
  --font-body:   'SeasonSans', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --nav-w:       260px;
  --max-w:       900px;
  --section-pad: 80px 80px 100px;

  /* Luxury glass system */
  --shadow-card:       0 2px 6px rgba(180,130,80,0.05), 0 8px 28px rgba(30,31,27,0.07);
  --shadow-card-hover: 0 4px 16px rgba(180,130,80,0.10), 0 16px 48px rgba(30,31,27,0.10);
  --shadow-inset:      inset 0 1px 0 rgba(255,255,255,0.88);
  --glass-bg:          rgba(255,255,255,0.74);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: #F0EDE7;   /* Merqo warm cream - basis voor alle secties zonder modifier */
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ── Navigation ──────────────────────────────────── */
.mhb-nav {
  position: fixed;
  left: 0; top: 0;
  width: var(--nav-w);
  height: 100vh;
  background: #EAE4D8;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mhb-nav.nav-hidden {
  transform: translateX(-100%);
}

.nav-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}

.nav-logo-img {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  opacity: 0.75;
}

.nav-client {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.nav-meta {
  font-size: 11px;
  color: rgba(0,0,0,0.38);
  font-family: var(--font-body);
}

.nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-chapter {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.3);
  padding: 18px 8px 6px;
  margin-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-family: var(--font-body);
}

.nav-item {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
  margin-bottom: 1px;
}
.nav-item:hover {
  color: var(--text);
  background: rgba(0,0,0,0.06);
}
.nav-item.active {
  color: var(--text);
  background: rgba(0,0,0,0.09);
  font-weight: 500;
}

.nav-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.nav-footer-label {
  font-size: 10px;
  color: rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.nav-footer-agency {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  font-family: var(--font-body);
}

/* ── Main content ────────────────────────────────── */
.mhb-main {
  margin-left: var(--nav-w);
  transition: margin-left 0.5s cubic-bezier(0.16,1,0.3,1);
}
body.nav-hidden .mhb-main {
  margin-left: 0;
}
body.nav-hidden .mhb-progress {
  left: 0;
}

/* ── Nav toggle knop (verschijnt als nav verborgen is) ── */
.nav-toggle-btn {
  position: fixed;
  left: 20px;
  top: 24px;
  z-index: 200;
  background: #EAE4D8;
  color: var(--text);
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.nav-toggle-btn svg { display: block; }
body.nav-hidden .nav-toggle-btn {
  opacity: 1;
  pointer-events: all;
}

/* ── Split layout (sticky links + scroll rechts) ── */
.mhb-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.mhb-split-sticky {
  position: sticky;
  top: 100px;
}
.mhb-split-sticky .mhb-title {
  font-size: clamp(34px, 3.8vw, 52px);
}
.mhb-split-sticky .mhb-lead {
  font-size: 16px;
}
.mhb-inner--wide {
  max-width: 1200px;
}

/* Visuele identiteit: alle secties zelfde brede breedte (1200px), tekst lijnt uit */
#logo .mhb-inner,
#kleuren .mhb-inner,
#kleurcombinaties .mhb-inner,
#typografie .mhb-inner,
#grafisch .mhb-inner,
#beeldtaal .mhb-inner,
#social .mhb-inner,
#toepassingen .mhb-inner,
#brandkit .mhb-inner {
  max-width: 1200px;
}

/* Welkom-paneel: mahonie tekst + foto, twee panelen */
#welkom-paneel .mhb-inner { max-width: 1200px; }
.welkom-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.welkom-tekst {
  background: #391412;
  border-radius: 18px;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #EBEADC;
}
.welkom-script {
  font-family: 'Optivenetian Script', 'Asul', cursive;
  font-size: clamp(40px, 4.5vw, 60px);
  font-style: italic;
  line-height: 1;
  color: #EBEADC;
}
.welkom-titel {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-top: 4px;
}
.welkom-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(235,234,220,0.85);
  margin-top: 28px;
  max-width: 30ch;
}
.welkom-knop {
  display: inline-block;
  margin-top: 36px;
  background: #C1A16E;
  color: #391412;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s;
}
.welkom-knop:hover { background: #d4b681; }
.welkom-beeld {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
  min-height: 420px;
}
.welkom-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .welkom-duo { grid-template-columns: 1fr; }
  .welkom-tekst { padding: 44px 32px; }
  .welkom-beeld { min-height: 320px; }
}

/* Social stories: 4 verticale 9:16 mockups, gestaggerd */
.social-stories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  align-items: start;
  padding-bottom: 96px;
}
.social-story {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.social-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.social-story:nth-child(1) { margin-top: 48px; }
.social-story:nth-child(2) { margin-top: 96px; }
.social-story:nth-child(3) { margin-top: 0; }
.social-story:nth-child(4) { margin-top: 64px; }
@media (max-width: 700px) {
  .social-stories { grid-template-columns: repeat(2, 1fr); padding-bottom: 32px; }
  .social-story:nth-child(n) { margin-top: 0; }
}

/* Beeld-duo: twee vierkante vlakken naast elkaar (patroon + moodboard) */
.beeld-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.beeld-duo-vlak {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream);
}
.beeld-duo-vlak img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .beeld-duo { grid-template-columns: 1fr; }
}

/* Content-strips ook binnen 1200px, linkerrand gelijk aan tekst */
#logo .grafisch-strip-wrapper,
#grafisch .grafisch-strip-wrapper,
#beeldtaal .grafisch-strip-wrapper,
#toepassingen .grafisch-strip-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
#logo .grafisch-strip,
#beeldtaal .grafisch-strip,
#toepassingen .grafisch-strip {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 900px) {
  .mhb-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .mhb-split-sticky { position: static; }
}

/* ── Section base ────────────────────────────────── */
.mhb-section {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
  background: #F0EDE7;   /* Merqo warm cream - standaard voor ALLE reguliere secties */
}

/* ── Pay-off paneel (logo + payoff lockup) ───────── */
.mhb-section--paneel {
  background: #F0EDE7;
}

.paneel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.paneel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.paneel--merk {
  background: #391412;
}

.paneel--payoff {
  background: #EBEADC;
}

.paneel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.paneel-blob--donker {
  width: 60%;
  height: 60%;
  left: -10%;
  bottom: -15%;
  background: radial-gradient(circle, #6e2a22 0%, transparent 70%);
}

.paneel-blob--licht {
  width: 70%;
  height: 70%;
  right: -10%;
  top: -10%;
  background: radial-gradient(circle, #f4ead2 0%, transparent 70%);
}

.paneel-logo {
  position: relative;
  z-index: 1;
  max-width: 60%;
  max-height: 40%;
  height: auto;
  object-fit: contain;
}

.paneel-merknaam {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #EBEADC;
  letter-spacing: -0.02em;
}

.paneel-payoff-tekst {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  color: #391412;
}

.paneel-payoff-tekst strong {
  font-weight: 800;
}

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

.mhb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.mhb-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhb-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,0,0,0));
  border-radius: 1px;
  flex-shrink: 0;
}

.mhb-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);   /* Merqo designsysteem — was te groot */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.mhb-title--xl {
  font-size: clamp(50px, 6vw, 74px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.mhb-title--lg {
  font-size: clamp(42px, 4.8vw, 62px);
  letter-spacing: -0.02em;
}
.mhb-title--sm {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Italic accent highlight in titels — identiek aan Merqo .hl / .hl-orange */
.title-hl {
  color: var(--accent);
  font-style: italic;
}

.mhb-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--font-body);
  max-width: 640px;
}
.mhb-body:last-child { margin-bottom: 0; }
.mhb-body--full { max-width: none; }

.mhb-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 400;
  font-family: var(--font-body);
  max-width: 760px;
}
.mhb-lead--wide { max-width: none; }

.mhb-context-hint {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 28px;
  max-width: 640px;
  line-height: 1.55;
}

/* ── Cover — lichte gradiënt (Merqo stijl) ──────── */
.mhb-section--cover {
  background: #F1EBE0;
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8vh;
  overflow: hidden;
  border-bottom: none;
}

.mhb-section--cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.02) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

.cover-bg-number {
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--font-head);
  font-size: 500px;
  font-weight: 500;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 3;
}

.cover-top {
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.cover-logo {
  width: 96px;
  height: auto;
  opacity: 0.85;
}

.cover-datum-top {
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  font-family: var(--font-body);
}

/* Cover meta top-right (versie + label) */
.cover-meta-top {
  text-align: right;
}

.cover-meta-versie {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}

.cover-meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.02em;
}

/* Cover bottom */
.cover-bottom {
  padding: 0 52px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 5;
}

/* Cover client bar (bottom) */
.cover-client-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.cover-client-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cover-client-for {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.38);
}

.cover-client-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.cover-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 18px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cover-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.cover-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 6.5vw, 88px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.0;
  letter-spacing: -0.042em;
  margin-bottom: 12px;
}

.cover-subtitle {
  font-size: 15px;
  color: rgba(0,0,0,0.4);
  font-family: var(--font-body);
  margin-top: 10px;
}

.cover-divider {
  width: 36px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  margin: 24px 0;
}

/* ── Voorwoord ───────────────────────────────────── */
.mhb-section--voorwoord {
  background: var(--dark);
  min-height: 70vh;
  border-bottom: none;
}

.mhb-section--voorwoord .mhb-title {
  color: #fff;
}

.voorwoord-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.voorwoord-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.voorwoord-quote {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding: 16px 20px;
}

.voorwoord-quote p {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  font-style: italic;
}

/* ── Inhoudsopgave ───────────────────────────────── */
.mhb-section--toc {
  background: var(--sand);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

.toc-chapter-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.toc-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-family: var(--font-body);
}
.toc-item:last-child { border-bottom: none; }

.toc-num {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-left: 12px;
}

/* ── Chapter dividers ────────────────────────────── */
.mhb-section--chapter {
  background: var(--dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.chapter-bg-num {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 380px;
  font-weight: 500;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.chapter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.chapter-num-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.chapter-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.038em;
  margin-bottom: 20px;
}

.chapter-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  max-width: 520px;
  line-height: 1.75;
  font-family: var(--font-body);
  margin-bottom: 36px;
}

.chapter-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.chapter-toc-item {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chapter-toc-item::before {
  content: '';
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
}

/* ── Afsluiting ──────────────────────────────────── */
.mhb-section--afsluiting {
  background: var(--dark);
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.af-bg-num {
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-family: var(--font-head);
  font-size: 300px;
  font-weight: 500;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.af-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.af-kop {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.af-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}

.af-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-family: var(--font-body);
  max-width: 480px;
}

/* Merqo ghost-button stijl voor navigatie-links in afsluiting */
.af-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  text-decoration: none;
  cursor: default;
}
.af-link:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── Split layout ────────────────────────────────── */
.mhb-section--split {
  padding: 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 80vh;
  background: var(--white);
}

.split-img {
  overflow: hidden;
}

.split-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, #2e3a38 0%, var(--green) 100%);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  padding: 72px 60px;
  display: flex;
  align-items: flex-start;
}

.split-text-inner {
  max-width: 460px;
}

/* ── Two-column ──────────────────────────────────── */
.mhb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ── Quote — review-card stijl ───────────────────── */
.mhb-quote {
  position: relative;
  border-left: none;
  padding: 22px 28px;
  background: var(--glass-bg);
  border-radius: 0 16px 16px 0;
  margin: 28px 0;
  box-shadow: var(--shadow-inset), var(--shadow-card);
  overflow: hidden;
}
.mhb-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 25%, transparent));
  border-radius: 2px 0 0 2px;
}

.mhb-quote p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
}

/* ── Bullets ─────────────────────────────────────── */
.mhb-bullets {
  list-style: none;
  margin-top: 16px;
}

.mhb-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.mhb-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 8px;
}

.mhb-bullets--white li {
  color: rgba(255,255,255,0.55);
}
.mhb-bullets--white li::before {
  background: rgba(255,255,255,0.3);
}

/* ── Genummerde lijst — identiek aan Merqo pain/pillars patroon ── */
.mhb-num-list {
  counter-reset: mhb-num;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.mhb-num-item {
  counter-increment: mhb-num;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.mhb-num-item:last-child { border-bottom: 1px solid var(--border); }

.mhb-num-item-nr {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  padding-top: 5px;
  flex-shrink: 0;
  min-width: 24px;
}
.mhb-num-item-nr::before { content: "0" counter(mhb-num); }
.mhb-num-item:nth-child(n+10) .mhb-num-item-nr::before { content: counter(mhb-num); }

.mhb-num-item-content { flex: 1; }

.mhb-num-item-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Volledige tweede regel als subtitel — kleiner, muted, cursief */
.title-hl-line {
  display: block;
  font-size: 0.68em;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

/* ── Kernwaarden ─────────────────────────────────── */
.kw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.kw-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(30,31,27,0.04);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.kw-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,31,27,0.08);
}

.kw-naam {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 10px;
}

.kw-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.kp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.kp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Archetypes ──────────────────────────────────── */
.archetype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arch-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(30,31,27,0.04);
}

.arch-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.arch-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 10px;
}

.arch-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.arch-tov {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.arch-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
}

.arch-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.arch-meta-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: var(--font-body);
}

.arch-meta-value {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

.arch-merken {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.arch-merk-tag {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px 10px;
}

.combinatie-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent) 12%, white);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 28px;
}
.combinatie-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--accent) 65%, #888);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.combinatie-naam {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
}

/* ── Merkprincipes — Column cards (Merqo style) ──── */
.principe-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 48px;
}

.principe-card {
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.principe-card--must   { background: var(--dark); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.principe-card--should { background: color-mix(in srgb, var(--accent) 9%, rgba(255,255,255,0.82)); box-shadow: var(--shadow-inset), var(--shadow-card); }
.principe-card--could  { background: color-mix(in srgb, var(--accent) 4%, rgba(255,255,255,0.82)); box-shadow: var(--shadow-inset), var(--shadow-card); }
.principe-card--wont   { background: rgba(255,255,255,0.78); border: 1px solid rgba(214,210,203,0.6); margin: -1px; box-shadow: var(--shadow-inset), var(--shadow-card); }

.principe-card-nr {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.principe-card--must .principe-card-nr   { color: rgba(255,255,255,0.4); }
.principe-card--should .principe-card-nr,
.principe-card--could .principe-card-nr,
.principe-card--wont .principe-card-nr   { color: var(--muted); }

.principe-card-title {
  font-family: var(--font-head);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.principe-card--must .principe-card-title   { color: #fff; }
.principe-card--should .principe-card-title,
.principe-card--could .principe-card-title,
.principe-card--wont .principe-card-title   { color: var(--text); }

.principe-card-sub {
  font-size: 12px;
  font-family: var(--font-body);
  margin-bottom: 24px;
  line-height: 1.5;
}
.principe-card--must .principe-card-sub   { color: rgba(255,255,255,0.45); }
.principe-card--should .principe-card-sub,
.principe-card--could .principe-card-sub,
.principe-card--wont .principe-card-sub   { color: var(--muted); }

.principe-card-items {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.principe-card-item {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.principe-card--must .principe-card-item {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.08);
}
.principe-card--should .principe-card-item { color: var(--text); border-color: rgba(0,0,0,0.07); }
.principe-card--could .principe-card-item,
.principe-card--wont .principe-card-item  { color: var(--text); }

.principe-card-footer {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.principe-card--must .principe-card-footer   { color: rgba(255,255,255,0.22); }
.principe-card--should .principe-card-footer,
.principe-card--could .principe-card-footer,
.principe-card--wont .principe-card-footer   { color: rgba(0,0,0,0.2); }

@media (max-width: 900px) {
  .principe-cards { grid-template-columns: 1fr 1fr; border-radius: 20px; }
}
@media (max-width: 580px) {
  .principe-cards { grid-template-columns: 1fr; border-radius: 16px; }
}

/* ── Pay-off ─────────────────────────────────────── */
.payoff-display {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.1;
  margin: 20px 0 24px;
}

.payoff-varianten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.payoff-variant {
  border-radius: 10px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.payoff-variant-ctx {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-text, var(--muted));
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.payoff-variant-tekst {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--card-text, var(--text));
}

/* ── Tone of Voice ───────────────────────────────── */
.tov-kernzin {
  background: rgba(95,143,149,0.07);
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: var(--shadow-inset), 0 2px 12px rgba(30,31,27,0.05);
}
.tov-kernzin::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 20%, transparent));
  border-radius: 2px 0 0 2px;
}
.tov-kernzin p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.tov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tov-col {
  border-radius: 24px;
  padding: 24px;
}
.tov-col--wel { background: var(--green-light); }
.tov-col--niet { background: #fff5f5; border: 1px solid rgba(180,30,30,0.07); }

.tov-header {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.tov-header--toggle {
  width: 100%;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
}
.tov-header--toggle[aria-expanded="true"] {
  margin-bottom: 16px;
}

.tov-check { color: var(--accent); }
.tov-cross { color: #b41e1e; }

.tov-item {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  font-family: var(--font-body);
}
.tov-item:last-child { border-bottom: none; }

/* ── Positionering statement ─────────────────────── */
.pos-statement {
  background: var(--dark);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 32px;
}

.pos-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pos-row:last-child { border-bottom: none; }

.pos-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

.pos-value {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* ── Waardepropositie ────────────────────────────── */
.wp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wp-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
}

.wp-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 500;
  color: rgba(34,35,31,0.07);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}

.wp-titel {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}

.wp-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Doelgroepen ─────────────────────────────────── */
.dg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dg-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}

.dg-naam {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.dg-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.dg-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

/* ── Klantreis ───────────────────────────────────── */
.kr-timeline {
  position: relative;
  padding-left: 28px;
}

.kr-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--green-light);
}

.kr-fase {
  position: relative;
  margin-bottom: 28px;
}
.kr-fase:last-child { margin-bottom: 0; }

.kr-fase::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light);
}

.kr-label {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 4px;
}

.kr-touch {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Kanaalstrategie ─────────────────────────────── */
.kanaal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Centreer een eventuele orphan-kaart (alleen kind in zijn rij) */
.kanaal-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
@media (max-width: 900px) { .kanaal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .kanaal-card:last-child:nth-child(3n+1) { grid-column: auto; } }
@media (max-width: 580px)  { .kanaal-grid { grid-template-columns: 1fr; } }

.kanaal-card {
  border-radius: 16px;
  border: 1px solid rgba(214,210,203,0.55);
  padding: 28px 24px 24px;
  background: var(--glass-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-inset), var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.kanaal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-inset), var(--shadow-card-hover);
}

.kanaal-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.kanaal-naam {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.3;
}

.kanaal-badge {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 24px;
  margin-top: 2px;
}
.kanaal-badge--hoog      { background: var(--teal); color: #fff; }
.kanaal-badge--middel    { background: #F0E8D8; color: #6B5232; }
.kanaal-badge--secondair { background: var(--border); color: var(--muted); }

.kanaal-doel {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.kanaal-freq {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--cream);
  border-radius: 24px;
  padding: 3px 10px;
  width: fit-content;
}

.kanaal-aanpak {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.kanaal-aanpak li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.kanaal-aanpak li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
  top: 2px;
}

.kanaal-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.kanaal-format-chip {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  line-height: 1.5;
}

.kanaal-stat {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.kanaal-stat-getal {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.1;
}
.kanaal-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── Logo sectie ─────────────────────────────────── */
.logo-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.logo-preview {
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-preview--licht { background: var(--cream); border: 1px solid var(--border); }
.logo-preview--donker { background: var(--green); }

/* Placeholder staat (nog geen logo geüpload) */
.logo-preview--placeholder       { border: 2px dashed var(--border); min-height: 120px; }
.logo-preview--placeholder-donker { border-color: rgba(255,255,255,0.12); }

.logo-placeholder-text {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  text-align: center;
  letter-spacing: 0.03em;
}
.logo-placeholder-text--donker { color: rgba(255,255,255,0.28); }

.logo-preview img {
  max-width: 150px;
  height: auto;
}

.logo-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.logo-do {
  background: var(--green-light);
  border-radius: 24px;
  padding: 20px 22px;
}
.logo-dont {
  background: #fff5f5;
  border: 1px solid rgba(180,30,30,0.07);
  border-radius: 24px;
  padding: 20px 22px;
}

.logo-do-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.logo-do .logo-do-label { color: var(--green-mid); }
.logo-dont .logo-do-label { color: #b41e1e; }

/* ── Logo do/dont toggle ─────────────────────────── */
.logo-do-dont-wrapper {
  margin-top: 8px;
}
.logo-do-dont-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  text-align: left;
  transition: background 0.15s;
}
.logo-do-dont-toggle:hover { background: rgba(0,0,0,0.03); }
.logo-do-dont-icon {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.logo-do-dont-icon.is-open { transform: rotate(180deg); }
.logo-do-dont { margin-top: 12px; }

/* ── Logo variant kaarten ────────────────────────── */
.grafisch-kaart--variant {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logo-variant-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 28px 24px;
}
.logo-variant-img img {
  max-width: 80%;
  max-height: 120px;
  object-fit: contain;
}

/* ── WCAG badges ─────────────────────────────────── */
.kleur-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.kleur-wcag-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.kleur-wcag-badge--aaa {
  background: rgba(34,120,70,0.12);
  color: #1a6b3c;
}
.kleur-wcag-badge--aa {
  background: rgba(74,124,142,0.12);
  color: var(--accent);
}
.kleur-wcag-badge--aa-groot {
  background: rgba(180,140,30,0.12);
  color: #8a6a00;
}
.kleur-wcag-toelichting {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin: 4px 0 0;
  font-style: italic;
}

/* ── Beeldtaal compositie ────────────────────────── */
.bd-compositie {
  margin: 16px 0 20px;
  padding: 16px 20px;
  background: rgba(44,58,46,0.04);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.bd-compositie-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.bd-compositie-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.bd-compositie-item:last-child { border-bottom: none; }
.bd-comp-nr {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  min-width: 16px;
  margin-top: 3px;
}

/* ── Beeldtaal collapsible ───────────────────────── */
.bd-collapsible { margin-top: 32px; }
.bd-collapsible-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
}
.bd-collapsible-toggle:hover { background: rgba(0,0,0,0.03); }
.bd-collapsible-icon {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.bd-collapsible-icon--open { transform: rotate(180deg); }
.bd-collapsible-enter {
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.bd-collapsible-start { opacity: 0; transform: translateY(-6px); }
.bd-collapsible-end { opacity: 1; transform: translateY(0); }
.beeldtaal-dodont { margin-top: 16px; }

/* ── Kleur combos merged block ───────────────────── */
.kleur-combos-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.kleur-combos-titel {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ── Kleuren ─────────────────────────────────────── */
.kleuren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 16px;
}

.kleur-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.kleur-swatch {
  height: 96px;
  width: 100%;
}

.kleur-info {
  padding: 14px 14px 16px;
  background: var(--white);
}

.kleur-naam {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.kleur-type-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 24px;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.kleur-type-badge--primair { background: var(--green-light); color: var(--green); }
.kleur-type-badge--secundair { background: #f0f0ec; color: var(--muted); }

.kleur-codes {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.9;
}

/* ── Typografie ──────────────────────────────────── */
.typo-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

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

.typo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}

/* Typografie-sectie: saliegroene kaarten op cream, conform brandbook */
#typografie.mhb-section--sand { background: #F0EDE7; }
#typografie .typo-card {
  background: #EBEADC;
  border-color: rgba(0,0,0,0.05);
}
/* Heading: Asul/DM Sans naam + 'font family' samen, groot, mahonie */
#typografie .typo-card-fontname { gap: 0; }
#typografie .typo-card-name-main { white-space: nowrap; }
#typografie .typo-card-alphabet { white-space: nowrap; }
#typografie .typo-card-name-main {
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 500;
  color: #391412;
  line-height: 1.04;
}
#typografie .typo-card-family {
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 500;
  color: #391412;
  line-height: 1.04;
  letter-spacing: 0;
}

/* Witte pill, normale tekst */
#typografie .typo-card-badge {
  background: #fff;
  color: #4a3f38;
  border: none;
  text-transform: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  padding: 9px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* hr breder/subtieler */
#typografie .typo-card-hr { border-top-color: rgba(57,20,18,0.18); margin-bottom: 36px; }

/* Aa specimen groter, mahonie */
#typografie .typo-card-specimen { font-size: clamp(120px, 12vw, 168px); color: #391412; }
#typografie .typo-card-body { grid-template-columns: 200px 1px 150px 1fr; }
#typografie .typo-card-divider-vert { background: rgba(57,20,18,0.18); }

/* Labels normale stijl, grijs */
#typografie .typo-col-label {
  text-transform: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  color: #8a7d72;
  margin-bottom: 22px;
}

/* Weights groot in titelfont, geen lijnen */
#typografie .typo-weight-row {
  font-size: 26px;
  font-weight: 700;
  color: #391412;
  padding: 0 0 10px;
  border-bottom: none;
}

/* Overview alfabet groter, mahonie */
#typografie .typo-card-alphabet {
  font-size: 19px;
  line-height: 1.55;
  color: #391412;
}

.typo-card-paragraaf {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.5;
  color: #391412;
}

/* Card header */
.typo-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.typo-card-fontname {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.typo-card-name-main {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
}

.typo-card-family {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.typo-card-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(95,143,149,.1);
  border: 1px solid rgba(95,143,149,.28);
  border-radius: 24px;
  padding: 5px 14px;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-top: 6px;
}

.typo-card-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 28px;
}

/* Card body: specimen | divider | weights | overview */
.typo-card-body {
  display: grid;
  grid-template-columns: 160px 1px 160px 1fr;
  gap: 0 28px;
  align-items: start;
}

.typo-card-specimen-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 8px;
}

.typo-card-specimen {
  font-size: 108px;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
}

.typo-card-divider-vert {
  background: var(--border);
  align-self: stretch;
  min-height: 80px;
}

.typo-col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.typo-weight-row {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.typo-weight-row:last-child { border-bottom: none; }

.typo-card-alphabet {
  font-size: 13px;
  line-height: 2;
  color: var(--text);
  letter-spacing: 0.01em;
}

.typo-hierarchy {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.typo-hier-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.typo-hier-row:last-child { border-bottom: none; }

.typo-hier-label {
  font-size: 11px;
  color: var(--muted);
  min-width: 80px;
  font-family: var(--font-body);
  flex-shrink: 0;
}

/* ── Social media verdeling ──────────────────────── */
.social-verdeling {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.social-verdeling-kaart {
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.social-verdeling-pct {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.social-verdeling-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.social-verdeling-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Social kanalen grid ─────────────────────────── */
.social-kanalen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.social-kanaal-kaart {
  padding: 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.social-kanaal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.social-kanaal-naam {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.social-kanaal-freq {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(74,124,142,0.1);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.social-kanaal-doel {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.social-kanaal-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
}
.social-kanaal-stat-nr {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--text);
  line-height: 1;
}
.social-kanaal-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.social-kanaal-formats {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.social-kanaal-formats li {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 13px;
  position: relative;
}
.social-kanaal-formats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.social-richtlijnen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 640px) { .social-richtlijnen { grid-template-columns: 1fr; } }

.social-richtlijn-blok {
  border-radius: 12px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
}
.social-richtlijn-blok--do { border-top: 3px solid #4caf50; }
.social-richtlijn-blok--dont { border-top: 3px solid #e53935; }

.social-richtlijn-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.social-richtlijn-lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-richtlijn-lijst li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.social-richtlijn-blok--do .social-richtlijn-lijst li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-size: 11px;
  font-weight: 700;
  top: 2px;
}
.social-richtlijn-blok--dont .social-richtlijn-lijst li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e53935;
  font-size: 11px;
  font-weight: 700;
  top: 2px;
}

/* ── Toepassingen ────────────────────────────────── */
.grafisch-strip--toepassingen { padding: 24px 32px 32px; gap: 16px; }

.toep-kaart {
  flex: 0 0 320px;
  width: 320px;
  --toep-kleur: #2C3A2E;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.toep-kaart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.toep-kaart-header {
  background: var(--toep-kleur);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toep-categorie-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.85);
  color: var(--text);
  width: fit-content;
}

.toep-kaart-naam {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.toep-kaart--licht .toep-kaart-naam { color: var(--text); }
.toep-kaart--licht .toep-categorie-badge { background: rgba(0,0,0,0.08); }

.toep-kaart-toelichting {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 18px 22px 0;
}

.toep-kaart-details {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.toep-kaart-details li {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.toep-kaart-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Beeldtaal moodboard ── */
.beeldtaal-moodboard {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.beeldtaal-moodboard img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Beeldtaal fotogrid ──────────────────────────── */
.beeldtaal-fotos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 8px;
}
.beeldtaal-foto-item {
  border-radius: 8px;
  overflow: hidden;
}
.beeldtaal-foto-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.beeldtaal-foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.beeldtaal-foto-item:hover img { transform: scale(1.04); }

/* ── Kleur detail lijst ──────────────────────────── */
.kleur-detail-lijst {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.kleur-detail-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: start;
  background: #fff;
  padding: 24px 24px;
  border-bottom: 1px solid var(--border);
}
.kleur-detail-swatch { margin-top: 4px; }
.kleur-detail-codes { padding-top: 2px; }
.kleur-detail-item:last-child { border-bottom: none; }
.kleur-detail-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.14);
}
.kleur-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.kleur-detail-naam {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.kleur-detail-psychologie {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 4px;
}
.kleur-detail-gebruik {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}
.kleur-detail-codes {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  min-width: 160px;
}
.kleur-code-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: baseline;
}
.kleur-code-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.6;
}

/* ── Kleurband (legacy, behouden voor andere secties) ── */
.kleur-band {
  display: flex;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  gap: 3px;
}
.kleur-band-blok {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  transition: flex 0.35s cubic-bezier(.4,0,.2,1);
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.kleur-band-blok:hover { flex: 2.2; }
.kleur-band-blok::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.kleur-band-naam {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.kleur-band-hex {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ── Kleurkaarten (palette cards) ────────────────── */
.kleur-kaarten {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.kleur-kaart {
  position: relative;
  border-radius: 12px;
  padding: 24px 22px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}

.kleur-kaart--breed {
  grid-column: span 2;
}

.kleur-kaart--licht {
  color: #2a2018;
}

.kleur-kaart-naam {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.kleur-kaart-codes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
}

.kleur-kaart-row {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.kleur-hex-copy.kleur-kaart-row {
  cursor: pointer;
  transition: opacity 0.15s;
}
.kleur-hex-copy.kleur-kaart-row:hover { opacity: 0.7; }

.kleur-kaart-label {
  width: 42px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.kleur-kaart-val {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .kleur-kaarten { grid-template-columns: repeat(2, 1fr); }
  .kleur-kaart--breed { grid-column: span 2; }
}

@media (max-width: 520px) {
  .kleur-kaarten { grid-template-columns: 1fr; }
  .kleur-kaart, .kleur-kaart--breed { grid-column: auto; min-height: 220px; }
}

/* ── Kleur Mosaic (BrandKit-inspired editorial grid) ── */
.kleur-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-bottom: 56px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.kleur-mosaic-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.kleur-mosaic-tile:hover { transform: scale(1.012); z-index: 2; }
.kleur-mosaic-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255,255,255,0.06) 0%, transparent 35%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.kleur-mosaic-tile--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.kleur-mosaic-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.kleur-mosaic-token {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.kleur-mosaic-type {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kleur-mosaic-bottom {
  position: relative;
  z-index: 1;
}
.kleur-mosaic-naam {
  display: block;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.1;
  color: rgba(255,255,255,0.97);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.kleur-mosaic-tile--hero .kleur-mosaic-naam {
  font-size: 40px;
  margin-bottom: 10px;
}
.kleur-mosaic-hex {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.kleur-mosaic-tile--hero .kleur-mosaic-hex {
  font-size: 14px;
  letter-spacing: 0.08em;
}
/* Lichte kleuren: tekst donker */
.kleur-mosaic-tile--light .kleur-mosaic-naam { color: rgba(20,30,25,0.92); }
.kleur-mosaic-tile--light .kleur-mosaic-hex { color: rgba(20,30,25,0.62); }
.kleur-mosaic-tile--light .kleur-mosaic-token { color: rgba(20,30,25,0.5); }
.kleur-mosaic-tile--light .kleur-mosaic-type {
  background: rgba(20,30,25,0.08);
  color: rgba(20,30,25,0.78);
}
.kleur-mosaic-tile--light::after {
  background: linear-gradient(155deg, rgba(0,0,0,0.04) 0%, transparent 40%, rgba(0,0,0,0.06) 100%);
}
@media (max-width: 900px) {
  .kleur-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .kleur-mosaic-tile--hero { grid-column: span 2; grid-row: span 2; }
  .kleur-mosaic-tile--hero .kleur-mosaic-naam { font-size: 32px; }
}
@media (max-width: 520px) {
  .kleur-mosaic { grid-template-columns: 1fr; grid-auto-rows: 130px; }
  .kleur-mosaic-tile--hero { grid-column: span 1; grid-row: span 1; }
  .kleur-mosaic-tile--hero .kleur-mosaic-naam { font-size: 26px; }
}

/* ── H3 stagger reveal (GSAP) ─────────────────────── */
[data-h3-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}
[data-h3-stagger].is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-h3-stagger] > * { opacity: 1; transform: none; }
}

/* ── Logo preview upgrade ─────────────────────────── */
.logo-preview {
  min-height: 260px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}
.logo-preview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.logo-preview--licht {
  background: linear-gradient(140deg, #FBF5EA 0%, var(--cream) 65%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), var(--shadow-card);
}
.logo-preview--donker {
  background: linear-gradient(140deg, #34433A 0%, var(--green) 70%);
}
.logo-preview::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  pointer-events: none;
  border: 1px dashed rgba(0,0,0,0.06);
}
.logo-preview--donker::before { border-color: rgba(255,255,255,0.08); }
.logo-preview img { max-width: 180px; }

/* ── Typografie specimen ─────────────────────────── */
.typo-specimen-blok {
  background: var(--dark);
  border-radius: 24px;
  padding: 56px 52px 40px;
  margin-bottom: 40px;
  overflow: hidden;
}
.typo-specimen-groot {
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.05;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.typo-specimen-voet {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.typo-specimen-voet-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.typo-specimen-voet-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.typo-specimen-voet-naam {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.typo-specimen-voet-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Grafisch fullbleed ──────────────────────────── */
.grafisch-tekst-principes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.grafisch-principes-lijst {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.grafisch-principe-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.grafisch-principe-nr {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 2px;
  flex-shrink: 0;
}
.grafisch-principe-tekst {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.grafisch-fullbleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 48px;
}
.grafisch-fullbleed-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.grafisch-fullbleed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.grafisch-fullbleed-item:hover img { transform: scale(1.03); }
.grafisch-fullbleed-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 40px 20px 16px;
}

/* ── Grafische elementen scroll strip ───────────── */
.grafisch-strip-wrapper {
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 48px;
}
.grafisch-strip-wrapper::-webkit-scrollbar { display: none; }
.grafisch-strip-wrapper.is-dragging { cursor: grabbing; }

.grafisch-strip {
  display: flex;
  gap: 16px;
  padding: 0 48px 40px;
  width: max-content;
}

/* Grafische elementen: contained grid 1200px (consistent met andere visuele secties) */
#grafisch .grafisch-strip-wrapper {
  overflow-x: visible;
  cursor: default;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0;
}
#grafisch .grafisch-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: auto;
  padding: 0 0 8px;
  gap: 16px;
}
#grafisch .grafisch-kaart {
  width: auto;
  height: auto;
  aspect-ratio: 4 / 5;
}
@media (max-width: 900px) {
  #grafisch .grafisch-strip { grid-template-columns: repeat(2, 1fr); }
  #grafisch .grafisch-strip-wrapper { padding: 0 24px; }
}
@media (max-width: 520px) {
  #grafisch .grafisch-strip { grid-template-columns: 1fr; }
}

.grafisch-kaart {
  width: 380px;
  height: 340px;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.grafisch-kaart:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.grafisch-kaart--kleur {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.grafisch-kaart-body {
  padding: 20px 24px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.grafisch-kaart-type {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.grafisch-kaart-naam {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}
.grafisch-kaart-hex {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.grafisch-kaart--beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.grafisch-kaart--beeld:hover img { transform: scale(1.04); }

.grafisch-kaart-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 22px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* ── Logo beeldmerk ──────────────────────────────── */
.logo-beeldmerk-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 24px;
}
.logo-beeldmerk-strip img {
  max-height: 56px;
  width: auto;
  flex-shrink: 0;
}
.logo-beeldmerk-strip-text strong {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.logo-beeldmerk-strip-text p {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ── Grafische elementen beelden ─────────────────── */
.grafisch-beelden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.grafisch-beeld-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.grafisch-beeld-item img {
  width: 100%;
  height: auto;
  display: block;
}
.grafisch-beeld-label {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  background: var(--cream);
}

/* ── Social feed ─────────────────────────────────── */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 20px;
  max-width: 480px;
}

.social-feed-item {
  aspect-ratio: 1;
  background: var(--green-light);
  border-radius: 6px;
  overflow: hidden;
}
.social-feed-item img { width: 100%; height: 100%; object-fit: cover; }

.social-feed-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--green-mid) 100%);
}

/* ── Contact ─────────────────────────────────────── */
.mhb-section--contact {
  background: var(--dark);
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-logo {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.55;
}

.contact-left .mhb-title {
  color: #fff;
  margin-bottom: 14px;
}

.contact-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  line-height: 1.75;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.contact-item-val {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}

/* ── Utility section backgrounds ─────────────────── */
/* Slechts 3 varianten — geen visuele ruis door te veel achtergrondwisselingen */
/* Standaard (.mhb-section zonder modifier) = body background #F0EDE7 */
.mhb-section--sand   { background: #E8E4DC; }    /* warm zand — max 4-5 speciale secties */
.mhb-section--dark   { background: var(--dark); border-bottom-color: rgba(255,255,255,0.06); }
.mhb-section--dark .mhb-eyebrow     { color: rgba(255,255,255,0.35); }
.mhb-section--dark .mhb-eyebrow::before { background: linear-gradient(90deg, var(--accent), rgba(0,0,0,0)); }
.mhb-section--dark .mhb-title       { color: #fff; }
.mhb-section--dark .mhb-body        { color: rgba(255,255,255,0.55); }
.mhb-section--dark .mhb-lead        { color: rgba(255,255,255,0.6); }

/* Verwijderde varianten — aliassen behouden voor backwards compat */
.mhb-section--cream  { background: #F0EDE7; }    /* alias voor --bg, niet meer gebruiken */
.mhb-section--white  { background: #F0EDE7; }    /* was warm licht, nu zelfde als --bg */
.mhb-section--gray   { background: #E8E4DC; }    /* alias voor --sand, niet meer gebruiken */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }

/* ── Kernpunt callout ── */
.kernpunt {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: color-mix(in srgb, var(--accent) 8%, rgba(255,255,255,0.6));
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 20px 0 28px;
  position: relative;
  box-shadow: var(--shadow-inset), 0 2px 12px rgba(30,31,27,0.05);
}
.kernpunt::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 30%, transparent));
  border-radius: 2px 0 0 2px;
}

.kernpunt-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.kernpunt-tekst {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

/* ── Markt stats grid — large bold cards ── */
.markt-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 40px 0 36px;
}

.markt-stat-block {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px 20px;
  overflow: hidden;
}

.markt-stat-getal {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: nowrap;
}

.markt-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ── VPC vereenvoudigd ── */
.vpc-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.vpc-insight {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px;
}

.vpc-insight-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mt-lg { margin-top: 40px; }
.mhb-hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── Snelreferentiekaart ─────────────────────────── */
/* ── Gebruikswijzer ──────────────────────────────── */
.gw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.gw-card {
  background: var(--glass-bg);
  border: 1px solid rgba(214,210,203,0.55);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-inset), var(--shadow-card);
}
.gw-card-scenario {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.gw-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gw-chip {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 20px;
  padding: 3px 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.gw-chip:hover {
  background: color-mix(in srgb, var(--accent) 20%, white);
}

.mhb-section--snelref {
  background: #E8E4DC;   /* sand — snelreferentie is een speciale samenvattingssectie */
}

.snelref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.snelref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
}

.snelref-card--wide {
  grid-column: span 2;
}

.snelref-card--waarden,
.snelref-card--kleuren {
  grid-column: span 3;
}

.snelref-card-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.snelref-card-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.snelref-waarden {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snelref-waarde {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.snelref-kleuren {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.snelref-kleur {
  display: flex;
  align-items: center;
  gap: 12px;
}

.snelref-kleur-swatch {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.snelref-kleur-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.snelref-kleur-naam {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.snelref-kleur-hex {
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: monospace;
  padding: 0;
  text-align: left;
  transition: color 0.15s;
}

.snelref-kleur-hex:hover {
  color: var(--teal);
}

/* ── Nav print button ────────────────────────────── */
.nav-print-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding: 9px 12px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  color: rgba(0,0,0,0.45);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-print-btn:hover {
  background: rgba(0,0,0,0.1);
  color: var(--text);
  border-color: rgba(0,0,0,0.2);
}

/* ── Responsive layout ───────────────────────────── */

/* Tablet + mobiel: nav als overlay, content schuift niet mee */
@media (max-width: 1024px) {
  .mhb-nav {
    z-index: 200;
    box-shadow: 4px 0 32px rgba(0,0,0,0.4);
  }

  .mhb-main {
    margin-left: 0 !important;
  }

  body.nav-hidden .mhb-progress {
    left: 0;
  }

  .mhb-progress {
    left: 0;
  }

  .nav-toggle-btn {
    opacity: 1 !important;
    pointer-events: all !important;
    left: 16px;
    top: 16px;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  body:not(.nav-hidden) .nav-backdrop {
    opacity: 1;
    pointer-events: all;
  }
}

/* Mobiel: kleinere padding en typografie */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px 24px 64px;
  }

  .mhb-title {
    font-size: clamp(24px, 7vw, 36px) !important;
  }

  .mhb-title--xl {
    font-size: clamp(36px, 9vw, 56px) !important;
  }

  .mhb-title--lg {
    font-size: clamp(30px, 8vw, 46px) !important;
  }

  /* Alle 2-koloms grids naar 1 kolom */
  .mhb-two-col,
  .mhb-split,
  .voorwoord-grid,
  .archetype-grid,
  .tov-grid,
  .tov-diag-grid,
  .swot-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .mhb-split-sticky {
    position: static;
  }

  /* 3-koloms naar 1 kolom */
  .toc-grid,
  .snelref-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  /* Persona/content grids */
  .persona-grid,
  .pijler-grid,
  .contentpijler-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Geen sidebar backdrop op desktop */
@media (min-width: 1025px) {
  .nav-backdrop {
    display: none !important;
  }
}

/* ── Framework intro boxes ──────────────────────── */
.mhb-framework-intro {
  background: rgba(239,238,234,0.7);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 10px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 4px rgba(30,31,27,0.04);
}
.mhb-framework-intro::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 20%, transparent));
  border-radius: 2px 0 0 2px;
}
.pos-matrix + .mhb-framework-intro {
  margin-top: 40px;
}
.mhb-framework-intro + .pos-matrix {
  margin-top: 8px;
}
.mhb-framework-intro + .swot-grid {
  margin-top: 8px;
}
.mhb-framework-intro-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0;
  user-select: none;
}
.mhb-framework-intro-label:hover { opacity: 0.75; }
.mhb-framework-intro-label .mhb-toggle-icon { font-style: normal; font-size: 12px; }
.mhb-framework-intro p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.mhb-framework-intro strong { color: var(--text); font-weight: 600; }
.mhb-framework-intro em { color: var(--text); font-style: italic; }

.af-actie {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: none;
  border-radius: 0 10px 10px 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 12px rgba(0,0,0,0.1);
}
.af-actie::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
  border-radius: 2px 0 0 2px;
}
.af-actie-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}
.af-actie p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}

/* ── Print ───────────────────────────────────────── */
@media print {
  /* ── Verberg UI-elementen ── */
  .mhb-nav,
  .mhb-progress,
  .nav-toggle-btn,
  .nav-backdrop,
  .onboarding-overlay,
  .nav-print-btn,
  .section-share-btn,
  .kleur-hex-copy,
  .tov-tool,
  .type-tool,
  .copy-toast,
  .copy-btn,
  .mhb-toggle,
  .mhb-toggle-wrap,
  .zie-ook-chips,
  .kanalen-social-wrap .social-richtlijnen,
  .grafisch-strip-wrapper::before,
  .grafisch-strip-wrapper::after { display: none !important; }

  /* Verborgen toggle-bodies wél tonen in print */
  .mhb-toggle-body,
  [x-show] { display: block !important; }

  /* ── Layout ── */
  .mhb-main {
    margin-left: 0 !important;
    width: 100% !important;
  }

  body {
    font-size: 11pt;
    background: white !important;
    color: #1a1a1a !important;
  }

  /* Alle kleur- en achtergrond-exact afdrukken */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* ── Paginabreuken ── */
  .mhb-section--cover {
    break-after: page;
    min-height: 100vh !important;
    padding: 52px !important;
  }

  .mhb-section--chapter {
    break-before: page;
  }

  /* Hoofdstuksecties beginnen op nieuwe pagina */
  #golden-circle,
  #markt,
  #logo {
    break-before: page;
  }

  section[id] {
    break-inside: avoid;
  }

  /* Kaarten en grids nooit doorbroken */
  .kernpunt,
  .kleur-kaart,
  .persona-wrap,
  .toep-kaart,
  .kw-body,
  .cj-table,
  .vpc-grid,
  .swot-grid { break-inside: avoid; }

  /* ── Animaties resetten voor print ── */
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── Strip → gewoon grid in print ── */
  .grafisch-strip-wrapper {
    overflow: visible !important;
  }
  .grafisch-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
  }
  .grafisch-strip--toepassingen .toep-kaart {
    flex: 0 0 calc(33% - 12px) !important;
    width: calc(33% - 12px) !important;
    break-inside: avoid;
  }

  /* ── Geen links met URL achter tekst ── */
  a::after { content: none !important; }
  a { color: inherit !important; text-decoration: none !important; }

  /* ── Titels en tekst ── */
  .mhb-title { font-size: 20pt !important; }
  .mhb-title--lg { font-size: 26pt !important; }
  .mhb-eyebrow { font-size: 8pt !important; letter-spacing: 0.12em; }
  .mhb-lead { font-size: 11pt !important; }

  /* ── Cover leesbaar ── */
  .cover-title { font-size: 52pt !important; }
  .cover-blob { display: none !important; }
  .mhb-grain { display: none !important; }
  .cover-cursor-glow { display: none !important; }
}

/* =====================================================
   UITBREIDINGEN v3.1
   Scroll animaties, progress bar, copy, combinaties
   ===================================================== */

/* ── Progress bar ────────────────────────────────── */
.mhb-progress {
  position: fixed;
  top: 0;
  left: var(--nav-w);
  right: 0;
  height: 3px;
  background: transparent;
  transition: left 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 200;
}

.mhb-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  width: 0%;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Scroll animaties ────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.16s; }
[data-animate-delay="3"] { transition-delay: 0.24s; }
[data-animate-delay="4"] { transition-delay: 0.32s; }

/* ── HEX copy button ─────────────────────────────── */
.kleur-hex-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 2px 6px 2px 0;
  border-radius: 4px;
  transition: all 0.15s;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  user-select: none;
  position: relative;
}

.kleur-hex-copy:hover {
  color: var(--green);
}

.copy-icon {
  opacity: 0;
  font-size: 10px;
  transition: opacity 0.15s;
}

.kleur-hex-copy:hover .copy-icon {
  opacity: 1;
}

.kleur-hex-copy.copied {
  color: var(--green-mid);
}

.copy-feedback {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  font-family: var(--font-body);
}

.kleur-hex-copy.copied .copy-feedback {
  opacity: 1;
}

/* ── Kleurcombinaties ────────────────────────────── */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.combo-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.combo-preview {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.combo-preview-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.combo-preview-sub {
  font-family: var(--font-body);
  font-size: 11px;
  margin-top: 4px;
  text-align: center;
  opacity: 0.6;
}

.combo-info {
  background: var(--white);
  padding: 12px 14px;
}

.combo-naam {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.combo-gebruik {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--font-body);
}

.combo-dots {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.combo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── Tone of Voice voorbeelden ───────────────────── */
.tov-voorbeelden {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.tov-voorbeeld-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(214,210,203,0.55);
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.tov-voorbeeld-situatie {
  background: var(--cream);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: var(--font-body);
  border-bottom: 1px solid var(--border);
}

.tov-voorbeeld-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tov-voorbeeld-col {
  padding: 18px 20px;
}

.tov-voorbeeld-col--goed {
  background: #f0f7f5;
  border-left: 3px solid #5F8F95;
  border-right: 1px solid var(--border);
}

.tov-voorbeeld-col--slecht {
  background: #fdf4f4;
  border-left: 3px solid #c0392b;
}

.tov-voorbeeld-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tov-voorbeeld-col--goed .tov-voorbeeld-label { color: var(--green-mid); }
.tov-voorbeeld-col--slecht .tov-voorbeeld-label { color: #b41e1e; }

.tov-voorbeeld-tekst {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  font-family: var(--font-body);
  font-style: italic;
}

/* =====================================================
   CLIENT ACCENTKLEUR — standaard Merqo teal, per client te overschrijven
   ===================================================== */

:root {
  --accent:       #ED6B46;
  --accent-light: rgba(237, 107, 70, 0.10);
  --accent-mid:   #D45A35;
}

/* Alle elementen die de accentkleur van de klant overnemen */
.mhb-eyebrow                        { color: var(--accent); }
.mhb-bullets li::before             { background: var(--accent); }
.mhb-quote                          { border-left-color: var(--accent); }
.title-accent-word                  { color: var(--accent); font-style: italic; }
.mhb-progress-bar                   { background: var(--accent); }
.kp-dot                             { background: var(--accent); }
.kw-naam                            { color: var(--accent); }
.tov-check                          { color: var(--accent); }
.tov-kernzin                        { border-left-color: var(--accent); }
.kr-fase::before                    { background: var(--accent); }
.kr-fase::before                    { box-shadow: 0 0 0 2px var(--accent-light); }
.kr-label                           { color: var(--accent); }
.arch-name                          { color: var(--accent); }
.combinatie-naam                    { color: var(--accent); }
.kleur-hex-copy:hover               { color: var(--accent); }
.kleur-hex-copy.copied              { color: var(--accent); }
.tov-voorbeeld-col--goed .tov-voorbeeld-label { color: var(--accent); }
.logo-do .logo-do-label             { color: var(--accent); }
.chapter-toc-item::before           { background: rgba(255,255,255,0.15); }

/* Cover brand logo (prominent, boven de titel) */
.cover-brand-logo {
  margin-bottom: 32px;
}
.cover-brand-logo img {
  height: 140px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.4));
}

/* Cover client logo */
.cover-client-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.cover-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cover-separator {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ── Positioneringsmatrix (scatter plot) ─────────── */
.pos-matrix {
  position: relative;
  width: 100%;
  height: 360px;
  background: var(--cream);
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-top: 28px;
  overflow: hidden;
}

.pos-axis-h {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.pos-axis-v {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.pos-label-as {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font-body);
  background: var(--cream);
  padding: 2px 6px;
}

.pos-label-as--top    { top: 10px; left: 50%; transform: translateX(-50%); }
.pos-label-as--bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }
.pos-label-as--left   { left: 10px; top: 50%; transform: translateY(-50%); }
.pos-label-as--right  { right: 10px; top: 50%; transform: translateY(-50%); }

.pos-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pos-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.pos-dot--client .pos-dot-circle {
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pos-dot-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.85);
  padding: 1px 5px;
  border-radius: 3px;
}

.pos-dot--client .pos-dot-name {
  color: var(--accent);
  font-weight: 700;
}

/* ── Golden Circle ───────────────────────────────────── */
.gc-blocks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.gc-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.72);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--gc-accent);
  box-shadow: var(--shadow-inset), 0 2px 10px rgba(30,31,27,0.05);
}

.gc-block--why  { --gc-accent: var(--accent); }
.gc-block--how  { --gc-accent: color-mix(in srgb, var(--accent) 65%, #aaa); }
.gc-block--what { --gc-accent: color-mix(in srgb, var(--accent) 35%, #bbb); }

.gc-content {
  flex: 1;
}

.gc-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-accent);
  margin-bottom: 2px;
}

.gc-kernzin {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 5px;
  line-height: 1.4;
}

.gc-body {
  font-size: 13px;
  color: var(--text-muted, #888);
  margin: 0;
  line-height: 1.65;
}

.gc-punten {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gc-punten li {
  font-size: 13px;
  color: var(--text-muted, #888);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.gc-punten li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gc-accent, var(--accent));
  font-size: 11px;
  top: 1px;
}

.gc-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.gc-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Concentric rings */
.gc-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.gc-ring--what {
  width: 240px;
  height: 240px;
  background: color-mix(in srgb, var(--accent) 18%, #fff);
}

.gc-ring--how {
  width: 168px;
  height: 168px;
  background: color-mix(in srgb, var(--accent) 35%, #fff);
}

.gc-ring--why {
  width: 96px;
  height: 96px;
  background: var(--accent);
}

.gc-ring-label {
  position: absolute;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}

/* WHY label — center of inner ring */
.gc-ring--why .gc-ring-label { color: #fff; }

/* HOW label — positioned in the HOW ring band */
.gc-ring-label--how {
  bottom: 14px;
  color: rgba(255,255,255,0.9);
}

/* WHAT label — positioned in the WHAT ring band */
.gc-ring-label--what {
  bottom: 10px;
  color: color-mix(in srgb, var(--accent) 80%, #333);
}

/* Lines + descriptions to the right */
.gc-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.gc-line-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gc-line {
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-top: 9px;
}

.gc-line-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.gc-line-text strong {
  color: var(--text);
  font-weight: 600;
}

.gc-toelichting {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
}

@media (max-width: 700px) {
  .gc-visual { flex-direction: column; }
  .gc-lines { align-items: center; text-align: center; }
  .gc-ring--what { width: 200px; height: 200px; }
  .gc-ring--how { width: 140px; height: 140px; }
  .gc-ring--why { width: 80px; height: 80px; }
}

/* =====================================================
   STRATEGISCHE TOOLS v4.0
   Value Proposition Canvas · Persona · Empathy Map
   Customer Journey Map
   ===================================================== */

/* ── Value Proposition Canvas ────────────────────── */
.vpc-canvas {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  min-height: 420px;
}
@media (max-width: 700px) {
  .vpc-canvas { flex-direction: column; min-height: 0; gap: 24px; }
  .vpc-arrow { transform: rotate(90deg); padding: 8px 0; margin-top: 0; }
}

.vpc-side { flex: 1; }

.vpc-side-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

/* Waardemap: vierkant */
.vpc-square {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  overflow: hidden;
}

.vpc-block {
  padding: 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vpc-block:last-child { border-bottom: none; }
.vpc-block:nth-child(2) { border-right: none; }
.vpc-block:first-child { grid-column: 1 / -1; border-right: none; background: rgba(95,143,149,0.05); }

.vpc-block-icon {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent);
}
.vpc-icon--reliever { color: #c0392b; }
.vpc-icon--creator  { color: #27ae60; }

.vpc-block-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}

.vpc-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vpc-block ul li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.vpc-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Klantprofiel: cirkel */
.vpc-arrow {
  font-size: 24px;
  color: var(--border);
  padding: 0 16px;
  flex-shrink: 0;
  margin-top: 24px;
}

.vpc-circle-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
  width: min(380px, 100%);
  height: min(380px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.vpc-segment {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpc-segment--tasks {
  grid-column: 1 / -1;
  background: rgba(95,143,149,0.06);
  border-bottom: 1px solid var(--border);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

.vpc-segment--pains {
  background: rgba(192,57,43,0.04);
  border-right: 1px solid var(--border);
}

.vpc-segment--gains {
  background: rgba(39,174,96,0.04);
}

.vpc-segment ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vpc-segment ul li {
  font-size: 12px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.4;
}

/* ── Persona Card ────────────────────────────────── */
.persona-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.persona-card {
  background: var(--glass-bg);
  border: 1px solid rgba(214,210,203,0.55);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 28px;
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.persona-avatar {
  grid-row: 1 / 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.persona-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.persona-naam {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}

.persona-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}

.persona-citaat {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.persona-cols {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.persona-col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.persona-col-label--pos::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #27ae60; flex-shrink: 0; }
.persona-col-label--neg::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #c0392b; flex-shrink: 0; }

.persona-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.persona-col ul li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.persona-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}

/* ── Persona merkrelatie ─────────────────────────── */
.persona-merkrelatie {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent) 8%, white);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.persona-merkrelatie-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.persona-merkrelatie p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

/* ── Empathy Map ─────────────────────────────────── */
.em-map {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.em-map-title {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 24px;
}

.em-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.em-cell {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.em-cell:nth-child(2), .em-cell:nth-child(4) { border-right: none; }
.em-cell:nth-child(3), .em-cell:nth-child(4) { border-bottom: none; }

.em-cell-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.em-cell--think { background: rgba(95,143,149,0.06); }
.em-cell--think .em-cell-label { color: var(--accent); }
.em-cell--see   { background: rgba(95,143,149,0.03); }
.em-cell--see .em-cell-label { color: var(--accent); }
.em-cell--hear  .em-cell-label { color: var(--accent); }
.em-cell--saydo .em-cell-label { color: var(--accent); }

.em-cell p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Customer Journey Map ────────────────────────── */
.cj-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.cj-table {
  min-width: 700px;
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.cj-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(44,62,53,0.09);
}
.cj-row:last-child { border-bottom: none; }

.cj-row-label {
  flex-shrink: 0;
  width: 130px;
  padding: 16px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-right: 1px solid rgba(44,62,53,0.09);
  background: var(--cream);
  display: flex;
  align-items: center;
}

.cj-cell {
  flex: 1;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  border-right: 1px solid rgba(44,62,53,0.09);
  line-height: 1.5;
  background: #fff;
}
.cj-cell:last-child { border-right: none; }

.cj-row--labels { border-bottom: 2px solid var(--border); }
.cj-row--labels .cj-row-label { background: #fff; }
.cj-cell--fase {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  border-right-color: rgba(44,62,53,0.09);
  display: flex;
  align-items: center;
  background: #fff;
}

.cj-touch-badge {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.10);
}

.cj-row--curve { background: var(--cream); min-height: 100px; }
.cj-row--curve .cj-row-label { background: var(--cream); }
.cj-curve-wrap { flex: 1; padding: 12px 0; background: var(--cream); }
.cj-curve-svg { width: 100%; height: 80px; }

.cj-curve-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cj-curve-dot {
  fill: var(--white);
  stroke: var(--accent);
  stroke-width: 2;
}
.cj-dot--pos { fill: var(--accent); stroke: var(--accent); }
.cj-dot--neg { fill: #c0392b; stroke: #c0392b; }

.cj-cell--kans {
  font-size: 12px;
  color: var(--accent);
  font-style: italic;
  background: rgba(74,124,142,0.03);
}


/* ── SWOT grid ───────────────────────────────────── */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
  border: 2px solid var(--border);
}

.swot-cell {
  padding: 28px 24px;
  background: var(--white);
}
.swot-cell:nth-child(1),
.swot-cell:nth-child(2) {
  border-bottom: 2px solid var(--border);
}
.swot-cell:nth-child(odd) {
  border-right: 2px solid var(--border);
}

.swot-cell-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.swot-cell-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.swot-cell-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
  color: var(--muted);
}

.swot-cell--sterk .swot-cell-letter { background: rgba(95,143,149,.15); color: var(--teal); }
.swot-cell--zwak  .swot-cell-letter { background: rgba(200,100,80,.12);  color: #c05a40; }
.swot-cell--kans  .swot-cell-letter { background: rgba(95,143,149,.08);  color: var(--teal); }
.swot-cell--bedreiging .swot-cell-letter { background: rgba(180,140,80,.12); color: #9a7030; }

.swot-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.swot-cell ul li {
  font-size: 13.5px;
  color: var(--text);
  font-family: var(--font-body);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.swot-cell ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}
.swot-cell--sterk ul li::before { background: var(--teal); }
.swot-cell--zwak  ul li::before { background: #c05a40; }
.swot-cell--kans  ul li::before { background: var(--teal-light); }
.swot-cell--bedreiging ul li::before { background: #9a7030; }

/* Max 3 items zichtbaar per SWOT-kwadrant */
.swot-cell ul li:nth-child(n+4) { display: none; }

/* ── Contentpijlers ─────────────────────────────── */
.pijler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.pijler-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pijler-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pijler-naam {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.pijler-omschrijving {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--font-body);
  margin: 0;
}

.pijler-voorbeelden-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-family: var(--font-body);
  margin-top: 4px;
}

.pijler-voorbeelden {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pijler-voorbeelden li {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pijler-voorbeelden li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
}

/* ── Typografie card — responsive ─────────────────── */
@media (max-width: 860px) {
  .typo-card-body {
    grid-template-columns: 120px 1px 1fr;
  }
  .typo-card-overview-col {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .typo-card { padding: 22px; }
  .typo-card-body {
    grid-template-columns: 1fr;
  }
  .typo-card-divider-vert { display: none; }
  .typo-card-specimen { font-size: 80px; }
  .typo-card-weights-col,
  .typo-card-overview-col {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
}

.typo-hier-ex {
  color: var(--text);
  font-family: var(--font-body);
}

@media (max-width: 700px) {
  .swot-grid {
    grid-template-columns: 1fr;
  }
  .swot-cell:nth-child(odd) {
    border-right: none;
  }
  .swot-cell:nth-child(1),
  .swot-cell:nth-child(2),
  .swot-cell:nth-child(3) {
    border-bottom: 2px solid var(--border);
  }
  .pijler-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Leeswijzer ──────────────────────────────────── */
.leeswijzer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.leeswijzer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.leeswijzer-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 15%, white);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.leeswijzer-titel {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.leeswijzer-body {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  line-height: 1.55;
  margin: 0;
}

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

/* ── Alpine x-cloak ───────────────────────────────── */
[x-cloak] { display: none !important; }

/* ── Progressive disclosure toggle ──────────────── */
.mhb-toggle-wrap {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mhb-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.15s, gap 0.15s;
}

.mhb-toggle:hover {
  color: var(--accent-mid);
  gap: 12px;
}

.mhb-toggle-icon {
  display: inline-block;
  font-style: normal;
  font-size: 14px;
  transition: transform 0.25s ease;
  line-height: 1;
}

.mhb-toggle-icon--open {
  transform: rotate(180deg);
}

.mhb-toggle-body {
  margin-top: 12px;
}

/* Donkere secties: toggle in wit */
.mhb-section--dark .mhb-toggle { color: rgba(255,255,255,0.55); }
.mhb-section--dark .mhb-toggle:hover { color: rgba(255,255,255,0.85); }
.mhb-section--dark .mhb-toggle-wrap { border-top-color: rgba(255,255,255,0.12); }

/* ── Generieke foto split layout ────────────────── */
.mhb-section--foto-split {
  padding: 0;
}

.foto-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 100vh;
  align-items: stretch;
}

.foto-split--reverse {
  grid-template-columns: 42% 58%;
}

.foto-split-content {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 100vh;
  background: inherit;
}

.foto-split-content .mhb-title {
  margin-bottom: 20px;
}

.foto-split-content .mhb-body + .mhb-body {
  margin-top: 14px;
}

.foto-split-foto {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.foto-split-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Foto-split card variant — ingelijste afbeelding met ruimte eromheen ── */
.foto-split--card {
  min-height: auto;
  align-items: stretch;
}

.foto-split--card .foto-split-foto {
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 48px 28px 48px 48px;
}

.foto-split--card.foto-split--reverse .foto-split-foto {
  padding: 48px 48px 48px 28px;
}

.foto-split--card .foto-split-foto img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  display: block;
}

.foto-split--card .foto-split-content {
  max-height: none;
  overflow: visible;
}

@media (max-width: 1000px) {
  .foto-split,
  .foto-split--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .foto-split--reverse {
    grid-template-rows: auto 1fr;
  }
  .foto-split-content {
    max-height: none;
    overflow: visible;
    padding: 56px 40px;
    order: 2;
  }
  .foto-split--reverse .foto-split-content {
    order: 2;
  }
  .foto-split-foto {
    aspect-ratio: 16 / 9;
    position: relative;
    order: 1;
  }
  .foto-split--card .foto-split-foto {
    aspect-ratio: 4 / 3;
    padding: 24px;
  }
  .foto-split--card .foto-split-foto img {
    max-height: none;
    height: 100%;
    object-fit: cover;
  }
}

/* ── Bedrijf split layout ────────────────────────── */
.mhb-section--bedrijf-split {
  padding: 0;
}

.bedrijf-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 100vh;
  align-items: stretch;
}

.bedrijf-split-content {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow-y: auto;
  max-height: 100vh;
  background: inherit;
}

.bedrijf-split-content .mhb-title {
  margin-bottom: 20px;
}

.bedrijf-split-content .mhb-body + .mhb-body {
  margin-top: 14px;
}

.bedrijf-split-foto {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.bedrijf-split-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1000px) {
  .bedrijf-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bedrijf-split-content {
    max-height: none;
    overflow: visible;
    padding: 56px 40px;
  }
  .bedrijf-split-foto {
    aspect-ratio: 16 / 9;
    position: relative;
  }
}

/* ── Sectie foto (bedrijf e.a.) ──────────────────── */
.mhb-sectie-foto {
  margin: 40px 0 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  width: 100%;
}

.mhb-sectie-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Beeldtaal fotogrid ──────────────────────────── */
.beeldtaal-fotogrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.beeldtaal-foto {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
}

.beeldtaal-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.beeldtaal-foto:hover img {
  transform: scale(1.06);
}

/* ── Zie ook chips ───────────────────────────────── */
.zie-ook {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.zie-ook-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-right: 4px;
}

.zie-ook-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.zie-ook-chip:hover {
  background: rgba(95,143,149,.10);
  border-color: var(--accent);
}
.zie-ook-chip::after {
  content: '→';
  font-size: 11px;
}

/* ── Archetype referentieraster ─────────────────── */
.aw-ref {
  margin: 40px 0 8px;
}

.aw-ref-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 14px;
}

.aw-ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.aw-q {
  padding: 20px 18px;
}

.aw-q--structuur   { background: color-mix(in srgb, #4A7C8E 8%, white); }
.aw-q--ontdekken   { background: color-mix(in srgb, #C4834A 8%, white); }
.aw-q--verbinding  { background: color-mix(in srgb, #5B6EA8 8%, white); }
.aw-q--nalatenschap{ background: color-mix(in srgb, #A8445B 8%, white); }

.aw-q-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-bottom: 12px;
}

.aw-q--structuur    .aw-q-label { color: #4A7C8E; }
.aw-q--ontdekken    .aw-q-label { color: #C4834A; }
.aw-q--verbinding   .aw-q-label { color: #5B6EA8; }
.aw-q--nalatenschap .aw-q-label { color: #A8445B; }

.aw-q-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aw-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0.28;
  padding: 8px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: opacity 0.2s;
}

.aw-item-name {
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.aw-item-desc {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--muted);
  line-height: 1.45;
  display: none;
}

.aw-item--active .aw-item-desc {
  display: block;
}

.aw-item--active {
  opacity: 1;
  background: rgba(255,255,255,0.75);
  border-left-width: 3px;
}

.aw-q--structuur    .aw-item--active { border-color: #4A7C8E; color: #4A7C8E; }
.aw-q--ontdekken    .aw-item--active { border-color: #C4834A; color: #C4834A; }
.aw-q--verbinding   .aw-item--active { border-color: #5B6EA8; color: #5B6EA8; }
.aw-q--nalatenschap .aw-item--active { border-color: #A8445B; color: #A8445B; }

@media (max-width: 600px) {
  .aw-ref-grid { grid-template-columns: 1fr; }
}

/* ── Archetype merge visual ──────────────────────── */
.archetype-merge {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 28px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.arch-merge-pole {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.arch-merge-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.arch-merge-tov {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
}

.arch-merge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 8px;
}

.arch-merge-line {
  width: 60px;
  height: 1.5px;
  background: var(--border);
}

.arch-merge-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.arch-merge-result {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-family: var(--font-body);
  text-align: center;
  max-width: 120px;
}

@media (max-width: 700px) {
  .archetype-merge { flex-direction: column; gap: 20px; }
  .arch-merge-line { width: 1.5px; height: 24px; }
  .arch-merge-center { flex-direction: row; }
}

/* ── ToV layout + stemdiagram ────────────────────── */
.tov-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .tov-layout { grid-template-columns: 1fr; }
}

.tov-diagram-wrap {
  position: sticky;
  top: 100px;
}

.tov-diagram-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-family: var(--font-body);
  margin-bottom: 14px;
}

.tov-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tov-diag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.tov-diag-label {
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
}

.tov-diag-label--top,
.tov-diag-label--bottom {
  text-align: center;
  width: 100%;
  display: block;
}

.tov-diag-label--side { flex-shrink: 0; }

.tov-diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.tov-diag-quad {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.tov-diag-quad span {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.3;
}

.tov-diag-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(95,143,149,.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tov-diag-dot-label {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-body);
  background: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ── Beeldtaal do/don't ──────────────────────────── */
.beeldtaal-dodont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.bd-col {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bd-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--border);
}

.bd-col--do .bd-col-header { background: rgba(95,143,149,.08); color: var(--teal); }
.bd-col--dont .bd-col-header { background: rgba(192,90,64,.06); color: #c05a40; }

.bd-icon { font-size: 13px; }

.bd-item {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.4;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.bd-item:last-child { border-bottom: none; }

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

/* ════════════════════════════════════════════════
   DESIGN SYSTEM REFACTOR – Unified components
   ════════════════════════════════════════════════ */

/* Sub-eyebrow: replaces all inline-styled <p class="mhb-eyebrow" style="..."> */
.mhb-sub-eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mhb-sub-eyebrow.mt { margin-top: 24px; }

/* Unified quote block – used by mhb-quote AND tov-kernzin */
.mhb-quote,
.tov-kernzin {
  background: rgba(95,143,149,.07);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 16px 0;
}
.mhb-quote p,
.tov-kernzin p {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Unified intro/lead paragraph under section titles */
.mhb-intro {
  font-size: 15px;
  color: var(--muted);
  font-family: var(--font-body);
  max-width: 640px;
  margin: 0 0 36px 0;
  line-height: 1.65;
}

/* Narrow body text (for single-column descriptive sections) */
.mhb-body--narrow {
  max-width: 600px;
}

/* Unified bullet list – override all previous bullet variants */
.mhb-bullets,
.kw-bullets,
.tov-col .tov-item,
.matrix-item {
  font-family: var(--font-body);
}

/* Typography hierarchy classes (replace inline font-size styles) */
.typo-hier-display { font-size: 40px; font-weight: 400; line-height: 1.1; }
.typo-hier-h1      { font-size: 28px; font-weight: 500; }
.typo-hier-h2      { font-size: 20px; font-weight: 500; }
.typo-hier-body    { font-size: 15.5px; }
.typo-hier-small   { font-size: 13px; color: var(--muted); }
.typo-hier-label   { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* Sub-label under section heading (e.g. "Voorbeeldzinnen in de praktijk") */
.mhb-sub-label {
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

/* Contextversies label in pay-off section */
.mhb-section-divider-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: var(--font-body);
  margin: 0 0 16px 0;
}

/* ── Brand Kit download sectie extra override ─────────────────────────────── */
/* --dark is al ingesteld bij utility section backgrounds; enkel color toevoegen */
.mhb-section--dark {
  color: var(--cream);
}
.mhb-eyebrow--light { color: var(--accent); }
.mhb-title--light   { color: var(--cream); }
.mhb-intro--light   { color: rgba(239,239,236,.7); }

.bk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.bk-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  text-decoration: none;
  color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s;
}
.bk-card:hover {
  background: rgba(255,255,255,.11);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.bk-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(95,143,149,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.bk-icon svg { width: 20px; height: 20px; }
.bk-card-body { flex: 1; min-width: 0; }
.bk-card-title { font-weight: 600; font-size: .95rem; }
.bk-card-meta  { font-size: .75rem; opacity: .55; margin-top: .15rem; }
.bk-card-arrow {
  font-size: 1.1rem;
  opacity: .4;
  transition: opacity .2s, transform .2s;
}
.bk-card:hover .bk-card-arrow { opacity: 1; transform: translateY(2px); }

.bk-download-all {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .2s, transform .2s;
}
.bk-download-all:hover { opacity: .85; transform: translateY(-1px); }

/* ── WOW FEATURES ───────────────────────────────────────────── */

/* Copy button */
.copy-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .5rem; border: 1px solid rgba(95,143,149,.3);
  border-radius: 4px; background: transparent; color: var(--accent);
  font-size: .7rem; cursor: pointer; transition: all .15s;
  font-family: inherit;
}
.copy-btn:hover { background: rgba(95,143,149,.1); border-color: var(--accent); }
.copy-btn.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Copy toast */
.copy-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green); color: var(--cream); padding: .6rem 1.4rem;
  border-radius: 100px; font-size: .85rem; font-weight: 600;
  opacity: 0; transition: all .3s; pointer-events: none; z-index: 9999;
  white-space: nowrap;
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Kleur hex row */
.kleur-hex-row {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .2rem;
}
.kleur-hex-val { font-family: 'Courier New', monospace; font-size: .8rem; }

/* Share button */
.section-share-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-left: .75rem; padding: .15rem .4rem;
  border: 1px solid transparent; border-radius: 4px;
  background: transparent; color: var(--muted); font-size: .65rem;
  cursor: pointer; opacity: 0; transition: all .2s; vertical-align: middle;
  font-family: inherit;
}
section:hover .section-share-btn,
.section-share-btn:focus { opacity: 1; border-color: rgba(95,143,149,.3); color: var(--accent); }
.section-share-btn svg { flex-shrink: 0; }

/* Progress bar */
.nav-progress {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .5rem;
}
.nav-progress-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(0,0,0,.35); margin-bottom: .5rem; }
.nav-progress-bar-wrap { height: 4px; background: rgba(0,0,0,.1); border-radius: 2px; overflow: hidden; }
.nav-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; transition: width .8s cubic-bezier(.4,0,.2,1); }
.nav-progress-pct { font-size: .75rem; font-weight: 600; color: var(--accent); margin-top: .4rem; }

/* Live typografie preview */
.typo-live-wrap {
  background: rgba(95,143,149,.07); border: 1px solid rgba(95,143,149,.2);
  border-radius: 24px; padding: 1.5rem; margin-bottom: 2.5rem;
}
.typo-live-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem; }
.typo-live-input {
  width: 100%; padding: .75rem 1rem; border: 1px solid rgba(95,143,149,.3);
  border-radius: 8px; font-size: 1rem; background: #fff; color: var(--green);
  font-family: inherit; outline: none; transition: border-color .2s; box-sizing: border-box;
}
.typo-live-input:focus { border-color: var(--accent); }
.typo-live-preview-area { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.typo-live-ex { transition: all .1s; line-height: 1.2; }
.typo-live-ex--display { font-size: 2.5rem; font-weight: 700; }
.typo-live-ex--h1 { font-size: 1.5rem; font-weight: 600; }
.typo-live-ex--body { font-size: 1rem; color: var(--muted); }

/* ToV generator */
.tov-generator {
  background: var(--cream); border: 1px solid rgba(34,35,31,.1);
  border-radius: 24px; padding: 1.5rem; margin-bottom: 2rem;
}
.tov-gen-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); font-weight: 600; margin-bottom: 1rem;
}
.tov-gen-inner { display: flex; gap: .75rem; align-items: flex-start; }
.tov-gen-input {
  flex: 1; padding: .75rem 1rem; border: 1px solid rgba(34,35,31,.15);
  border-radius: 8px; font-size: .9rem; font-family: inherit; resize: none;
  background: #fff; color: var(--green); outline: none; transition: border-color .2s;
}
.tov-gen-input:focus { border-color: var(--accent); }
.tov-gen-btn {
  padding: .75rem 1.25rem; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-weight: 600; font-size: .85rem;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: opacity .2s, transform .15s;
}
.tov-gen-btn:hover { opacity: .85; transform: translateY(-1px); }
.tov-gen-btn:disabled { opacity: .5; cursor: wait; }
.tov-gen-result { margin-top: 1.25rem; padding: 1rem; background: #fff; border-radius: 8px; border-left: 3px solid var(--accent); }
.tov-gen-result-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.tov-gen-result-text { font-size: 1rem; font-style: italic; color: var(--green); line-height: 1.6; margin-bottom: .75rem; }
.tov-gen-copy { margin-top: .25rem; }

/* Onboarding overlay */
.onboarding-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(34,35,31,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .5s;
}
.onboarding-overlay.hidden { opacity: 0; pointer-events: none; }
.onboarding-card {
  background: var(--cream); border-radius: 20px; padding: 3rem 3.5rem;
  max-width: 480px; width: 90%; text-align: center;
  transform: translateY(0); transition: transform .5s;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.onboarding-overlay.hidden .onboarding-card { transform: translateY(30px); }
.onboarding-logo { font-size: 1rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.onboarding-title { font-size: 2rem; font-weight: 700; line-height: 1.2; color: var(--green); margin-bottom: 1rem; }
.onboarding-brand { color: var(--accent); }
.onboarding-body { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 2rem; }
.onboarding-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--coral);
  color: #fff; border: none; border-radius: 9999px; font-size: 14px;
  font-weight: 600; cursor: pointer; font-family: var(--font-body);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(237,107,70,0.35), 0 1px 3px rgba(0,0,0,0.12);
  transition: box-shadow 0.25s, transform 0.25s, filter 0.25s;
}
.onboarding-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237,107,70,0.45);
  filter: brightness(1.06);
}

/* =====================================================
   MERQO DESIGN SYSTEM — v11 uitbreidingen
   ===================================================== */

/* ── btn-primary (Merqo coral pill-button) ───────── */
.mhb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--coral);
  box-shadow: 0 4px 20px rgba(237,107,70,0.35), 0 1px 3px rgba(0,0,0,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  transition: box-shadow 0.25s, transform 0.25s, filter 0.25s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.mhb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237,107,70,0.45), 0 2px 6px rgba(0,0,0,0.15);
  filter: brightness(1.06);
}

/* ── Grain overlay (animated noise texture) ─────── */
@keyframes mhb-grain {
  0%,100% { transform: translate(0,0); }
  10%     { transform: translate(-2%,-3%); }
  20%     { transform: translate(3%,1%); }
  30%     { transform: translate(-1%,4%); }
  40%     { transform: translate(4%,-2%); }
  50%     { transform: translate(-3%,3%); }
  60%     { transform: translate(2%,-4%); }
  70%     { transform: translate(-4%,1%); }
  80%     { transform: translate(1%,-1%); }
  90%     { transform: translate(-2%,4%); }
}
.mhb-grain {
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  animation: mhb-grain 8s steps(1) infinite;
  z-index: 2;
}
/* Lichte secties: subtielere grain */
.mhb-grain--light { opacity: 0.028; }

/* ── Cover animated blobs ────────────────────────── */
.cover-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.cover-blob--coral {
  width: 80%; height: 90%;
  top: -35%; left: -10%;
  background: var(--client-blob-a, #2C3E35);  /* De Woerd: Nacht donkergroen */
  filter: blur(110px);
  opacity: 0.32;
  animation: cb-morph-a 10s ease-in-out infinite, cb-drift-a 22s ease-in-out infinite;
}
.cover-blob--teal {
  width: 65%; height: 75%;
  bottom: -20%; right: -5%;
  background: var(--client-blob-b, #4A7C8E);  /* De Woerd: Water primair */
  filter: blur(100px);
  opacity: 0.38;
  animation: cb-morph-b 13s ease-in-out infinite, cb-drift-b 28s ease-in-out infinite;
}
.cover-blob--warm {
  width: 40%; height: 45%;
  top: 25%; left: 35%;
  background: var(--client-blob-c, #C4A97A);  /* De Woerd: Riet goud */
  filter: blur(90px);
  opacity: 0.28;
  animation: cb-morph-c 16s ease-in-out infinite, cb-drift-c 18s ease-in-out infinite;
}
@keyframes cb-morph-a {
  0%,100% { border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; }
  25%     { border-radius: 45% 55% 40% 60%/60% 35% 65% 40%; }
  50%     { border-radius: 35% 65% 60% 40%/40% 55% 45% 60%; }
  75%     { border-radius: 55% 45% 35% 65%/65% 40% 60% 35%; }
}
@keyframes cb-morph-b {
  0%,100% { border-radius: 40% 60% 45% 55%/60% 45% 55% 40%; }
  25%     { border-radius: 60% 40% 65% 35%/45% 60% 40% 55%; }
  50%     { border-radius: 50% 50% 35% 65%/55% 40% 60% 45%; }
  75%     { border-radius: 35% 65% 55% 45%/40% 65% 35% 60%; }
}
@keyframes cb-morph-c {
  0%,100% { border-radius: 55% 45% 60% 40%/45% 55% 45% 55%; }
  33%     { border-radius: 40% 60% 40% 60%/60% 40% 60% 40%; }
  66%     { border-radius: 65% 35% 50% 50%/35% 65% 50% 50%; }
}
@keyframes cb-drift-a {
  0%   { transform: translate(-20%,-30%); }
  25%  { transform: translate(10%,-10%); }
  50%  { transform: translate(30%,-40%); }
  75%  { transform: translate(-5%,-55%); }
  100% { transform: translate(-20%,-30%); }
}
@keyframes cb-drift-b {
  0%   { transform: translate(50%,20%); }
  30%  { transform: translate(20%,50%); }
  60%  { transform: translate(60%,55%); }
  80%  { transform: translate(70%,20%); }
  100% { transform: translate(50%,20%); }
}
@keyframes cb-drift-c {
  0%   { transform: translate(15%,40%); }
  33%  { transform: translate(55%,10%); }
  66%  { transform: translate(-5%,20%); }
  100% { transform: translate(15%,40%); }
}

/* ── Marquee strip ───────────────────────────────── */
.mhb-marquee {
  overflow: hidden;
  padding: 13px 0;
  background: var(--coral);
  user-select: none;
  position: relative;
  z-index: 5;
}
.mhb-marquee-inner { display: flex; width: max-content; }
.mhb-marquee-track {
  display: flex;
  align-items: center;
  animation: mhb-marquee 32s linear infinite;
  white-space: nowrap;
}
.mhb-marquee-track:hover { animation-play-state: paused; }
.mhb-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  font-family: var(--font-body);
  white-space: nowrap;
}
.mhb-marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(28,23,16,0.4);
  flex-shrink: 0;
}
@keyframes mhb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Card shimmer hover effect ───────────────────── */
.kw-card,
.arch-card,
.dg-card,
.wp-card,
.kanaal-card,
.pijler-card {
  position: relative;
  overflow: hidden;
}
.kw-card::before,
.arch-card::before,
.dg-card::before,
.wp-card::before,
.kanaal-card::before,
.pijler-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(168,200,202,0.10) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.kw-card:hover::before,
.arch-card:hover::before,
.dg-card:hover::before,
.wp-card:hover::before,
.kanaal-card:hover::before,
.pijler-card:hover::before {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

/* Zorg dat content boven shimmer staat */
.kw-card > *,
.arch-card > *,
.dg-card > *,
.wp-card > *,
.kanaal-card > *,
.pijler-card > * {
  position: relative;
  z-index: 1;
}

/* ── Chapter en afsluiting: grain + verbeterde hover ── */
.mhb-section--chapter,
.mhb-section--afsluiting,
.mhb-section--cover,
.mhb-section--voorwoord,
.mhb-section--contact {
  position: relative;
}

/* Grain op donkere secties */
.mhb-section--chapter::after,
.mhb-section--afsluiting::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  animation: mhb-grain 8s steps(1) infinite;
  z-index: 0;
}

/* ── Vignette voor cover ─────────────────────────── */
.mhb-section--cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.04) 0%,
    transparent 30%,
    rgba(28,23,16,0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── Glassmorphism card (contact-right) ──────────── */
.contact-glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 32px 36px;
}

/* ── Editorial label bar ─────────────────────────── */
.mhb-editorial-bar {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
  margin-bottom: 3rem;
  overflow: hidden;
}
.mhb-editorial-bar span {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  flex-shrink: 0;
}
.mhb-editorial-bar span:first-child { padding-left: 0; }
.mhb-editorial-bar span:last-child { border-right: none; }

/* Light variant voor crème secties */
.mhb-editorial-bar--light {
  border-color: rgba(30,31,27,0.08);
}
.mhb-editorial-bar--light span {
  color: rgba(30,31,27,0.28);
  border-color: rgba(30,31,27,0.08);
}

/* ── Cursor glow effect op cover ─────────────────── */
.cover-cursor-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,200,202,0.12) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%,-50%);
  z-index: 4;
  transition: opacity 0.3s;
}
.mhb-section--cover:hover .cover-cursor-glow { opacity: 1; }

/* ════════════════════════════════════════════════
   H3 VISUELE IDENTITEIT — BrandKit editorial upgrade
   ════════════════════════════════════════════════ */

/* ── Chapter opener H3 cinematic ──────────────── */
.mhb-section--chapter-h3 {
  min-height: 92vh;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(74,124,142,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(74,124,142,0.18) 0%, transparent 60%),
    var(--dark);
  position: relative;
  overflow: hidden;
}
.mhb-section--chapter-h3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.mhb-section--chapter-h3 .chapter-bg-num {
  font-size: clamp(280px, 48vw, 620px);
  right: -40px;
  bottom: -60px;
  top: auto;
  transform: none;
  color: rgba(74,124,142,0.10);
  font-weight: 300;
}
.mhb-section--chapter-h3 .chapter-num-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.mhb-section--chapter-h3 .chapter-num-label::before {
  content: '{ ';
  color: rgba(74,124,142,0.85);
}
.mhb-section--chapter-h3 .chapter-num-label::after {
  content: ' }';
  color: rgba(74,124,142,0.85);
}
.mhb-section--chapter-h3 .chapter-title {
  font-size: clamp(64px, 11vw, 144px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 48px;
}
.mhb-section--chapter-h3 .chapter-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 64px;
}

/* H3 numbered TOC panel (BrandKit index style) */
.h3-toc-panel {
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
}
.h3-toc-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  display: block;
}
.h3-toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}
.h3-toc-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  transition: padding-left 0.3s cubic-bezier(.2,.7,.2,1), color 0.25s ease;
}
.h3-toc-row:hover {
  padding-left: 14px;
  color: #fff;
}
.h3-toc-row:hover .h3-toc-arrow { transform: translateX(4px); opacity: 1; }
.h3-toc-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(74,124,142,0.95);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
}
.h3-toc-name {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex: 1;
}
.h3-toc-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

/* ── H3 section eyebrow (monospace bracketed) ──── */
.mhb-section--h3 .mhb-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-left: 0;
}
.mhb-section--h3 .mhb-eyebrow::before {
  content: '{ ';
  color: var(--accent);
  background: none;
  width: auto;
  height: auto;
  position: static;
  display: inline;
  margin: 0;
}
.mhb-section--h3 .mhb-eyebrow::after {
  content: ' }';
  color: var(--accent);
}

/* ── H3 section title - default size behouden ────── */

/* ── Kleur-detail editorial rows ───────────────── */
.kleur-detail-lijst {
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--border);
  overflow: visible;
  margin-top: 0;
}
.kleur-detail-item {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  gap: 48px;
  align-items: center;
  background: transparent;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s cubic-bezier(.2,.7,.2,1);
}
.kleur-detail-item:hover { padding-left: 12px; }
.kleur-detail-swatch {
  width: 160px;
  height: 160px;
  border-radius: 18px;
  margin-top: 0;
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.kleur-detail-item:hover .kleur-detail-swatch { transform: scale(1.04) rotate(-1deg); }
.kleur-detail-naam {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.kleur-detail-header { margin-bottom: 14px; flex-wrap: wrap; }
.kleur-detail-psychologie {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.kleur-detail-gebruik {
  font-size: 13px;
  line-height: 1.55;
}
.kleur-detail-codes {
  font-family: var(--font-body);
  font-size: 13px;
  gap: 8px;
  min-width: 0;
}
.kleur-detail-codes .kleur-hex-val,
.kleur-detail-codes span {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 800px) {
  .kleur-detail-item { grid-template-columns: 100px 1fr; gap: 24px; padding: 28px 0; }
  .kleur-detail-swatch { width: 100px; height: 100px; border-radius: 14px; }
  .kleur-detail-naam { font-size: 24px; }
  .kleur-detail-codes { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px solid var(--border); }
  .kleur-code-row, .kleur-hex-row { justify-content: flex-start; }
}

/* ── Typo specimen massive editorial ───────────── */
.typo-specimen-groot {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 300;
}
.typo-specimen-blok {
  padding: 72px 56px 48px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(74,124,142,0.35) 0%, transparent 60%),
    var(--dark);
}

/* ── H3 reduced-motion safety ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .h3-toc-row { transition: none; }
  .kleur-detail-item { transition: none; }
  .kleur-detail-swatch { transition: none; }
}
