:root {
  color-scheme: light;
  --ink: #0b1c30;
  --muted: #516073;
  --blue-900: #012a63;
  --blue-800: #01327c;
  --blue-700: #1f5fa8;
  --blue-100: #dcecff;
  --blue-50: #f2f8ff;
  --yellow-500: #f3bf31;
  --yellow-200: #fff0a6;
  --yellow-100: #fff8d7;
  --green-100: #e7f3df;
  --green-700: #34735d;
  --coral-100: #ffe7da;
  --coral-700: #9c5139;
  --surface: #ffffff;
  --white: #ffffff;
  --line: #d8e2ee;
  --shadow: 0 18px 44px rgba(1, 42, 99, .09);
  --radius: 18px;
  --max: 1180px;
  --page-gutter: clamp(18px, 4vw, 40px);
  --section-space: clamp(58px, 8vw, 88px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* Voorkomt dat lange woorden, mailadressen of links de pagina verbreden. */
p,
li,
h1,
h2,
h3,
a,
span {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

.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;
}

:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--blue-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--max), calc(100% - (2 * var(--page-gutter))));
  margin-inline: auto;
}

.topline {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .92);
  font-size: .88rem;
}

.topline .container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 42px 8px 0;
}

.topline .container > span:last-child {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.topline a {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
}

.topline a:hover,
.topline a:focus-visible {
  text-decoration: underline;
}

.topline-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-height: 24px;
  border-radius: 8px;
}

.topline-email svg {
  display: block;
  flex: 0 0 20px;
  width: 20px !important;
  height: 20px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s var(--ease-out);
}

.topline-email:hover svg,
.topline-email:focus-visible svg {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(201, 218, 239, .75);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-900);
  text-decoration: none;
}

.brand-logo {
  width: 220px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 4px;
  background: var(--yellow-500);
  transition: width .25s var(--ease-out);
}

.nav-links a:hover {
  color: var(--blue-800);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--blue-900);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font: 800 .98rem "Open Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button.primary {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(1, 50, 124, .18);
}

.button.primary:hover {
  background: var(--blue-700);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-800);
  border: 2px solid var(--blue-100);
}

.button.warm {
  background: var(--yellow-500);
  color: var(--blue-900);
  box-shadow: 0 10px 24px rgba(243, 191, 49, .2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 224, 113, .42), transparent 27%),
    linear-gradient(135deg, #f8fbff 0%, #e3f0ff 100%);
}

main {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 224, 113, .24), transparent 25%),
    radial-gradient(circle at 10% 30%, rgba(255, 224, 113, .18), transparent 25%),
    radial-gradient(circle at 90% 52%, rgba(255, 224, 113, .2), transparent 25%),
    radial-gradient(circle at 10% 74%, rgba(255, 224, 113, .18), transparent 25%),
    radial-gradient(circle at 88% 96%, rgba(255, 224, 113, .22), transparent 25%),
    linear-gradient(135deg, #fffdf7 0%, #f4f8fe 50%, #fffdf7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 3px 0 3px 11px;
  border-left: 4px solid var(--yellow-500);
  border-radius: 0;
  background: transparent;
  color: var(--blue-800);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: Quicksand, sans-serif;
  line-height: 1.13;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.35rem, 4.7vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.sentence-break {
  display: block;
  margin-top: .45em;
}

.copy-break {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(243, 191, 49, .48);
  border-radius: 12px;
  background: rgba(255, 248, 215, .72);
  color: #4d4305;
}

.hero-note strong {
  display: block;
  color: var(--blue-900);
}

.hero-note p {
  margin: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 64% 50%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 72%;
  height: 62%;
  border-radius: 24px;
  background: var(--yellow-500);
}

section {
  padding: var(--section-space) 0;
  scroll-margin-top: 92px;
}

main > section:not(.hero) {
  border-top: 1px solid rgba(216, 226, 238, .72);
  background: transparent;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-inline: 0;
  text-align: left;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

#over-ons .section-head {
  margin-bottom: 46px;
}

.about-intro {
  position: relative;
  padding-top: 18px;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .info-card:hover,
  .person-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 95, 168, .28);
    box-shadow: 0 16px 38px rgba(1, 50, 124, .08);
  }
}

.info-card {
  padding: 28px;
  border-top: 3px solid var(--blue-800);
}

.info-card p,
.split-content p,
.person-card p,
.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.techniques-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.techniques-card p {
  font-size: .95rem;
  line-height: 1.6;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-800);
  font-family: Quicksand, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.info-card:nth-child(2) .icon,
.info-card:nth-child(5) .icon {
  background: var(--yellow-200);
  color: #6f5e00;
}

.info-card:nth-child(3) .icon,
.info-card:nth-child(6) .icon {
  background: var(--green-100);
  color: var(--green-700);
}

.band {
  background: transparent;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease-out), box-shadow .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .split img:hover,
  .about-photo img:hover {
    transform: scale(1.012);
    box-shadow: 0 28px 70px rgba(1, 50, 124, .15);
  }
}

.split-content {
  display: grid;
  gap: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-900);
  font-size: .92rem;
  font-weight: 700;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 8px 0 8px 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  position: absolute;
  top: 6px;
  left: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 12px;
  background: var(--yellow-500);
  color: var(--blue-900);
  font-family: Quicksand, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: stretch;
}

.feature {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 20px;
  background: var(--blue-900);
  color: rgba(255, 255, 255, .86);
}

.feature h3 {
  color: var(--white);
}

.feature p {
  color: rgba(255, 255, 255, .82);
}

.feature .eyebrow {
  color: var(--yellow-200);
  border-left-color: var(--yellow-500);
}

.service-list {
  display: grid;
  gap: 0;
  align-content: center;
}

.service-item {
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-item:first-child {
  border-top: 1px solid var(--line);
}

.service-item h3 {
  font-size: 1.2rem;
}

.people {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.person-card {
  padding: 30px;
}

.person-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.person-photo {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  border: 3px solid var(--white);
  border-radius: 20px;
  object-fit: cover;
  object-position: center 32%;
  box-shadow: 0 10px 24px rgba(1, 42, 99, .12);
}

.about-photo {
  margin: 32px 0 0;
}

.about-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease-out), box-shadow .4s ease;
}

/* Scrollanimaties worden door script.js geactiveerd. Zonder JavaScript blijft
   alle inhoud gewoon zichtbaar. */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.person-meta {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .96rem;
}

.address-lines {
  line-height: 1.65;
}

.person-meta a {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: none;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
  margin-top: 3px;
  font-size: .9rem;
  line-height: 1.45;
}

.registration-grid > span {
  overflow-wrap: anywhere;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-wrap-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.contact-card {
  padding: 30px;
  background: var(--yellow-100);
  border-color: rgba(243, 191, 49, .5);
}

.contact-merged {
  padding: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 224, 113, .8), transparent 30%),
    linear-gradient(135deg, var(--blue-900), #0d477d);
  color: rgba(255, 255, 255, .86);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(1, 42, 99, .14);
}

.contact-merged h2 {
  color: var(--white);
}

.contact-merged p {
  color: rgba(255, 255, 255, .86);
}

.contact-merged a:not(.button) {
  color: var(--white);
  font-weight: 800;
}

.contact-merged .eyebrow {
  color: var(--yellow-200);
}

.contact-merged .button.secondary {
  border-color: rgba(255, 255, 255, .45);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  padding: 46px 0;
  background: #07192d;
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 36px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow-200);
}

.subfooter {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
}

.privacy-main {
  padding: 70px 0;
  background: var(--white);
}

.prose {
  max-width: 860px;
}

.prose h1 {
  margin-bottom: 20px;
}

.privacy-title {
  font-size: clamp(1.55rem, 4.2vw, 3.6rem);
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .service-panel,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-merged {
    padding: 32px;
  }

  .cards-3,
  .people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

/* Op kleinere tablets krijgt de navigatie bewust een menu; zo blijven labels
   en de contactknop ruim leesbaar in plaats van over meerdere regels te vallen. */
@media (max-width: 900px) {
  .nav {
    min-height: 68px;
  }

  .brand-logo {
    width: clamp(150px, 48vw, 200px);
  }

  .menu-button {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
    animation: menu-in .25s var(--ease-out) both;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 12px;
  }

}

@media (max-width: 760px) {

  /* Op telefoons staat inhoud direct in beeld. Dit voorkomt dat snel scrollen
     of mobiele browseroptimalisaties onderdelen tijdelijk onzichtbaar maken. */
  .has-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero {
    padding-top: 44px;
  }

  .person-photo {
    display: none;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cards-3,
  .cards-2,
  .people,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .person-card,
  .contact-card,
  .feature {
    padding: 22px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-merged {
    padding: 24px;
  }

  .topline .container {
    gap: 4px 14px;
    padding-block: 7px;
    font-size: .8rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-visual img,
  .split img,
  .about-photo img {
    border-radius: 24px;
  }

  .hero-visual::after {
    right: -10px;
    bottom: -12px;
  }
}

@media (max-width: 420px) {
  :root {
    --page-gutter: 16px;
  }

  .topline .container {
    justify-content: flex-start;
  }

  .hero-note,
  .info-card,
  .person-card,
  .contact-card,
  .feature,
  .service-item {
    padding: 20px;
  }

  .pill-list {
    gap: 7px;
  }

  .pill-list li {
    padding: 7px 10px;
    font-size: .84rem;
  }

  .person-header {
    gap: 15px;
  }

  .person-photo {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
