/* =========================================================
   explAIn solutions — Editoriaal systeem
   Geadapteerd van de Ankar-styleguide: strak editoriaal,
   fluister-serif koppen, platte vlakken, 4px hoeken.
   Kleur: navy #0F1B3D leidend · oranje #E8713A = enige accent.
   ========================================================= */

:root {
  /* Merk & neutralen */
  --obsidian: #05060a;
  --navy: #0F1B3D;
  --navy-deep: #0a1024;
  --charcoal: #1f2233;
  --ink: #1a1c22;
  --graphite: #515151;
  --slate: #8a8f9c;
  --fog: #cfd3da;
  --mist: #e7e8ec;
  --paper: #ffffff;
  --white: #ffffff;
  --bg-soft: #f6f5f2;      /* warm paper atelier */
  --bg-navy-soft: #f1f3f8;
  --line: #e7e8ec;
  --muted: #515151;        /* = graphite, voor inline-compat */
  --orange: #E8713A;
  --orange-600: #d15e28;

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-logo: "Poppins", "Century Gothic", "Inter", system-ui, sans-serif;

  /* Vorm & ritme */
  --maxw: 1200px;
  --radius: 4px;
  --radius-lg: 4px;
  --radius-full: 100px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--navy); color: #fff; }

/* Skip-link: alleen zichtbaar bij toetsenbordfocus */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); font-family: var(--font-sans); font-size: .9rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Koppen: fluister-serif, gewicht 300, strak geleid */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.1rem); line-height: 1.0; }
h2 { font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1.03; }
h3 { font-size: 1.5rem; line-height: 1.08; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }
a { color: var(--orange-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Eyebrow: mono-label met oranje merkstip */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--graphite); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--orange); flex: none; }

.lead { font-family: var(--font-sans); font-size: 1.15rem; line-height: 1.55; color: var(--graphite); }

.section { padding: clamp(60px, 8vw, 96px) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #d7dcea; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #aab3ca; }
.section-navy .lead { color: #aab3ca; }
.section-navy .eyebrow { color: #aab3ca; }

.center { text-align: center; }
.center.eyebrow, .center .eyebrow { justify-content: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons: plat, 4px, geen schaduw ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 500; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary { background: var(--orange); color: #fff; }          /* enige accent = conversie */
.btn-primary:hover { background: var(--orange-600); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header: transparant over hero, wit bij scroll ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logotype: nagebouwd naar het officiële wide-logo (Poppins, oranje AI, verticale streep + solutions) */
.logo {
  font-family: var(--font-logo); font-weight: 400; font-size: 1.42rem;
  letter-spacing: .005em; color: #fff; display: inline-flex; align-items: center; line-height: 1;
  transition: color .3s var(--ease);
}
.logo .ai { color: var(--orange); font-weight: 600; }
.logo .logo-bar { width: 2px; height: 1.5em; background: var(--orange); opacity: .9; margin: 0 12px; flex: none; align-self: center; }
.logo .sub { font-family: var(--font-logo); font-size: .74em; font-weight: 300; color: rgba(255,255,255,.88); letter-spacing: .03em; transition: color .3s var(--ease); }
.site-header.scrolled .logo { color: var(--navy); }
.site-header.scrolled .logo .sub { color: var(--slate); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; font-family: var(--font-sans); font-weight: 400; font-size: .93rem;
  color: rgba(255,255,255,.82); padding: 8px 14px; border-radius: var(--radius);
  transition: color .2s var(--ease);
}
.site-header.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); overflow: hidden; }
.site-header.scrolled .lang-toggle { border-color: var(--line); }
.lang-toggle button {
  border: 0; background: transparent; padding: 7px 11px; font-family: var(--font-mono);
  font-size: .74rem; font-weight: 400; color: rgba(255,255,255,.7); cursor: pointer; transition: background .2s, color .2s;
}
.site-header.scrolled .lang-toggle button { color: var(--graphite); }
.lang-toggle button.active { background: var(--orange); color: #fff; }
.site-header.scrolled .lang-toggle button.active { background: var(--navy); color: #fff; }

.nav-cta { display: inline-flex; }
.hamburger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease), background .3s; }
.site-header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero: donkere vault met cinematische light-burst ---------- */
.hero, .page-hero { position: relative; overflow: hidden; background: var(--obsidian); color: #eef1f8; }
.hero { padding: clamp(150px, 20vh, 230px) 0 clamp(90px, 12vw, 130px); }
.page-hero { padding: clamp(140px, 18vh, 190px) 0 clamp(60px, 8vw, 96px); }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(62% 60% at 50% 82%, rgba(255,246,238,.30) 0%, rgba(232,113,58,.24) 20%, rgba(232,113,58,.07) 40%, rgba(15,27,61,0) 62%),
    linear-gradient(180deg, #070a14 0%, #0b1226 52%, #05060a 100%);
}
.page-hero::before { background:
    radial-gradient(55% 70% at 78% 6%, rgba(232,113,58,.18) 0%, rgba(232,113,58,.05) 34%, rgba(15,27,61,0) 60%),
    linear-gradient(180deg, #0b1226 0%, #070a14 100%); }
.hero .container, .page-hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .accent { color: var(--orange); }
.hero .lead { color: #b6c0d6; max-width: 54ch; margin-bottom: 2rem; font-size: 1.2rem; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #b6c0d6; max-width: 62ch; }

/* Combinatieblok: techniek + governance = explAIn */
.combo { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: stretch; max-width: 720px; margin: 44px auto 0; text-align: left; }
.combo-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 22px; text-align: center; }
.combo-item .card-icon { margin: 0 auto 10px; width: 46px; height: 46px; }
.combo-item .card-icon svg { width: 20px; height: 20px; }
.combo-item h3 { font-size: 1.35rem; margin: 0 0 .35rem; }
.combo-item p { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .03em; color: var(--graphite); margin: 0; line-height: 1.7; }
.combo-item .combo-sub { color: var(--slate); }
.combo-plus { display: grid; place-items: center; font-family: var(--font-serif); font-weight: 300; font-size: 2.2rem; color: var(--orange); }
.combo-join { grid-column: 1 / -1; height: 26px; width: 2px; background: var(--orange); margin: 0 auto; }
.combo-result { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 18px; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 18px 28px; text-align: center; font-size: 1.02rem; }
.combo-brand { font-family: var(--font-logo); font-size: 1.15rem; }
.combo-brand .ai { color: var(--orange); font-weight: 600; }
@media (max-width: 640px) {
  .combo { grid-template-columns: 1fr; }
  .combo-plus { padding: 6px 0; }
}

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

/* ---------- Kaarten: plat, haarlijn, geen schaduw ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.card:hover { border-color: var(--navy); transform: translateY(-3px); }
.card h3 { margin-top: .5rem; }
.card p:last-child { margin-bottom: 0; }

/* Klikbare kaart: hele kaart is link, pijl onderaan */
.card-link { display: flex; flex-direction: column; color: inherit; }
.card-link:hover { color: inherit; }
.card-link p { flex: 1; }
.card-arrow { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-600); margin-top: 16px; }
.card-link:hover .card-arrow { color: var(--orange); }

/* Anchor-offset onder de vaste header */
[id] { scroll-margin-top: 92px; }

/* Inzichten-teaser op de homepage */
.insight-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.insight-row { display: flex; align-items: center; gap: 20px; padding: 20px 6px; border-bottom: 1px solid var(--line); color: inherit; background: transparent; transition: background .2s var(--ease); }
.insight-row:hover { background: rgba(15,27,61,.03); color: inherit; }
.insight-cat { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-600); flex: none; width: 130px; }
.insight-title { font-family: var(--font-serif); font-weight: 400; font-size: 1.25rem; color: var(--navy); flex: 1; line-height: 1.2; }
.insight-arrow { color: var(--orange-600); font-size: 1.1rem; flex: none; transition: transform .2s var(--ease); }
.insight-row:hover .insight-arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .insight-row { flex-wrap: wrap; gap: 6px 14px; }
  .insight-cat { width: auto; }
  .insight-title { flex: 1 1 100%; order: 2; }
}

/* Icoon-pill: donker vlak, wit icoon (Ankar Icon Container) */
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: var(--radius-full); background: var(--navy); color: #fff; margin-bottom: 4px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ---------- Stats: editoriale cijfers met oranje regel ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat { border-top: 2px solid var(--orange); padding-top: 22px; }
.stat .num { font-family: var(--font-serif); font-weight: 300; font-size: clamp(3rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -.02em; color: #fff; display: inline-block; will-change: transform; margin-bottom: .6rem; }
.stat p { color: #aab3ca; font-size: .97rem; margin: 0; }

/* ---------- Diensten (service blocks) ---------- */
.service { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 40px 0; border-top: 1px solid var(--line); }
.service:first-of-type { border-top: 0; }
.service .card-icon { margin: 4px 0 0; }
.service h3 { font-size: 1.6rem; }
.tag { display: inline-block; font-family: var(--font-mono); font-size: .72rem; color: var(--navy); border: 1px solid var(--line); padding: 3px 10px; border-radius: var(--radius); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }
.meta-line { font-family: var(--font-mono); font-size: .82rem; color: var(--graphite); margin-top: .5rem; letter-spacing: .02em; }
.meta-line strong { color: var(--navy); font-weight: 400; }
.deliverable { background: var(--bg-soft); border-left: 2px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 16px 0 6px; font-size: .98rem; color: var(--ink); }
.deliverable strong { color: var(--navy); font-weight: 600; }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.step .step-num { font-family: var(--font-serif); font-weight: 300; font-size: 2.4rem; line-height: 1; color: var(--orange); margin-bottom: 12px; }
.step h3 { font-size: 1.2rem; }
.step p { font-size: .95rem; color: var(--graphite); margin: 0; }

/* ---------- Over: tekst + portret ---------- */
.about-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: center; max-width: 1060px; margin: 0 auto; }
.about-media { margin: 0; }
.about-media img { width: 100%; height: auto; border-radius: var(--radius); }
.about-grid.no-media { grid-template-columns: 1fr; max-width: 760px; }
.about-grid.no-media .about-media { display: none; }

/* ---------- Ervaring ---------- */
.exp-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.exp-item:last-child { border-bottom: 0; }
.exp-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.exp-head h3 { margin: 0; font-size: 1.5rem; }
.exp-head .when { font-family: var(--font-mono); color: var(--graphite); font-size: .8rem; white-space: nowrap; letter-spacing: .04em; }
.exp-item p { margin: .4rem 0 0; color: var(--graphite); }

/* ---------- Quote ---------- */
.quote { border-left: 2px solid var(--orange); padding: 6px 0 6px 30px; font-family: var(--font-serif); font-weight: 300; font-size: 1.9rem; line-height: 1.25; color: var(--navy); max-width: 62ch; }
.section-navy .quote { color: #fff; }
.quote cite { display: block; margin-top: 1.2rem; font-family: var(--font-mono); font-size: .82rem; font-style: normal; color: var(--orange); letter-spacing: .04em; }

/* ---------- CTA-band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { max-width: 54ch; margin-inline: auto; margin-bottom: 1.8rem; }

/* ---------- Inzichten ---------- */
.post { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .22s var(--ease), transform .22s var(--ease); }
.post:hover { border-color: var(--navy); transform: translateY(-3px); }
.post-thumb { aspect-ratio: 16 / 10; background: var(--navy); position: relative; display: grid; place-items: center; overflow: hidden; }
.post-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 80% at 30% 20%, rgba(232,113,58,.22), transparent 60%); }
.post-thumb .kicker { position: relative; z-index: 1; font-family: var(--font-mono); color: rgba(255,255,255,.9); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-body .cat { font-family: var(--font-mono); font-size: .72rem; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; }
.post-body h3 { margin: .6rem 0 .5rem; font-size: 1.35rem; }
.post-body p { color: var(--graphite); font-size: .97rem; flex: 1; }
.badge-soon { display: inline-block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius); padding: 3px 9px; }

/* ---------- Artikelen ---------- */
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: #aab3ca; margin-top: 1.2rem; }
.article-meta .cat { color: var(--orange); }
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.05rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.35rem; }
.prose p.lead { font-size: 1.2rem; line-height: 1.6; color: var(--graphite); }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin: 2.4rem 0 .8rem; }
.prose ul { margin: 0 0 1.35rem; padding-left: 1.2rem; }
.prose li { font-size: 1.05rem; line-height: 1.7; color: var(--ink); margin-bottom: .5rem; }
.prose .note { background: var(--bg-soft); border-left: 2px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 1.6rem 0; font-size: .95rem; color: var(--graphite); }
.prose .note p { font-size: .95rem; color: var(--graphite); margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em; color: var(--graphite); margin-bottom: 1.6rem; }
.back-link:hover { color: var(--orange-600); }
.post-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-600); margin-top: auto; }
.post .post-date { font-family: var(--font-mono); font-size: .72rem; color: var(--slate); letter-spacing: .04em; }
a.post-wrap { display: block; color: inherit; }
a.post-wrap:hover { color: inherit; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; text-decoration: none; }
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .info-icon { width: 42px; height: 42px; flex: none; border-radius: var(--radius-full); background: var(--navy); color: #fff; display: grid; place-items: center; }
.contact-info .info-item .label { font-family: var(--font-mono); font-size: .72rem; color: var(--graphite); text-transform: uppercase; letter-spacing: .08em; }
.contact-info .info-item .value { font-weight: 500; color: var(--navy); }
.contact-info .info-item:hover .value { color: var(--orange-600); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 8px; }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  border: 1px solid var(--fog); border-radius: var(--radius); background: var(--paper);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,113,58,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-family: var(--font-mono); font-size: .74rem; color: var(--graphite); margin-top: 8px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-success { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); background: #eef6f0; border: 1px solid #cfe6d6; color: #256a3e; font-size: .96rem; }
.form-success.show { display: block; }

/* ---------- Proof / credentials strip ---------- */
.proof { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: var(--navy); }
.proof .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 34px; padding-top: 22px; padding-bottom: 22px; }
.proof .proof-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.proof .proof-item { display: inline-flex; align-items: center; gap: 10px; color: #cfd6e6; font-family: var(--font-mono); font-weight: 400; font-size: .84rem; letter-spacing: .02em; }
.proof .proof-item::before { content: ""; width: 5px; height: 5px; background: var(--orange); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aab3ca; padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .logo { color: #fff; font-size: 1.25rem; }
.site-footer .logo .sub { color: var(--slate); }
.footer-about p { color: #93a1c6; font-size: .95rem; max-width: 34ch; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 400; color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { color: #aab3ca; font-size: .95rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-family: var(--font-mono); font-size: .74rem; color: #7f8cad; letter-spacing: .02em; }
.footer-bottom a { color: #7f8cad; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Scroll-voortgang ---------- */
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0%; background: var(--orange); z-index: 60; transition: width .1s linear; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Interactief / toegankelijkheid ---------- */
a[href], button, [role="button"], input[type="submit"], .btn { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(232,113,58,.5); outline-offset: 2px; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 780px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; gap: 2px;
  }
  .nav-mobile-open .nav-links a { color: var(--navy); padding: 13px 12px; }
  .nav-mobile-open .nav-links a::after { display: none; }
  .grid-2, .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media { order: -1; max-width: 340px; }
  .stats { gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Bewegingvoorkeuren ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-glow { animation: none; }
}

/* =========================================================
   VERSIE B — WARM PAPIER
   Geïnspireerd op de Parloa-stylefile: cream canvas, inkt en
   navy, serif-display (Fraunces), 0px kaarten, oranje markeert
   maar vult nooit. Donkere navigatiebalk als anker.
   ========================================================= */
:root {
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --bg-soft: #f5f4f0;
  --bg-navy-soft: #f5f4f0;
  --line: #d9d6ce;
  --mist: #d9d6ce;
  --fog: #c7c1b7;
  --ink: #1f1c1b;
  --radius: 0px;
  --radius-lg: 0px;
}
body { background: #eceae2; }
.btn { border-radius: 2px; }
.btn-primary { background: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); }
.section-navy .btn-primary { background: #fff; color: var(--navy); }
.section-navy .btn-primary:hover { background: #eceae2; color: var(--navy); }
.card, .step, .post, .form-card, .combo-item { background: #fff; }
.deliverable { background: #f5f4f0; }
.insight-row:hover { background: #ffffff; }
.field input, .field textarea { background: #fff; }

/* Navigatie: vast donker anker */
.site-header, .site-header.scrolled { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: none; }
.logo, .site-header.scrolled .logo { color: #fff; }
.site-header.scrolled .logo .sub { color: rgba(255,255,255,.88); }
.nav-links a, .site-header.scrolled .nav-links a { color: rgba(255,255,255,.85); }
.lang-toggle, .site-header.scrolled .lang-toggle { border-color: rgba(255,255,255,.3); }
.lang-toggle button, .site-header.scrolled .lang-toggle button { color: rgba(255,255,255,.7); }
.lang-toggle button.active, .site-header.scrolled .lang-toggle button.active { background: var(--orange); color: #fff; }
.hamburger span, .site-header.scrolled .hamburger span { background: #fff; }
.nav-mobile-open .nav-links { background: var(--navy); border-bottom-color: rgba(255,255,255,.1); }
.nav-mobile-open .nav-links a { color: #fff; }

/* Hero: cream editorial in plaats van donkere kluis */
.hero, .page-hero { background: #eceae2; color: var(--ink); }
.hero::before, .page-hero::before { background:
  radial-gradient(50% 55% at 85% 6%, rgba(232,113,58,.13) 0%, rgba(232,113,58,0) 55%),
  linear-gradient(180deg, #e5e2d8 0%, #eceae2 100%); }
.hero h1, .page-hero h1 { color: var(--navy); }
.hero .lead, .page-hero .lead { color: #515151; }
.hero .eyebrow, .page-hero .eyebrow { color: #515151; }
.hero .btn-secondary { color: var(--navy); border-color: var(--navy); }
.hero .btn-secondary:hover { background: var(--navy); color: #fff; }
.page-hero .article-meta { color: var(--slate); }
.page-hero .back-link { color: var(--graphite); }

/* ---------- B2: Parloa-verdieping ---------- */
/* 1. Groot, dun display-type */
h1 { font-size: clamp(3rem, 7.5vw, 5.8rem); line-height: 1.02; letter-spacing: -0.012em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3rem); line-height: 1.06; }
.hero h1 { max-width: 14ch; }

/* 2. Redactioneel links uitlijnen */
.center { text-align: left; }
.center .eyebrow, .center.eyebrow { justify-content: flex-start; }
.narrow.center { margin-left: 0; }
.cta-band, .cta-band .center { text-align: center; }
.cta-band .center .eyebrow { justify-content: center; }

/* 3. Hero met portret (verbergt zichzelf zolang de foto ontbreekt) */
.hero .container { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: end; }
.hero.no-media .container { display: block; }
.hero-media { margin: 0; position: relative; align-self: end; }
.hero-media img { display: block; width: 100%; height: auto; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(236,234,226,0) 55%, rgba(236,234,226,.85) 100%); pointer-events: none; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { max-width: 320px; }
}

/* 4. Announcement bar bovenin de vaste header */
.announce { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 12px; background: var(--navy-deep); color: #e6e9f2; padding: 8px 16px; font-size: .82rem; line-height: 1.4; }
.announce .announce-label { color: var(--orange); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.announce a { color: var(--orange); }
.announce a:hover { color: #fff; }
@media (max-width: 780px) {
  .nav-mobile-open .nav-links { top: 106px; }
}

/* 5. Feature-split: kop links, witte kaart rechts */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split-copy .lead { max-width: 46ch; }
.split-card { background: #fff; border: 1px solid var(--line); padding: 34px 32px; }
.split-card .card-icon { margin-bottom: 16px; }
.split-list { list-style: none; margin: 0; padding: 0; }
.split-list li { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-mono); font-size: .84rem; letter-spacing: .03em; color: var(--graphite); padding: 10px 0; border-bottom: 1px solid var(--line); }
.split-list li:last-child { border-bottom: 0; }
.split-list li::before { content: ""; width: 5px; height: 5px; background: var(--orange); flex: none; transform: translateY(-2px); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- B3: Diensten redactioneel ---------- */
.toc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 64px; }
.toc-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); padding: 16px 18px; color: inherit; transition: border-color .2s var(--ease); }
.toc-card:hover { color: inherit; border-color: var(--navy); }
.toc-card .card-icon { width: 40px; height: 40px; margin: 0; flex: none; }
.toc-card .card-icon svg { width: 18px; height: 18px; }
.toc-card .toc-title { flex: 1; font-weight: 500; font-size: .95rem; color: var(--navy); line-height: 1.25; }
.toc-card .toc-arrow { color: var(--orange-600); flex: none; }
@media (max-width: 860px) { .toc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .toc-grid { grid-template-columns: 1fr; } }

.service { grid-template-columns: 130px 1fr; gap: 36px; padding: 52px 0; align-items: start; }
.service-head { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.service-num { font-family: var(--font-serif); font-weight: 300; font-size: 3.6rem; line-height: 1; color: var(--fog); }
.service h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service .tag { margin-top: 0; background: #fff; }
@media (max-width: 700px) {
  .service { grid-template-columns: 1fr; gap: 16px; }
  .service-head { flex-direction: row; align-items: center; }
}

/* ---------- B4: intro-split, portretlijst, mobiel ---------- */
/* Intro: combinatieblok rechts naast de tekst, verticaal gestapeld */
.split .combo { grid-template-columns: 1fr; margin: 0; max-width: 400px; justify-self: end; width: 100%; }
.split .combo .combo-plus { padding: 2px 0; }
@media (max-width: 860px) { .split .combo { justify-self: stretch; max-width: 420px; margin: 0 auto; } }

/* Portret in de hero: ingelijst als afdruk op papier, met naamregel */
.hero-media { background: #fff; border: 1px solid var(--line); padding: 12px 12px 10px; max-width: 380px; width: 100%; justify-self: end; }
.hero-media::after { display: none; }
.hero-media img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.hero-media figcaption { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--graphite); padding-top: 10px; }
@media (max-width: 860px) { .hero-media { max-width: 280px; justify-self: start; } }

/* Announcement bar: altijd één regel */
.announce { flex-wrap: nowrap; }
.announce > span:not(.announce-label) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.announce .announce-label, .announce a { flex: none; white-space: nowrap; }

/* Mobiel: iets bescheidener displaykoppen */
@media (max-width: 480px) {
  h1 { font-size: 2.55rem; }
  h2 { font-size: 1.9rem; }
}

/* ---------- B5: zekerheidssectie (verzekeringsframe) ---------- */
.assure-list { width: 100%; }
.assure-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.assure-item:first-child { padding-top: 0; }
.assure-item:last-child { border-bottom: 0; padding-bottom: 0; }
.assure-num { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: var(--orange); padding-top: .5em; }
.assure-item h3 { color: #fff; font-size: 1.35rem; margin: 0 0 .3rem; }
.assure-item p { color: #aab3ca; font-size: .95rem; margin: 0; }
.section-navy .split { align-items: center; }
.proof-strip { margin: 52px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: #8ea0c6; line-height: 1.9; }

/* ---------- B6: witruimte, case-verhaal, thumbs, header-hovers ---------- */
/* Kleinere sprong tussen paginakop en eerste sectie */
.page-hero + .section { padding-top: clamp(36px, 5vw, 56px); }

/* Case als verhaal: vraag → aanpak → resultaat */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); }
.case-col { padding: 32px 30px; border-left: 1px solid var(--line); }
.case-col:first-child { border-left: 0; }
.case-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 14px; }
.case-label::before { content: ""; width: 5px; height: 5px; background: var(--orange); flex: none; }
.case-col p { font-size: .97rem; line-height: 1.65; color: var(--ink); margin: 0; }
.case-note { max-width: 860px; margin: 16px auto 0; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .02em; color: var(--slate); text-align: center; }
@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-col { border-left: 0; border-top: 1px solid var(--line); }
  .case-col:first-child { border-top: 0; }
}

/* Artikelkaarten: lijnillustratie in het navy vlak */
.post-thumb { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.thumb-icon { width: 44px; height: 44px; color: rgba(255,255,255,.85); position: relative; z-index: 1; }

/* Header-hovers: logo (oranje gloed), taalknop en hamburger */
a.logo:hover, .site-header.scrolled a.logo:hover { color: var(--orange); }
.lang-toggle button:hover, .site-header.scrolled .lang-toggle button:hover { background: rgba(255,255,255,.14); color: #fff; }
.lang-toggle button.active:hover, .site-header.scrolled .lang-toggle button.active:hover { background: var(--orange); color: #fff; }
.hamburger:hover span, .site-header.scrolled .hamburger:hover span { background: var(--orange); }

/* ---------- B7: compacter ritme + artikelindex ---------- */
.section { padding: clamp(44px, 6vw, 72px) 0; }
.page-hero { padding-bottom: clamp(36px, 5vw, 56px); }
.page-hero + .section { padding-top: clamp(28px, 4vw, 44px); }

/* Artikelindex: één uitgelicht artikel + compacte lijst */
.index-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr); gap: 22px; align-items: stretch; }
.index-featured { height: 100%; }
.index-featured .post-thumb { aspect-ratio: auto; min-height: 150px; }
.index-list { background: #fff; border: 1px solid var(--line); padding: 6px 28px; display: flex; flex-direction: column; justify-content: center; }
.index-list .insight-row { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.index-list .insight-row:last-child { border-bottom: 0; }
.index-list .insight-row:hover { background: var(--bg-soft); }
.index-list .insight-title { font-size: 1.15rem; }
.insight-meta { font-family: var(--font-mono); font-size: .72rem; color: var(--slate); flex: none; }
@media (max-width: 860px) {
  .index-grid { grid-template-columns: 1fr; }
  .insight-meta { display: none; }
}

/* ---------- B8: subpagina-koppen kleiner, hero strakker ---------- */
.page-hero h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); line-height: 1.06; max-width: 22ch; }
.page-hero { padding-top: clamp(116px, 15vh, 150px); padding-bottom: clamp(24px, 3vw, 36px); }
.page-hero .lead { margin-bottom: .2rem; }
.page-hero + .section { padding-top: clamp(18px, 2.5vw, 30px); }
