/* Basis De Sint Specialist */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--kleur-diep); -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--kleur-diep);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: var(--tekst-body);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--kleur-goud); text-decoration: none; }
a:hover { color: var(--kleur-goud-licht); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--kleur-goud); outline-offset: 3px;
}
h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 400;
  color: var(--kleur-creme);
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--tekst-hero); }
h2 { font-size: var(--tekst-sectie); }
h3 { font-size: var(--tekst-kaart); }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

/* Layout */
.omhulsel { width: 100%; max-width: var(--breedte-max); margin-inline: auto; padding-inline: var(--ruimte-rand); }
.sectie { padding-block: var(--ruimte-sectie); }
.sectie--paneel { background: var(--kleur-paneel); border-block: 1px solid var(--kleur-rand); }
.sectie--diep { background: var(--kleur-paneel-donker); }
.middenkop { display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center; margin-bottom: 3rem; }
.middenkop p { max-width: 40rem; }
.kicker {
  color: var(--kleur-goud); font-size: var(--tekst-kicker); font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; margin: 0;
}
.rooster { display: grid; gap: 1.75rem; }
.rooster--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rooster--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rooster--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .rooster--3, .rooster--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .rooster--2, .rooster--3, .rooster--4 { grid-template-columns: 1fr; } }

/* Knoppen */
.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: .625rem;
  font-family: var(--font-tekst); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 1rem 2rem; border-radius: var(--radius-pil); border: 1.5px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .25s var(--soepel), box-shadow .25s ease, filter .25s ease, background .2s ease, color .2s ease;
}
.knop--goud { background: var(--kleur-goud); color: var(--kleur-op-goud); }
.knop--rand { border-color: var(--kleur-goud); color: var(--kleur-goud); background: transparent; }
.knop--rand:hover { color: var(--kleur-op-goud); background: var(--kleur-goud); }
.knop:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217, 179, 106, .3); filter: brightness(1.06); }
.knop::after {
  content: ""; position: absolute; inset-block: 0; left: -75%; width: 45%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); opacity: 0; pointer-events: none;
}
.knop:hover::after { animation: sint-glans 1.4s ease-out 1; }
@keyframes sint-glans { 0% { left: -75%; opacity: 0; } 12% { opacity: 1; } 100% { left: 125%; opacity: 0; } }

/* Toegankelijkheid */
.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;
}
.overslaan {
  position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: var(--kleur-goud); color: var(--kleur-op-goud); padding: .75rem 1.25rem; font-weight: 700;
}
.overslaan:focus { left: 1rem; top: 1rem; }
