/* VDBS Bouw — Sub-page styles. Inherits site.css + extras.css + tokens.css */

/* Fix: italic-descender (j, g, q) cut-off in hero/sub-hero word-reveals */
.hero__h1 .word-wrap,
.sub-hero__h1 .word-wrap {
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

/* Fix: counters / numbers strip on dark sections */
.section--dark .numbers { border-color: rgba(232,220,196,0.18); }
.section--dark .number { border-color: rgba(232,220,196,0.18); }
.section--dark .number__value { color: var(--vdbs-off-white); }
.section--dark .number__value-suffix { color: var(--vdbs-creme); }
.section--dark .number__label { color: rgba(232,220,196,0.65); }
.section--dark .number__sub { color: rgba(248,244,236,0.7); }

/* Footer credit line */
.footer__credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(232,220,196,0.08);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(248,244,236,0.45);
  max-width: var(--container-max);
  margin-left: auto; margin-right: auto;
}
.footer__credit a {
  color: #D97A3C;
  text-decoration: none;
  border-bottom: 1px solid rgba(217,122,60,0.4);
  transition: opacity 200ms ease-out;
}
.footer__credit a:hover { opacity: 0.8; }
.footer__credit .bee { display: inline-block; }

/* Real-photo profile (overrides image-slot styling for portretten) */
.profile__photo--photo { background: transparent; }
.profile__photo img.profile__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1200ms var(--ease-out);
}

/* Number value prefix (e.g. €) */
.number__value-prefix {
  font-family: var(--font-serif-accent);
  font-style: italic; font-weight: 400;
  font-size: 0.5em;
  color: #8A6F3E;
  letter-spacing: 0;
  margin-right: 2px;
}
.section--dark .number__value-prefix { color: var(--vdbs-creme); }

/* Footer socials */
.footer__socials {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__social {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(232,220,196,0.22);
  border-radius: 50%;
  color: rgba(248,244,236,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,220,196,0.22);
  transition: color 250ms var(--ease-out),
              border-color 250ms var(--ease-out),
              background 250ms var(--ease-out),
              transform 250ms var(--ease-out);
}
.footer__social:hover {
  color: var(--vdbs-leisteen);
  background: var(--vdbs-creme);
  border-color: var(--vdbs-creme);
  transform: translateY(-2px);
  opacity: 1;
}
.footer__social svg {
  width: 16px; height: 16px;
  display: block;
  fill: currentColor;
}

/* ============== SUB-HERO (smaller than home hero) ============== */
.sub-hero {
  position: relative;
  min-height: 72vh;
  background: var(--vdbs-donker);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 200px var(--container-pad-d) 96px;
  color: var(--fg-on-dark);
}
.sub-hero--short { min-height: 56vh; padding-bottom: 80px; }
.sub-hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.sub-hero__photo {
  position: absolute; inset: -8% 0;
  width: 100%; height: 116%;
  object-fit: cover; object-position: center 45%;
  transform: scale(1.04);
  transition: transform 1200ms var(--ease-out);
  filter: saturate(0.92) contrast(1.02);
}
.sub-hero.is-loaded .sub-hero__photo { transform: scale(1); }
.sub-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,25,31,0.78) 0%, rgba(21,25,31,0.42) 30%, rgba(21,25,31,0.78) 100%);
}
.sub-hero__overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 25% 80%, rgba(21,25,31,0.5), transparent 70%);
}
.sub-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container-max); width: 100%;
  margin: 0 auto;
}
.sub-hero__eyebrow {
  font-size: 12px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--vdbs-creme);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(16px);
  animation: rise 800ms var(--ease-out) 200ms forwards;
}
.sub-hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 36px; height: 1px; background: var(--vdbs-creme);
}
.sub-hero__h1 {
  font-weight: 200;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.02; letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0; max-width: 18ch;
  color: var(--vdbs-off-white);
}
.sub-hero__h1 .word-wrap { display: inline-block; overflow: hidden; vertical-align: baseline; }
.sub-hero__h1 .word {
  display: inline-block;
  transform: translateY(105%); opacity: 0;
  transition: transform 900ms var(--ease-out), opacity 600ms var(--ease-out);
}
.sub-hero.is-loaded .sub-hero__h1 .word { transform: translateY(0); opacity: 1; }
.sub-hero__sub {
  margin-top: 32px; max-width: 56ch;
  font-size: 17px; line-height: 1.65;
  color: rgba(248,244,236,0.78);
  opacity: 0; transform: translateY(16px);
  animation: rise 700ms var(--ease-out) 1100ms forwards;
}
.sub-hero__crumbs {
  position: absolute; top: 140px; left: var(--container-pad-d);
  z-index: 2;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(248,244,236,0.55);
  display: flex; gap: 14px; align-items: center;
  font-family: ui-monospace, monospace;
  opacity: 0; animation: rise 600ms var(--ease-out) 900ms forwards;
}
.sub-hero__crumbs a { color: inherit; border: 0; }
.sub-hero__crumbs a:hover { color: var(--vdbs-creme); opacity: 1; }
.sub-hero__crumbs .sep { opacity: 0.5; }
@media (max-width: 900px) {
  .sub-hero { padding: 160px var(--container-pad-m) 80px; min-height: 60vh; }
  .sub-hero__crumbs { left: var(--container-pad-m); top: 96px; }
}

/* Sub-hero variant: cream/light, no photo */
.sub-hero--light {
  background: var(--bg-paper); color: var(--fg-on-paper);
  min-height: 56vh;
  border-bottom: 1px solid var(--vdbs-line-light);
}
.sub-hero--light .sub-hero__eyebrow { color: #8A6F3E; }
.sub-hero--light .sub-hero__eyebrow::before { background: #8A6F3E; }
.sub-hero--light .sub-hero__h1 { color: var(--vdbs-leisteen); }
.sub-hero--light .sub-hero__sub { color: var(--vdbs-grijs); }
.sub-hero--light .sub-hero__crumbs { color: var(--vdbs-grijs); }

/* ============== TEXT SPREAD: 2-col title + body ============== */
.spread {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 96px; align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (max-width: 900px) { .spread { grid-template-columns: 1fr; gap: 40px; } }
.spread__title {
  font-weight: 200; font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--vdbs-leisteen);
  text-wrap: balance;
}
.section--dark .spread__title { color: var(--vdbs-off-white); }
.spread__body p {
  font-size: 17px; line-height: 1.75;
  color: var(--vdbs-leisteen);
  max-width: 60ch;
}
.spread__body p + p { margin-top: 20px; }
.section--dark .spread__body p { color: rgba(248,244,236,0.78); }

/* ============== META BAR (project detail) ============== */
.meta-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--vdbs-line-light);
  border-bottom: 1px solid var(--vdbs-line-light);
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .meta-bar { grid-template-columns: 1fr 1fr; } }
.meta-bar__item {
  padding: 32px 24px;
  border-right: 1px solid var(--vdbs-line-light);
}
.meta-bar__item:last-child { border-right: 0; }
@media (max-width: 900px) {
  .meta-bar__item:nth-child(2n) { border-right: 0; }
  .meta-bar__item:nth-child(-n+2) { border-bottom: 1px solid var(--vdbs-line-light); }
}
.meta-bar__label {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--vdbs-grijs);
}
.meta-bar__value {
  margin-top: 14px;
  font-size: 18px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--vdbs-leisteen);
  line-height: 1.3;
}
.meta-bar__value--empty { color: var(--vdbs-grijs); font-weight: 400; font-style: italic; font-family: var(--font-serif-accent); }

/* ============== PROJECT FILTER ============== */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--vdbs-line-light);
  padding-bottom: 24px;
}
.filter-btn {
  background: transparent; border: 0; padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--vdbs-grijs);
  cursor: pointer;
  position: relative;
  margin-right: 32px;
  transition: color 200ms var(--ease-out);
}
.filter-btn::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--vdbs-leisteen);
  transition: right 300ms var(--ease-out);
}
.filter-btn:hover { color: var(--vdbs-leisteen); }
.filter-btn[aria-pressed="true"] { color: var(--vdbs-leisteen); }
.filter-btn[aria-pressed="true"]::after { right: 0; }
.filter-btn__count {
  font-family: ui-monospace, monospace;
  font-size: 10px; color: var(--vdbs-grijs);
  margin-left: 6px;
  letter-spacing: 0;
}

/* ============== HERO IMAGE (project detail) ============== */
.project-hero {
  position: relative;
  width: 100%;
  height: clamp(440px, 78vh, 780px);
  overflow: hidden;
  background: var(--vdbs-leisteen);
  margin-top: 96px;
}
.project-hero__img {
  position: absolute; inset: -6% 0;
  width: 100%; height: 112%;
  object-fit: cover; object-position: center;
  filter: saturate(0.92);
  transform: scale(1.03);
  transition: transform 1400ms var(--ease-out);
}
.project-hero.is-loaded .project-hero__img { transform: scale(1); }
.project-hero__badge {
  position: absolute; top: 24px; left: 24px;
  padding: 8px 12px;
  background: var(--vdbs-creme); color: var(--vdbs-leisteen);
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .project-hero { height: clamp(320px, 60vh, 560px); margin-top: 72px; }
}

/* ============== GALLERY: simple 2-up + full ============== */
.proj-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .proj-gallery { grid-template-columns: 1fr; gap: 16px; } }
.proj-gallery__item {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #3A4651 0%, #2B3640 100%);
  aspect-ratio: 4/3;
}
.proj-gallery__item--tall { aspect-ratio: 4/5; }
.proj-gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 21/9; }
@media (max-width: 900px) {
  .proj-gallery__item--wide { aspect-ratio: 16/10; }
}
.proj-gallery__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out), filter 600ms var(--ease-out);
  filter: saturate(0.92);
}
.proj-gallery__item:hover img { transform: scale(1.04); filter: saturate(1); }

/* ============== RELATED PROJECTS ============== */
.related {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .related { grid-template-columns: 1fr; } }

/* ============== TEAM PROFILES (Over ons) ============== */
.profiles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .profiles { grid-template-columns: 1fr; gap: 40px; } }
.profile { display: flex; flex-direction: column; }
.profile__photo {
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #3A4651 0%, #2B3640 100%);
  margin-bottom: 28px;
}
.profile__photo image-slot,
.profile__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.profile:hover .profile__photo img { transform: scale(1.04); }
.profile__num {
  font-family: ui-monospace, monospace;
  font-size: 11px; color: var(--vdbs-grijs);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.profile__name {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -0.018em;
  color: var(--vdbs-leisteen);
}
.profile__name .accent { font-size: inherit; }
.profile__role {
  margin-top: 8px;
  font-size: 13px; color: var(--vdbs-grijs);
  letter-spacing: 0.04em;
}
.profile__bio {
  margin-top: 24px;
  font-size: 16px; line-height: 1.7;
  color: var(--vdbs-leisteen);
  max-width: 42ch;
}
.profile__contact {
  margin-top: 24px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px;
}
.profile__contact a {
  color: var(--vdbs-leisteen);
  border-bottom: 1px solid var(--vdbs-line-light);
  padding-bottom: 2px;
}

/* ============== CONTACT FORM ============== */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  max-width: var(--container-max); margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }
.form { display: grid; gap: 24px; }
.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--vdbs-grijs);
}
.form__input, .form__select, .form__textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--vdbs-leisteen);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--vdbs-line-light);
  padding: 12px 0;
  outline: none;
  transition: border-color 250ms var(--ease-out);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form__textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-bottom-color: var(--vdbs-leisteen);
}
.form__select {
  background-image: linear-gradient(45deg, transparent 50%, var(--vdbs-grijs) 50%), linear-gradient(135deg, var(--vdbs-grijs) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.form__submit { margin-top: 16px; justify-self: start; }
.contact-aside {
  display: flex; flex-direction: column; gap: 40px;
  border-left: 1px solid var(--vdbs-line-light);
  padding-left: 56px;
}
@media (max-width: 900px) {
  .contact-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--vdbs-line-light); padding-top: 40px; }
}
.contact-aside__block { display: flex; flex-direction: column; gap: 6px; }
.contact-aside__label {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--vdbs-grijs);
}
.contact-aside__name {
  font-size: 18px; font-weight: 500;
  color: var(--vdbs-leisteen);
}
.contact-aside__detail {
  font-size: 15px; color: var(--vdbs-leisteen);
  line-height: 1.6;
}
.contact-aside__detail a { color: inherit; border-bottom: 1px solid var(--vdbs-line-light); }

/* ============== MAP (werkgebied) ============== */
.map-block {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--vdbs-leisteen);
  overflow: hidden;
  max-width: var(--container-max); margin: 0 auto;
  border-radius: 2px;
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--vdbs-creme);
  box-shadow: 0 0 0 4px rgba(232,220,196,0.18);
  transform: translate(-50%,-50%);
}
.map-pin::after {
  content: attr(data-label);
  position: absolute;
  left: 22px; top: -8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--vdbs-creme);
  font-family: ui-monospace, monospace;
  white-space: nowrap;
}
.map-pin--primary {
  background: #FFF6E2;
  box-shadow: 0 0 0 6px rgba(232,220,196,0.28);
}
.map-pin--primary::after { color: var(--vdbs-off-white); font-weight: 600; }

/* ============== REGION CARDS (werkgebied + footer) ============== */
.regions {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .regions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .regions { grid-template-columns: 1fr; } }
.region {
  background: var(--vdbs-leisteen);
  color: var(--vdbs-off-white);
  padding: 32px 28px;
  border-radius: 2px;
  text-decoration: none; border: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 350ms var(--ease-out);
}
.region:hover { transform: translateY(-3px); }
.region::before {
  content: ''; position: absolute; inset: 0;
  background: var(--vdbs-creme);
  opacity: 0; transition: opacity 300ms var(--ease-out);
}
.region:hover::before { opacity: 0.06; }
.region__num {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--vdbs-creme); opacity: 0.7;
  position: relative; z-index: 1;
}
.region__name {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: 32px; font-weight: 400;
  line-height: 1.1;
  color: var(--vdbs-creme);
  position: relative; z-index: 1;
}
.region__arrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--vdbs-off-white); opacity: 0.6;
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  transition: gap 250ms var(--ease-out), opacity 250ms var(--ease-out);
}
.region:hover .region__arrow { gap: 14px; opacity: 1; }

/* ============== SERVICE GRID (SEO pages) ============== */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--vdbs-off-white);
  border: 1px solid var(--vdbs-line-light);
  padding: 36px 32px;
  border-radius: 2px;
  position: relative;
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
}
.service:hover { border-color: var(--vdbs-leisteen); background: #FCFAF4; }
.service__num {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--vdbs-grijs);
}
.service__title {
  margin-top: 20px;
  font-size: 22px; font-weight: 500; letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--vdbs-leisteen);
}
.service__body {
  margin-top: 14px;
  font-size: 15px; line-height: 1.65;
  color: var(--vdbs-grijs);
}

/* ============== WERKWIJZE STEPS (long-form) ============== */
.process {
  max-width: var(--container-max); margin: 0 auto;
}
.process__step {
  display: grid; grid-template-columns: 120px 1.1fr 1.4fr;
  gap: 56px;
  padding: 56px 0;
  border-top: 1px solid var(--vdbs-line-light);
  align-items: start;
}
.process__step:last-child { border-bottom: 1px solid var(--vdbs-line-light); }
@media (max-width: 900px) {
  .process__step { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}
.process__num {
  font-family: var(--font-serif-accent);
  font-style: italic; font-weight: 400;
  font-size: 64px; line-height: 1;
  color: #8A6F3E;
  letter-spacing: -0.02em;
}
.process__title {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 300; letter-spacing: -0.015em;
  color: var(--vdbs-leisteen);
  line-height: 1.15;
  text-wrap: balance;
}
.process__body {
  font-size: 16px; line-height: 1.7;
  color: var(--vdbs-grijs);
  max-width: 50ch;
}
.process__body p + p { margin-top: 14px; }
.process__list {
  margin: 20px 0 0;
  padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.process__list li {
  font-size: 14px; color: var(--vdbs-leisteen);
  padding-left: 18px; position: relative;
}
.process__list li::before {
  content: '—'; position: absolute; left: 0; color: #8A6F3E;
}

/* ============== ANCHOR / breadcrumb (small back link) ============== */
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vdbs-grijs);
  border: 0;
  text-decoration: none;
}
.back-link:hover { color: var(--vdbs-leisteen); opacity: 1; }
.back-link::before { content: '←'; font-size: 14px; }

/* ============== UTIL ============== */
.section--tight { padding-top: 96px; padding-bottom: 96px; }
.section--xtight { padding-top: 80px; padding-bottom: 80px; }
.section--no-top { padding-top: 0; }
.section--no-bottom { padding-bottom: 0; }

/* SEO local-page hero KPI strip */
.kpi-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--vdbs-line-light);
  margin-top: 64px;
  max-width: var(--container-max); margin-left: auto; margin-right: auto;
}
@media (max-width: 600px) { .kpi-strip { grid-template-columns: 1fr; } }
.kpi { padding: 36px 24px 36px 0; border-right: 1px solid var(--vdbs-line-light); }
.kpi:last-child { border-right: 0; padding-right: 0; }
.kpi:not(:first-child) { padding-left: 24px; }
@media (max-width: 600px) {
  .kpi { border-right: 0; border-bottom: 1px solid var(--vdbs-line-light); padding: 24px 0 !important; }
  .kpi:last-child { border-bottom: 0; }
}
.kpi__num {
  font-weight: 200; font-size: clamp(36px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--vdbs-leisteen);
  font-feature-settings: 'tnum';
}
.kpi__label {
  margin-top: 14px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--vdbs-grijs);
}

/* ============== QUOTE in light section ============== */
.quote-light {
  max-width: 880px; margin: 0 auto;
  text-align: left;
}
.quote-light__text {
  font-weight: 200; font-size: clamp(26px, 3vw, 42px);
  line-height: 1.32; letter-spacing: -0.014em;
  color: var(--vdbs-leisteen);
  text-wrap: balance;
}
.quote-light__author {
  margin-top: 36px; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--vdbs-line-light);
  max-width: 540px;
}
.quote-light__name {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: #8A6F3E;
}
.quote-light__role { font-size: 14px; color: var(--vdbs-grijs); }
.quote-light__mark {
  font-family: var(--font-serif-accent); font-style: italic;
  font-size: 110px; line-height: 0.6;
  color: #C9A961;
  display: block; height: 44px; margin-bottom: 8px;
}
