/* ==========================================================================
   ACSB — Design System
   Type: Manrope, used for both display headings and body/UI text
   ========================================================================== */

:root{
  /* Color */
  --ink:        #171717; /* Deep Charcoal */
  --red:        #E3161E; /* ACSB Red — from brand mark */
  --red-dark:   #B80F16;
  --paper:      #FFFFFF;
  --warm:       #FAF9F7; /* Warm White */
  --beige:      #F3EFEB; /* Soft Beige */
  --muted:      #6B6865; /* Warm Grey */
  --line:       #E4DFD8; /* Light Grey */
  --line-strong:#D8D2C9;

  /* Type */
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1220px;
  --gutter: clamp(24px, 5vw, 64px);
  --radius: 2px;
  --shadow-soft: 0 24px 60px rgba(23,23,23,.07);
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; }

h1,h2,h3,h4,p,figure{ margin: 0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
h1{ font-size: clamp(2.7rem, 5.4vw, 4.6rem); font-weight: 800; }
h2{ font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3{ font-size: clamp(1.2rem, 1.6vw, 1.4rem); font-weight: 600; }

p{ color: var(--ink); }
.lede{ color: var(--muted); font-size: 1.08rem; max-width: 46ch; }

/* Skip link */
.skip-link{
  position: absolute; left: -999px; top: auto;
  background: var(--ink); color: #fff; padding: 14px 20px;
  z-index: 999; font-size: .85rem; font-weight: 600;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Layout helpers */
.container{ width: min(100% - (var(--gutter) * 2), var(--max)); margin-inline: auto; }
.section{ padding: clamp(64px, 9vw, 116px) 0; }
.section-tight{ padding: clamp(48px, 6vw, 76px) 0; }
.section-beige{ background: var(--beige); }
.section-warm{ background: var(--warm); }
.section-ink{ background: var(--ink); color: #fff; }
.section-ink h2, .section-ink h3{ color: #fff; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
}
.eyebrow::before{ content: ""; width: 30px; height: 1.5px; background: var(--red); flex-shrink: 0; }

.section-head{ max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head p{ margin-top: 16px; }

/* Buttons */
.btn{
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 52px; padding: 0 26px;
  font-size: .87rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg{ transition: transform .2s var(--ease); flex-shrink: 0; }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(227,22,30,.22); }
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost{ background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--ink); }
.btn-on-ink{ border-color: rgba(255,255,255,.35); color: #fff; }
.btn-on-ink:hover{ border-color: #fff; }
.btn-block{ width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header{
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,249,247,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), padding .25s var(--ease);
}
.site-header.is-scrolled{ border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(23,23,23,.02); }
.nav-wrap{ display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 96px; transition: min-height .25s var(--ease); }
.site-header.is-scrolled .nav-wrap{ min-height: 82px; }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ width: 76px; height: auto; }
.brand-word{ font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; }

.main-nav{ display: flex; align-items: center; gap: 8px; }
.main-nav ul{ display: flex; align-items: center; gap: 6px; }
.main-nav a:not(.btn){
  position: relative; display: inline-block; padding: 8px 4px; margin: 0 8px;
  font-size: .89rem; font-weight: 550; color: var(--ink);
}
.main-nav a:not(.btn)::after{
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 3px; height: 1.5px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.main-nav a:not(.btn):hover::after,
.main-nav a[aria-current="page"]::after{ transform: scaleX(1); }
.main-nav a[aria-current="page"]{ color: var(--red); }
.main-nav .btn{ margin-left: 12px; }

.nav-toggle{
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line-strong); background: none;
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span::before{ transform: translateY(-6px); }
.nav-toggle span::after{ transform: translateY(4.5px); }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ transform: translateY(0) rotate(-45deg); }

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset: 96px 0 0 0; background: var(--warm);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 8px var(--gutter) 32px; gap: 0;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a:not(.btn){ margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav a:not(.btn)::after{ display: none; }
  .main-nav .btn{ margin: 20px 0 0; }
  .nav-toggle{ display: inline-flex; }
  .brand img{ width: 68px; }
  .nav-wrap{ min-height: 88px; }
  .main-nav{ inset: 88px 0 0 0; }
}

/* ---- Breadcrumbs ---- */
.breadcrumbs{ padding: 20px 0; font-size: .8rem; color: var(--muted); }
.breadcrumbs a{ color: var(--muted); }
.breadcrumbs a:hover{ color: var(--red); }
.breadcrumbs span[aria-hidden]{ margin: 0 8px; opacity: .5; }
.breadcrumbs [aria-current]{ color: var(--ink); }

/* ---- Hero (home) ---- */
.hero{ padding: clamp(28px,4vw,44px) 0 0; }
.hero-grid{ display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(32px, 5vw, 64px); }
.hero-copy h1{ margin-bottom: 22px; }
.hero-copy h1 em{ color: var(--red); font-style: italic; }
.hero-copy .lede{ max-width: 46ch; margin-bottom: 32px; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo{
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius);
  background: var(--beige);
}
.hero-photo img{ width: 100%; height: 100%; object-fit: cover; }
.hero-photo::before{
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(23,23,23,.08); pointer-events: none;
}
.hero-photo::after{
  content: ""; position: absolute; left: -14px; top: 40px; bottom: 40px; width: 3px; background: var(--red);
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-photo{ order: -1; aspect-ratio: 5/4; margin-inline: calc(var(--gutter) * -1); border-radius: 0; }
  .hero-photo::after{ display: none; }
}

/* ---- Page hero (subpages) ---- */
.page-hero{ padding: clamp(32px,5vw,56px) 0 clamp(48px,6vw,80px); }
.page-hero h1{ max-width: 18ch; }
.page-hero .lede{ margin-top: 20px; max-width: 52ch; }

/* ---- Trust strip ---- */
.trust-strip{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip ul{
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-strip li{
  padding: 22px 18px; text-align: center; font-size: .78rem; font-weight: 650;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ink);
  border-left: 1px solid var(--line);
}
.trust-strip li:first-child{ border-left: 0; }
@media (max-width: 900px){
  .trust-strip ul{ grid-template-columns: repeat(2, 1fr); }
  .trust-strip li{ border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip li:nth-child(1), .trust-strip li:nth-child(2){ border-top: 0; }
}

/* ---- Service / card grids ---- */
.card-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card{ background: #fff; padding: 40px 30px 32px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); position: relative; z-index: 2; }
.card-icon{
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 24px;
  border: 1px solid rgba(227,22,30,.3); border-radius: 50%; color: var(--red);
}
.card h3{ margin-bottom: 10px; }
.card p{ color: var(--muted); font-size: .92rem; min-height: 4.6em; }
.card-link{ display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .85rem; font-weight: 650; color: var(--red); }
.card-link svg{ transition: transform .2s var(--ease); }
.card-link:hover svg{ transform: translateX(3px); }
@media (max-width: 900px){ .card-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }

/* ---- Audience grid ("Voor wie") ---- */
.audience-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.audience-card{ padding-top: 24px; border-top: 2px solid var(--ink); }
.audience-card h3{ margin-bottom: 10px; }
.audience-card p{ color: var(--muted); font-size: .92rem; }
@media (max-width: 900px){ .audience-grid{ grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (max-width: 560px){ .audience-grid{ grid-template-columns: 1fr; } }

/* ---- Story / about split ---- */
.story-grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-copy p + p{ margin-top: 16px; }
.story-copy .lede{ max-width: 52ch; }
.principle-list li{
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line-strong);
}
.principle-list li:last-child{ border-bottom: 0; }
.principle-list .mark{
  display: grid; place-items: center; width: 34px; height: 34px; margin-top: 2px;
  border-radius: 50%; background: #fff; color: var(--red); border: 1px solid rgba(227,22,30,.3);
  font-size: .9rem;
}
.principle-list p{ margin: 0; font-size: .95rem; }
@media (max-width: 900px){ .story-grid{ grid-template-columns: 1fr; } }

/* ---- Process / werkwijze ---- */
.process-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step{ background: var(--warm); padding: 36px 28px 40px; }
.process-num{ font-family: var(--font-display); font-size: 1rem; color: var(--red); font-weight: 600; margin-bottom: 18px; display: block; }
.process-step h3{ margin-bottom: 10px; }
.process-step p{ color: var(--muted); font-size: .92rem; }
@media (max-width: 900px){ .process-grid{ grid-template-columns: 1fr; } }

/* ---- Why ACSB (statement split) ---- */
.statement-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.statement{ font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.28; }
.statement em{ color: var(--red); font-style: italic; }
@media (max-width: 900px){ .statement-grid{ grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonial-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial{ background: #fff; border: 1px solid var(--line); padding: 32px 28px; }
.testimonial .quote-mark{ display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--red); line-height: 1; margin-bottom: 8px; }
.testimonial blockquote{ margin: 0 0 20px; font-size: .96rem; font-style: italic; color: var(--ink); }
.testimonial cite{ font-style: normal; font-size: .82rem; color: var(--muted); }
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns: 1fr; } }

.reference-placeholder{
  border: 1px dashed var(--line-strong); background: var(--warm);
  padding: 48px 32px; text-align: center;
}
.reference-placeholder p{ color: var(--muted); font-size: .95rem; max-width: 44ch; margin: 12px auto 0; }
.reference-placeholder .eyebrow{ justify-content: center; }

/* ---- FAQ ---- */
.faq-list{ border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; background: none; border: 0; padding: 22px 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q .plus{ position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after{ content: ""; position: absolute; background: var(--red); transition: transform .25s var(--ease); }
.faq-q .plus::before{ left: 0; top: 50%; width: 18px; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after{ top: 0; left: 50%; width: 1.5px; height: 18px; transform: translateX(-50%); }
.faq-item[open] .faq-q .plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{ padding: 0 0 24px; color: var(--muted); font-size: .95rem; max-width: 64ch; }
.faq-item summary{ list-style: none; }
.faq-item summary::-webkit-details-marker{ display: none; }

/* ---- CTA band ---- */
.cta-band{ background: linear-gradient(120deg, var(--beige), var(--warm)); text-align: center; padding: clamp(56px,7vw,90px) 0; }
.cta-band h2{ margin-bottom: 14px; }
.cta-band .lede{ margin: 0 auto 32px; }
.cta-actions{ display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- Contact page ---- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); }
.contact-info dl{ margin: 28px 0 0; }
.contact-info .row{ display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-info .row:first-child{ padding-top: 0; }
.contact-info .row svg{ color: var(--red); margin-top: 3px; }
.contact-info dt{ font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.contact-info dd{ margin: 0; font-weight: 550; }
.contact-info dd a:hover{ color: var(--red); }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

.form-field{ margin-bottom: 20px; }
.form-field label{ display: block; font-size: .82rem; font-weight: 650; margin-bottom: 8px; }
.form-field .req{ color: var(--red); }
.form-field input, .form-field textarea{
  width: 100%; padding: 14px 16px; font: inherit; font-size: .95rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius); background: #fff;
  transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus{ border-color: var(--red); outline: none; }
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-error{ display: none; color: var(--red); font-size: .78rem; margin-top: 6px; }
.form-field.has-error input, .form-field.has-error textarea{ border-color: var(--red); }
.form-field.has-error .form-error{ display: block; }
.form-note{ font-size: .78rem; color: var(--muted); margin-top: 18px; }
.form-status{ padding: 16px 18px; border-radius: var(--radius); font-size: .9rem; margin-top: 18px; display: none; }
.form-status.is-success{ display: block; background: #EEF6EE; color: #2A6B2A; border: 1px solid #CFE6CF; }
.form-status.is-error{ display: block; background: #FBECEC; color: #A32424; border: 1px solid #F0C7C7; }

/* ---- Map card ---- */
.map-card{ border: 1px solid var(--line); background: #fff; }
.map-frame{
  display: block; width: 100%; height: 340px; border: 0;
  filter: grayscale(0.85) contrast(1.05);
  transition: filter .35s var(--ease);
}
.map-card:hover .map-frame, .map-card:focus-within .map-frame{ filter: grayscale(0); }
.map-caption{
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 26px; border-top: 1px solid var(--line);
}
@media (max-width: 560px){ .map-frame{ height: 260px; } }

/* ---- Footer ---- */
.site-footer{ background: var(--ink); color: rgba(255,255,255,.72); }
.footer-top{ display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 48px; padding: clamp(48px,6vw,72px) 0 48px; }
.footer-brand{ display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img{ width: 150px; height: auto; opacity: .98; flex-shrink: 0; }
.footer-brand strong{ color: #fff; font-family: var(--font-display); font-size: 1.05rem; display: block; margin-bottom: 6px; }
.footer-brand p{ margin: 0; font-size: .86rem; line-height: 1.6; }
.footer-col h4{ color: #fff; font-family: var(--font-body); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 650; }
.footer-col ul{ display: grid; gap: 10px; font-size: .88rem; }
.footer-col a:hover{ color: #fff; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .78rem; }
.footer-bottom .container{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover{ color: #fff; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---- Sticky mobile CTA ---- */
.mobile-cta{
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: 12px var(--gutter); background: rgba(250,249,247,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn{ width: 100%; }
@media (max-width: 900px){ .mobile-cta{ display: block; } body{ padding-bottom: 76px; } }

/* ---- WhatsApp floating button ---- */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 58;
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 20px 0 16px; border-radius: 999px;
  background: #171717; color: #fff; box-shadow: 0 14px 32px rgba(23,23,23,.22);
  font-size: .85rem; font-weight: 650;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.whatsapp-fab:hover{ background: var(--red); transform: translateY(-2px); }
.whatsapp-fab svg{ flex-shrink: 0; }
.whatsapp-fab .fab-label{ white-space: nowrap; }
@media (max-width: 900px){
  .whatsapp-fab{ bottom: 92px; right: 16px; height: 48px; padding: 0 16px 0 14px; }
}
@media (max-width: 420px){
  .whatsapp-fab .fab-label{ display: none; }
  .whatsapp-fab{ padding: 0; width: 48px; justify-content: center; }
}

/* ---- Scroll reveal ---- */
[data-reveal]{ opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* ---- Utility ---- */
.visually-hidden{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ---- Language switch ---- */
.language-switch{ display:inline-flex; align-items:center; gap:3px; padding:3px; margin-left:auto; margin-right:14px; border:1px solid var(--line-strong); border-radius:999px; background:rgba(255,255,255,.82); }
.language-switch a{ display:grid; place-items:center; min-width:34px; height:30px; padding:0 8px; border-radius:999px; font-size:.72rem; font-weight:750; letter-spacing:.05em; color:var(--muted); transition:background .2s var(--ease),color .2s var(--ease); }
.language-switch a:hover{ color:var(--ink); }
.language-switch a[aria-current="true"]{ background:var(--ink); color:#fff; }
@media (max-width:900px){ .language-switch{ margin:18px 0 4px; align-self:flex-start; } }

.hero-about-link{ margin: 18px 0 0; }
.hero-about-link .card-link{ font-size: .92rem; }

/* ========================================================================
   Mobile refinement — 2026
   Improves readability, line wrapping, touch targets and small-screen flow
   without changing the desktop design.
   ======================================================================== */
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Prevent visually awkward single-word lines where supported. */
h1, h2, h3, h4, .statement, .eyebrow, .faq-q, .btn, .card-link{
  text-wrap: balance;
}
p, blockquote, li, dd, .lede{
  text-wrap: pretty;
  orphans: 2;
  widows: 2;
}

/* Long contact details should never force horizontal scrolling. */
.contact-info dd,
.footer-col a,
.form-note,
.testimonial cite{
  overflow-wrap: anywhere;
}

@media (max-width: 900px){
  body{
    overflow-x: hidden;
  }
  .main-nav{
    height: calc(100dvh - 88px);
    max-height: calc(100dvh - 88px);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav a:not(.btn){
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .language-switch a{
    min-width: 42px;
    height: 38px;
    font-size: .78rem;
  }
  .hero-copy,
  .story-copy,
  .contact-info,
  .section-head,
  .page-hero{
    min-width: 0;
  }
  .hero-actions,
  .cta-actions{
    align-items: stretch;
  }
  .btn{
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    justify-content: center;
  }
  .testimonial-grid{
    gap: 18px;
  }
  .testimonial{
    padding: 28px 24px;
  }
  .footer-top{
    gap: 34px;
  }
}

@media (max-width: 600px){
  :root{
    --gutter: 20px;
  }
  body{
    font-size: 16px;
    line-height: 1.62;
  }
  h1{
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: -.025em;
  }
  h2{
    font-size: clamp(1.72rem, 8vw, 2.15rem);
    line-height: 1.12;
  }
  h3{
    font-size: 1.18rem;
    line-height: 1.22;
  }
  .lede{
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .section{
    padding: 56px 0;
  }
  .section-tight{
    padding: 44px 0;
  }
  .nav-wrap{
    min-height: 80px;
  }
  .site-header.is-scrolled .nav-wrap{
    min-height: 74px;
  }
  .brand img{
    width: 72px;
  }
  .main-nav{
    inset: 80px 0 0 0;
    height: calc(100dvh - 80px);
    max-height: calc(100dvh - 80px);
    padding: 6px var(--gutter) 26px;
  }
  .site-header.is-scrolled .main-nav{
    inset-top: 74px;
  }
  .hero{
    padding-top: 0;
  }
  .hero-grid{
    gap: 30px;
  }
  .hero-photo{
    aspect-ratio: 4 / 3;
  }
  .hero-copy h1{
    margin-bottom: 18px;
  }
  .hero-copy .lede{
    margin-bottom: 26px;
  }
  .hero-actions,
  .cta-actions{
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn,
  .cta-actions .btn{
    width: 100%;
    padding-inline: 18px;
  }
  .page-hero{
    padding: 24px 0 48px;
  }
  .page-hero h1{
    max-width: 100%;
  }
  .page-hero .lede{
    margin-top: 16px;
  }
  .breadcrumbs{
    padding: 14px 0;
    font-size: .76rem;
    white-space: normal;
  }
  .trust-strip ul{
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip li{
    padding: 16px 10px;
    font-size: .7rem;
    line-height: 1.35;
  }
  .card{
    padding: 30px 24px 28px;
  }
  .audience-grid{
    gap: 24px;
  }
  .audience-card,
  .process-step{
    min-width: 0;
  }
  .principle-list li{
    gap: 14px;
  }
  .testimonial{
    padding: 26px 22px;
  }
  .testimonial blockquote{
    font-size: .94rem;
    line-height: 1.65;
  }
  .faq-q{
    padding: 20px 0;
    line-height: 1.4;
  }
  .contact-grid{
    gap: 38px;
  }
  .form-field input,
  .form-field textarea{
    font-size: 16px; /* prevents iOS form zoom */
    padding: 14px;
  }
  .map-caption{
    padding: 18px 20px;
  }
  .footer-top{
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 42px;
  }
  .footer-brand{
    flex-direction: column;
    gap: 14px;
  }
  .footer-brand img{
    width: 150px;
  }
  .footer-bottom .container{
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-cta{
    padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
  }
  body{
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
  .whatsapp-fab{
    bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px){
  :root{ --gutter: 18px; }
  h1{ font-size: 2rem; }
  h2{ font-size: 1.68rem; }
  .trust-strip ul{ grid-template-columns: 1fr; }
  .trust-strip li{
    border-top: 1px solid var(--line);
  }
  .trust-strip li:first-child{ border-top: 0; }
  .btn{ padding-inline: 16px; }
}


/* ---- Page-specific photographic background visuals ---- */
body.page-personal .page-hero,
body.page-business .page-hero,
body.page-sales .page-hero,
body.page-interim .page-hero,
body.page-references .page-hero,
body.page-contact .page-hero{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.page-personal .page-hero::after,
body.page-business .page-hero::after,
body.page-sales .page-hero::after,
body.page-interim .page-hero::after,
body.page-references .page-hero::after,
body.page-contact .page-hero::after{
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: min(48vw, 700px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .34;
  pointer-events: none;
  filter: saturate(.78) contrast(.96);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.32) 18%, #000 52%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.32) 18%, #000 52%);
}
body.page-personal .page-hero::before,
body.page-business .page-hero::before,
body.page-sales .page-hero::before,
body.page-interim .page-hero::before,
body.page-references .page-hero::before,
body.page-contact .page-hero::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.97) 48%, rgba(255,255,255,.72) 72%, rgba(255,255,255,.34) 100%);
  pointer-events:none;
}
body.page-personal .page-hero::after{ background-image: url('https://images.pexels.com/photos/36729385/pexels-photo-36729385.jpeg?cs=srgb&dl=pexels-silverkblack-36729385.jpg&fm=jpg'); background-position: 58% center; }
body.page-business .page-hero::after{ background-image: url('https://images.pexels.com/photos/7869009/pexels-photo-7869009.jpeg?cs=srgb&dl=pexels-pavel-danilyuk-7869009.jpg&fm=jpg'); background-position: 55% center; }
body.page-sales .page-hero::after{ background-image: url('https://images.pexels.com/photos/36733316/pexels-photo-36733316.jpeg?cs=srgb&dl=pexels-silverkblack-36733316.jpg&fm=jpg'); background-position: center; }
body.page-interim .page-hero::after{ background-image: url('https://images.pexels.com/photos/7433859/pexels-photo-7433859.jpeg?cs=srgb&dl=pexels-vlada-karpovich-7433859.jpg&fm=jpg'); background-position: center; }
body.page-references .page-hero::after{
  background-image: url('../images/willem-jan-de-water-references-sharp.jpg');
  background-image: image-set(url('../images/willem-jan-de-water-references-sharp.webp') type('image/webp'), url('../images/willem-jan-de-water-references-sharp.jpg') type('image/jpeg'));
  background-position: 62% 36%;
  opacity: .26;
  filter: blur(4px);
  transform: scale(1.04);
}
body.page-references .page-hero::before{ background: linear-gradient(90deg, rgba(250,248,244,.96) 0%, rgba(250,248,244,.90) 42%, rgba(250,248,244,.72) 100%); }
@media (max-width: 760px){
  body.page-references .page-hero::after{ opacity:.18; filter:blur(6px); background-position:66% 30%; transform:scale(1.08); }
  body.page-references .page-hero::before{ background:rgba(250,248,244,.91); }
}
body.page-contact .page-hero::after{ background-image: url('https://images.pexels.com/photos/4342129/pexels-photo-4342129.jpeg?cs=srgb&dl=pexels-edmond-dantes-4342129.jpg&fm=jpg'); background-position: center; }

body.page-personal .page-hero .container,
body.page-business .page-hero .container,
body.page-sales .page-hero .container,
body.page-interim .page-hero .container,
body.page-references .page-hero .container,
body.page-contact .page-hero .container{
  position: relative;
  z-index: 1;
}

/* Tablet: image stays visible but remains secondary to the copy */
@media (max-width: 900px){
  body.page-personal .page-hero::after,
  body.page-business .page-hero::after,
  body.page-sales .page-hero::after,
  body.page-interim .page-hero::after,
  body.page-references .page-hero::after,
  body.page-contact .page-hero::after{
    width: 58vw;
    right: -8vw;
    opacity: .24;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.28) 24%, #000 58%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.28) 24%, #000 58%);
  }
  body.page-personal .page-hero::before,
  body.page-business .page-hero::before,
  body.page-sales .page-hero::before,
  body.page-interim .page-hero::before,
  body.page-references .page-hero::before,
  body.page-contact .page-hero::before{
    background:linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 58%, rgba(255,255,255,.62) 100%);
  }
}

/* Mobile: a soft full-width photographic layer, never competing with text */
@media (max-width: 620px){
  body.page-personal .page-hero::after,
  body.page-business .page-hero::after,
  body.page-sales .page-hero::after,
  body.page-interim .page-hero::after,
  body.page-references .page-hero::after,
  body.page-contact .page-hero::after{
    width: 100%;
    right: -34%;
    opacity: .14;
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.22) 30%, #000 68%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.22) 30%, #000 68%);
  }
  body.page-personal .page-hero::before,
  body.page-business .page-hero::before,
  body.page-sales .page-hero::before,
  body.page-interim .page-hero::before,
  body.page-references .page-hero::before,
  body.page-contact .page-hero::before{
    background:linear-gradient(90deg, rgba(255,255,255,.995) 0%, rgba(255,255,255,.97) 70%, rgba(255,255,255,.78) 100%);
  }
}

/* Contact page: soft background portrait from the homepage photo */
body.page-contact .page-hero{ position:relative; overflow:hidden; isolation:isolate; }
body.page-contact .page-hero::after{
  content:""; position:absolute; inset:0; z-index:-2; pointer-events:none;
  background-image:url('../images/willem-jan-de-water-contact-blur.jpg');
  background-image:image-set(url('../images/willem-jan-de-water-contact-blur.webp') type('image/webp'), url('../images/willem-jan-de-water-contact-blur.jpg') type('image/jpeg'));
  background-size:cover; background-position:52% 38%; opacity:.16; filter:blur(8px); transform:scale(1.08);
}
body.page-contact .page-hero::before{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:linear-gradient(90deg, rgba(250,248,244,.97) 0%, rgba(250,248,244,.91) 52%, rgba(250,248,244,.78) 100%);
}
@media (max-width: 768px){
  body.page-contact .page-hero::after{ opacity:.10; filter:blur(10px); background-position:58% 34%; transform:scale(1.12); }
  body.page-contact .page-hero::before{ background:rgba(250,248,244,.93); }
}

/* Contact portrait visibility correction */
body.page-contact .page-hero{position:relative;overflow:hidden;isolation:isolate;background:#faf8f4;}
body.page-contact .page-hero::after{
  z-index:0;
  inset:0;
  width:100%;
  right:auto;
  height:100%;
  opacity:.42;
  filter:blur(5px) saturate(.82);
  transform:scale(1.05);
  background-position:58% 34%;
  -webkit-mask-image:none;
  mask-image:none;
}
body.page-contact .page-hero::before{
  z-index:1;
  background:linear-gradient(90deg, rgba(250,248,244,.97) 0%, rgba(250,248,244,.90) 48%, rgba(250,248,244,.62) 100%);
}
body.page-contact .page-hero .container{position:relative;z-index:2;}
@media (max-width:768px){
  body.page-contact .page-hero::after{
    right:auto;
    width:100%;
    opacity:.28;
    filter:blur(6px) saturate(.78);
    transform:scale(1.08);
    background-position:60% 30%;
    -webkit-mask-image:none;
    mask-image:none;
  }
  body.page-contact .page-hero::before{
    background:rgba(250,248,244,.86);
  }
}

/* 2026-08-25 — Fotobalans ACSB: beelden op 85% zichtbaarheid met subtiele vervaging */
/* Referenties: eerdere homefoto duidelijker, niet meer sterk wazig */
body.page-references .page-hero::after{
  opacity:.85 !important;
  filter:blur(1px) saturate(.88) !important;
  transform:scale(1.015) !important;
}
body.page-references .page-hero::before{
  background:linear-gradient(90deg, rgba(250,248,244,.90) 0%, rgba(250,248,244,.78) 44%, rgba(250,248,244,.42) 100%) !important;
}

/* Over ACSB: portret iets zachter op 85%, zonder verlies van herkenbaarheid */
body.page-about .hero-photo img,
body.page-about-acsb .hero-photo img,
body[class*="page-about"] .hero-photo img{
  opacity:.85;
  filter:blur(.6px) saturate(.94);
}

/* Contact: gebruik de huidige homepagefoto als zachte achtergrond op 85% */
body.page-contact .page-hero::after{
  background-image:url('../images/willem-jan-de-water-hero.jpg') !important;
  background-image:image-set(url('../images/willem-jan-de-water-hero.webp') type('image/webp'), url('../images/willem-jan-de-water-hero.jpg') type('image/jpeg')) !important;
  background-size:cover !important;
  background-position:52% 38% !important;
  opacity:.85 !important;
  filter:blur(3px) saturate(.82) !important;
  transform:scale(1.035) !important;
}
body.page-contact .page-hero::before{
  background:linear-gradient(90deg, rgba(250,248,244,.92) 0%, rgba(250,248,244,.82) 46%, rgba(250,248,244,.55) 100%) !important;
}

@media (max-width:760px){
  body.page-references .page-hero::after{
    opacity:.85 !important;
    filter:blur(1.2px) saturate(.86) !important;
    background-position:66% 30% !important;
    transform:scale(1.025) !important;
  }
  body.page-references .page-hero::before{
    background:rgba(250,248,244,.78) !important;
  }
  body.page-contact .page-hero::after{
    opacity:.85 !important;
    filter:blur(3.5px) saturate(.80) !important;
    background-position:58% 34% !important;
    transform:scale(1.05) !important;
  }
  body.page-contact .page-hero::before{
    background:rgba(250,248,244,.84) !important;
  }
}

/* 2026-08-25 — Referenties scherper + zachte overgang naar tekst */
body.page-references .page-hero::after{
  opacity:.92 !important;
  filter:saturate(.94) contrast(1.02) !important;
  transform:scale(1.005) !important;
  background-position:68% 34% !important;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.10) 24%, rgba(0,0,0,.58) 48%, #000 70%) !important;
  mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.10) 24%, rgba(0,0,0,.58) 48%, #000 70%) !important;
}
body.page-references .page-hero::before{
  background:linear-gradient(90deg, rgba(250,248,244,.98) 0%, rgba(250,248,244,.95) 36%, rgba(250,248,244,.62) 58%, rgba(250,248,244,.16) 100%) !important;
}

/* Business coaching — zakelijke sparring: ondernemen doe je niet alleen */
body.page-business .page-hero::after{
  background-image:url('https://images.pexels.com/photos/36733333/pexels-photo-36733333.jpeg?auto=compress&cs=tinysrgb&w=1800') !important;
  background-position:68% center !important;
  opacity:.72 !important;
  filter:saturate(.86) contrast(.98) !important;
  transform:scale(1.01) !important;
}
body.page-business .page-hero::before{
  background:linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 45%, rgba(255,255,255,.66) 68%, rgba(255,255,255,.24) 100%) !important;
}

@media (max-width:760px){
  body.page-references .page-hero::after{
    opacity:.78 !important;
    filter:saturate(.92) contrast(1.02) !important;
    background-position:72% 30% !important;
    transform:scale(1.01) !important;
    -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,.42) 0%, #000 46%, rgba(0,0,0,.58) 100%) !important;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.42) 0%, #000 46%, rgba(0,0,0,.58) 100%) !important;
  }
  body.page-references .page-hero::before{
    background:rgba(250,248,244,.74) !important;
  }
  body.page-business .page-hero::after{
    background-position:64% center !important;
    opacity:.34 !important;
    filter:saturate(.82) !important;
    transform:scale(1.03) !important;
  }
  body.page-business .page-hero::before{
    background:rgba(255,255,255,.84) !important;
  }
}


/* 2026-08-25 — definitieve referentiefoto: originele scherpe bron, alleen transparante overgang naar tekst */
body.page-references .page-hero::after{
  opacity:.96 !important;
  filter:none !important;
  transform:none !important;
  background-position:70% 34% !important;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.08) 20%, rgba(0,0,0,.62) 46%, #000 68%) !important;
  mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.08) 20%, rgba(0,0,0,.62) 46%, #000 68%) !important;
}
body.page-references .page-hero::before{
  background:linear-gradient(90deg, rgba(250,248,244,.99) 0%, rgba(250,248,244,.95) 34%, rgba(250,248,244,.55) 58%, rgba(250,248,244,.10) 100%) !important;
}
@media (max-width:760px){
  body.page-references .page-hero::after{
    opacity:.84 !important;
    filter:none !important;
    transform:none !important;
    background-position:72% 30% !important;
    -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,.30) 0%, #000 38%, rgba(0,0,0,.72) 100%) !important;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.30) 0%, #000 38%, rgba(0,0,0,.72) 100%) !important;
  }
  body.page-references .page-hero::before{
    background:rgba(250,248,244,.72) !important;
  }
}

/* About ACSB: keep portrait clear, with a soft fade toward the text */
body.page-about .hero-photo{
  overflow:hidden;
  background:transparent;
}
body.page-about .hero-photo picture,
body.page-about .hero-photo img{
  display:block;
  width:100%;
  height:100%;
}
body.page-about .hero-photo img{
  object-fit:cover;
  filter:none;
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 8%, #000 24%, #000 100%);
  mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 8%, #000 24%, #000 100%);
}
@media (max-width:760px){
  body.page-about .hero-photo img{
    -webkit-mask-image:linear-gradient(180deg, #000 0%, #000 76%, rgba(0,0,0,.45) 90%, transparent 100%);
    mask-image:linear-gradient(180deg, #000 0%, #000 76%, rgba(0,0,0,.45) 90%, transparent 100%);
  }
}

/* 2026-08-25 — Over ACSB hero in dezelfde stijl als Referenties: tekstbalk + scherpe foto die erin overloopt */
body.page-about .page-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:#faf8f4;
  min-height:430px;
  display:flex;
  align-items:center;
}
body.page-about .page-hero::after{
  content:"";
  position:absolute;
  z-index:0;
  top:0;
  right:0;
  width:min(54vw,760px);
  height:100%;
  background-image:url('../images/willem-jan-de-water-about.jpg');
  background-image:image-set(url('../images/willem-jan-de-water-about.webp') type('image/webp'), url('../images/willem-jan-de-water-about.jpg') type('image/jpeg'));
  background-size:cover;
  background-position:58% 32%;
  background-repeat:no-repeat;
  filter:none;
  opacity:1;
  pointer-events:none;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.16) 16%, rgba(0,0,0,.72) 42%, #000 66%);
  mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.16) 16%, rgba(0,0,0,.72) 42%, #000 66%);
}
body.page-about .page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(250,248,244,1) 0%, rgba(250,248,244,.99) 42%, rgba(250,248,244,.90) 53%, rgba(250,248,244,.46) 68%, rgba(250,248,244,.04) 100%);
}
body.page-about .page-hero .hero-grid{
  display:block;
  position:relative;
  z-index:2;
  width:100%;
}
body.page-about .page-hero .hero-copy{
  max-width:610px;
  width:55%;
  padding:18px 0;
}
body.page-about .page-hero .hero-copy h1{
  max-width:17ch;
}
body.page-about .page-hero .hero-copy .lede{
  max-width:52ch;
}
body.page-about .page-hero .hero-photo{
  display:none !important;
}

@media (max-width:900px){
  body.page-about .page-hero{
    min-height:620px;
    align-items:flex-start;
    padding-bottom:0;
  }
  body.page-about .page-hero::after{
    top:auto;
    bottom:0;
    right:0;
    width:100%;
    height:58%;
    background-position:50% 30%;
    -webkit-mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.26) 16%, rgba(0,0,0,.78) 38%, #000 58%);
    mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.26) 16%, rgba(0,0,0,.78) 38%, #000 58%);
  }
  body.page-about .page-hero::before{
    background:linear-gradient(180deg, rgba(250,248,244,1) 0%, rgba(250,248,244,.98) 42%, rgba(250,248,244,.82) 56%, rgba(250,248,244,.20) 76%, rgba(250,248,244,.02) 100%);
  }
  body.page-about .page-hero .hero-copy{
    width:100%;
    max-width:680px;
    padding:0 0 260px;
  }
}

@media (max-width:620px){
  body.page-about .page-hero{
    min-height:660px;
    padding-top:30px;
  }
  body.page-about .page-hero::after{
    height:53%;
    background-position:52% 28%;
  }
  body.page-about .page-hero::before{
    background:linear-gradient(180deg, rgba(250,248,244,1) 0%, rgba(250,248,244,.99) 46%, rgba(250,248,244,.82) 60%, rgba(250,248,244,.16) 82%, rgba(250,248,244,.02) 100%);
  }
  body.page-about .page-hero .hero-copy{
    padding-bottom:250px;
  }
}

/* 2026-08-25 — Over ACSB: tekstblok meer gecentreerd in het linker vlak */
@media (min-width:901px){
  body.page-about .page-hero .hero-grid{
    display:flex;
    align-items:center;
    min-height:430px;
  }
  body.page-about .page-hero .hero-copy{
    width:52%;
    max-width:610px;
    margin-left:clamp(24px,4vw,72px);
    padding:24px 0;
  }
}
@media (min-width:621px) and (max-width:900px){
  body.page-about .page-hero .hero-copy{
    margin-left:auto;
    margin-right:auto;
  }
}

/* 2026-08-25 — Over ACSB: tekst exact op dezelfde containerlijn als overige pagina's */
body.page-about .page-hero .hero-copy{
  margin-left:0 !important;
  margin-right:0 !important;
}
@media (min-width:901px){
  body.page-about .page-hero .hero-copy{
    width:52%;
    max-width:610px;
    padding:24px 0;
  }
}
@media (min-width:621px) and (max-width:900px){
  body.page-about .page-hero .hero-copy{
    margin-left:0 !important;
    margin-right:0 !important;
  }
}

/* 2026-08-25 — Over ACSB: tekstblok verder naar binnen voor dezelfde visuele centrering als overige pagina's */
@media (min-width:901px){
  body.page-about .page-hero .hero-copy{
    margin-left:clamp(72px, 6.5vw, 108px) !important;
    margin-right:0 !important;
    width:calc(52% - clamp(72px, 6.5vw, 108px));
    max-width:560px;
  }
}
@media (min-width:621px) and (max-width:900px){
  body.page-about .page-hero .hero-copy{
    margin-left:clamp(28px, 5vw, 48px) !important;
    margin-right:clamp(28px, 5vw, 48px) !important;
    width:auto;
    max-width:680px;
  }
}
@media (max-width:620px){
  body.page-about .page-hero .hero-copy{
    margin-left:0 !important;
    margin-right:0 !important;
    width:100%;
  }
}
