/* Mosae Forum - stijlen site */

/* Tokens */
:root {
  /* Huisstijl (logo) */
  --brand: #6BB7D5;
  --brand-bright: #4FA5C7;
  --brand-deep: #1A4B66;
  --brand-ink: #0F3D55;
  --brand-pale: #EBF5FA;
  --brand-mist: #F6FAFC;
  --brand-line: #D6E8F0;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-soft: #FBFCFD;
  --bg-warm: #FCFAF5;
  --bg-deep: #F4F1EA;
  --ink: #0F2230;
  --ink-2: #3A4C58;
  --ink-3: #606E77;
  --ink-mute: #9BA8B1;
  --line: #E4E9ED;
  --line-soft: #EFF2F5;

  /* Spoed */
  --spoed: #B23C2E;
  --spoed-bright: #D14A38;
  --spoed-pale: #F6E0DC;

  /* Status */
  --ok: #2F8A5E;
  --warn: #B5803C;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Sizing */
  --container: 1280px;
  --container-wide: 1440px;
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 34, 48, 0.04), 0 0 0 1px rgba(15, 34, 48, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 34, 48, 0.06), 0 1px 3px rgba(15, 34, 48, 0.06);
  --shadow-lg: 0 18px 50px -10px rgba(15, 34, 48, 0.18), 0 6px 16px rgba(15, 34, 48, 0.06);
  --shadow-glow: 0 0 0 1px rgba(107, 183, 213, 0.3), 0 12px 32px -8px rgba(26, 75, 102, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02", "cv01";
}

body {
  font-family: var(--font-sans);
  font-size: 1.0312rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--brand-deep); text-decoration: none; transition: color 180ms var(--ease); }
a:hover { color: var(--brand-bright); }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }

/* Toegankelijkheid */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--brand-deep);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 3px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: var(--brand-line);
  border: 3px solid var(--bg-soft);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* Type Scale & Display */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7188rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow--mute { color: var(--ink-3); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(2.75rem, 6vw + 0.5rem, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.h-display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 50;
  font-size: clamp(2.25rem, 4vw + 0.5rem, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 90, "SOFT" 50;
  font-size: clamp(1.875rem, 2.5vw + 0.5rem, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 90, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}

.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 50;
  font-size: clamp(1.375rem, 1vw + 1rem, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.lead {
  font-size: clamp(1.0625rem, 0.6vw + 0.85rem, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.muted { color: var(--ink-3); }
.tiny { font-size: 0.8125rem; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}

.container--wide { max-width: var(--container-wide); }

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}

.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.section--warm { background: var(--bg-warm); }
.section--mist { background: var(--brand-mist); }
.section--deep {
  background: var(--brand-ink);
  color: #fff;
}
.section--deep .h1, .section--deep .h2, .section--deep .h3, .section--deep .h-display { color: #fff; }
.section--deep .h1 em, .section--deep .h2 em, .section--deep .h3 em, .section--deep .h-display em { color: var(--brand); }
.section--deep .lead, .section--deep .muted { color: rgba(255, 255, 255, 0.78); }
.section--deep .eyebrow { color: var(--brand); }

.grid { display: grid; gap: clamp(1.25rem, 2vw, 2rem); }
.flex { display: flex; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Spoed bar (top) */
.spoedbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 60;
}

.spoedbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 13px 0;
  min-height: 56px;
  flex-wrap: wrap;
}

.spoedbar__group {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.spoedbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.spoedbar__item a {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
}
.spoedbar__item a:hover { color: var(--brand); border-bottom-color: var(--brand); }

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--spoed-bright);
  box-shadow: 0 0 0 0 rgba(209, 74, 56, 0.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pulse--ok { background: var(--ok); animation: none; }
.pulse--warn { background: var(--warn); animation: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(209, 74, 56, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(209, 74, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 74, 56, 0); }
}

.spoedbar__label {
  font-family: var(--font-mono);
  font-size: 0.7812rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.spoedbar__extra {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8438rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
  transition: box-shadow 240ms var(--ease);
}

.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(15, 34, 48, 0.06); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 18px 0;
  min-height: 108px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.logo__mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.625rem;
  font-variation-settings: "opsz" 50, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform 280ms var(--ease);
}
.logo__mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo:hover .logo__mark { transform: rotate(-6deg); }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5625rem;
  font-style: italic;
  font-variation-settings: "opsz" 50, "SOFT" 80, "WONK" 1;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}
.logo__sub {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__list li { display: flex; align-items: center; }
.nav__list a { white-space: nowrap; }
.nav__list a {
  display: block;
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 14px 20px;
  border-radius: var(--r-sm);
  position: relative;
  letter-spacing: -0.005em;
}
.nav__list a:hover { color: var(--brand-deep); background: var(--brand-pale); }
.nav__list a.is-active {
  color: var(--brand-deep);
}
.nav__list a.is-active::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px;
  bottom: 6px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-deep);
  color: #fff;
  padding: 15px 26px;
  border-radius: var(--r-full);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 220ms var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--brand-ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav__cta svg { width: 20px; height: 20px; }
.nav__taal {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  margin-right: 10px;
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
}
.nav__taal:hover { color: var(--brand-deep); border-color: var(--brand-deep); }
.mobile-menu__list .nav__taal {
  font-family: var(--font-mono);
  font-size: 1rem;
  border: 0;
  margin: 0;
  padding: 14px 0;
  display: block;
}

.nav__hamburger {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav__hamburger:hover { background: var(--brand-pale); }
.nav__hamburger span {
  display: block;
  position: relative;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.nav__hamburger span::before, .nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms var(--ease), top 200ms var(--ease);
}
.nav__hamburger span::before { top: -7px; }
.nav__hamburger span::after { top: 7px; }
.nav__hamburger.is-open span { background: transparent; }
.nav__hamburger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__hamburger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 40;
  transform: translateY(-100%);
  transition: transform 380ms var(--ease);
  display: flex;
  flex-direction: column;
  padding: 160px var(--container-px) 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.mobile-menu__list a:hover { color: var(--brand-deep); }
.mobile-menu__cta {
  margin-top: 2rem;
  background: var(--brand-deep);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r-full);
  text-align: center;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 220ms var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-deep);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border: 1.5px solid var(--brand-line);
}
.btn--ghost:hover {
  border-color: var(--brand-deep);
  background: var(--brand-mist);
  color: var(--brand-deep);
}

.btn--brand {
  background: var(--brand);
  color: var(--brand-ink);
}
.btn--brand:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--spoed {
  background: var(--spoed);
  color: #fff;
}
.btn--spoed:hover { background: var(--spoed-bright); color: #fff; }

.btn--lg { padding: 18px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 14px; font-size: 0.8438rem; }

.btn svg { width: 16px; height: 16px; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 0.9062rem;
  transition: gap 200ms var(--ease);
}
.arrow-link::after {
  content: "→";
  transition: transform 200ms var(--ease);
}
.arrow-link:hover { gap: 10px; }
.arrow-link:hover::after { transform: translateX(2px); }

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: var(--brand-pale);
  color: var(--brand-deep);
  border: 1px solid var(--brand-line);
}
.chip--warm { background: #FAF1E5; color: #7A5C2B; border-color: #EBDFC4; }
.chip--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip--light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.98) contrast(1.02);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 28%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(255, 255, 255, 0.2) 72%,
      rgba(15, 34, 48, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 22%, transparent 78%, rgba(15, 34, 48, 0.18) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__floating {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 5vw, 3.5rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-width: 320px;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-full);
  font-size: 0.8438rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 6px 22px -8px rgba(15, 34, 48, 0.25);
  letter-spacing: -0.005em;
}

.hero__chip .status-row__dot { margin: 0; }

.hero__address-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(107, 123, 133, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-full);
  font-size: 0.8438rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero__address-chip svg { width: 14px; height: 14px; color: var(--brand); }

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}

.hero__meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-mute);
  opacity: 0.5;
}

.hero__meta .eyebrow {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-deep);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(15, 34, 48, 0.04);
}

.hero__meta .mono {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--r-full);
  color: var(--ink);
  font-size: 0.7812rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(15, 34, 48, 0.04);
}

.chip--hero {
  background: rgba(15, 34, 48, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  padding: 9px 16px 9px 13px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  gap: 10px;
  box-shadow: 0 8px 22px -10px rgba(15, 34, 48, 0.45);
}
.chip--hero .status-row__dot {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(2.75rem, 6.2vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
  color: var(--ink);
}

.hero__headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
  display: inline-block;
}

.hero__sub {
  margin-top: 1.75rem;
  max-width: 36ch;
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.5;
  color: var(--ink-2);
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: stretch;
  justify-content: flex-end;
}

.hero__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.hero__card--status {
  background: var(--brand-mist);
  border-color: var(--brand-line);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.875rem;
}

.status-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-row__dot.ok { background: var(--ok); box-shadow: 0 0 0 4px rgba(47, 138, 94, 0.15); }
.status-row__dot.warn { background: var(--warn); box-shadow: 0 0 0 4px rgba(181, 128, 60, 0.15); }
.status-row__dot.closed { background: var(--ink-3); box-shadow: 0 0 0 4px rgba(155, 168, 177, 0.18); }

.status-row__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.hero__card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 60;
  font-size: 1.25rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.hero__card p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.45; }

.hero__address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 1.25rem;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}
.hero__address-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--brand-deep);
  color: #fff;
}
.hero__address-icon svg { width: 18px; height: 18px; }
.hero__address-text { font-size: 0.9062rem; line-height: 1.45; }
.hero__address-text strong { color: var(--ink); font-weight: 600; }
.hero__address-text small { color: var(--ink-3); display: block; margin-top: 2px; }

/* Quick actions */
.quickbar {
  background: var(--brand-ink);
  color: #fff;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.quickbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 183, 213, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(107, 183, 213, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.quickbar__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  flex-wrap: wrap;
}

.quickbar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 80, "SOFT" 60;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 22ch;
}
.quickbar__title em {
  font-style: italic;
  font-variation-settings: "opsz" 80, "SOFT" 100, "WONK" 1;
  color: var(--brand);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.quick {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  position: relative;
  transition: all 280ms var(--ease);
  overflow: hidden;
}

.quick::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to bottom, rgba(107, 183, 213, 0.18), transparent);
  transition: height 380ms var(--ease);
  pointer-events: none;
}

.quick:hover {
  background: rgba(107, 183, 213, 0.12);
  border-color: rgba(107, 183, 213, 0.4);
  color: #fff;
  transform: translateY(-3px);
}
.quick:hover::after { height: 100%; }

.quick__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(107, 183, 213, 0.18);
  color: var(--brand);
  transition: all 280ms var(--ease);
}
.quick:hover .quick__icon {
  background: var(--brand);
  color: var(--brand-ink);
}
.quick__icon svg { width: 20px; height: 20px; }

.quick__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 60;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: #fff;
  margin-top: auto;
}

.quick__hint {
  font-family: var(--font-mono);
  font-size: 0.6562rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.quick__hint::after {
  content: "→";
  font-family: var(--font-sans);
  font-size: 0.75rem;
  transition: transform 220ms var(--ease);
}
.quick:hover .quick__hint::after { transform: translateX(3px); color: var(--brand); }

/* Disciplines */
.disciplines {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.discipline-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.discipline {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem 0.5rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 240ms var(--ease);
  cursor: pointer;
  position: relative;
}

.discipline::before {
  content: "";
  position: absolute;
  inset: 0 -1rem;
  background: var(--brand-mist);
  opacity: 0;
  z-index: -1;
  border-radius: var(--r-sm);
  transition: opacity 240ms var(--ease);
}
.discipline:hover::before { opacity: 1; }
.discipline:hover { padding-left: 1rem; padding-right: 1.5rem; }

.discipline__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-deep);
  letter-spacing: 0.05em;
}

.discipline__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 60;
  font-size: clamp(1.25rem, 1.2vw + 0.85rem, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.discipline__name em {
  font-style: italic;
  font-variation-settings: "opsz" 50, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}

.discipline__desc {
  font-size: 0.9062rem;
  color: var(--ink-3);
  margin-top: 6px;
  max-width: 50ch;
  line-height: 1.45;
}

.discipline__arrow {
  align-self: center;
  color: var(--ink-mute);
  transition: transform 240ms var(--ease), color 240ms var(--ease);
}
.discipline:hover .discipline__arrow { color: var(--brand-deep); transform: translateX(4px); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-head .lead { max-width: 48ch; }

/* Kernwaarden */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.value {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  position: relative;
  transition: all 320ms var(--ease);
  overflow: hidden;
}

.value::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 4px;
  background: var(--brand);
  transition: width 420ms var(--ease);
}

.value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-line);
}
.value:hover::before { width: 100%; }

.value__num {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.value h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 70, "SOFT" 60;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.value p { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.5; }

/* Bereikbaarheid / hours */
.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.schedule {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.schedule__head {
  padding: 1.25rem 1.5rem;
  background: var(--brand-mist);
  border-bottom: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.schedule__row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  font-size: 0.9062rem;
  transition: background 200ms var(--ease);
}
.schedule__row:last-child { border-bottom: none; }
.schedule__row:hover { background: var(--brand-mist); }
.schedule__row.is-today { background: var(--brand-pale); font-weight: 500; }
.schedule__row.is-today .schedule__day { color: var(--brand-deep); }

.schedule__day { font-weight: 500; color: var(--ink); }
.schedule__hours { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.schedule__pill {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: var(--bg-warm);
  color: var(--ink-3);
}
.schedule__pill.is-now {
  background: var(--ok);
  color: #fff;
}

.contact-card {
  background: linear-gradient(155deg, var(--brand-ink) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 183, 213, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 90, "SOFT" 60;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-card h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 90, "SOFT" 100, "WONK" 1;
  color: var(--brand);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-list__item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-list__icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand);
}
.contact-list__icon svg { width: 16px; height: 16px; }

.contact-list__label {
  font-family: var(--font-mono);
  font-size: 0.6562rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}
.contact-list__value {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.contact-list__value a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.contact-list__value a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.contact-list__sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  transition: all 260ms var(--ease);
  position: relative;
  overflow: hidden;
}

.team-card > div:last-child {
  padding: 0.875rem 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.team-card__avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  padding: 0;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-bright) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 500;
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid var(--line);
}
.team-card__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 34, 48, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}
.team-card__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 700ms var(--ease), filter 320ms var(--ease);
}
.team-card:hover .team-card__avatar img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 60;
  font-size: 1.0625rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Team grouped */
.team-group {
  margin-bottom: 3rem;
}
.team-group__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.team-group__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 70, "SOFT" 60;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.team-group__title em {
  font-style: italic;
  font-variation-settings: "opsz" 70, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}
.team-group__count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all 280ms var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md);
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.news-card__date { color: var(--ink-3); }

.news-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 70, "SOFT" 60;
  font-size: 1.375rem;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.news-card__excerpt {
  font-size: 0.9062rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.news-card__link {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--brand-deep);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card__link::after {
  content: "→";
  transition: transform 220ms var(--ease);
}
.news-card:hover .news-card__link::after { transform: translateX(3px); }

/* CTA panel */
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--brand-mist);
  border-radius: var(--r-xl);
  border: 1px solid var(--brand-line);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 183, 213, 0.18) 0%, transparent 65%);
}

.cta-panel__head h2 { margin-bottom: 1rem; }
.cta-panel__head p { color: var(--ink-2); font-size: 1.0625rem; max-width: 42ch; }
.cta-panel__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.75rem; }

.cta-panel__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.cta-side-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-md);
  border: 1px solid var(--brand-line);
}
.cta-side-row__label { font-size: 0.875rem; color: var(--ink-2); }
.cta-side-row__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50;
  font-size: 1.0625rem;
  color: var(--brand-deep);
  letter-spacing: -0.015em;
}

/* Footer */
.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9062rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 36ch;
}

.footer-col__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  color: var(--ink-2);
  font-size: 0.9062rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--brand-deep); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.footer-bottom__links { display: flex; gap: 1.5rem; }
.footer-bottom__links a { color: var(--ink-3); }
.footer-bottom__links a:hover { color: var(--brand-deep); }

/* Page header for sub-pages */
.page-head {
  padding-block: clamp(3rem, 5vw, 5.5rem) clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-head::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--brand-pale) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .page-head::before {
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7188rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--brand-deep); }
.breadcrumb__sep { opacity: 0.4; }

.page-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.page-head__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}

.page-head__lead {
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.25rem);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.5;
}

/* Two col content layout */
.cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.sidebar-card {
  background: var(--brand-mist);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: sticky;
  top: 120px;
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.sidebar-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 0.9062rem;
  color: var(--ink-2);
}
.sidebar-list a:hover { background: rgba(255,255,255,0.7); color: var(--brand-deep); }
.sidebar-list a.is-active { background: #fff; color: var(--brand-deep); font-weight: 500; border: 1px solid var(--brand-line); }

/* Article / prose content */
.prose { max-width: 68ch; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 60;
  font-size: 1.875rem;
  letter-spacing: -0.022em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 80, "SOFT" 100, "WONK" 1;
  color: var(--brand-deep);
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50, "SOFT" 60;
  font-size: 1.375rem;
  letter-spacing: -0.018em;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}
.prose p { font-size: 1.0312rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 1.25rem; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { list-style: disc; color: var(--ink-2); margin-bottom: 0.5rem; line-height: 1.55; }
.prose ol li { list-style: decimal; color: var(--ink-2); margin-bottom: 0.5rem; line-height: 1.55; }
.prose a {
  color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-line);
  font-weight: 500;
}
.prose a:hover { border-bottom-color: var(--brand-deep); }
.prose a.btn, .prose a.btn:hover, .prose a.btn:focus { border-bottom: none; color: #fff; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 100, "SOFT" 100, "WONK" 1;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--brand-deep);
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--brand);
  margin: 2rem 0;
  letter-spacing: -0.018em;
}

.callout {
  background: var(--brand-mist);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.callout__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.callout p { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 0; }

.callout--spoed {
  background: var(--spoed-pale);
  border-color: rgba(178, 60, 46, 0.25);
}
.callout--spoed .callout__title { color: var(--spoed); }

/* Inschrijfformulier */
.form-wrap { max-width: 720px; margin: 0 auto; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.form-card + .form-card { margin-top: 1.25rem; }

.form-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-line);
  padding-bottom: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row--name { grid-template-columns: 2fr 1fr; }
.form-row--addr1 { grid-template-columns: 1.3fr 0.85fr 1fr; }
.form-row > .form-group { margin-bottom: 0; }

.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group--rel { position: relative; }

.form-label {
  display: block;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.form-label .req { color: var(--spoed); }

.form-input, .form-select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-pale);
}
.form-input.is-auto { background: var(--brand-mist); }
select.form-select { cursor: pointer; }

.form-help { font-size: 0.7812rem; color: var(--ink-3); margin-top: 6px; }
.form-error {
  font-size: 0.7812rem;
  color: var(--spoed);
  margin-top: 6px;
  min-height: 0;
}
.form-error:empty { display: none; }

.form-input.has-error, .form-select.has-error { border-color: var(--spoed); }

.form-radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 8px; }
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.form-radio input { width: 18px; height: 18px; accent-color: var(--brand-bright); cursor: pointer; }

.form-check-badge {
  position: absolute;
  right: 12px;
  top: 38px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ok);
  text-transform: uppercase;
}

.consent-box {
  background: var(--brand-mist);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}
.consent-box + .consent-box { margin-top: 1rem; }
.consent-box--alt { background: rgba(47, 138, 94, 0.05); border-color: rgba(47, 138, 94, 0.2); }
.consent-box label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent-box input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--brand-bright);
  flex-shrink: 0;
  cursor: pointer;
}
.consent-box__title { font-weight: 600; color: var(--ink); margin-bottom: 4px; font-size: 0.9375rem; }
.consent-box__text { font-size: 0.875rem; color: var(--ink-2); line-height: 1.55; }

.form-error-banner {
  margin-top: 1.75rem;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--spoed-pale);
  border: 1px solid rgba(178, 60, 46, 0.25);
  color: var(--spoed);
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.5;
}

.form-submit-row { margin-top: 1.75rem; }
.form-submit-row .btn { width: 100%; }
.form-disclaimer { font-size: 0.7812rem; color: var(--ink-3); text-align: center; margin-top: 1rem; }

.form-state {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
}
.form-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.form-state__icon svg { width: 32px; height: 32px; }
.form-state--success .form-state__icon { background: rgba(47, 138, 94, 0.12); color: var(--ok); }
.form-state--error .form-state__icon { background: rgba(178, 60, 46, 0.12); color: var(--spoed); }
.form-state h2 { margin-bottom: 0.75rem; }
.form-state p { color: var(--ink-2); max-width: 48ch; margin: 0 auto 0.5rem; line-height: 1.55; }

@media (max-width: 640px) {
  .form-row, .form-row--3, .form-row--name, .form-row--addr1 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Pricing table */
.price-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-size: 0.9375rem; color: var(--ink); }
.price-row__name small { display: block; color: var(--ink-3); font-size: 0.8125rem; margin-top: 2px; }
.price-row__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 50;
  font-size: 1.125rem;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.price-table__head {
  padding: 1rem 1.5rem;
  background: var(--brand-mist);
  border-bottom: 1px solid var(--brand-line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* News list (sub-page) */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: padding 240ms var(--ease);
}
.news-row:first-child { padding-top: 0; }
.news-row:hover { padding-left: 0.75rem; padding-right: 0.75rem; background: var(--brand-mist); }
.news-row__date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.news-row__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 60;
  font-size: 1.5rem;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.news-row__excerpt {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 60ch;
}
.news-row__category {
  font-family: var(--font-mono);
  font-size: 0.6562rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  padding: 4px 10px;
  background: var(--brand-pale);
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.is-visible > *:nth-child(n+9) { transition-delay: 640ms; }

/* Responsive */
@media (max-width: 1100px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick:nth-child(4), .quick:nth-child(5) { grid-column: span 1; }
  .quick:nth-child(4) { grid-column: 1 / 2; }
  .quick:nth-child(5) { grid-column: 2 / 4; }
  .quick:nth-child(5) .quick__label { font-size: 1.4rem; }
}

@media (max-width: 960px) {
  .hero { min-height: clamp(540px, 80vh, 720px); }
  .hero__bg img { object-position: 65% center; }
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 35%, rgba(255,255,255,0.45) 65%, rgba(15,34,48,0.22) 100%);
  }
  .hero__content { max-width: 100%; }
  .hero__floating {
    position: static;
    margin-top: 1.5rem;
    padding-inline: var(--container-px);
    align-items: flex-start;
  }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__side { order: 2; }
  .disciplines { grid-template-columns: 1fr; gap: 2rem; }
  .hours-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .cols-2 { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 780px) {
  .nav__list, .nav__cta, .nav > .nav__taal { display: none; }
  .nav__hamburger { display: inline-flex; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick:nth-child(5) { grid-column: 1 / -1; }
  .quickbar__header { flex-direction: column; align-items: stretch; }
  .spoedbar { font-size: 0.75rem; }
  .spoedbar__inner { flex-wrap: nowrap; gap: 0.5rem; padding: 10px 0; min-height: auto; }
  .spoedbar__group { gap: 0.5rem; flex-wrap: nowrap; }
  .spoedbar__item { gap: 0.4rem; }
  .spoedbar__label { font-size: 0.5938rem; letter-spacing: 0.06em; white-space: nowrap; }
  .spoedbar__item a { white-space: nowrap; }
  .spoedbar__extra { display: none; }
  .hero__headline { font-size: clamp(2.5rem, 11vw, 4rem); }
  .news-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .news-row__category { justify-self: start; }
  .schedule__row { grid-template-columns: 1fr auto auto; }
}

@media (max-width: 400px) {
  .spoedbar { font-size: 0.6875rem; }
  .pulse { width: 8px; height: 8px; }
}

@media (max-width: 520px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick:nth-child(5) { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__address { grid-template-columns: 1fr; }
  .hero__address-icon { width: 32px; height: 32px; }
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Image banner / sfeerbeeld */
.image-banner {
  position: relative;
  overflow: hidden;
  background: var(--brand-ink);
  min-height: clamp(360px, 50vw, 560px);
  display: grid;
  align-items: end;
}

.image-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.92) contrast(1.04);
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15, 61, 85, 0.2) 0%, transparent 50%, rgba(15, 34, 48, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.image-banner__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  color: #fff;
}

.image-banner__card {
  background: rgba(15, 34, 48, 0.55);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 540px;
  color: #fff;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.35);
}

.image-banner__inner .eyebrow { color: var(--brand); }
.image-banner__card .eyebrow { color: var(--brand); }

.image-banner__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 50;
  font-size: clamp(2.25rem, 4vw + 0.5rem, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 1rem;
  max-width: 18ch;
}
.image-banner__title em {
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100, "WONK" 1;
  color: var(--brand);
}

.image-banner__caption {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.image-banner__credit {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.6562rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero photo variant */
.hero__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--brand-pale);
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  transform: scale(1.3);
  transform-origin: right center;
  filter: saturate(0.98) contrast(1.02);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 34, 48, 0.22) 100%);
  pointer-events: none;
}

.hero__photo-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.6562rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* Portretfoto medewerker */
.portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--brand-pale);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

/* Leesweergave (artikelen.html) */

.page-head--compact { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }

/* Kleefbalk met categoriefilter */
/* --kleef-h wordt gezet door js/artikelen.js */
:root { --kleef-h: 140px; }

.leesbalk {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-block: 1px solid var(--line-soft);
}

.leesbalk__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.leesbalk__terug {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
  white-space: nowrap;
}
.leesbalk__terug svg { width: 16px; height: 16px; }
.leesbalk__terug:hover { color: var(--brand-bright); }

.leesbalk__chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 2px;
}
.leesbalk__chips::-webkit-scrollbar { display: none; }

.leeschip {
  flex: none;
  font: inherit;
  font-size: 0.8438rem;
  font-weight: 550;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-full);
  border: 1px solid var(--brand-line);
  background: var(--bg);
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.leeschip span { color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.leeschip:hover { border-color: var(--brand); background: var(--brand-mist); }
.leeschip.is-active { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.leeschip.is-active span { color: rgba(255, 255, 255, 0.6); }

/* De artikelen zelf */
.lees {
  max-width: 68ch;
  margin-inline: auto;
}

.artikel {
  scroll-margin-top: calc(var(--kleef-h) + 1.5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.artikel:first-child { border-top: none; padding-top: clamp(1rem, 2vw, 1.5rem); }

.artikel__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8438rem;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.artikel__categorie {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--brand-deep);
}
.artikel__categorie::after {
  content: '·';
  margin-left: 0.85rem;
  color: var(--ink-mute);
}

.artikel__titel {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
  text-wrap: balance;
}

.artikel__beeld {
  /* vaste hoogte, anders klopt de sprong naar #slug niet */
  aspect-ratio: 16 / 9;
  margin-block: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--brand-mist);
}
.artikel__beeld img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artikel__intro {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 450;
}

.artikel__tekst {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-2);
}
.artikel__tekst p + p { margin-top: 1.1em; }

.artikel__intro + .artikel__tekst { margin-top: 1.25rem; }

@media (max-width: 720px) {
  .leesbalk__inner { gap: 1rem; }
  .leesbalk__terug span { display: none; }
}

/* Nieuwsrijen als link */
.news-row { text-decoration: none; color: inherit; }

.news-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-deep);
}
.news-row__link::after {
  content: "→";
  transition: transform 220ms var(--ease);
}
.news-row:hover .news-row__link::after { transform: translateX(3px); }
.news-row:hover .news-row__title { color: var(--brand-bright); }

/* Bericht nog niet vertaald (Engelse site) */
.news-row__nl, .artikel__nl {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.artikel__nl { margin-left: 0.85rem; }
