/* DVAD Consultancy — stylesheet
   Editorial, audit-grade. Deeper marine anchor with teal family link to DVAD ICT.
   No decorative dots/badges — flat editorial accents only. */

:root {
  /* Anchor: deep marine — authoritative, calm */
  --color-primary: #0e3a5f;            /* 10.4:1 on white (AAA body) */
  --color-primary-deep: #082b48;
  /* Family link: teal accent shared with DVAD ICT */
  --color-secondary: #1a8fb0;          /* large-text/UI accent */
  --color-secondary-soft: #2aa3c2;
  --color-text-heading: #0e3a5f;
  --color-text-body: #4a5468;          /* 7.3:1 on white — AAA */
  --color-text-muted: #5f6a79;   /* 4.9:1 op licht-grijs, 5.5:1 op wit — WCAG AA */
  --color-bg-white: #ffffff;
  --color-bg-light: #f0f4f8;
  --color-bg-soft: #e6edf4;
  --color-text-white: #ffffff;
  --color-text-white-soft: rgba(255,255,255,0.90);
  --color-border: rgba(14, 58, 95, 0.18);
  --color-border-soft: rgba(14, 58, 95, 0.12);
  --color-shadow: rgba(14, 58, 95, 0.08);
  --color-shadow-medium: rgba(14, 58, 95, 0.12);
  /* Toegankelijke teal voor TEKST op wit: 5.3:1 (WCAG AA). Helder teal
     (--color-secondary) blijft voor gradients, lijntjes en decoratie. */
  --color-secondary-text: #0e7490;

  --gradient-primary: linear-gradient(135deg, #0e3a5f 0%, #1a8fb0 100%);
  --gradient-deep:    linear-gradient(135deg, #0e3a5f 0%, #082b48 100%);
  --gradient-soft:    linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);

  --radius-button: 6px;
  --radius-card: 8px;

  --container: 1200px;
  --gutter: 4vw;
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 400;
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.85;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
p { margin: 0 0 1em; text-wrap: pretty; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }

/* -------------------- A11y -------------------- */
.skip-link {
  position: absolute;
  left: -9999px; top: -9999px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-button);
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; outline: 3px solid #fff; outline-offset: 2px; }
*:focus-visible {
  outline: 3px solid rgba(26, 143, 176, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}
.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;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    /* Alleen ruimtelijke animaties (spin/slide/parallax) uitschakelen.
       Kleur- en opacity-transitions BEHOUDEN — die zijn geen vestibulaire
       belasting en nodig voor zichtbare hover-feedback. (transition-duration
       NIET overschrijven, anders verdwijnen alle hover-fades — zie dvadict.) */
    animation-duration: 0.001ms !important;
  }
  /* De opdrachtgever-marquee is decoratief en uitdrukkelijk gewenst — laat die
     wél doorlopen, ook bij 'reduce motion'. */
  .logo-strip__track { animation: scroll 42s linear infinite !important; }
}

/* -------------------- Type helpers -------------------- */
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
.divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
  margin: 20px 0 28px;
  border: none;
}
.divider--centered { margin-left: auto; margin-right: auto; }
.divider--white { background: rgba(255,255,255,0.55); }

/* -------------------- Layout -------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 100px 0; }
.section--compact { padding: 80px 0; }
.section--light { background: var(--color-bg-light); }
.section--soft { background: var(--color-bg-soft); }
.section--white { background: #fff; }
.section--dark { background: var(--gradient-deep); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,0.85); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-button);
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  line-height: 1;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-secondary); }
.btn--secondary { background: var(--color-secondary); color: #fff; }
.btn--secondary:hover { background: var(--color-primary); }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.btn--outline:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn--link {
  background: transparent;
  color: var(--color-primary);
  padding: 0;
  border: none;
  min-height: 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.btn--link::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 180ms ease;
}
.btn--link:hover { color: var(--color-secondary-text); }
.btn--link:hover::after { transform: translateX(4px); }

/* -------------------- Utility bar / header -------------------- */
.utility-bar {
  background: var(--gradient-primary);
  color: rgba(255,255,255,0.90);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.utility-bar a { display: inline-flex; align-items: center; gap: 8px; transition: color 180ms ease; }
.utility-bar a:hover { color: #fff; }
.utility-bar__group { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.utility-bar__group i { opacity: 0.85; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 20px var(--color-shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  text-decoration: none;
}
.brand img {
  height: 96px;
  width: auto;
  display: block;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  border-bottom-color: var(--color-secondary);
  color: var(--color-secondary-text);
}
.nav__cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  width: 44px; height: 44px;
  border-radius: var(--radius-button);
  padding: 0; cursor: pointer;
  align-items: center; justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.nav-toggle:hover { background: var(--color-bg-light); border-color: var(--color-primary); }
.nav-toggle__bars { position: relative; width: 20px; height: 14px; display: block; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* -------------------- HERO (home) -------------------- */
.hero {
  position: relative;
  padding: 130px 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(14,58,95,0.94) 0%, rgba(8,43,72,0.88) 60%, rgba(26,143,176,0.78) 100%);
}
.hero__content {
  max-width: 860px;
  min-width: 0;
}
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero__title {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.5px;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 26px;
}
.hero__title em {
  font-style: normal;
  color: rgba(255,255,255,0.78);
}
.hero__lead {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 0 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta .btn--primary { background: #fff; color: var(--color-primary); }
.hero__cta .btn--primary:hover { background: var(--color-secondary); color: #fff; }

/* Cross-link to DVAD ICT in hero */
.hero__crosslink {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.hero__crosslink-logo {
  background: #fff;
  border-radius: var(--radius-button);
  padding: 10px 14px;
  display: grid;
  place-items: center;
  min-width: 110px;
}
.hero__crosslink-logo img { height: 36px; width: auto; }
.hero__crosslink-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.90);
  margin: 0;
}
.hero__crosslink-text strong { color: #fff; font-weight: 600; }

/* Hero key facts strip */
.hero__facts {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.hero__facts > div {
  padding: 26px 32px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.hero__facts > div:first-child { border-left: none; padding-left: 0; }
.hero__facts-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #fff;
}
.hero__facts p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* -------------------- Inner page hero -------------------- */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 4px solid var(--color-secondary);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(14,58,95,0.94) 0%, rgba(8,43,72,0.90) 60%, rgba(26,143,176,0.80) 100%);
}
/* Stronger overlay when the bg photo is bright (e.g. office monitors) */
.page-hero--bright-bg .page-hero__bg {
  filter: brightness(0.55) saturate(0.75);
}
.page-hero--bright-bg::before {
  background: linear-gradient(135deg, rgba(14,58,95,0.92) 0%, rgba(8,43,72,0.90) 100%);
}
.page-hero .eyebrow { color: rgba(255,255,255,0.85); }
.page-hero__inner { max-width: 760px; }
.page-hero h1 {
  font-size: clamp(36px, 3.6vw, 52px);
  margin: 0 0 16px;
  color: #fff;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

/* -------------------- Section head -------------------- */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
  min-width: 0;
}
.section-head h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  margin-top: 12px;
  line-height: 1.2;
}
.section-head p {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.85;
}
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--centered .divider { margin-left: auto; margin-right: auto; }

/* -------------------- Logo strip (clients) -------------------- */
.logo-strip {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}
.logo-strip__label {
  position: relative;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 36px;
}
.logo-strip__track {
  display: flex;
  align-items: center;
  animation: scroll 42s linear infinite;
  width: max-content;
}
.logo-strip__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  /* Tussenruimte via margin (niet gap): zo is -50% exact één set breed en loopt
     de marquee naadloos/oneindig door zonder zichtbare sprong. */
  margin-right: 96px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 220ms ease, filter 220ms ease;
}
.logo-strip__item:hover { filter: grayscale(0%); opacity: 1; }
.logo-strip__item img {
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-strip__item--wide img { max-height: 42px; }
.logo-strip__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  white-space: nowrap;
}
.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------- Editorial intro split -------------------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  min-width: 0;
}
.intro-split__head h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.2;
}
.intro-split__head .eyebrow { margin-bottom: 12px; }
.intro-split__body p {
  font-size: 16.5px;
  line-height: 1.9;
}
.intro-split__body p + p { margin-top: 16px; }

/* -------------------- Home services preview (editorial, no boxed icons) -------------------- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border-soft);
}
.services-preview__item {
  padding: 52px 44px 52px 0;
  border-bottom: 1px solid var(--color-border-soft);
  border-right: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 220ms ease;
}
.services-preview__item:nth-child(3n) { border-right: none; padding-right: 0; padding-left: 44px; }
.services-preview__item:nth-child(3n+1) { padding-left: 0; }
.services-preview__item:nth-child(3n+2) { padding-left: 44px; padding-right: 44px; }
.services-preview__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-secondary-text);
}
.services-preview__item h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
  transition: color 200ms ease;
}
/* Subtiele, randveilige hover (geen full-bleed vlak dat tegen de paginarand loopt). */
.services-preview__item:hover h3 { color: var(--color-secondary-text); }
.services-preview__item p {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

/* -------------------- Diensten — editorial detail rows -------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid var(--color-border-soft);
  align-items: start;
}
.service-detail:last-child { border-bottom: 1px solid var(--color-border-soft); }
.service-detail__num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-secondary-text);
  text-transform: uppercase;
  padding-top: 6px;
}
.service-detail__num small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}
.service-detail h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.service-detail p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.service-detail p:last-child { margin-bottom: 0; }

/* -------------------- ISO/NEN deep section -------------------- */
.iso-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  min-width: 0;
}
.iso-block__intro p {
  font-size: 16.5px;
  line-height: 1.9;
}
.iso-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.iso-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15.5px;
  line-height: 1.8;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border-soft);
}
.iso-list li:last-child { border-bottom: none; padding-bottom: 0; }
.iso-list li::before {
  content: "";
  display: block;
  margin-top: 14px;
  width: 18px;
  height: 2px;
  background: var(--color-secondary);
}
.iso-list strong { color: var(--color-primary); font-weight: 600; }

/* Auditperspectief — flat editorial callout, no badge circle */
.audit-callout {
  background: var(--gradient-deep);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.audit-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(26,143,176,0.30), transparent 55%);
  pointer-events: none;
}
.audit-callout__label {
  position: relative;
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.audit-callout__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  display: block;
}
.audit-callout h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 16px;
  position: relative;
}
.audit-callout p {
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 14px;
  position: relative;
}
.audit-callout__credentials {
  position: relative;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audit-callout__credentials dt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  margin-bottom: 4px;
}
.audit-callout__credentials dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}

/* -------------------- AI focus list (no circles) -------------------- */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
  min-width: 0;
}
.ai-grid__advice h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.ai-grid__advice p {
  font-size: 16px;
  line-height: 1.85;
}
.ai-focus {
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  padding: 36px 36px;
}
.ai-focus h4 {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-soft);
}
.ai-focus ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.ai-focus li {
  padding: 16px 0;
  font-size: 14.5px;
  line-height: 1.7;
  border-bottom: 1px solid var(--color-border-soft);
}
.ai-focus li:first-child { padding-top: 0; }
.ai-focus li:last-child { border-bottom: none; padding-bottom: 0; }
.ai-focus li strong {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14.5px;
}

/* -------------------- AI timeline (clean editorial, no dots) -------------------- */
.timeline-head {
  max-width: 820px;
  margin-bottom: 40px;
}
.timeline-head h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 10px;
}
.timeline-head p {
  font-size: 15.5px;
  line-height: 1.85;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  min-width: 0;
  border-top: 2px solid var(--color-primary);
}
.tl-card {
  background: #fff;
  padding: 36px 40px 32px;
  border-right: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tl-card:last-child { border-right: none; }
.tl-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--color-secondary);
}
.tl-card--future::before { background: var(--color-primary-deep); }
.tl-card__date {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-secondary-text);
}
.tl-card--future .tl-card__date { color: var(--color-text-muted); }
.tl-card h4 {
  font-size: 18px;
  line-height: 1.3;
}
.tl-card p {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

.timeline-frame {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  background: #fff;
}
.timeline-frame h4 {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 16px;
}
.timeline-frame p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.timeline-frame__authorities {
  list-style: none;
  padding: 24px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--color-border-soft);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.timeline-frame__authorities li {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}
.timeline-frame__authorities li::before {
  content: "";
  margin-top: 10px;
  width: 10px;
  height: 1px;
  background: var(--color-secondary);
}
.timeline-frame__fine {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-primary);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-primary);
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
}
.timeline-frame__fine strong { font-weight: 600; }

/* -------------------- Specialismen band -------------------- */
.specialisms {
  background: var(--gradient-primary);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.specialisms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(8,43,72,0.5), transparent 50%);
  pointer-events: none;
}
.specialisms__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-width: 0;
}
.specialisms .eyebrow { color: rgba(255,255,255,0.85); }
.specialisms h2 {
  color: #fff;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.25;
  margin-bottom: 28px;
}
.specialism-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.specialism-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  line-height: 1.55;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.specialism-list li::before {
  content: "";
  margin-top: 9px;
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.65);
}

/* -------------------- About split -------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  min-width: 0;
}
.about-split__visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-light);
  box-shadow: -50px 50px 0 var(--color-shadow);
}
.about-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split__content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-split__content h2 { margin-bottom: 10px; }

/* Founder card (over ons) */
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  padding: 48px;
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  min-width: 0;
}
.founder__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  background: var(--gradient-deep);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.founder__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(26,143,176,0.4), transparent 60%);
}
.founder__photo span {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -2px;
  color: rgba(255,255,255,0.92);
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__name {
  font-size: 24px;
  margin-bottom: 6px;
}
.founder__role {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 22px;
}
.founder p {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.founder__credentials {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-soft);
}
.founder__credentials dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.founder__credentials dd {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.55;
}

/* Client experience list (over ons) */
.experience-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border-soft);
}
.experience-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.3px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: center;
}
.experience-list li::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--color-secondary);
}

/* -------------------- DVAD ICT band -------------------- */
.ict-band {
  background: var(--gradient-deep);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ict-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 30%, rgba(26,143,176,0.30), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.06), transparent 55%);
  pointer-events: none;
}
.ict-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-width: 0;
}
.ict-band .eyebrow { color: rgba(255,255,255,0.85); }
.ict-band h2 {
  color: #fff;
  font-size: clamp(28px, 2.6vw, 36px);
  margin-bottom: 22px;
}
.ict-band p {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.ict-band__visual { display: grid; place-items: center; }
.ict-logo-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 44px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  text-align: center;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ict-logo-card { padding: 32px; }
.ict-logo-card img { width: 100%; height: auto; max-width: 100%; }

/* -------------------- Testimonials slider -------------------- */
.testimonial-slider {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider__viewport {
  overflow: hidden;
}
.testimonial-slider__track {
  display: flex;
  transition: transform 480ms cubic-bezier(.4,0,.2,1);
}
.testimonial-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 8px;
}
.testimonial__mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.30;
  margin-bottom: 6px;
}
.testimonial__quote {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 32px;
  text-wrap: balance;
}
.testimonial__attribution {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--color-text-body);
  font-weight: 600;
  text-transform: uppercase;
}
.testimonial__attribution span {
  display: block;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-size: 14px;
}

.testimonial-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.testimonial-arrow:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.testimonial-dots {
  display: flex;
  gap: 24px;
  align-items: center;
}
.testimonial-dots button {
  width: 28px;
  height: 2px;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, width 220ms ease;
}
.testimonial-dots button[aria-current="true"] {
  background: var(--color-secondary);
  width: 48px;
}

/* -------------------- Contact -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  min-width: 0;
}
.contact-info p {
  font-size: 16px;
  line-height: 1.85;
}
.contact-info dl {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 18px;
  column-gap: 24px;
}
.contact-info dt {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
}
.contact-info dd {
  margin: 0;
  font-size: 15.5px;
  color: var(--color-text-body);
  line-height: 1.6;
  word-break: break-word;
}
.contact-info dd a { transition: color 180ms ease; }
.contact-info dd a:hover { color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: 0 25px 80px var(--color-shadow);
  display: grid;
  gap: 18px;
}
.contact-form h3 { font-size: 22px; margin: 0 0 4px; }
.contact-form > p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.field input,
.field textarea,
.field select {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--color-text-body);
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-button);
  padding: 13px 14px;
  outline: none;
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14,58,95,0.10);
}
.field textarea { min-height: 140px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.captcha {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.captcha__image {
  width: 150px;
  height: 52px;
  border-radius: var(--radius-button);
  background:
    repeating-linear-gradient(45deg, rgba(14,58,95,0.06) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #f0f4f8, #e6edf4);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  position: relative;
  user-select: none;
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--color-primary);
  text-shadow: 1px 1px 0 rgba(26,143,176,0.20);
  font-style: italic;
}
.captcha__image::before,
.captcha__image::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px;
  height: 1px;
  background: var(--color-secondary);
  opacity: 0.55;
}
.captcha__image::before { top: 18px; transform: rotate(-3deg); }
.captcha__image::after  { bottom: 18px; transform: rotate(2deg); }
.captcha__refresh {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border: none;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  color: var(--color-primary);
  font-size: 11px;
  cursor: pointer;
  display: grid; place-items: center;
}
.captcha__refresh:hover { background: #fff; color: var(--color-secondary); }
.form-note {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 4px 0 0;
}
.form-success {
  display: none;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--color-primary);
}
.form-success i { color: var(--color-secondary); margin-right: 10px; }
.contact-form[data-submitted="true"] .form-fields { display: none; }
.contact-form[data-submitted="true"] .form-success { display: block; }

/* -------------------- CTA Block (mini) -------------------- */
.cta-block {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card);
  box-shadow: 0 15px 80px var(--color-shadow-medium);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.cta-block h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 8px;
}
.cta-block p { font-size: 15.5px; margin: 0; max-width: 56ch; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--gradient-deep);
  color: #fff;
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(26,143,176,0.22), transparent 55%),
    radial-gradient(ellipse at 5% 100%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}
.site-footer p, .site-footer a, .site-footer li {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.8;
}
.site-footer a { transition: color 180ms ease; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  min-width: 0;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 360px; }
.footer-brand img {
  height: 96px;
  width: auto;
  /* Logo wit maken op de donkere footer (zoals dvadict.nl). */
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: 14.5px; line-height: 1.7; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  word-break: break-word;
}
.footer-contact-list i { color: var(--color-secondary-soft); margin-top: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}
.footer-bottom a:hover { color: #fff; }

/* -------------------- Responsive -------------------- */
@media (max-width: 1100px) {
  .iso-block { grid-template-columns: 1fr; gap: 56px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .specialisms__inner { grid-template-columns: 1fr; gap: 40px; }
  .ict-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 1024px) {
  .hero { padding: 100px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero__crosslink { grid-template-columns: 1fr; gap: 16px; }
  .hero__crosslink-logo { justify-self: start; }
  .services-preview { grid-template-columns: repeat(2, 1fr); }
  .services-preview__item { padding: 40px 28px !important; border-right: 1px solid var(--color-border-soft) !important; }
  .services-preview__item:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
  .services-preview__item:nth-child(2n+1) { padding-left: 0 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline { grid-template-columns: 1fr; }
  .tl-card { border-right: none; border-bottom: 1px solid var(--color-border-soft); }
  .tl-card:last-child { border-bottom: none; }
  .specialism-list { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .founder__photo { max-width: 240px; }
  .experience-list { grid-template-columns: 1fr 1fr; }
  .hero__facts { grid-template-columns: 1fr; margin-top: 40px; border-top: none; }
  .hero__facts > div { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); padding: 28px 0; }
  .hero__facts > div:first-child { padding-top: 28px; }
  .hero__facts-title { margin-bottom: 9px; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .cta-block { grid-template-columns: 1fr; padding: 40px; }
  .audit-callout__credentials { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner { padding: 12px var(--gutter); gap: 12px; }
  .brand img { height: 80px; }

  .nav {
    position: fixed;
    inset: 0;
    top: 68px;
    padding: 28px var(--gutter) 40px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 200ms ease;
    border-top: 1px solid var(--color-border-soft);
    box-shadow: 0 30px 60px var(--color-shadow-medium);
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link {
    font-size: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border-soft);
    letter-spacing: 1.5px;
  }
  .nav__link:hover, .nav__link[aria-current="page"] {
    border-bottom-color: var(--color-border-soft);
    color: var(--color-secondary-text);
  }
  .nav__cta { margin: 16px 0 0; text-align: center; justify-content: center; padding: 16px 24px; }
  body[data-nav-open="true"] { overflow: hidden; }
  .utility-bar { font-size: 12px; }
  .utility-bar__inner { padding: 8px var(--gutter); gap: 12px; flex-wrap: wrap; }
  .utility-bar__group { gap: 16px; }
  .timeline-frame__authorities { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --gutter: 20px; }
  .section { padding: 64px 0; }
  .section--compact { padding: 48px 0; }
  .hero { padding: 64px 0 56px; }
  .page-hero { padding: 64px 0 48px; }

  .services-preview { grid-template-columns: 1fr; }
  .services-preview__item { padding: 32px 0 !important; }

  .ict-band, .specialisms { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-form { padding: 28px 22px; }
  .field--row { grid-template-columns: 1fr; gap: 12px; }
  .contact-info dl { grid-template-columns: 1fr; row-gap: 4px; }
  .contact-info dt { margin-top: 12px; }
  .btn { padding: 14px 22px; font-size: 12px; letter-spacing: 1.5px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .ai-focus { padding: 28px 22px; }
  .timeline-frame { padding: 28px 22px; }
  .audit-callout { padding: 32px 24px; }
  .about-split__visual { box-shadow: -20px 20px 0 var(--color-shadow); }
  .service-detail { padding: 40px 0; }
  .service-detail h3 { font-size: 22px; }
  .experience-list { grid-template-columns: 1fr; }
  .cta-block { padding: 32px 24px; gap: 24px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 32px; line-height: 1.1; }
  .testimonial__quote { font-size: 17px; line-height: 1.55; }
  .captcha { grid-template-columns: 1fr; }
}

/* -------------------- Server-side form feedback (WP) -------------------- */
.form-feedback {
  border-radius: var(--radius-button);
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.form-feedback--ok {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}
.form-feedback--err {
  background: #fdecec;
  border: 1px solid #e3b4b2;
  color: #9a2b27;
}

/* -------------------- Blog / artikel / 404 / zoeken (WP fallbacks) -------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  min-width: 0;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--color-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 60px var(--color-shadow-medium); }
.post-card__image { aspect-ratio: 16 / 10; background: var(--color-bg-light); overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card__meta { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--color-secondary-text); }
.post-card h3 { font-size: 19px; line-height: 1.35; }
.post-card p { font-size: 14.5px; line-height: 1.7; margin: 0; }
.post-card .btn--link { margin-top: auto; }

.article { max-width: 760px; margin: 0 auto; padding: 72px var(--gutter); }
.article__body p { font-size: 17px; line-height: 1.85; margin-bottom: 1.2em; }
.article__body h2 { font-size: clamp(24px, 2.4vw, 30px); margin: 1.6em 0 .5em; }
.article__body h3 { font-size: 20px; margin: 1.4em 0 .4em; }
.article__body ul, .article__body ol { font-size: 16.5px; line-height: 1.85; padding-left: 1.4em; margin-bottom: 1.2em; }

.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 44px; min-height: 44px;
  border: 1px solid var(--color-border); border-radius: var(--radius-button);
  font-weight: 600; font-size: 14px; color: var(--color-primary);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.pagination .page-numbers.current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination a.page-numbers:hover { background: var(--color-bg-light); }

.search-results__empty { font-size: 16.5px; color: var(--color-text-muted); }
.search-results__form { margin-top: 24px; max-width: 480px; }

.error-404__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.error-404__code { display: block; font-size: clamp(64px, 12vw, 140px); font-weight: 700; line-height: 1; color: var(--color-bg-soft); }
.error-404__title { font-size: clamp(26px, 3vw, 36px); margin: 8px 0 16px; }
.error-404 p { font-size: 16.5px; margin-bottom: 28px; }

@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .post-grid { grid-template-columns: 1fr; } }

/* -------------------- E-mailadres: volle breedte, nette afbreking -------------------- */
/* Contact-dl als één kolom zodat lange waarden (e-mail) 100% breedte krijgen. */
.contact-info dl { grid-template-columns: 1fr; row-gap: 6px; }
.contact-info dt { margin-top: 14px; }
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { word-break: normal; overflow-wrap: anywhere; }
.contact-info dd a { overflow-wrap: anywhere; }
/* Utility-bar: e-mail niet midden in het adres afbreken; groep mag wrappen. */
.utility-bar__group { flex-wrap: wrap; }
.utility-bar a { overflow-wrap: anywhere; }
.footer-contact-list li, .footer-contact-list a { overflow-wrap: anywhere; min-width: 0; }

/* -------------------- Tikruimte inline links (WCAG 2.5.8, ≥24px) -------------------- */
.footer-grid ul a, .footer-bottom a { display: inline-block; padding-block: 3px; }
.contact-info dd a { display: inline-block; padding-block: 2px; }
.utility-bar a { padding-block: 3px; }
