/* =========================================================
   George Arakel — homepage
   Design tokens per DESIGN.md / brand-guidelines
   ========================================================= */
:root {
  --dark: #0D0F1A;
  --dark-2: #141726;
  --dark-3: #1B1F30;
  --blue: #3A8EE6;
  --blue-hover: #2D7DD2;
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,.72);
  --white-55: rgba(255,255,255,.55);
  --light: #F7F7F9;
  --ink: #161826;
  --muted: #5B6472;
  --border-dark: rgba(255,255,255,.10);
  --border-light: #E4E6EC;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  /* z-index scale */
  --z-header: 100;
  --z-mobilenav: 90;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: var(--radius);
  font-weight: 700; transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

/* ---------- shared: labels / heads ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 16px;
}
.section-label::before {
  content: ""; width: 28px; height: 2px; background: var(--blue); display: inline-block;
}
.section-label--light { color: var(--muted); }
.section-label--light::before { background: var(--muted); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .section-label { justify-content: center; }
.section-head__title {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--ink);
}
.section--dark .section-head__title { color: var(--white); }
.section-head__title--kicker {
  text-transform: uppercase; letter-spacing: .08em; font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.accent-bar { display: block; width: 46px; height: 3px; background: var(--blue); border-radius: 2px; margin: 18px auto 0; }
.section-cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: .875rem; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1; padding: 14px 24px; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  cursor: pointer; transition: background .22s var(--ease), color .22s var(--ease),
    border-color .22s var(--ease), transform .22s var(--ease); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }

.btn--primary { --btn-bg: var(--blue); box-shadow: 0 8px 22px -12px rgba(58,142,230,.9); }
.btn--primary:hover { background: var(--blue-hover); }

.btn--secondary {
  --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.22);
}
.btn--secondary:hover { background: rgba(255,255,255,.12); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

.accent-blue { color: var(--blue); }

/* ---------- section spacing ---------- */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--light { background: var(--light); color: var(--ink); }
.section--dark { background: var(--dark); color: var(--white); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(13,15,26,.78); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(13,15,26,.94); border-bottom-color: var(--border-dark); }
.nav { display: flex; align-items: center; gap: 24px; min-height: 76px; }

.brand { display: flex; flex-direction: column; line-height: 1.15; margin-right: auto; }
.brand__name {
  font-weight: 800; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.brand__sub { font-size: .72rem; color: var(--white-55); letter-spacing: .01em; }

.nav__menu { display: flex; gap: clamp(16px, 2vw, 30px); }
.nav__menu a {
  font-size: .875rem; font-weight: 500; color: var(--white-70); padding: 6px 0; position: relative;
  transition: color .2s var(--ease);
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: #fff; }
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { padding: 11px 20px; font-size: .875rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer;
}
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 76px 0 auto 0; z-index: var(--z-mobilenav);
  background: var(--dark); border-bottom: 1px solid var(--border-dark);
  display: flex; flex-direction: column; padding: 16px var(--gutter) 28px; gap: 4px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  font-size: 1.05rem; font-weight: 600; color: var(--white-70); padding: 14px 4px;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a:last-child { border: 0; margin-top: 12px; color: #fff; justify-content: center; }
.mobile-nav a.btn { padding: 15px 24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden; background: var(--dark); color: #fff;
  min-height: min(90vh, 820px); display: flex; align-items: center;
  padding-block: clamp(56px, 9vw, 96px);
}
.hero__media { position: absolute; inset: 0 0 0 auto; width: 68%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--dark) 0%, var(--dark) 28%, rgba(13,15,26,.72) 46%, rgba(13,15,26,.15) 66%, rgba(13,15,26,.35) 100%),
    linear-gradient(0deg, rgba(13,15,26,.55) 0%, rgba(13,15,26,0) 40%);
}
.hero__inner { position: relative; }
.hero__content { max-width: 560px; }
.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.02; margin: 4px 0 22px;
}
.hero__title span { display: block; }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--white-70); max-width: 44ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* stats */
.stats {
  display: flex; gap: clamp(24px, 4vw, 48px); margin: 40px 0 0; padding-top: 30px;
  border-top: 1px solid var(--border-dark);
}
.stat { position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(-1 * clamp(12px, 2vw, 24px)); top: 4px; bottom: 4px;
  width: 1px; background: var(--border-dark);
}
.stat__num { font-size: clamp(2.1rem, 4.2vw, 2.75rem); font-weight: 800; color: #fff; line-height: 1; margin: 0; }
.stat__label { font-size: .875rem; color: var(--white-55); margin: 8px 0 0; }

/* =========================================================
   OVER GEORGE + VIDEO
   ========================================================= */
.over__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.over__text h2 { font-size: clamp(1.9rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 20px; }
.over__text p { color: #3c4453; max-width: 52ch; margin-bottom: 16px; }
.over__text .btn { margin-top: 12px; }

.video { margin: 0; }
.video__facade {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: #000; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video__facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video__facade:hover img { transform: scale(1.04); }
.video__facade::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,0) 55%);
}
.video__play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%; background: #fff; color: var(--blue);
  display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,.6);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video__facade:hover .video__play { transform: translate(-50%, -50%) scale(1.08); background: var(--blue); color: #fff; }
.video__caption {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; padding: 16px 20px; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--border-light); border-top: 0; font-size: .9375rem; font-weight: 600; color: var(--ink);
}
.video__link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 700; }
.video__link .icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.video__link:hover .icon { transform: translateX(3px); }
.video__embed { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: block; }

/* =========================================================
   ONDERWERPEN
   ========================================================= */
.topics__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); text-align: center; }
.topic { display: flex; flex-direction: column; align-items: center; padding: 8px; }
.topic__icon {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(58,142,230,.10); color: var(--blue); margin-bottom: 22px;
}
.topic__icon svg { width: 30px; height: 30px; }
.topic__title { font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.topic__desc { font-size: .9375rem; color: var(--muted); max-width: 26ch; }

/* =========================================================
   MEDIA / LOGO STRIP
   ========================================================= */
.media__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 64px); margin-top: 8px;
}
.media__logos li { display: flex; align-items: center; }
.media__logos img {
  height: clamp(26px, 3.4vw, 38px); width: auto; opacity: .62;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.media__logos img[alt="AT5"] { height: clamp(40px, 4.6vw, 56px); }
.media__logos img[alt="KRO-NCRV"] { height: clamp(38px, 4.4vw, 52px); }
.media__logos li:hover img { opacity: 1; transform: translateY(-2px); }

/* =========================================================
   BOEK
   ========================================================= */
.boek__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.boek__cover { margin: 0; }
.boek__cover img {
  width: 100%; mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 40px rgba(20,23,38,.20));
}
.boek__text h2 { font-size: clamp(1.9rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 20px; }
.boek__text p { color: #3c4453; max-width: 50ch; margin-bottom: 16px; }
.boek__text em { font-style: italic; color: var(--ink); }
.boek__text .btn { margin-top: 12px; }

/* =========================================================
   TESTIMONIAL + BOOKING
   ========================================================= */
.cta-band__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  position: relative;
}
.cta-band__grid::before {
  content: ""; position: absolute; left: 58%; top: 6%; bottom: 6%; width: 1px; background: var(--border-dark);
}
.quotes { position: relative; padding-left: clamp(0px, 3vw, 20px); }
.quotes__mark {
  font-family: Georgia, "Times New Roman", serif; color: var(--blue);
  font-size: 5.5rem; line-height: .8; display: block; height: 42px;
}
.quotes__track { position: relative; }
.quote {
  margin: 0; opacity: 0; visibility: hidden; position: absolute; inset: 0;
  transition: opacity .5s var(--ease); pointer-events: none;
}
.quote.is-active { opacity: 1; visibility: visible; position: relative; pointer-events: auto; }
.quote p {
  font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500; font-style: italic; color: #fff;
  line-height: 1.5; max-width: 30ch; margin-bottom: 20px;
}
.quote cite { font-style: normal; font-weight: 700; color: var(--blue); font-size: .9375rem; }
.quotes__dots { display: flex; gap: 10px; margin-top: 28px; }
.quotes__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.28); transition: background .25s var(--ease), transform .25s var(--ease);
}
.quotes__dots button[aria-selected="true"] { background: var(--blue); transform: scale(1.25); }

.booking__title { font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.booking__lead { color: var(--white-70); max-width: 42ch; margin-bottom: 26px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: var(--white-70); padding-top: clamp(56px, 8vw, 80px); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.4fr; gap: clamp(28px, 4vw, 48px);
  padding-bottom: 48px; border-bottom: 1px solid var(--border-dark);
}
.footer__brand .brand__name { display: block; }
.footer__brand .brand__sub { display: block; margin-bottom: 18px; }
.footer__tagline { font-size: .9rem; color: var(--white-55); max-width: 34ch; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--white-70); transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.footer__heading {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.42); margin: 0 0 18px;
}
.footer__col ul li { margin-bottom: 11px; }
.footer__col a { font-size: .9rem; color: var(--white-70); transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }

.footer__contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; font-size: .9rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

.footer__news-copy { font-size: .9rem; color: var(--white-55); margin-bottom: 16px; max-width: 30ch; }
.newsletter { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 12px 14px; color: #fff; font-family: inherit; font-size: .9rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter input:focus { border-color: var(--blue); background: rgba(255,255,255,.09); outline: none; }
.newsletter__btn {
  flex: none; width: 46px; border: 0; border-radius: var(--radius); background: var(--blue); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease);
}
.newsletter__btn:hover { background: var(--blue-hover); }
.newsletter__btn svg { width: 20px; height: 20px; }
.newsletter__msg { font-size: .85rem; margin-top: 10px; min-height: 1.2em; color: var(--blue); }
.newsletter__msg.is-error { color: #ff8080; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-block: 24px 30px; font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--white-70); }

/* =========================================================
   MOTION — hero entrance + scroll reveal
   ========================================================= */
/* Hero staggered entrance (plays on load, JS-independent) */
.js .hero .reveal { opacity: 0; transform: translateY(18px); animation: hero-in .8s var(--ease) forwards; }
.js .hero .reveal[data-reveal="1"] { animation-delay: .05s; }
.js .hero .reveal[data-reveal="2"] { animation-delay: .14s; }
.js .hero .reveal[data-reveal="3"] { animation-delay: .22s; }
.js .hero .reveal[data-reveal="4"] { animation-delay: .30s; }
.js .hero .reveal[data-reveal="5"] { animation-delay: .42s; }
.js .hero .reveal[data-reveal="6"] { animation-delay: .52s; }
.js .hero .reveal[data-reveal="7"] { animation-delay: .62s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

/* Scroll reveal — only when JS active; visible by default otherwise */
.js .js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .js-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .hero .reveal { opacity: 1; transform: none; animation: none; }
  .js .js-reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .socials a:hover, .media__logos li:hover img, .video__facade:hover img { transform: none; }
}

/* =========================================================
   INTERIOR PAGES — shared components
   ========================================================= */

/* ---- page hero (compact, dark) ---- */
.page-hero {
  position: relative; overflow: hidden; background: var(--dark); color: #fff;
  padding-block: clamp(52px, 9vw, 104px) clamp(44px, 6vw, 76px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(72% 120% at 88% -20%, rgba(58,142,230,.22), transparent 58%);
}
.page-hero__inner { position: relative; max-width: 780px; }
.page-hero--center .page-hero__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.page-hero--center .section-label, .page-hero--center .breadcrumb { justify-content: center; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.04; margin: 8px 0 20px;
}
.page-hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--white-70); max-width: 58ch; }
.page-hero--center .page-hero__lead { margin-inline: auto; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .8rem; color: var(--white-55); margin-bottom: 20px; }
.breadcrumb a { color: var(--white-55); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; opacity: .55; }
.breadcrumb [aria-current] { color: var(--white-70); }

/* ---- prose / rich text on light ---- */
.prose { max-width: 68ch; }
.prose > p { color: #39404e; font-size: 1.0625rem; margin-bottom: 1.15em; }
.prose > p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--ink); margin: 1.7em 0 .55em; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 1.5em 0 .5em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; }
.prose a { color: var(--blue-hover); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose a.btn { color: var(--btn-fg); text-decoration: none; font-weight: 700; }
.check-list { display: grid; gap: 12px; margin: 4px 0 1.4em; }
.check-list li { position: relative; padding-left: 34px; color: #39404e; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(58,142,230,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%233A8EE6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---- lead intro paragraph ---- */
.intro-lead { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500; color: var(--ink); line-height: 1.5; max-width: 40ch; }

/* ---- generic split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--text-wide { grid-template-columns: 1.15fr .85fr; }
.split__media img { width: 100%; border-radius: var(--radius-lg); display: block; }
.split__media--frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(13,15,26,.4); }

/* ---- timeline (dated, real sequence) ---- */
.timeline { display: grid; gap: 4px; max-width: 720px; list-style: none; padding: 0; }
.timeline__item { position: relative; padding: 0 0 clamp(28px, 3vw, 40px) 92px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ""; position: absolute; left: 71px; top: 10px; bottom: -4px; width: 2px; background: var(--border-light); }
.timeline__item:last-child::before { display: none; }
.timeline__item::after {
  content: ""; position: absolute; left: 66px; top: 6px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 0 5px rgba(58,142,230,.14);
}
.timeline__year { position: absolute; left: 0; top: 0; width: 58px; font-weight: 800; color: var(--blue); font-size: 1.05rem; }
.timeline__item h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.timeline__item p { color: var(--muted); max-width: 52ch; }

/* ---- credential list (bordered rows, not cards) ---- */
.cred-list { border-top: 1px solid var(--border-light); max-width: 780px; }
.cred-list li { display: flex; gap: 18px; align-items: flex-start; padding: 22px 4px; border-bottom: 1px solid var(--border-light); }
.cred-list .cred__icon { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(58,142,230,.10); color: var(--blue); }
.cred-list .cred__icon svg { width: 22px; height: 22px; }
.cred-list h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 2px 0 4px; }
.cred-list p { color: var(--muted); font-size: .95rem; }

/* ---- stat band (reusable dark stats strip) ---- */
.statband { background: var(--dark); color: #fff; }
.statband__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 6vw, 80px); text-align: center; }
.statband .stat + .stat::before { display: none; }
.statband .stat__num { font-size: clamp(2.2rem, 4.4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
.statband .stat__label { font-size: .95rem; color: var(--white-55); margin-top: 8px; }

/* ---- topic list (spreker: detailed rows) ---- */
.topiclist { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4px, 2vw, 12px) clamp(32px, 5vw, 64px); }
.topiclist__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: clamp(22px, 2.6vw, 30px) 0; border-bottom: 1px solid var(--border-light); }
.topiclist__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(58,142,230,.10); color: var(--blue); }
.topiclist__icon svg { width: 26px; height: 26px; }
.topiclist__item h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.topiclist__item p { color: var(--muted); font-size: .96rem; }

/* ---- formats (flat columns, reuse topic style) ---- */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.format { text-align: center; }
.format__num { font-size: .8rem; font-weight: 800; color: var(--blue); letter-spacing: .08em; }
.format h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 12px 0 8px; }
.format p { color: var(--muted); font-size: .95rem; max-width: 30ch; margin-inline: auto; }

/* ---- media / press list (on dark) ---- */
.press-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--border-dark); }
.press-item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: clamp(18px, 3vw, 40px); align-items: center;
  padding: clamp(20px, 2.6vw, 28px) 4px; border-bottom: 1px solid var(--border-dark);
  transition: background .25s var(--ease);
}
.press-item:hover { background: rgba(255,255,255,.03); }
.press-item__logo { display: flex; align-items: center; height: 34px; }
.press-item__logo img { max-height: 30px; width: auto; opacity: .8; }
.press-item__logo img[alt="AT5"] { max-height: 40px; }
.press-item__logo img[alt="KRO-NCRV"] { max-height: 40px; }
.press-item__body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.press-item__body p { color: var(--white-55); font-size: .9rem; }
.press-item__go { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.press-item__go svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.press-item:hover .press-item__go svg { transform: translateX(3px); }
.press-featured { max-width: 900px; margin: 0 auto clamp(36px, 5vw, 56px); }
.press-featured .video__caption { background: var(--dark-2); border-color: var(--border-dark); color: #fff; }

/* ---- boek page extras ---- */
.book-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; margin: 0 0 24px; }
.book-meta__price { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.book-meta__note { color: var(--muted); font-size: .95rem; }
.book-quotes { display: grid; gap: 20px; margin: 4px 0 8px; }
.book-quote { border-left: 0; }
.book-quote p { font-style: italic; color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.book-quote cite { font-style: normal; color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ---- contact / booking form ---- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; width: 100%;
  padding: 13px 14px; border: 1.5px solid var(--border-light); border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%235B6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,142,230,.15);
}
.field input::placeholder, .field textarea::placeholder { color: #97a0ae; }
.field--error input, .field--error select, .field--error textarea { border-color: #e5484d; }
.field__err { font-size: .8rem; color: #c0392b; min-height: 0; }
.field--error .field__err { min-height: 1.1em; }
.form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form__note { font-size: .82rem; color: var(--muted); }
.form-success {
  display: none; padding: 24px; border-radius: var(--radius-lg); background: rgba(58,142,230,.08);
  border: 1px solid rgba(58,142,230,.3); color: var(--ink);
}
.form-success.is-visible { display: block; }
.form-success h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.form-success p { color: #39404e; }
.form.is-hidden { display: none; }

/* contact info panel (dark card) */
.info-panel {
  background: var(--dark); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px); position: sticky; top: 96px;
}
.info-panel h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.info-panel > p { color: var(--white-70); font-size: .95rem; margin-bottom: 24px; }
.info-panel__list { display: grid; gap: 18px; margin-bottom: 28px; }
.info-panel__list li { display: flex; gap: 14px; align-items: flex-start; }
.info-panel__list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.info-panel__list a, .info-panel__list span { color: #fff; font-weight: 600; }
.info-panel__list small { display: block; color: var(--white-55); font-weight: 400; font-size: .82rem; margin-top: 2px; }
.info-panel__steps { border-top: 1px solid var(--border-dark); padding-top: 22px; display: grid; gap: 14px; }
.info-panel__steps li { display: flex; gap: 12px; align-items: flex-start; color: var(--white-70); font-size: .92rem; }
.info-panel__steps b { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

/* legal / privacy */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin: 1.8em 0 .5em; }
.legal p, .legal li { color: #39404e; }
.legal p { margin-bottom: 1em; }
.legal ul { display: grid; gap: 8px; margin: 0 0 1.2em; padding-left: 22px; list-style: disc; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 860px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero { display: block; min-height: 0; padding-block: 0 clamp(48px, 10vw, 64px); }
  .hero__media { position: relative; width: 100%; height: clamp(240px, 54vw, 330px); }
  .hero__media img { object-position: 55% 18%; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(13,15,26,.12) 0%, rgba(13,15,26,.45) 58%, var(--dark) 100%);
    bottom: auto; height: clamp(240px, 54vw, 330px);
  }
  .hero__inner { position: relative; padding-top: 30px; }
  .hero__content { max-width: none; }
  .hero__lead { max-width: none; }

  .over__grid, .boek__grid, .cta-band__grid { grid-template-columns: 1fr; }
  .cta-band__grid::before { display: none; }
  .over__grid .video { order: -1; }
  .boek__grid .boek__cover { max-width: 340px; }

  .topics__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }

  .split, .contact-grid, .topiclist, .formats { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; }
  .info-panel { position: static; }
  .press-item { grid-template-columns: 90px 1fr; grid-template-rows: auto auto; row-gap: 6px; }
  .press-item__go { grid-column: 2; justify-self: start; }
}

@media (max-width: 520px) {
  .stats { flex-wrap: wrap; gap: 20px 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; }

  .form__row { grid-template-columns: 1fr; }
  .timeline__item { padding-left: 74px; }
  .timeline__year { width: 46px; font-size: .95rem; }
  .timeline__item::before { left: 53px; }
  .timeline__item::after { left: 48px; }
}
