.entry-content h1 {
  font-size: calc(var(--text-m) * 1.5);
}
.entry-content h2 {
  font-size: calc(var(--text-m) * 1.4);
}
.entry-content h3 {
  font-size: calc(var(--text-m) * 1.3);
}
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-size: calc(var(--text-m) * 1.2);
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}
.entry-content p {
  margin-bottom: var(--space-m);
}
.entry-content ul, .entry-content ol {
  margin-bottom: var(--space-m);
}
.entry-content a {
  text-decoration: underline;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content blockquote {
  border-left: 4px solid var(--secondary);
  font-family: inherit;
  font-weight: 700;
  font-style: italic;
}

.wp-block-heading {
  margin-bottom: var(--space-xs);
}

.btn {
  text-decoration: none;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: var(--space-l);
}

.wp-block-separator {
  border-color: var(--primary-10);
  margin: var(--space-xl) 0px var(--space-xl) 0px;
  border-width: 1px 0px 0px 0px;
}

.wp-block-image {
  margin: var(--space-l) 0px;
}
.wp-block-image img {
  border-radius: var(--radius-m);
}

/**
 * Accordion Block Styles
 */
.project-accordion-block {
  margin: 2rem 0;
  width: 100%;
  /* Content panel */
}
.project-accordion-block .project-accordion-item {
  border-bottom: 1px solid var(--primary);
  position: relative;
}
.project-accordion-block .project-accordion-title {
  /* Inherit font styling from the website */
  font-family: inherit;
  font-size: var(--text-l);
  color: inherit;
  font-weight: 700;
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-s) 0;
  /* Reset button styles */
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Plus icon */
  /* Rotate to create X (cross) when expanded */
  /* Hover effect */
}
.project-accordion-block .project-accordion-title::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  margin-left: 0.75rem;
  flex-shrink: 0;
  /* Create plus icon */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease;
}
.project-accordion-block .project-accordion-title[aria-expanded=true]::after {
  transform: rotate(45deg);
}
.project-accordion-block .project-accordion-title:hover, .project-accordion-block .project-accordion-title:focus {
  opacity: 0.85;
}
.project-accordion-block .project-accordion-panel {
  padding: 0 0 var(--space-s) 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  /* Handle hidden state */
  /* Ensure proper spacing for content */
  /* Ensure proper spacing for first paragraph */
  /* Media styling */
  /* Gallery styling */
  /* Caption styling */
}
.project-accordion-block .project-accordion-panel[hidden] {
  display: none;
}
.project-accordion-block .project-accordion-panel > *:last-child {
  margin-bottom: 0;
}
.project-accordion-block .project-accordion-panel > *:first-child {
  margin-top: 0;
}
.project-accordion-block .project-accordion-panel img, .project-accordion-block .project-accordion-panel video, .project-accordion-block .project-accordion-panel iframe, .project-accordion-block .project-accordion-panel .wp-block-image, .project-accordion-block .project-accordion-panel .wp-block-embed {
  max-width: 100%;
  height: auto;
  margin: var(--space-s) 0;
}
.project-accordion-block .project-accordion-panel .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: var(--space-s) -8px;
}
.project-accordion-block .project-accordion-panel .wp-block-gallery .blocks-gallery-item {
  margin: 8px;
}
.project-accordion-block .project-accordion-panel .wp-caption, .project-accordion-block .project-accordion-panel figcaption {
  font-size: 0.9em;
  font-style: italic;
  margin-top: 4px;
  text-align: center;
  color: var(--text-light, #666);
}

:root {
  --primary: hsla(0, 0, 0, 1);
  --secondary: hsla(0, 0, 0, 1);
  --bg-body: hsla(0, 0%, 90%, 1);
  --text-body: hsla(0, 0%, 25%, 1);
  --border-primary: hsla(0, 0%, 50%, 0.25);
  --shadow-primary: hsla(0, 0%, 0%, 0.15);
  --space-4xs: clamp(0.33rem, calc(-0.03vw + 0.33rem), 0.31rem);
  --space-3xs: clamp(0.41rem, calc(0.04vw + 0.4rem), 0.44rem);
  --space-2xs: clamp(0.51rem, calc(0.16vw + 0.48rem), 0.62rem);
  --space-xs: clamp(0.64rem, calc(0.35vw + 0.57rem), 0.88rem);
  --space-s: clamp(0.8rem, calc(0.65vw + 0.67rem), 1.24rem);
  --space-m: clamp(1rem, calc(1.11vw + 0.78rem), 1.75rem);
  --space-l: clamp(1.25rem, calc(1.81vw + 0.89rem), 2.47rem);
  --space-xl: clamp(1.56rem, calc(2.87vw + 0.99rem), 3.5rem);
  --space-2xl: clamp(1.95rem, calc(4.44vw + 1.07rem), 4.95rem);
  --space-3xl: clamp(2.44rem, calc(6.75vw + 1.09rem), 7rem);
  --space-4xl: clamp(3.05rem, calc(10.13vw + 1.02rem), 9.89rem);
  --text-xs: clamp(10.1250000005px, 11.8518518519px + -1.7268518513 * (100vw - 320px) / 880, 11.8518518519px);
  --text-s: clamp(13.3333333333px, 13.3333333333px + 0.166666667 * (100vw - 320px) / 880, 13.5000000003px);
  --text-m: clamp(15px, 15px + 3 * (100vw - 320px) / 880, 18px);
  --text-l: clamp(16.875px, 16.875px + 7.1249999994 * (100vw - 320px) / 880, 23.9999999994px);
  --text-xl: clamp(18.984375px, 18.984375px + 13.0156249984 * (100vw - 320px) / 880, 31.9999999984px);
  --text-2xl: clamp(21.357421875px, 21.357421875px + 21.3092447885 * (100vw - 320px) / 880, 42.6666666635px);
  --text-3xl: clamp(24.0270996094px, 24.0270996094px + 32.8617892738 * (100vw - 320px) / 880, 56.8888888832px);
  --text-4xl: clamp(27.0304870605px, 27.0304870605px + 48.8213647818 * (100vw - 320px) / 880, 75.8518518424px);
  --text-5xl: clamp(30.4092979431px, 30.4092979431px + 70.7265045109 * (100vw - 320px) / 880, 101.135802454px);
  --text-6xl: clamp(34.210460186px, 34.210460186px + 100.6372764159 * (100vw - 320px) / 880, 134.8477366019px);
  --radius-xs: clamp(0.25rem, calc(0vw + 0.25rem), 0.25rem);
  --radius-s: clamp(0.38rem, calc(-0.19vw + 0.54rem), 0.5rem);
  --radius-m: clamp(0.63rem, calc(-0.19vw + 0.79rem), 0.75rem);
  --radius-l: clamp(1rem, calc(-0.37vw + 1.32rem), 1.25rem);
  --radius-xl: clamp(1.63rem, calc(-0.56vw + 2.11rem), 2rem);
  --radius-full: 999rem;
  --shadow-xs: 0 1px 2px var(--shadow-primary);
  --shadow-s: 0 1.5px 3px var(--shadow-primary);
  --shadow-m: 0 2px 6px var(--shadow-primary);
  --shadow-l: 0 3px 12px var(--shadow-primary);
  --shadow-xl: 0 6px 48px var(--shadow-primary);
}

.page-template-dummy {
  padding: 0 var(--space-l);
  color: #fff;
  background-color: #1e1e1e;
}
.page-template-dummy .chapter {
  padding-bottom: var(--space-s);
  margin: var(--space-l) 0;
  border-bottom: 1px solid #8c8c8c;
  color: #8c8c8c;
}
.page-template-dummy .typography span {
  display: block;
  line-height: 1;
}
.page-template-dummy .typography .text-xs {
  font-size: var(--text-s);
}
.page-template-dummy .typography .text-s {
  font-size: var(--text-s);
}
.page-template-dummy .typography .text-m {
  font-size: var(--text-m);
}
.page-template-dummy .typography .text-l {
  font-size: var(--text-l);
}
.page-template-dummy .typography .text-xl {
  font-size: var(--text-xl);
}
.page-template-dummy .typography .text-2xl {
  font-size: var(--text-2xl);
}
.page-template-dummy .typography .text-3xl {
  font-size: var(--text-3xl);
}
.page-template-dummy .typography .text-4xl {
  font-size: var(--text-4xl);
}
.page-template-dummy .spacing div {
  display: block;
  background-color: #8c8c8c;
  margin-bottom: var(--space-m);
  border-radius: 4px;
}
.page-template-dummy .space-4xs {
  height: 30px;
  width: var(--space-4xs);
}
.page-template-dummy .space-3xs {
  height: 30px;
  width: var(--space-3xs);
}
.page-template-dummy .space-2xs {
  height: 30px;
  width: var(--space-2xs);
}
.page-template-dummy .space-xs {
  height: 30px;
  width: var(--space-xs);
}
.page-template-dummy .space-s {
  height: 30px;
  width: var(--space-s);
}
.page-template-dummy .space-m {
  height: 30px;
  width: var(--space-m);
}
.page-template-dummy .space-xl {
  height: 30px;
  width: var(--space-xl);
}
.page-template-dummy .space-2xl {
  height: 30px;
  width: var(--space-2xl);
}
.page-template-dummy .space-3xl {
  height: 30px;
  width: var(--space-3xl);
}
.page-template-dummy .space-4xl {
  height: 30px;
  width: var(--space-4xl);
}

:root {
  --green: #92c01f;
  --green-dark: #709116;
  --green-soft: #d4e6a5;
  --green-soft-2: #e7efce;
  --off-white: #f4f5f2;
  --white: #ffffff;
  --ink: #14201b;
  --ink-70: #14201b;
  --ink-55: #14201b;
  --ink-40: #14201b;
  --line: rgba(20, 32, 27, 0.12);
  --line-2: rgba(20, 32, 27, 0.06);
  --accent: #b88a3e;
  --accent-soft: rgba(184, 138, 62, 0.10);
  --page-max: 1280px;
  --gutter: 80px;
  --section-py: 120px;
  --radius: 2px;
  --radius-lg: 4px;
}
@media (max-width: 1365px) {
  :root {
    --gutter: 56px;
  }
}
@media (max-width: 1024px) {
  :root {
    --gutter: 40px;
    --section-py: 88px;
  }
}
@media (max-width: 767px) {
  :root {
    --gutter: 24px;
    --section-py: 64px;
  }
}
@media (max-width: 478px) {
  :root {
    --gutter: 20px;
    --section-py: 48px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section--tight {
  padding: 80px 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-40);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 720px;
  text-wrap: balance;
}

p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .site-header__inner {
    height: 88px;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .site-header__inner {
    height: 72px;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 1024px) {
  .site-header__logo img {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .site-header__logo img {
    height: 44px;
  }
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-header__right {
    gap: 12px;
  }
}
.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0;
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease;
}
@media (max-width: 1200px) {
  .site-header__menu-toggle {
    display: inline-flex;
  }
}
.site-header__menu-toggle:hover {
  background: var(--off-white);
  border-color: var(--ink-40);
}
.site-header__menu-toggle .bar {
  display: block;
  position: relative;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.site-header__menu-toggle .bar::before, .site-header__menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.site-header__menu-toggle .bar::before {
  top: -6px;
}
.site-header__menu-toggle .bar::after {
  top: 6px;
}

.site-nav {
  display: flex;
  gap: 28px;
}
@media (max-width: 1200px) {
  .site-nav {
    display: none;
  }
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-nav__pro {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.site-nav__pro .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.site-nav__group {
  position: relative;
}
.site-nav__group:hover .site-nav__dropdown,
.site-nav__group:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-nav__group:hover .site-nav__chev,
.site-nav__group:focus-within .site-nav__chev {
  transform: rotate(180deg);
}
.site-nav__group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav__chev {
  transition: transform 0.2s ease;
}
.site-nav__dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(20, 32, 27, 0.06);
  pointer-events: none;
}
.site-nav__dropdown a {
  display: block;
  padding: 10px 20px 10px 28px;
  white-space: nowrap;
  font-size: 14px;
  position: relative;
}
.site-nav__dropdown a::after {
  display: none;
}
.site-nav__dropdown a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.site-nav__dropdown a:hover {
  color: var(--accent);
}
.site-nav__dropdown a.active {
  color: var(--accent);
  font-weight: 600;
}
.site-nav__dropdown a.active::before {
  opacity: 1;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after {
  right: 0;
}
.site-nav a.active {
  color: var(--ink);
}

.site-nav--mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--off-white);
  padding: 112px var(--gutter) 40px;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .site-nav--mobile {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
}
@media (max-width: 767px) {
  .site-nav--mobile {
    padding: 96px var(--gutter) 32px;
  }
}
body.menu-open .site-nav--mobile {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav--mobile__links {
  display: flex;
  flex-direction: column;
}
.site-nav--mobile__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: padding-left 0.2s ease, color 0.15s ease;
}
.site-nav--mobile__links a:first-child {
  border-top: 0;
}
.site-nav--mobile__links a:last-child {
  border-bottom: 1px solid var(--line);
}
.site-nav--mobile__links a svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-nav--mobile__links a:hover {
  padding-left: 6px;
}
.site-nav--mobile__links a:hover svg {
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 478px) {
  .site-nav--mobile__links a {
    padding: 18px 0;
  }
}
.site-nav--mobile__sub {
  padding-left: 24px !important;
  font-size: clamp(18px, 3vw, 22px) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  letter-spacing: -0.005em !important;
}
.site-nav--mobile__sub + a:not(.site-nav--mobile__sub) {
  margin-top: 8px;
}
.site-nav--mobile__links a.active {
  color: var(--accent);
}

.site-nav--mobile__footer {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .site-nav--mobile__footer {
    padding-top: 32px;
    gap: 20px;
  }
}
.site-nav--mobile__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.site-nav--mobile__cta:hover {
  background: #1f2f28;
}
.site-nav--mobile__cta:hover svg {
  transform: translate(2px, -2px);
}
.site-nav--mobile__cta svg {
  transition: transform 0.2s ease;
}
.site-nav--mobile__contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-70);
}
.site-nav--mobile__contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-nav--mobile__contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.site-nav--mobile .lang-switch {
  align-self: flex-start;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .site-header {
  background: var(--off-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.menu-open .site-header__logo {
  opacity: 0;
  pointer-events: none;
}
body.menu-open .site-header__menu-toggle {
  color: var(--ink);
}
body.menu-open .site-header__menu-toggle .bar {
  background: transparent;
}
body.menu-open .site-header__menu-toggle .bar::before {
  top: 0;
  transform: rotate(45deg);
}
body.menu-open .site-header__menu-toggle .bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 500;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--ink-55);
  letter-spacing: 0.04em;
}
.lang-switch button.is-on {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 767px) {
  .site-header__right .lang-switch {
    display: none;
  }
}

.btn-aanmelden {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
@media (max-width: 1024px) {
  .btn-aanmelden {
    padding: 10px 16px;
    font-size: 13px;
  }
}
@media (max-width: 478px) {
  .btn-aanmelden {
    display: none;
  }
}
.btn-aanmelden:hover {
  background: #1f2f28;
}
.btn-aanmelden:hover svg {
  transform: translateX(2px);
}
.btn-aanmelden svg {
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero--split {
  padding: 80px 0 56px;
  background: var(--white);
}
@media (max-width: 1024px) {
  .hero--split {
    padding: 56px 0 40px;
  }
}
@media (max-width: 767px) {
  .hero--split {
    padding: 40px 0 32px;
  }
}

.hero-split__inner {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
@media (max-width: 1024px) {
  .hero-split__inner {
    min-height: 0;
  }
}
.hero-split__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  .hero-split__left {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .hero-split__left {
    gap: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.hero-split__title {
  font-size: clamp(36px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 820px;
  text-wrap: pretty;
  margin: 0;
}
@media (max-width: 767px) {
  .hero-split__title {
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
}
.hero-split__title em {
  font-style: normal;
  position: relative;
  display: inline;
  background-image: linear-gradient(transparent 65%, var(--green-soft) 65%, var(--green-soft) 92%, transparent 92%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  animation: highlight-in 1.2s cubic-bezier(0.6, 0.05, 0.2, 1) 0.35s forwards;
}
.hero-split__lede {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 720px;
  margin: 0;
}

@keyframes highlight-in {
  to {
    background-size: 100% 100%;
  }
}
.quick {
  padding-block: 24px 40px;
}
.quick__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .quick__grid {
    grid-template-columns: 1fr;
  }
}
.quick__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 44px 44px 40px;
  min-height: 280px;
  background: var(--off-white);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.quick__card.alt {
  background: var(--green-soft-2);
}
.quick__card:hover {
  background: var(--white);
  border-color: var(--ink);
}
.quick__card:hover .quick__card-cta svg {
  transform: translateX(4px);
}
.quick__card h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 360px;
}
.quick__card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 420px;
}
@media (max-width: 1024px) {
  .quick__card {
    padding: 32px 32px 28px;
    min-height: 240px;
  }
}
@media (max-width: 767px) {
  .quick__card {
    padding: 28px 24px 24px;
    min-height: 0;
    gap: 18px;
  }
}
.quick__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.quick__card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick__card-tag {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  font-weight: 500;
}
.quick__card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.quick__card-cta svg {
  transition: transform 0.2s ease;
}

.samen {
  padding-block: 80px 100px;
}
@media (max-width: 1024px) {
  .samen {
    padding-block: 56px 72px;
  }
}
@media (max-width: 767px) {
  .samen {
    padding-block: 40px 56px;
  }
}
.samen__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .samen__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.samen__body p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
}
.samen__body p.small {
  font-size: 16px;
  color: var(--ink-70);
}
.samen__body a.inline {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.gemeenten {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.gemeenten__caption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-55);
  letter-spacing: 0.04em;
}

.gemeente {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .gemeente {
    font-size: 15px;
    padding: 16px 4px;
  }
}
.gemeente:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
@media (max-width: 478px) {
  .gemeente:nth-child(odd) {
    padding-right: 12px;
  }
}
.gemeente:nth-child(even) {
  padding-left: 28px;
}
@media (max-width: 478px) {
  .gemeente:nth-child(even) {
    padding-left: 12px;
  }
}
.gemeente__num {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-40);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.home-band {
  width: 100%;
  overflow: hidden;
  margin: 0;
}
.home-band img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 440px);
  object-fit: cover;
  object-position: center 55%;
}

.thema {
  background: var(--off-white);
  padding: var(--section-py) 0;
  position: relative;
}
.thema__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 40px;
}
@media (max-width: 991px) {
  .thema__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.thema__header p {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 380px;
  line-height: 1.55;
}
.thema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .thema__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .thema__grid {
    grid-template-columns: 1fr;
  }
}

.thema-card {
  background: var(--off-white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
}
.thema-card:hover {
  background: var(--white);
}
.thema-card:hover .thema-card__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}
.thema-card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.thema-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-70);
  margin-top: auto;
}
.thema-card__num {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-40);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.thema-card__icon {
  width: 28px;
  height: 28px;
  color: var(--ink);
}
.thema-card__icon svg {
  width: 100%;
  height: 100%;
}
.thema-card__arrow {
  position: absolute;
  top: 26px;
  right: 24px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--accent);
}

.actueel {
  padding-block: var(--section-py);
}
.actueel__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 24px;
}
@media (max-width: 767px) {
  .actueel__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
}
.actueel__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .actueel__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr 32px;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
}
.news-item:last-child {
  border-bottom: 1px solid var(--line);
}
.news-item:hover {
  transform: translateX(6px);
}
.news-item h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .news-item h3 {
    font-size: 19px;
  }
}
.news-item p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.5;
  max-width: 520px;
}
.news-item__meta {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  font-weight: 500;
  padding-top: 4px;
}
@media (max-width: 767px) {
  .news-item__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }
}
.news-item__meta .tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 8px;
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 11px;
}
@media (max-width: 767px) {
  .news-item__meta .tag {
    margin-top: 0;
  }
}
.news-item__arrow {
  color: var(--accent);
  padding-top: 8px;
}
@media (max-width: 767px) {
  .news-item__arrow {
    display: none;
  }
}

.agenda {
  background: var(--green-soft);
  color: var(--ink);
  padding: 40px 36px;
  position: relative;
}
@media (max-width: 767px) {
  .agenda {
    padding: 28px 24px;
  }
}
.agenda__title {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  font-weight: 500;
  margin-bottom: 24px;
}
.agenda__list {
  display: flex;
  flex-direction: column;
}
.agenda__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(20, 32, 27, 0.15);
  padding-top: 24px;
}
.agenda__cta svg {
  transition: transform 0.2s ease;
}
.agenda__cta:hover svg {
  transform: translateX(4px);
}

.agenda-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(20, 32, 27, 0.15);
  align-items: center;
}
.agenda-item:last-child {
  padding-bottom: 0;
}
.agenda-item h4 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}
.agenda-item .loc {
  font-size: 13px;
  color: var(--ink-55);
}
.agenda-item__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.agenda-item__date .d {
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.agenda-item__date .m {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  font-weight: 500;
}

.bestuur {
  padding: var(--section-py) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  position: relative;
}
.bestuur__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .bestuur__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.bestuur__lead h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.bestuur__lead p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.6;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
@media (max-width: 767px) {
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}

.docs-col h4 {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}

.doc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.2s ease;
}
.doc-row:hover {
  padding-left: 4px;
}
.doc-row__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.doc-row__title .year {
  display: block;
  font-size: 12px;
  color: var(--ink-55);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.doc-row__type {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-70);
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc-row__type svg {
  color: var(--accent);
}

.partners {
  padding: 100px 0 100px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .partners {
    padding: 72px 0;
  }
}
@media (max-width: 767px) {
  .partners {
    padding: 56px 0;
  }
}
.partners__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
}
@media (max-width: 767px) {
  .partners__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
}
.partners__header h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.partners__lede {
  margin-top: 12px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20, 32, 27, 0.70);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners__grid--compact {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .partners__grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .partners__grid--compact {
    grid-template-columns: 1fr;
  }
}

.partner-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.partner-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-cell:hover {
  background: rgba(20, 32, 27, 0.04);
  color: var(--ink);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0 36px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 72px 0 32px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 56px 0 28px;
  }
}
.footer__masthead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .footer__masthead {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
}
.footer__identity {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.footer__logo {
  width: 56px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__lockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
}
@media (max-width: 767px) {
  .footer__tagline {
    font-size: 16px;
  }
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }
}
.footer__col h5 {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0 0 20px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer__col a:hover {
  color: var(--green-soft);
}
.footer__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__contact-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact-rows li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: baseline;
}
.footer__contact-rows li > span {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.footer__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.footer__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
  }
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer__bottom a:hover {
  color: var(--white);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__legal-dot {
  color: rgba(255, 255, 255, 0.25);
}
.footer__bottom-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__bottom-links {
    gap: 18px;
  }
}

body.footer-light .footer {
  background: var(--off-white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
body.footer-light .footer__logo {
  filter: none;
  opacity: 1;
}
body.footer-light .footer__masthead, body.footer-light .footer__cols {
  border-bottom-color: var(--line);
}
body.footer-light .footer__tagline {
  color: var(--ink);
}
body.footer-light .footer__col h5 {
  color: var(--ink);
}
body.footer-light .footer__col a {
  color: var(--ink);
}
body.footer-light .footer__col a:hover {
  color: var(--accent);
}
body.footer-light .footer__address {
  color: var(--ink);
}
body.footer-light .footer__contact-rows a {
  color: var(--ink);
}
body.footer-light .footer__contact-rows a:hover {
  color: var(--accent);
}
body.footer-light .footer__contact-rows li > span {
  color: var(--ink);
}
body.footer-light .footer__cta {
  color: var(--ink);
  border-color: var(--ink);
}
body.footer-light .footer__cta:hover {
  background: var(--ink);
  color: var(--white);
}
body.footer-light .footer__legal-dot {
  color: var(--ink);
}
body.footer-light .footer__bottom, body.footer-light .footer__bottom a {
  color: var(--ink);
}
body.footer-light .footer__bottom a:hover {
  color: var(--ink);
}

.subpage-hero {
  padding: 56px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .subpage-hero {
    padding: 48px 0 56px;
  }
}
@media (max-width: 767px) {
  .subpage-hero {
    padding: 32px 0 40px;
  }
}
.subpage-hero h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 500;
  max-width: 880px;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.subpage-hero .lede {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 720px;
  margin: 0;
}
.subpage-hero__eyebrow {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 18px;
}
.subpage-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.subpage-hero__meta .cat {
  color: var(--accent);
}
.subpage-hero__meta .dot {
  color: var(--ink-40);
}
.subpage-hero__meta .meta {
  color: var(--ink-55);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(20, 32, 27, 0.55);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: rgba(20, 32, 27, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: var(--ink);
}
.breadcrumb .sep {
  color: rgba(20, 32, 27, 0.40);
}

.subpage-body {
  padding: 80px 0 100px;
  background: var(--white);
}
@media (max-width: 1024px) {
  .subpage-body {
    padding: 64px 0 80px;
  }
}
@media (max-width: 767px) {
  .subpage-body {
    padding: 48px 0 56px;
  }
}
.subpage-body + .subpage-body {
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
@media (max-width: 1024px) {
  .subpage-body + .subpage-body {
    padding-top: 64px;
  }
}
@media (max-width: 767px) {
  .subpage-body + .subpage-body {
    padding-top: 48px;
  }
}
.subpage-body--soft {
  background: var(--off-white);
}
.subpage-body--tight {
  padding: 32px 0;
}
@media (max-width: 767px) {
  .subpage-body--tight {
    padding: 24px 0;
  }
}
.subpage-body .columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .subpage-body .columns {
    gap: 56px;
  }
}
@media (max-width: 991px) {
  .subpage-body .columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.subpage-body .columns > h2,
.subpage-body .columns .columns__head h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.subpage-body .columns .body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0 0 16px;
  max-width: 700px;
}
.subpage-body .columns .body p strong {
  color: var(--ink);
  font-weight: 500;
}
.subpage-body .columns .body ul:not(.gemeenten-list):not(.criteria-list) {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subpage-body .columns .body ul:not(.gemeenten-list):not(.criteria-list) li {
  padding-left: 24px;
  position: relative;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.55;
}
.subpage-body .columns .body ul:not(.gemeenten-list):not(.criteria-list) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.subpage-body .columns .body a:not(.btn-zlzvh):not(.inline-link) {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.15s ease;
}

.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.news-list > a {
  display: grid;
  grid-template-columns: 140px 1fr 32px;
  gap: 48px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
@media (max-width: 1024px) {
  .news-list > a {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .news-list > a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}
.news-list > a:hover {
  transform: translateX(6px);
}
.news-list > a:hover h3 {
  color: var(--accent);
}
.news-list > a:hover .arrow {
  transform: translateX(4px);
}
.news-list .date {
  font-size: 13px;
  color: var(--ink-55);
  letter-spacing: 0.02em;
}
.news-list .tag {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .news-list .tag {
    display: inline-block;
    margin-top: 0;
    margin-left: 12px;
  }
}
.news-list h3 {
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.25;
  transition: color 0.15s ease;
}
.news-list .excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
  max-width: 640px;
}
.news-list .arrow {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .news-list .arrow {
    display: none;
  }
}

.agenda-aside {
  background: var(--green-soft);
  padding: 36px 32px;
  position: sticky;
  top: 112px;
}
@media (max-width: 991px) {
  .agenda-aside {
    position: static;
  }
}
@media (max-width: 767px) {
  .agenda-aside {
    padding: 28px 24px;
  }
}
.agenda-aside__title {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  font-weight: 500;
  margin-bottom: 20px;
}
.agenda-aside__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agenda-aside__cta {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.15s ease;
  gap: 6px;
}
.agenda-aside__cta:hover {
  gap: 10px;
}

.agenda-event {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20, 32, 27, 0.18);
}
.agenda-event:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.agenda-event__date .d {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.agenda-event__date .w {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  margin-top: 4px;
  text-transform: uppercase;
}
.agenda-event h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.35;
}
.agenda-event .loc {
  font-size: 13px;
  color: var(--ink-55);
}

.listing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .listing-grid {
    gap: 56px;
  }
}
@media (max-width: 991px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.listing-eyebrow {
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  font-weight: 500;
}

.theme-detail-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);
}
@media (max-width: 1024px) {
  .theme-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .theme-detail-grid {
    grid-template-columns: 1fr;
  }
}
.theme-detail-grid > a {
  background: var(--white);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s ease;
}
.theme-detail-grid > a:hover {
  background: var(--off-white);
}
.theme-detail-grid h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}
.theme-detail-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}
.theme-detail-grid .arrow {
  margin-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .process-step {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
}
.process-step__num {
  font-size: 48px;
  font-weight: 300;
  color: var(--ink-40);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
@media (max-width: 767px) {
  .process-step__num {
    font-size: 36px;
  }
}
.process-step h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
  max-width: 720px;
}

.section-intro {
  margin-bottom: 40px;
}
.section-intro h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0;
}
.section-intro p {
  font-size: 17px;
  color: var(--ink-70);
  margin-top: 12px;
  max-width: 600px;
}

.docs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.docs-list > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: padding 0.15s ease, background 0.15s ease;
}
.docs-list > a:hover {
  background: var(--off-white);
  padding-left: 12px;
  padding-right: 12px;
}
.docs-list h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px;
}
.docs-list .meta {
  font-size: 13px;
  color: var(--ink-55);
}
.docs-list .pill {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-70);
  white-space: nowrap;
}

.stuurgroep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
@media (max-width: 767px) {
  .stuurgroep-grid {
    grid-template-columns: 1fr;
  }
}

.stuurgroep-member {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--line);
}
.stuurgroep-member:nth-child(odd) {
  border-right: 1px solid var(--line);
}
@media (max-width: 767px) {
  .stuurgroep-member:nth-child(odd) {
    border-right: 0;
  }
}
.stuurgroep-member:nth-child(even) {
  padding-left: 24px;
}
@media (max-width: 767px) {
  .stuurgroep-member:nth-child(even) {
    padding-left: 0;
  }
}
.stuurgroep-member__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.stuurgroep-member__role {
  font-size: 14px;
  color: var(--ink-70);
  margin-bottom: 2px;
}
.stuurgroep-member__function {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gemeenten-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 478px) {
  .gemeenten-list {
    grid-template-columns: 1fr;
  }
}
.gemeenten-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.gemeenten-list li:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
@media (max-width: 478px) {
  .gemeenten-list li:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
}
.gemeenten-list li:nth-child(even) {
  padding-left: 28px;
}
@media (max-width: 478px) {
  .gemeenten-list li:nth-child(even) {
    padding-left: 0;
  }
}
.gemeenten-list li .name {
  font-size: 17px;
}
.gemeenten-list li .inw {
  font-size: 12px;
  color: var(--ink-40);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.partner-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 991px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 478px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner-grid > div {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.stat-grid__item .num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-grid__item .num .unit {
  font-size: 0.5em;
}
.stat-grid__item .label {
  font-size: 14px;
  color: var(--ink-55);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.15s ease;
}
.inline-link:hover {
  gap: 16px;
}

.btn-zlzvh {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.btn-zlzvh:hover {
  background: #1f2f28;
}
.btn-zlzvh svg {
  transition: transform 0.2s ease;
}
.btn-zlzvh:hover svg {
  transform: translate(2px, -2px);
}

.article {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 720px;
}
.article p {
  margin: 0 0 20px;
}
.article p strong {
  font-weight: 500;
}
.article h2 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 40px 0 16px;
}
.article a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: color 0.15s ease;
}
.article blockquote {
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--accent);
  background: var(--off-white);
  font-size: 19px;
  font-style: normal;
  line-height: 1.5;
  color: var(--ink);
}
@media (max-width: 767px) {
  .article blockquote {
    padding: 20px 24px;
    font-size: 17px;
  }
}
.article blockquote footer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-55);
  font-weight: 500;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .article-layout {
    gap: 56px;
  }
}
@media (max-width: 991px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.article-aside {
  position: sticky;
  top: 112px;
}
@media (max-width: 991px) {
  .article-aside {
    position: static;
  }
}
.article-aside__section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.article-aside__section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.article-aside__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  font-weight: 500;
  margin-bottom: 12px;
}
.article-aside__share {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-aside__share a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-70);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.article-aside__share a svg {
  width: 18px;
  height: 18px;
}
.article-aside__share a:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.article-aside__related {
  display: flex;
  flex-direction: column;
}
.article-aside__related a {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: padding-left 0.15s ease;
}
.article-aside__related a:hover {
  padding-left: 4px;
}
.article-aside__related .cat {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 6px;
}
.article-aside__related h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
}
.article-aside__related .date {
  font-size: 12px;
  color: var(--ink-55);
  margin-top: 6px;
}
.article-aside__related--themas a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  transition: transform 0.15s ease;
}
.article-aside__related--themas a:hover {
  padding-left: 0;
  transform: translateX(4px);
}
.article-aside__related--themas a .ico {
  width: 22px;
  height: 22px;
  color: var(--ink);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.article-aside__related--themas a .ico svg {
  width: 100%;
  height: 100%;
}
.article-aside__related--themas a .t {
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.15s ease;
}
.article-aside__related--themas a:hover .t {
  color: var(--accent);
}

.article-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.article-foot a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.15s ease;
}
.article-foot a:hover {
  gap: 16px;
}
.article-foot .back {
  color: var(--ink);
}
.article-foot .next {
  color: var(--accent);
}

.contact-attention {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.contact-attention__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 991px) {
  .contact-attention__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.contact-attention__label {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-attention__text {
  margin: 0;
  font-size: 17px;
  color: var(--ink);
  max-width: 640px;
}
.contact-attention__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.contact-attention__cta:hover {
  background: #1f2f28;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    gap: 56px;
  }
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 32px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info__block:not(:first-child) {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-info__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-info__address {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  font-style: normal;
  color: var(--ink);
}
.contact-info__address--muted {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-70);
}
.contact-info__contactrows {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 12px;
  align-items: baseline;
}
.contact-info__contactrows > span {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  font-weight: 500;
}
.contact-info__contactrows a {
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  justify-self: start;
}
.contact-info__contactrows a.tel {
  color: var(--ink);
}
.contact-info__contactrows a.mail {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.contact-info__phone {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.contact-info__phone .note {
  font-size: 13px;
  color: var(--ink-55);
  font-weight: 400;
}
.contact-info__hours {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 8px;
  font-size: 15px;
}
.contact-info__hours .day {
  color: var(--ink-70);
}
.contact-info__hours .when {
  font-weight: 500;
}
.contact-info__hours .closed {
  color: var(--ink-55);
}
.contact-info__emergency {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-55);
  line-height: 1.5;
}
.contact-info__emergency strong {
  color: var(--ink);
  font-weight: 500;
}

.contact-photo {
  margin: 0;
}
.contact-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 991px) {
  .contact-photo img {
    aspect-ratio: 16/10;
  }
}
.contact-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-55);
  letter-spacing: 0.02em;
}

.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field--full {
  margin-bottom: 20px;
}
.contact-form__label {
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--ink-70);
  margin-bottom: 8px;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  border-color: var(--ink);
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7"><path d="M1 1l5 5 5-5" stroke="%2314201b" stroke-width="1.5" fill="none"/></svg>') no-repeat right 16px center;
  padding-right: 44px;
}
.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form__consent {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 560px;
}
.contact-form__consent input {
  margin-top: 3px;
}
.contact-form__consent a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.contact-form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.contact-form__submit:hover {
  background: #1f2f28;
}
.contact-form__submit svg {
  transition: transform 0.2s ease;
}
.contact-form__submit:hover svg {
  transform: translateX(2px);
}

.quick-routes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.quick-routes a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.15s ease;
}
@media (max-width: 767px) {
  .quick-routes a {
    grid-template-columns: 1fr auto;
    row-gap: 4px;
  }
}
.quick-routes a:hover {
  padding-left: 6px;
}
.quick-routes .q {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.quick-routes .a {
  font-size: 14px;
  color: var(--ink-70);
}
@media (max-width: 767px) {
  .quick-routes .a {
    grid-column: 1/-1;
    font-size: 13px;
  }
}
.quick-routes .arrow {
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

@font-face {
  font-family: "Fustat";
  src: url("../fonts/Fustat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fustat";
  src: url("../fonts/Fustat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 {
  padding: var(--space-4xl) var(--space-l);
}
.error-404 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 30vh;
}

/* ===== Voor professionals — landing =================================== */
.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 18px;
  padding: 4px 12px 4px 10px;
  background: var(--green-soft);
  border-radius: 999px;
}
.audience-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.criteria-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.criteria-list li .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  margin-top: 1px;
}
.criteria-list li > div {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.criteria-list li > div strong {
  font-weight: 600;
}

.faq {
  margin-top: 8px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child {
  border-top: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  margin: -4px 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 720px;
}
/* ====================================================================== */

/*# sourceMappingURL=style.css.map */
