/* Fix: overflow-x:hidden on body/page breaks position:sticky on nav */
body {
  overflow-x: clip !important;

/* ── Remove iOS tap highlight on interactive elements ── */
.vul-nav a,
.vul-nav button,
.vul-btn,
.vul-disclaimer-bar,
.vul-disclaimer-bar__close,
.vul-cta-strip__btn,
.vul-form__submit {
  -webkit-tap-highlight-color: transparent;
}

}
#page.site {
  overflow-x: clip !important;
}

/* ═══════════════════════════════════════════════════════════
   Vulcanus Blocks CSS — 1:1 match met React versie
   Design tokens: Plus Jakarta Sans, groen #2d4a3e, wit, grijs
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --vul-green: oklch(0.38 0.08 155);
  --vul-green-light: oklch(0.94 0.03 155);
  --vul-green-mid: oklch(0.55 0.14 155);
  --vul-gray-50: oklch(0.975 0 0);
  --vul-gray-100: oklch(0.95 0 0);
  --vul-gray-200: oklch(0.90 0 0);
  --vul-gray-400: oklch(0.65 0 0);
  --vul-gray-700: oklch(0.35 0 0);
  --vul-black: oklch(0.10 0 0);
  --vul-white: oklch(1 0 0);
  --font: 'Plus Jakarta Sans', sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset for Vulcanus sections ── */
.vul-nav, .vul-hero, .vul-stats, .vul-locatie, .vul-veldbezoek,
.vul-woonmilieus, .vul-voortgang, .vul-contact, .vul-footer,
.vul-section, .vul-cta-strip, .vul-planning, 
.vul-tl-grid, .vul-fasen-grid, .vul-introductie {
  font-family: var(--font);
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: border-box; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Container ── */
.vul-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.vul-container--narrow {
  max-width: 760px;
}

/* ── Typography helpers ── */
.vul-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vul-green);
  margin-bottom: 1rem;
}
.vul-label--white { color: rgba(255,255,255,0.7); }
.vul-label--dark-green { color: oklch(0.65 0.1 155); }
.vul-h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--vul-black);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}
.vul-h2--white { color: var(--vul-white); }
.vul-p {
  font-size: 17px;
  color: var(--vul-gray-700);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.vul-p--center { text-align: center; }
.vul-notice {
  font-size: 15px;
  color: var(--vul-gray-700);
  line-height: 1.7;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--vul-green-mid);
  background: oklch(0.97 0.01 155);
}

/* ── Section helpers ── */
.vul-section { padding: 7rem 2rem; }
.vul-section--white { background: var(--vul-white); }
.vul-section--gray { background: var(--vul-gray-50); }
.vul-section--faq { background: var(--vul-gray-100); }

.vul-section-header { margin-bottom: 3rem; }
.vul-section-header--center { text-align: center; }
.vul-section-intro { margin-bottom: 3rem; }
.vul-section-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

/* ── Buttons ── */
.vul-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.18s var(--ease-out);
  cursor: pointer;
  border: none;
}
.vul-btn:active { transform: scale(0.97); }
.vul-btn--green {
  background: var(--vul-green);
  color: var(--vul-white);
}
.vul-btn--green:hover { background: oklch(0.42 0.10 155); color: var(--vul-white); }
.vul-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--vul-white);
  border: 1px solid rgba(255,255,255,0.25);
}
.vul-btn--ghost:hover { background: rgba(255,255,255,0.2); color: var(--vul-white); }

/* ══════════════════════════════════════════════
   NAVIGATIE
   ══════════════════════════════════════════════ */
.vul-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--vul-gray-200);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease;
}
.vul-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.vul-nav { overflow-x: hidden; }
.vul-nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vul-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.vul-nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--vul-green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vul-nav__brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--vul-black);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vul-nav__sub {
  font-size: 11px;
  color: var(--vul-gray-400);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 2px;
}
.vul-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.vul-nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--vul-gray-700);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.vul-nav__link:hover { color: var(--vul-black); background: var(--vul-gray-100); }
.vul-nav__link--active { color: var(--vul-green) !important; font-weight: 700; }
.vul-nav__cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--vul-green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.vul-nav__cta:hover { background: oklch(0.42 0.10 155); color: white; }
.vul-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
}
.vul-nav__hamburger:focus,
.vul-nav__hamburger:active {
  background: none;
  outline: none;
  box-shadow: none;
}
.vul-nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--vul-black);
  border-radius: 1px;
  transition: all 0.2s ease;
}
.vul-nav__mobile { overflow-x: hidden;
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--vul-gray-200);
  padding: 1rem 2rem;
}
.vul-nav__mobile.open { display: flex; }
.vul-nav__mobile-link {
  padding: 0.75rem 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--vul-gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--vul-gray-100);
}
.vul-nav__mobile-cta {
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--vul-green);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */

/* Disclaimer close button */
.vul-disclaimer-bar__close {
    flex-shrink: 0;
    margin-left: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    font-size: 18px;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: opacity 0.15s ease, background 0.15s ease;
}
.vul-disclaimer-bar__close:hover {
    opacity: 1;
    background: rgba(0,0,0,0.08);
}
.vul-disclaimer-bar.is-dismissed {
    display: none !important;
}
.vul-hero {
  position: relative;
  height: calc(100vh - 68px);
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.vul-hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.kenburns { animation: kenburns 18s ease-in-out infinite alternate; }
.vul-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.vul-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 5rem;
}
.vul-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.vul-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.vul-hero__pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.vul-hero__title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
}
.vul-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 2.5rem;
}
.vul-hero__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.vul-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.bounce { animation: bounce 1.8s ease-in-out infinite; }

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.vul-stats {
  background: #f5f5f5;
  padding: 0;
}
.vul-stats__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.vul-stats__item {
  padding: 2.5rem 2rem;
  text-align: center;
}
.vul-stats__item--border {
  border-right: 1px solid #e0e0e0;
}
.vul-stats__num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.vul-stats__unit {
  font-size: 1.2rem;
  font-weight: 400;
  color: #555555;
  margin-left: 2px;
}
.vul-stats__label {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}
.vul-stats__sub {
  font-size: 12px;
  color: #777777;
}

/* ══════════════════════════════════════════════
   LOCATIE & CONTEXT
   ══════════════════════════════════════════════ */
.vul-locatie {
  background: var(--vul-white);
  padding: 7rem 2rem;
}
.vul-locatie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vul-locatie__text { display: flex; flex-direction: column; gap: 0; }
.vul-quote {
  border-left: 3px solid var(--vul-green);
  padding: 1rem 1.5rem;
  background: var(--vul-green-light);
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 15px;
  color: var(--vul-gray-700);
  line-height: 1.65;
}
.vul-quote__attr {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--vul-green);
  margin-top: 0.5rem !important;
}
.vul-locatie__img-wrap {
  position: relative;
  cursor: zoom-in;
}
.vul-locatie__img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.vul-locatie__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   VELDBEZOEK COLLAGE
   ══════════════════════════════════════════════ */
.vul-veldbezoek {
  background: var(--vul-gray-50);
  padding: 7rem 2rem;
}

/* ══════════════════════════════════════════════
   PHOTO GRIDS
   ══════════════════════════════════════════════ */
.vul-photo-grid {
  display: grid;
  gap: 4px;
}
.vul-photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vul-photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
.vul-photo-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.vul-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.vul-photo-item:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════
   WOONMILIEUS
   ══════════════════════════════════════════════ */
.vul-woonmilieus {
  background: var(--vul-white);
  padding: 7rem 2rem;
}
.vul-milieu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.vul-milieu-card {
  background: var(--vul-white);
  border: 1px solid var(--vul-gray-200);
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}
.vul-milieu-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.vul-milieu-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vul-gray-400);
  margin-bottom: 0.5rem;
}
.vul-milieu-card__title {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vul-black);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.vul-milieu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.vul-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: var(--vul-green-light);
  color: var(--vul-green);
  border-radius: 2px;
}
.vul-milieu-card__desc {
  font-size: 14px;
  color: var(--vul-gray-700);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.vul-milieu-card__types {
  font-size: 13px;
  font-weight: 600;
  color: var(--vul-gray-400);
  border-top: 1px solid var(--vul-gray-100);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

/* Woningmix tabel */

/* Woonmilieu interesse CTA */
.vul-woonmilieu-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin: 3rem auto 3.5rem;
  max-width: 600px;
}
.vul-woonmilieu-cta__text {
  font-size: 16px;
  color: var(--vul-text);
  line-height: 1.7;
  margin: 0;
}

.vul-table-wrap {
  border: 1px solid var(--vul-gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.vul-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: var(--vul-gray-50);
  border-bottom: 1px solid var(--vul-gray-200);
  font-size: 13px;
  font-weight: 700;
  color: var(--vul-gray-700);
}
.vul-table-header__date {
  font-size: 11px;
  font-weight: 500;
  color: var(--vul-gray-400);
}
.vul-table-scroll { overflow-x: auto; }
.vul-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.vul-table th {
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vul-gray-400);
  background: var(--vul-gray-50);
  border-bottom: 1px solid var(--vul-gray-200);
}
.vul-table td {
  padding: 0.875rem 1.25rem;
  color: var(--vul-gray-700);
  border-bottom: 1px solid var(--vul-gray-100);
}
.vul-table tr:last-child td { border-bottom: none; }
.vul-table__strong { font-weight: 600; color: var(--vul-black); }
.vul-table__num { font-weight: 700; color: var(--vul-black); font-variant-numeric: tabular-nums; }
.vul-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: var(--vul-gray-100);
  color: var(--vul-gray-700);
}
.vul-badge--green { background: var(--vul-green-light); color: var(--vul-green); }
.vul-table__total td {
  font-weight: 700;
  color: var(--vul-black);
  background: var(--vul-gray-50);
  border-top: 2px solid var(--vul-gray-200);
}
.vul-table__total-num { font-size: 16px; font-weight: 900; }

/* ══════════════════════════════════════════════
   PLANKAART
   ══════════════════════════════════════════════ */
.vul-plankaart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 3rem;
}
.vul-plankaart-item {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.vul-plankaart-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.vul-plankaart-item:hover img { transform: scale(1.02); }
.vul-plankaart-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}
.vul-plankaart-item__label--green { background: var(--vul-green); }
.vul-plankaart-item__label--black { background: rgba(0,0,0,0.75); }

/* Erfgoed 3-kolom */
.vul-erfgoed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vul-erfgoed-card {
  padding: 2rem;
  background: var(--vul-white);
  border: 1px solid var(--vul-gray-200);
  border-radius: 2px;
}
.vul-erfgoed-card--accent { border-top: 3px solid var(--vul-green); }
.vul-erfgoed-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.vul-erfgoed-card__title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--vul-black);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.vul-erfgoed-card__desc {
  font-size: 14px;
  color: var(--vul-gray-700);
  line-height: 1.65;
  margin: 0;
}
.vul-zoom-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  padding: 0.3rem 0.6rem;
  font-size: 10px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   TIJDLIJN (HISTORIE)
   ══════════════════════════════════════════════ */
.vul-tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.vul-tl-card { overflow: hidden; }
.vul-tl-card--active { background: var(--vul-green); }
.vul-tl-card:not(.vul-tl-card--active) { background: var(--vul-white); }
.vul-tl-card__img {
  height: 180px;
  overflow: hidden;
  cursor: zoom-in;
}
.vul-tl-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.vul-tl-card__img:hover img { transform: scale(1.06); }
.vul-tl-card__body { padding: 1.5rem; }
.vul-tl-card__jaar {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.vul-tl-card:not(.vul-tl-card--active) .vul-tl-card__jaar { color: var(--vul-gray-400); }
.vul-tl-card--active .vul-tl-card__jaar { color: rgba(255,255,255,0.7); }
.vul-tl-card__now {
  display: inline-block;
  margin-left: 0.5rem;
  background: rgba(255,255,255,0.2);
  padding: 0.1rem 0.4rem;
  font-size: 10px;
  border-radius: 2px;
}
.vul-tl-card__title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.vul-tl-card:not(.vul-tl-card--active) .vul-tl-card__title { color: var(--vul-black); }
.vul-tl-card--active .vul-tl-card__title { color: var(--vul-white); }
.vul-tl-card__desc {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.vul-tl-card:not(.vul-tl-card--active) .vul-tl-card__desc { color: var(--vul-gray-700); }
.vul-tl-card--active .vul-tl-card__desc { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════════
   VOORTGANG
   ══════════════════════════════════════════════ */
.vul-voortgang { background: var(--vul-white); padding: 0 0 7rem; overflow-x: hidden; }
.vul-voortgang__banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
  height: 420px;
}
.vul-voortgang__banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vul-voortgang__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
}
.vul-voortgang__banner-content { padding: 0 2rem; }
.vul-voortgang__banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  max-width: 480px;
}
.vul-voortgang__banner-note {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}
.vul-fasen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.vul-fase {
  padding: 2rem;
  background: var(--vul-gray-50);
  border: 1px solid var(--vul-gray-200);
  border-radius: 2px;
  position: relative;
}
.vul-fase--active {
  background: var(--vul-green);
  border-color: var(--vul-green);
}
.vul-fase__nr {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.vul-fase:not(.vul-fase--active) .vul-fase__nr { color: var(--vul-gray-200); }
.vul-fase--active .vul-fase__nr { color: rgba(255,255,255,0.25); }
.vul-fase__now {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.vul-fase__title {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.vul-fase:not(.vul-fase--active) .vul-fase__title { color: var(--vul-black); }
.vul-fase--active .vul-fase__title { color: white; }
.vul-fase__periode {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.vul-fase:not(.vul-fase--active) .vul-fase__periode { color: var(--vul-gray-400); }
.vul-fase--active .vul-fase__periode { color: rgba(255,255,255,0.7); }
.vul-fase__desc { font-size: 14px; line-height: 1.65; margin: 0; }
.vul-fase:not(.vul-fase--active) .vul-fase__desc { color: var(--vul-gray-700); }
.vul-fase--active .vul-fase__desc { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════════
   PLANNING TIJDLIJN
   ══════════════════════════════════════════════ */
.vul-planning { position: relative; padding-left: 2rem; }
.vul-planning__line {
  position: absolute;
  left: calc(2rem + 80px + 1rem + 8px);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--vul-gray-200);
}
.vul-planning__row {
  display: grid;
  grid-template-columns: 80px 18px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.vul-planning__q {
  font-size: 12px;
  font-weight: 700;
  color: var(--vul-gray-400);
  text-align: right;
  padding-top: 2px;
  letter-spacing: 0.02em;
}
.vul-planning__row--active .vul-planning__q { color: var(--vul-green); }
.vul-planning__row--done .vul-planning__q { color: var(--vul-gray-400); }
.vul-planning__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--vul-gray-200);
  background: white;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  z-index: 1;
}
.vul-planning__row--active .vul-planning__dot {
  background: var(--vul-green);
  border-color: var(--vul-green);
  box-shadow: 0 0 0 4px var(--vul-green-light);
}
.vul-planning__row--done .vul-planning__dot {
  background: var(--vul-gray-200);
  border-color: var(--vul-gray-200);
}
.vul-planning__content {
  padding-bottom: 0.5rem;
}
.vul-planning__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.vul-planning__list li {
  font-size: 15px;
  color: var(--vul-gray-700);
  line-height: 1.65;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.vul-planning__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 4px; height: 4px;
  background: var(--vul-gray-400);
  border-radius: 50%;
}
.vul-planning__row--active .vul-planning__list li { color: var(--vul-black); font-weight: 500; }
.vul-planning__row--active .vul-planning__list li::before { background: var(--vul-green); }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */














/* ══════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════ */
.vul-cta-strip {
  background: var(--vul-green);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.vul-cta-strip__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.vul-cta-strip__title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.vul-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: var(--vul-green);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s var(--ease-out);
}
.vul-cta-strip__btn:hover { background: var(--vul-green-light); }
.vul-cta-strip__btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.vul-contact {
  background: oklch(0.15 0.04 155);
  padding: 7rem 2rem;
}
.vul-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.vul-contact__info { color: white; }
.vul-contact__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
}
.vul-contact__details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.vul-contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.vul-contact__detail svg { flex-shrink: 0; color: oklch(0.65 0.1 155); }
.vul-contact__detail a { color: rgba(255,255,255,0.75); text-decoration: none; }
.vul-contact__detail a:hover { color: white; }
.vul-contact__partners-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.vul-contact__partners-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vul-partner-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 2px;
}

/* Form */
.vul-contact__form-wrap {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
}
.vul-form { display: flex; flex-direction: column; gap: 1.25rem; }
.vul-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.vul-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vul-gray-700);
}
.vul-form__field input,
.vul-form__field select,
.vul-form__field textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--vul-gray-200);
  border-radius: 2px;
  color: var(--vul-black);
  background: white;
  transition: border-color 0.15s ease;
  outline: none;
  width: 100%;
}
.vul-form__field input:focus,
.vul-form__field select:focus,
.vul-form__field textarea:focus {
  border-color: var(--vul-green);
  box-shadow: 0 0 0 3px var(--vul-green-light);
}
.vul-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--vul-green);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
  width: 100%;
}
.vul-form__submit:hover { background: oklch(0.33 0.08 155); }
.vul-form__submit:active { transform: scale(0.97); }
.vul-form-success {
  text-align: center;
  padding: 2rem;
}
.vul-form-success__check {
  width: 56px; height: 56px;
  background: var(--vul-green-light);
  color: var(--vul-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.vul-form-success h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vul-black);
  margin: 0 0 0.5rem;
}
.vul-form-success p { font-size: 15px; color: var(--vul-gray-700); margin: 0; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.vul-footer {
  background: oklch(0.10 0.03 155);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vul-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.vul-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.vul-footer__logo {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.vul-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.vul-footer__links a {
  padding: 0.4rem 0.75rem;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.15s ease;
}
.vul-footer__links a:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
.vul-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.vul-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}
.vul-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.vul-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.vul-lightbox__close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}
.vul-lightbox__close:hover { background: rgba(0,0,0,0.75); border-color: white; }
.vul-lightbox__prev,
.vul-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}
.vul-lightbox__prev { left: 1rem; }
.vul-lightbox__next { right: 1rem; }
.vul-lightbox__prev:hover,
.vul-lightbox__next:hover { background: rgba(0,0,0,0.75); border-color: white; }
.vul-lightbox__dots {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.vul-lightbox__dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  width: 8px;
}
.vul-lightbox__dot.active {
  width: 24px;
  background: white;
}


@media (max-width: 768px) {
  .vul-lightbox__close {
    width: 54px; height: 54px;
    top: 0.75rem; right: 0.75rem;
  }
  .vul-lightbox__prev,
  .vul-lightbox__next {
    width: 54px; height: 54px;
  }
  .vul-lightbox__prev { left: 0.5rem; }
  .vul-lightbox__next { right: 0.5rem; }
  .vul-lightbox__close svg { width: 28px; height: 28px; }
  .vul-lightbox__prev svg,
  .vul-lightbox__next svg { width: 26px; height: 26px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vul-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .vul-tl-grid { grid-template-columns: repeat(2, 1fr); }
  .vul-fasen-grid { grid-template-columns: repeat(2, 1fr); }
  .vul-milieu-grid { grid-template-columns: 1fr; }
  .vul-erfgoed-grid { grid-template-columns: 1fr; }
  .vul-section-intro__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .vul-nav__hamburger { display: flex !important; }
  .vul-hero__title { font-size: 2.2rem; }
  .vul-locatie__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vul-contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vul-plankaart-grid { grid-template-columns: 1fr; }
  .vul-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .vul-tl-grid { grid-template-columns: 1fr; }
  .vul-fasen-grid { grid-template-columns: 1fr; }
  .vul-photo-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vul-cta-strip { flex-direction: column; align-items: flex-start; }
  .vul-footer__inner { flex-direction: column; }
  .vul-planning { padding-left: 0; }
  .vul-planning__line { display: none; }
  .vul-planning__row { grid-template-columns: 60px 18px 1fr; }
  /* ── Hero: full height on mobile ── */
  .vul-hero { height: calc(100dvh - 64px); min-height: 560px; }
  /* ── Mobile horizontal padding cap: max 15px left/right ── */
  .vul-section,
  .vul-container,
  .vul-locatie,
  .vul-veldbezoek,
  .vul-woonmilieus,
  .vul-planning,
  .vul-stats,
  .vul-contact,
  .vul-footer,
  .vul-cta-strip,
  .vul-nieuws-header,
  .vul-nieuws-grid-section,
  .vul-post-content-section { padding-left: 15px !important; padding-right: 15px !important; }
  .vul-nav__mobile { padding-left: 15px !important; padding-right: 15px !important; }
  .vul-nav__inner { padding-left: 15px !important; padding-right: 15px !important; }
  /* voortgang: banner stays full-width, only inner container gets padding */
  .vul-voortgang > .vul-container { padding-left: 15px !important; padding-right: 15px !important; }
  .vul-stats__grid { padding-left: 0; padding-right: 0; }
  /* On mobile 2-col: only left column items get border-right */
  .vul-stats__item--border:nth-child(even) { border-right: none; }
  .vul-stats__item { border-bottom: 1px solid #e0e0e0; }
  .vul-stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .vul-hero__inner { padding-left: 15px; padding-right: 15px; }
  .vul-contact__form-wrap { padding: 1.5rem; }
  /* photo grids: 3-col to 2-col on mobile */
  .vul-photo-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Leaflet map popup styling ── */
.vul-map-popup .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    border: none;
}
.vul-map-popup .leaflet-popup-content {
    margin: 0;
    width: auto !important;
}
.vul-map-popup .leaflet-popup-tip-container {
    display: none;
}
.leaflet-container .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.leaflet-container .leaflet-control-zoom a {
    background: white;
    color: #333;
    border: none;
    font-size: 16px;
    line-height: 26px;
}
.leaflet-container .leaflet-control-zoom a:hover {
    background: #f5f5f5;
}

/* ── FAQ — exact React match ── */
.vul-faq { }
.vul-faq__item { border-bottom: 1px solid oklch(0.90 0 0); }
.vul-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}

.vul-faq__q:hover,
.vul-faq__q:active,
.vul-faq__q:focus {
  background: none !important;
  background-color: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}
.vul-faq__q-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: oklch(0.10 0 0);
  line-height: 1.4;
}
.vul-faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  color: oklch(0.35 0 0);
  transition: all 0.2s ease;
}
.vul-faq__item.open .vul-faq__icon {
  background: none;
  color: oklch(0.38 0.08 155);
}
.vul-faq__icon svg {
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1);
}
.vul-faq__item.open .vul-faq__icon svg { transform: rotate(180deg); }
.vul-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.23,1,0.32,1);
}
.vul-faq__item.open .vul-faq__a { max-height: 500px; }
.vul-faq__a p {
  padding-bottom: 1.5rem;
  color: oklch(0.35 0 0);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════
   NIEUWS PAGINA (archive + single post)
   ══════════════════════════════════════════════ */

/* ── Nieuws page wrapper ── */
.vul-nieuws-page {
  font-family: var(--font);
}

/* ── Back link ── */
.vul-nieuws-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--vul-green);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: gap 0.2s var(--ease-out);
}
.vul-nieuws-back:hover { gap: 0.7rem; color: oklch(0.33 0.08 155); }
.vul-nieuws-back--white { color: rgba(255,255,255,0.85); }
.vul-nieuws-back--white:hover { color: #fff; }

/* ── Archive header ── */
.vul-nieuws-header {
  padding: 8rem 0 5rem;
  background: var(--vul-green);
  position: relative;
  overflow: hidden;
}
.vul-nieuws-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, oklch(0.45 0.10 155 / 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.vul-nieuws-header__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.vul-nieuws-header .vul-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.vul-nieuws-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--vul-white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.vul-nieuws-title span {
  color: oklch(0.80 0.10 155);
}
.vul-nieuws-intro {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* ── News grid section ── */
.vul-nieuws-grid-section {
  padding: 5rem 0 7rem;
}
.vul-nieuws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── News card ── */
.vul-nieuws-card {
  background: var(--vul-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.vul-nieuws-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.vul-nieuws-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--vul-gray-100);
}
.vul-nieuws-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--vul-green);
}
.vul-nieuws-card__img-placeholder {
  opacity: 0.5;
}
.vul-nieuws-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.vul-nieuws-card:hover .vul-nieuws-card__img {
  transform: scale(1.04);
}
.vul-nieuws-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vul-nieuws-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.vul-nieuws-card__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--vul-gray-400);
}
.vul-nieuws-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vul-green);
  background: var(--vul-green-light);
  padding: 0.2em 0.6em;
  border-radius: 2px;
}
.vul-nieuws-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  color: var(--vul-black);
}
.vul-nieuws-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.vul-nieuws-card__title a:hover { color: var(--vul-green); }
.vul-nieuws-card__excerpt {
  font-size: 15px;
  color: var(--vul-gray-700);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}
.vul-nieuws-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--vul-green);
  text-decoration: none;
  transition: gap 0.2s var(--ease-out);
  margin-top: auto;
}
.vul-nieuws-card__link:hover { gap: 0.6rem; }

/* ── Pagination ── */
.vul-nieuws-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 4rem;
}
.vul-nieuws-pagination a,
.vul-nieuws-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: all 0.18s var(--ease-out);
}
.vul-nieuws-pagination a {
  color: var(--vul-gray-700);
  background: var(--vul-white);
  border: 1px solid var(--vul-gray-200);
}
.vul-nieuws-pagination a:hover {
  background: var(--vul-green);
  color: var(--vul-white);
  border-color: var(--vul-green);
}
.vul-nieuws-pagination .current {
  background: var(--vul-green);
  color: var(--vul-white);
  border: 1px solid var(--vul-green);
}

/* ── Empty state ── */
.vul-nieuws-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--vul-gray-400);
}
.vul-nieuws-empty__icon {
  margin: 0 auto 1.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--vul-gray-100);
  border-radius: 50%;
}
.vul-nieuws-empty h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--vul-black);
  margin: 0 0 0.75rem;
}
.vul-nieuws-empty p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════════════ */

/* ── Post header (hero with image) ── */
.vul-post-header {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.vul-post-header__bg {
  position: absolute;
  inset: 0;
}
.vul-post-header__bg--solid {
  background: var(--vul-green);
}
.vul-post-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vul-post-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);
}
.vul-post-header .vul-container {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  padding-top: 7rem;
}
.vul-post-header__inner {
  max-width: 800px;
}
.vul-post-header__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.vul-post-header__date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.vul-post-header__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.80 0.10 155);
  background: rgba(255,255,255,0.12);
  padding: 0.2em 0.6em;
  border-radius: 2px;
}
.vul-post-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--vul-white);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ── Post content section ── */
.vul-post-content-section {
  padding: 5rem 0 6rem;
}
.vul-post-content-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.vul-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--vul-gray-700);
}
.vul-post-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vul-black);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.vul-post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vul-black);
  margin: 2rem 0 0.75rem;
}
.vul-post-content p { margin: 0 0 1.25rem; }
.vul-post-content a {
  color: var(--vul-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vul-post-content a:hover { color: oklch(0.33 0.08 155); }
.vul-post-content ul, .vul-post-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.vul-post-content li { margin-bottom: 0.4rem; }
.vul-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.vul-post-content blockquote {
  border-left: 3px solid var(--vul-green);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--vul-green-light);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--vul-green);
}

/* ── Post navigation ── */
.vul-post-nav {
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--vul-gray-200);
}
.vul-post-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  background: var(--vul-gray-50);
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--vul-gray-200);
  transition: all 0.2s var(--ease-out);
}
.vul-post-nav__item:hover {
  background: var(--vul-green-light);
  border-color: var(--vul-green);
}
.vul-post-nav__item--next {
  text-align: right;
}
.vul-post-nav__label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vul-green);
}
.vul-post-nav__item--next .vul-post-nav__label {
  justify-content: flex-end;
}
.vul-post-nav__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--vul-black);
  line-height: 1.35;
}

/* ── Back to news CTA ── */
.vul-post-back-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.vul-btn--ghost-dark {
  background: transparent;
  color: var(--vul-green);
  border: 1.5px solid var(--vul-green);
}
.vul-btn--ghost-dark:hover {
  background: var(--vul-green-light);
}

/* ── Responsive: nieuws ── */
@media (max-width: 1024px) {
  .vul-nieuws-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vul-nieuws-header { padding: 6rem 0 3.5rem; }
  .vul-nieuws-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vul-post-header { min-height: 360px; }
  .vul-post-nav { flex-direction: column; }
  .vul-post-nav__item--next { text-align: left; }
  .vul-post-nav__item--next .vul-post-nav__label { justify-content: flex-start; }
  .vul-post-back-cta { flex-direction: column; align-items: flex-start; }
}

/* ── Swipe hint (mobile only) ── */
.vul-swipe-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--vul-gray-50);
  border-bottom: 1px solid var(--vul-gray-200);
  font-size: 12px;
  font-weight: 600;
  color: var(--vul-gray-400);
  letter-spacing: 0.04em;
  animation: swipe-pulse 2s ease-in-out 1s 2;
}
@keyframes swipe-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@media (max-width: 768px) {
  .vul-swipe-hint { display: flex; }
}

/* ── Disclaimer bar (sitewide) ── */
.vul-disclaimer-bar {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: 0;
  border-radius: 8px;
  z-index: 95;
  background: rgba(254, 249, 236, 0.95);
  border: 1px solid #f0d97a;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: #7a5c00;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: box-shadow 0.3s ease, opacity 0.2s ease;
}
.vul-disclaimer-bar.is-sticky {
  position: fixed;
  bottom: auto;
  top: 72px;
  transform: translateX(-50%);
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.vul-disclaimer-bar strong { font-weight: 700; }
.vul-disclaimer-bar__icon { flex-shrink: 0; margin-top: 0; display: flex; align-items: center; }
.vul-disclaimer-bar__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.vul-disclaimer-bar__summary { display: flex; align-items: center; gap: 0.35rem; cursor: default; }
.vul-disclaimer-bar__short { display: none; }
.vul-disclaimer-bar__chevron { display: none; flex-shrink: 0; transition: transform 0.25s ease; }
.vul-disclaimer-bar__detail { margin-top: 0; }
@media (max-width: 768px) {
  .vul-disclaimer-bar { top: 72px; padding: 0.6rem 1rem; font-size: 12px; cursor: pointer; align-items: center; width: calc(100% - 2rem); }
  .vul-disclaimer-bar.is-sticky { top: 72px; }
  .vul-disclaimer-bar__icon { margin-top: 0; }
  .vul-disclaimer-bar__summary { cursor: pointer; }
  .vul-disclaimer-bar__short { display: inline; }
  .vul-disclaimer-bar__chevron { display: block; margin-left: auto; }
  .vul-disclaimer-bar__detail { display: none; margin-top: 0.5rem; }
  .vul-disclaimer-bar.is-open .vul-disclaimer-bar__detail { display: block; }
  .vul-disclaimer-bar.is-open .vul-disclaimer-bar__short { display: none; }
  .vul-disclaimer-bar.is-open .vul-disclaimer-bar__chevron { transform: rotate(180deg); }
}

/* ── Concept notice (planning section) ── */
.vul-concept-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff8e6;
  border: 1px solid #f0d97a;
  border-left: 4px solid #e6a817;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 14px;
  line-height: 1.6;
  color: #6b4c00;
}
.vul-concept-notice strong { font-weight: 700; color: #5a3f00; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.vul-concept-notice svg { color: #e6a817; margin-top: 1px; }

/* ── Introductie section ── */
.vul-introductie { padding-bottom: 4rem; }
.vul-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.vul-intro-card {
  background: var(--vul-gray-50);
  border: 1px solid var(--vul-gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.vul-intro-card--green {
  background: var(--vul-green);
  border-color: transparent;
}
.vul-intro-card__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vul-intro-card__logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--vul-green-light);
  color: var(--vul-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vul-intro-card__logo-icon--white {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.vul-intro-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vul-green-mid);
  margin-bottom: 2px;
}
.vul-intro-card__tag--light {
  color: rgba(255,255,255,0.65);
}
.vul-intro-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--vul-black);
}
.vul-intro-card__name--white {
  color: #fff;
}
.vul-intro-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vul-intro-card__h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vul-black);
  margin: 1rem 0 0.4rem;
}
.vul-intro-card__h3:first-child { margin-top: 0; }
.vul-intro-card__p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vul-gray-700);
  margin: 0 0 0.75rem;
}
.vul-intro-card__p:last-child { margin-bottom: 0; }
.vul-intro-card__p--white {
  color: rgba(255,255,255,0.88);
}
.vul-intro-card__p em {
  font-style: italic;
  color: var(--vul-green);
}
.vul-intro-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.vul-intro-card__chevron {
  display: none;
  flex-shrink: 0;
  color: var(--vul-green);
  transition: transform 0.25s ease;
}
.vul-intro-card__chevron--white { color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .vul-introductie { padding-top: 3rem; padding-bottom: 2rem; }
  .vul-introductie .vul-section-intro__grid { margin-bottom: 0; }
  .vul-introductie .reveal { margin-bottom: 1.25rem !important; }
  .vul-intro-grid { grid-template-columns: 1fr; align-items: start; gap: 0.4rem; }
  .vul-intro-card { padding: 1rem; cursor: pointer; }
  .vul-intro-card__header { cursor: pointer; }
  .vul-intro-card__chevron { display: block; }
  .vul-intro-card__logo-icon { width: 36px; height: 36px; border-radius: 8px; }
  .vul-intro-card__logo-icon svg { width: 18px; height: 18px; }
  .vul-intro-card__tag { font-size: 10px; }
  .vul-intro-card__name { font-size: 14px; }
  .vul-intro-card__body { display: none; margin-top: 0.75rem; }
  .vul-intro-card__body .vul-intro-card__p { font-size: 13px; line-height: 1.6; }
  .vul-intro-card__body .vul-intro-card__h3 { font-size: 14px; }
  .vul-intro-card.is-open .vul-intro-card__body { display: flex; }
  .vul-intro-card.is-open .vul-intro-card__chevron { transform: rotate(180deg); }
}

/* ── Footer dev credit ── */
.vul-footer__dev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
}
.vul-footer__dev-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  margin: 0 0.25rem;
}
.vul-footer__dev-text {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.vul-footer__dev-text:hover {
  color: #fff;
}

.vul-footer__dev a { display: flex; align-items: center; opacity: 0.7; transition: opacity 0.2s; }
.vul-footer__dev a:hover { opacity: 1; }

.leaflet-control-attribution { display: none !important; }
