/* =========================================================
   Family Control · Premium stylesheet
   Coachen · Adviseren · Ondersteunen
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy: #0a1628;
  --navy-2: #123c73;
  --footer-navy: #07111f;
  --gold: #d9b664;
  --gold-2: #b99748;
  --warm-white: #fbf8f2;
  --warm-grey: #f7f4ee;
  --sand: #efe7d7;
  --ink: #172033;
  --muted: #5d6678;
  --line: rgba(23, 32, 51, 0.10);
  --line-soft: rgba(217, 182, 100, 0.30);
  --shadow-sm: 0 1px 2px rgba(7, 17, 31, 0.06), 0 2px 8px rgba(7, 17, 31, 0.04);
  --shadow-md: 0 6px 20px rgba(7, 17, 31, 0.08), 0 2px 6px rgba(7, 17, 31, 0.05);
  --shadow-lg: 0 24px 60px rgba(7, 17, 31, 0.18), 0 6px 20px rgba(7, 17, 31, 0.10);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --serif: "Cormorant Garamond", "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1vw + 0.6rem, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; color: var(--navy); letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink); }
p.lead { font-size: clamp(1.05rem, 1.2vw, 1.22rem); color: var(--muted); line-height: 1.7; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-2);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }

.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); opacity: .7; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section-y) 0; position: relative; }
.section--navy { background: var(--navy); color: var(--warm-white); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--warm-white); }
.section--navy p { color: rgba(251,248,242,0.90); }
.section--sand { background: var(--warm-grey); }
.section--soft { background: var(--sand); }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(217,182,100,0.35); }
.btn-primary:hover { background: var(--gold-2); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(23,32,51,0.18); }
.btn-ghost:hover { background: var(--navy); color: var(--warm-white); border-color: var(--navy); }
.btn-light { background: var(--warm-white); color: var(--navy); }
.btn-light:hover { background: var(--gold); }
.btn-outline-light { background: transparent; color: var(--warm-white); border-color: rgba(251,248,242,0.35); }
.btn-outline-light:hover { background: var(--warm-white); color: var(--navy); border-color: var(--warm-white); }
.btn-sm { padding: .6rem 1rem; font-size: .82rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,242,0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(7,17,31,0.07); background: rgba(251,248,242,0.94); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img {
  height: 56px; width: 56px; object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle at 30% 30%, rgba(217,182,100,0.18), rgba(217,182,100,0.04) 70%);
  box-shadow: 0 4px 14px -4px rgba(7,17,31,0.25), 0 0 0 1px rgba(217,182,100,0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand:hover img { transform: rotate(-2deg) scale(1.03); box-shadow: 0 8px 22px -4px rgba(7,17,31,0.35), 0 0 0 1px rgba(217,182,100,0.6), 0 0 24px -4px rgba(217,182,100,0.35); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--navy); letter-spacing: -0.005em; }
.brand-tag { font-size: .68rem; letter-spacing: .25em; color: var(--gold-2); text-transform: uppercase; font-weight: 600; }

.nav-list { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.nav-item { position: relative; }
.nav-link {
  font-size: .92rem; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem 0;
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--navy-2); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link .chev { width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform .25s var(--ease); }
.nav-item:hover .nav-link .chev { transform: rotate(-135deg) translate(-2px,-2px); }

.dropdown {
  position: absolute; top: 100%; left: -1rem;
  min-width: 250px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: .65rem .9rem; border-radius: 8px;
  font-size: .9rem; color: var(--ink); transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown a:hover { background: var(--warm-grey); color: var(--navy-2); }

.nav-cta { display: flex; align-items: center; gap: .8rem; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--warm-white); border-radius: 12px;
  align-items: center; justify-content: center;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--navy); position: relative; display: block; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy); transition: transform .25s var(--ease); }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: rotate(45deg) translate(4px,4px); }
.menu-toggle.is-open span::after { transform: rotate(-45deg) translate(4px,-4px); }

@media (max-width: 1100px) {
  .nav-list { display: none; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 78px 0 0 0;
  background: var(--warm-white);
  z-index: 55;
  padding: 2rem var(--pad) 4rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 1rem 0; font-size: 1.05rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-2); transition: transform .25s var(--ease); }
.mobile-nav details[open] summary::after { content: "−"; }
.mobile-nav details a { display: block; padding: .55rem 0 .55rem 1rem; color: var(--muted); font-size: .95rem; }
.mobile-nav details a:hover { color: var(--navy-2); }
.mobile-nav > a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--navy); }
.mobile-nav .btn { margin-top: 2rem; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 70% 0%, #1a3460 0%, var(--navy) 60%, var(--footer-navy) 100%);
  color: var(--warm-white);
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(217,182,100,0.10) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(18,60,115,0.65) 0%, transparent 50%);
  z-index: -1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.04) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.04) 100%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }

.hero h1 { color: var(--warm-white); }
.hero h1 em { font-style: italic; color: var(--gold); font-family: var(--serif); }
.hero .lead { color: rgba(251,248,242,0.82); font-size: clamp(1.05rem, 1.3vw, 1.28rem); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(251,248,242,0.14);
  font-size: .82rem; color: rgba(251,248,242,0.6); letter-spacing: .14em; text-transform: uppercase;
}
.hero-trust strong { color: var(--gold); font-weight: 600; }

.hero-card {
  position: relative;
  background: rgba(7,17,31,0.45);
  border: 1px solid rgba(217,182,100,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(217,182,100,0.10), transparent 50%);
}
.hero-logo {
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  border-radius: 50%;
  background: rgba(251,248,242,0.98);
  display: grid; place-items: center;
  margin: 0 auto 1.6rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(217,182,100,0.40);
  position: relative;
  isolation: isolate;
}
.hero-logo::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,182,100,0.25), transparent 70%);
  z-index: -1;
}
.hero-logo img { width: 90%; height: 90%; object-fit: contain; }
.hero-card .pillar-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-top: 1.6rem;
}
.hero-card .pillar {
  text-align: center; padding: 1rem .5rem;
  border: 1px solid rgba(217,182,100,0.22);
  border-radius: var(--radius);
  background: rgba(251,248,242,0.04);
}
.hero-card .pillar h4 { color: var(--gold); margin: 0 0 .15rem; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-card .pillar p { color: rgba(251,248,242,0.76); font-size: .8rem; margin: 0; }

.hero-quote { color: rgba(251,248,242,0.85); font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.5; text-align: center; margin: 1.4rem 0 .25rem; }
.hero-quote::before { content: "\201C"; color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -.4em; margin-right: .15rem; }
.hero-quote-author { text-align: center; color: var(--gold); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy);
  padding: 1.6rem 0;
  color: rgba(251,248,242,0.7);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-bar .marquee {
  display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: center; align-items: center;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
}
.trust-bar .marquee span { display: inline-flex; align-items: center; gap: .55rem; }
.trust-bar .marquee span::before { content: "◆"; color: var(--gold); font-size: .65rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: left;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .num { font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 4rem); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.stat-card .num sup { color: var(--gold-2); font-size: .5em; vertical-align: top; margin-left: .1em; }
.stat-card .label { margin-top: .8rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat-card::before { content: ""; position: absolute; top: 1.6rem; right: 1.6rem; width: 18px; height: 1px; background: var(--gold); }

.section--navy .stat-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); }
.section--navy .stat-card .num { color: var(--gold); }
.section--navy .stat-card .label { color: rgba(251,248,242,0.85); }

/* ---------- Cards ---------- */
.card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-soft); }
.card .icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px -6px rgba(7,17,31,0.5), inset 0 0 0 1px rgba(217,182,100,0.25);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover .icon-badge { transform: translateY(-2px) rotate(-3deg); box-shadow: 0 10px 22px -6px rgba(7,17,31,0.55), inset 0 0 0 1px rgba(217,182,100,0.55), 0 0 18px -2px rgba(217,182,100,0.30); }
.card .icon-badge::after {
  content: ""; position: absolute; top: -2px; right: -2px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); opacity: .8;
  box-shadow: 0 0 8px var(--gold);
}
.card .icon-badge svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 1.6; }
.card .icon-badge--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); }
.card .icon-badge--gold svg { stroke: var(--navy); }
.card .icon-badge--gold::after { background: var(--navy); box-shadow: 0 0 6px var(--navy); }

/* Premium list with gold check marker */
ul:has(.check-li) { list-style: none; padding-left: 0; }
.check-li {
  position: relative; padding-left: 1.8rem; margin-bottom: .55rem;
  line-height: 1.65;
}
.check-li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 1.05rem; height: 1.05rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b99748' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-size: contain;
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; line-height: 1.65; }
.card .meta { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .8rem; }
.card .arrow-link {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--navy-2);
}
.card .arrow-link span { transition: transform .25s var(--ease); }
.card:hover .arrow-link span { transform: translateX(4px); }

.card.featured {
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  color: var(--warm-white); border-color: rgba(217,182,100,0.30);
}
.card.featured h3 { color: var(--warm-white); }
.card.featured p { color: rgba(251,248,242,0.78); }
.card.featured .icon-badge { background: var(--gold); color: var(--navy); }
.card.featured .arrow-link { color: var(--gold); }

.section--navy .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); color: var(--warm-white); }
.section--navy .card h3 { color: var(--warm-white); }
.section--navy .card p { color: rgba(251,248,242,0.88); }
.section--navy .card .arrow-link { color: var(--gold); }

/* Tag chips */
.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--warm-grey);
  color: var(--muted);
  border: 1px solid var(--line);
}
.chip--gold { background: rgba(217,182,100,0.12); border-color: rgba(217,182,100,0.35); color: var(--gold-2); }
.chip--navy { background: var(--navy); color: var(--warm-white); border-color: transparent; }
.section--navy .chip { background: rgba(255,255,255,0.06); color: rgba(251,248,242,0.78); border-color: rgba(255,255,255,0.10); }

/* ---------- Section heads ---------- */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head .col-right { text-align: left; }
.section-head h2 { margin: .35rem 0 0; }
.section-head p { color: var(--muted); margin: 0; max-width: 50ch; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

/* ---------- Quote panel ---------- */
.quote-panel {
  background: var(--navy);
  color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.quote-panel::before { content: "\201C"; position: absolute; top: -3rem; left: 1rem; font-family: var(--serif); font-size: 14rem; line-height: 1; color: rgba(217,182,100,0.18); }
.quote-panel blockquote {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.3rem); line-height: 1.35; font-style: italic; margin: 0; max-width: 28ch;
  color: var(--warm-white);
}
.quote-panel cite {
  display: block; margin-top: 1.6rem; font-style: normal; font-family: var(--sans);
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Book cards (premium 3D) ---------- */
.book-card {
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  perspective: 1400px;
}
.book-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* 3D stage for the cover */
.book-cover {
  aspect-ratio: 3 / 4;
  display: grid; place-items: center; padding: 1.6rem;
  position: relative; overflow: hidden;
  font-family: var(--serif); color: var(--warm-white);
  background-color: #0a1628;
  background-size: cover; background-position: center;
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), filter .4s var(--ease);
  box-shadow:
    inset 0 0 0 1px rgba(217,182,100,0.18),
    inset 12px 0 18px -10px rgba(0,0,0,0.55),
    0 18px 38px -14px rgba(7,17,31,0.55);
  isolation: isolate;
}
.book-card:hover .book-cover {
  transform: rotateY(-10deg) rotateX(3deg) translateZ(8px) scale(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(217,182,100,0.45),
    inset 12px 0 18px -10px rgba(0,0,0,0.65),
    0 26px 60px -16px rgba(7,17,31,0.7),
    0 0 0 1px rgba(217,182,100,0.25),
    0 0 38px -2px rgba(217,182,100,0.35);
  filter: saturate(1.05);
}

/* Subtle gloss sheen */
.book-cover::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 65%, rgba(255,255,255,0.08) 100%),
    linear-gradient(180deg, rgba(7,17,31,0) 60%, rgba(7,17,31,0.55) 100%);
  pointer-events: none; z-index: 2;
}
/* Spine highlight on the left */
.book-cover::after {
  content: ""; position: absolute; top: 0; left: 0; width: 14%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 60%, rgba(255,255,255,0.06) 100%);
  border-right: 1px solid rgba(217,182,100,0.25);
  z-index: 1;
}

.book-cover > * { position: relative; z-index: 3; }
.book-cover .num { position: absolute; top: 1rem; left: 1.1rem; font-size: .72rem; letter-spacing: .22em; opacity: .75; text-transform: uppercase; font-family: var(--sans); }
.book-cover .badge { position: absolute; top: 1rem; right: 1rem; font-size: .68rem; padding: .25rem .6rem; border-radius: 999px; background: var(--gold); color: var(--navy); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.book-cover .title { font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.1; text-align: center; max-width: 12ch; text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
.book-cover .sub { margin-top: .45rem; font-size: .8rem; opacity: .85; text-align: center; letter-spacing: .04em; font-family: var(--sans); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.book-cover .author { position: absolute; bottom: 1rem; right: 1rem; font-size: .72rem; opacity: .7; letter-spacing: .12em; text-transform: uppercase; font-family: var(--sans); }

/* When an actual cover image is supplied, hide the typographic placeholder */
.book-cover.has-image .title,
.book-cover.has-image .sub,
.book-cover.has-image .num,
.book-cover.has-image .author { display: none; }
.book-cover.has-image::before {
  background: linear-gradient(180deg, rgba(7,17,31,0) 70%, rgba(7,17,31,0.35) 100%);
}

/* Typographic fallback gradients (kept for books without images) */
.book-cover.kvr { background-image: linear-gradient(160deg, #122a4d, #0a1628 80%); }
.book-cover.opr { background-image: linear-gradient(160deg, #6c2c1c, #2a0c08); }
.book-cover.opv { background-image: linear-gradient(160deg, #1f4d3c, #0a261b); }
.book-cover.vad { background-image: linear-gradient(160deg, #4a3a18, #1a1408); }
.book-cover.onz { background-image: linear-gradient(160deg, #2c1a3a, #0c0518); }
.book-cover.onb { background-image: linear-gradient(160deg, #5b2a3d, #1a0814); }

/* Buy buttons row */
.book-buy { display: flex; gap: .45rem; flex-wrap: wrap; margin-top: .6rem; }
.book-buy .btn { font-size: .78rem; padding: .5rem .85rem; }
.btn-bol { background: #0044a4; color: #fff; border: 1px solid #0044a4; }
.btn-bol:hover { background: #003a8e; border-color: #003a8e; color: #fff; }
.btn-amzn { background: #232f3e; color: #fff; border: 1px solid #232f3e; }
.btn-amzn:hover { background: #131a24; border-color: #131a24; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .book-cover { transform: none; transition: none; }
  .book-card:hover .book-cover { transform: none; }
}

.book-meta { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }

/* ---------- Kenneth practice callout ---------- */
.kenneth-callout {
  display: grid; grid-template-columns: 84px 1fr; gap: 1.1rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(217,182,100,0.10), rgba(217,182,100,0.02) 70%);
  border: 1px solid rgba(217,182,100,0.35);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
}
.kenneth-callout .kc-img {
  width: 84px; height: 84px; border-radius: 50%;
  background-size: cover; background-position: center 18%;
  background-image: url('../img/kenneth-portrait.jpg');
  box-shadow: 0 6px 22px -8px rgba(7,17,31,0.5), 0 0 0 2px var(--gold);
}
.kenneth-callout .kc-eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }
.kenneth-callout h4 { margin: .15rem 0 .3rem; font-size: 1.05rem; line-height: 1.3; color: var(--navy); }
.kenneth-callout p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }
.kenneth-callout cite { display: block; margin-top: .4rem; font-style: normal; font-size: .78rem; color: var(--gold-2); letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 600px) {
  .kenneth-callout { grid-template-columns: 64px 1fr; gap: .9rem; padding: 1rem; }
  .kenneth-callout .kc-img { width: 64px; height: 64px; }
}

/* ---------- Media trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; justify-content: center;
  align-items: center; padding: 1.2rem 1.4rem; margin-top: 1rem;
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-strip .trust-eyebrow { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-right: .4rem; }
.trust-strip a {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--navy); border-bottom: 1px dotted rgba(217,182,100,0.6);
  padding-bottom: 2px; transition: color .25s var(--ease), border-color .25s var(--ease);
}
.trust-strip a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.trust-strip .sep { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .55; vertical-align: middle; margin: 0 .1rem; }
.book-meta h3 { margin: .2rem 0 .15rem; font-size: 1.25rem; }
.book-meta .sub { font-size: .82rem; color: var(--muted); margin: 0 0 .2rem; }
.book-meta p.desc { font-size: .92rem; color: var(--muted); margin: .2rem 0 .8rem; line-height: 1.6; }
.book-meta .pages { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.book-meta .tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }

/* ---------- Article cards ---------- */
.article-card {
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card .ribbon {
  background: var(--navy); color: var(--gold);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .55rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.article-card .body { padding: 1.5rem 1.6rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.article-card h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.article-card .excerpt { color: var(--muted); font-size: .92rem; line-height: 1.6; flex: 1; }
.article-card .article-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; font-size: .78rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: .8rem; }

/* ---------- Project cards ---------- */
.project-card {
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card .head {
  height: 130px; padding: 1.2rem 1.4rem; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  color: var(--warm-white);
}
.project-card .head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(7,17,31,0.15), rgba(7,17,31,0.55));
}
.project-card .head .lbl { position: relative; z-index: 1; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.project-card .head--a { background: linear-gradient(140deg, #1a3460, #0a1628); }
.project-card .head--b { background: linear-gradient(140deg, #4a3a18, #2a1d08); }
.project-card .head--c { background: linear-gradient(140deg, #1f4d3c, #0a261b); }
.project-card .head--d { background: linear-gradient(140deg, #6c2c1c, #2a0c08); }
.project-card .head--e { background: linear-gradient(140deg, #2c1a3a, #0c0518); }
.project-card .head--f { background: linear-gradient(140deg, #122a4d, #07111f); }
.project-card .body { padding: 1.4rem 1.6rem 1.6rem; flex: 1; }
.project-card .body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.project-card .body p { color: var(--muted); font-size: .92rem; }
.project-card .audience { display: inline-block; margin-bottom: .7rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }

/* ---------- Media cards ---------- */
.media-card {
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem 1.8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column; gap: .6rem;
}
.media-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.media-card .source {
  display: flex; align-items: center; gap: .8rem;
  padding-bottom: .9rem; border-bottom: 1px dashed var(--line);
  margin-bottom: .4rem;
}
.media-card .source-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1rem;
  letter-spacing: -.02em;
}
.media-card .source-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.media-card .source-type { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.media-card h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: .4rem; }
.media-card p { color: var(--muted); font-size: .9rem; }
.media-card .external { margin-top: .8rem; font-size: .82rem; font-weight: 600; color: var(--navy-2); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: -2.4rem; left: 1.4rem;
  font-family: var(--serif); font-size: 8rem; color: var(--gold); opacity: .35; line-height: 1;
}
.testimonial p { font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.55; color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.testimonial .who-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); }
.testimonial .who small { color: var(--muted); font-size: .78rem; }
.testimonial .who strong { display: block; color: var(--navy); font-family: var(--sans); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--warm-white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--gold-2); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .96rem; line-height: 1.65; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(140deg, var(--navy), var(--navy-2));
  color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 5vw, 4.4rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,182,100,0.18), transparent 65%);
}
.cta-banner h2 { color: var(--warm-white); max-width: 18ch; }
.cta-banner p { color: rgba(251,248,242,0.78); max-width: 56ch; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(155deg, var(--navy), var(--footer-navy));
  color: var(--warm-white);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(217,182,100,0.10), transparent 50%);
}
.page-hero .breadcrumb { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,248,242,0.55); margin-bottom: 1.2rem; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 { color: var(--warm-white); max-width: 22ch; }
.page-hero p.lead { color: rgba(251,248,242,0.92); max-width: 60ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-navy);
  color: rgba(251,248,242,0.86);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.6rem;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}
.site-footer p { color: rgba(251,248,242,0.88); line-height: 1.65; }
.site-footer h4 { color: var(--warm-white); font-family: var(--sans); font-size: .85rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(251,248,242,0.82); display: block; padding: .25rem 0; font-size: .92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 1024px) { .site-footer .grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }

.foot-brand { display: flex; align-items: center; gap: 1rem; }
.foot-brand img {
  height: 64px; width: 64px; object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  background: radial-gradient(circle at 30% 30%, rgba(217,182,100,0.22), rgba(217,182,100,0.04) 75%);
  box-shadow: 0 0 0 1px rgba(217,182,100,0.45), 0 6px 18px -6px rgba(217,182,100,0.35);
}
.foot-brand b { font-family: var(--serif); color: var(--warm-white); font-size: 1.36rem; font-weight: 600; }
.foot-brand small { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; }

.newsletter input[type=email] {
  width: 100%; padding: .85rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04); color: var(--warm-white); font-family: var(--sans); font-size: .92rem;
  margin-bottom: .6rem;
}
.newsletter input[type=email]::placeholder { color: rgba(251,248,242,0.45); }
.newsletter button { width: 100%; }

.foot-bottom {
  margin-top: 3.2rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: rgba(251,248,242,0.75);
}
.foot-bottom a { display: inline-block; color: rgba(251,248,242,0.82); }
.foot-bottom a:hover { color: var(--gold); }
.foot-tag { color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }

/* ---------- Floating contact button ---------- */
.float-contact {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 50;
  background: var(--gold); color: var(--navy);
  padding: .9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 14px 30px rgba(7,17,31,0.25), 0 4px 12px rgba(217,182,100,0.4);
  display: inline-flex; align-items: center; gap: .55rem;
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease), visibility .25s;
}
.float-contact:hover { background: var(--gold-2); transform: translateY(-3px); }
.float-contact.hidden { opacity: 0; visibility: hidden; transform: translateY(20px); pointer-events: none; }
.float-contact .dot { width: 8px; height: 8px; border-radius: 50%; background: #2c8a4a; box-shadow: 0 0 0 0 rgba(44,138,74,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(44,138,74,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(44,138,74,0); }
}
@media (max-width: 600px) { .float-contact span.txt { display: none; } .float-contact { padding: .9rem; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .form .row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; letter-spacing: .04em; }
.form input, .form select, .form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--warm-white); color: var(--ink);
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(217,182,100,0.18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .privacy { font-size: .82rem; color: var(--muted); }

/* ---------- Pillar cards (3) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 2.5vw, 2.4rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .8rem;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
}
.pillar-card .pn { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); }
.pillar-card h3 { margin: 0; font-size: 1.5rem; }
.pillar-card .for { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pillar-card ul { list-style: none; padding: 0; margin: .4rem 0; }
.pillar-card ul li { padding: .35rem 0; padding-left: 1.4rem; position: relative; font-size: .95rem; color: var(--ink); }
.pillar-card ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ---------- Voor wie / target groups ---------- */
.target-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  background: var(--warm-white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.target-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-soft); }
.target-card h4 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: .4rem; font-weight: 600; }
.target-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Theme cards ---------- */
.theme-card {
  display: block;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--warm-white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.theme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-soft); }
.theme-card .glyph { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); line-height: 1; margin-bottom: .8rem; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(217,182,100,0.10); border: 1px solid rgba(217,182,100,0.30); }
.theme-card .glyph svg { stroke: var(--gold); width: 22px; height: 22px; }
.theme-card h4 { font-size: 1.15rem; color: var(--navy); }
.theme-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 2rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -2rem; top: .6rem; width: 16px; height: 16px;
  border-radius: 50%; background: var(--warm-white); border: 2px solid var(--gold);
}
.timeline-item .yr { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-2); display: block; margin-bottom: .3rem; }
.timeline-item h4 { color: var(--navy); margin-bottom: .3rem; }
.timeline-item p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: var(--navy); padding: .6rem 1rem;
  z-index: 100; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(5.6rem, 8vw, 6.5rem);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  border: 1px solid rgba(217,182,100,0.4);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 49;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Helpers ---------- */
.gold-line { width: 60px; height: 2px; background: var(--gold); display: block; margin: 0 0 1rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-row { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Watermark logo */
.watermark {
  position: absolute; pointer-events: none; opacity: .04;
  width: 360px; height: 360px;
  right: -80px; bottom: -60px;
}
.section--navy .watermark { opacity: .06; }

/* Definition list (Voor wie / wat) */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 720px) { .dl-grid { grid-template-columns: 1fr; } }
.dl-item { padding: 1.2rem 1.4rem; background: var(--warm-grey); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.dl-item h4 { color: var(--navy); margin-bottom: .35rem; font-size: 1rem; font-weight: 700; font-family: var(--sans); letter-spacing: .04em; }
.dl-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Highlight banner */
.highlight {
  background: var(--warm-grey);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
}

/* Numbers list */
.steps { display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1.4rem 1.6rem; background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); line-height: 1; min-width: 50px; }
.step h4 { margin: 0 0 .25rem; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Brand strip / wordmark */
.wordmark {
  display: flex; flex-wrap: wrap; gap: 2rem 4rem;
  align-items: center; justify-content: center;
  padding: 1.6rem 0;
  font-family: var(--serif); font-style: italic; color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}
.wordmark span { opacity: .55; }
.wordmark span::before { content: "·  "; color: var(--gold); }
.wordmark span:first-child::before { content: ""; }

/* Download cards */
.download-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  background: var(--warm-white);
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.download-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.download-card .file-mark {
  width: 44px; height: 56px; border-radius: 8px 8px 8px 14px;
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .14em;
  margin-bottom: .8rem;
}
.download-card h4 { margin: 0; font-family: var(--serif); font-size: 1.15rem; color: var(--navy); }
.download-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.download-card a.dl { margin-top: .8rem; font-weight: 600; color: var(--navy-2); display: inline-flex; gap: .4rem; align-items: center; }

/* Visual placeholder hero image (Kenneth) */
.portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--navy), #1a3460 60%, var(--navy-2));
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  border: 1px solid rgba(217,182,100,0.25);
  box-shadow: var(--shadow-lg);
}
.portrait::before {
  content: ""; position: absolute; inset: -1px;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,182,100,0.18), transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 6px);
}
.portrait .initials {
  font-family: var(--serif); font-size: 5.5rem; color: var(--gold);
  letter-spacing: -.04em; position: relative;
}
.portrait .role {
  position: absolute; bottom: 1.6rem; left: 1.8rem; right: 1.8rem;
  color: rgba(251,248,242,0.85); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  border-top: 1px solid rgba(217,182,100,0.4); padding-top: .9rem;
}

/* Impact cards */
.impact-card {
  background: linear-gradient(155deg, #faf6ec, #f1e9d4);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative; overflow: hidden;
}
.impact-card::before {
  content: ""; position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,182,100,0.30), transparent 70%);
}
.impact-card .partners { display: flex; gap: 1rem; margin: 1rem 0; flex-wrap: wrap; }
.impact-card .partner-pill {
  background: var(--warm-white); padding: .5rem 1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  border: 1px solid var(--line);
}

/* Magazine Grid */
.mag-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.4rem; }
@media (max-width: 980px) { .mag-grid { grid-template-columns: 1fr; } }
