/* style.css — Waterkwaliteit Noord-Holland · VHB
   Huisstijl Van Hattum en Blankevoort:
   - Steelblue #497CAB als enige merkkleur
   - IBM Plex Sans voor alles
   - Warme greys + wit, geen donkere modus (matcht corporate identity) */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.5rem, 1rem + 5.5vw, 6rem);

  /* Spacing */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* === VHB BRAND COLOURS === */
  --vw-blue:        #497CAB;
  --vw-blue-90:     #5B89B3;
  --vw-blue-dark:   #36608A;
  --vw-blue-10:     #F2F6F9;
  --vw-black-85:    #262626;
  --vw-grey:        #51534A;
  --vw-grey-80:     #74756E;
  --vw-grey-20:     #DCDDDB;
  --vw-grey-10:     #EEEEED;
  --vw-white:       #FFFFFF;

  /* Semantic mappings */
  --color-bg:               var(--vw-white);
  --color-surface:          var(--vw-white);
  --color-surface-2:        var(--vw-blue-10);
  --color-surface-offset:   var(--vw-grey-10);
  --color-surface-offset-2: var(--vw-grey-20);
  --color-divider:          var(--vw-grey-20);
  --color-border:           var(--vw-grey-20);

  --color-text:        var(--vw-black-85);
  --color-text-muted:  var(--vw-grey);
  --color-text-faint:  var(--vw-grey-80);
  --color-text-inverse:var(--vw-white);

  --color-primary:        var(--vw-blue);
  --color-primary-hover:  var(--vw-blue-dark);
  --color-primary-active: var(--vw-blue-dark);
  --color-primary-highlight: var(--vw-blue-10);

  --color-blue:    var(--vw-blue);

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(38, 38, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(38, 38, 38, 0.08);
  --shadow-lg: 0 16px 40px rgba(38, 38, 38, 0.10);

  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1280px;

  --font-display: 'IBM Plex Sans', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;

  /* Aliases voor nieuwe secties (juni 2026 feedback) */
  --vhb-blue: var(--vw-blue);
  --ink: var(--color-text);
  --ink-soft: var(--color-text-muted);
  --ink-mute: var(--color-text-faint);
  --line-soft: var(--color-divider);
  --bg-soft: var(--vw-grey-10);
}

/* ============================== LAYOUT ============================== */

.container {
  width: min(100% - var(--space-8), var(--content-default));
  margin-inline: auto;
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}

.section--context  { background: var(--vw-white); }
.section--trends   { background: var(--vw-blue-10); }
.section--alt      { background: var(--vw-grey-10); }
.section--vhb      { background: var(--vw-white); }
.section--kansen   { background: var(--vw-grey-10); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vw-blue);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--space-10);
  max-width: 22ch;
  color: var(--vw-black-85);
}

/* ============================== TOP BAR ============================== */

.top-bar {
  background: var(--vw-blue);
  color: var(--vw-white);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}

.top-bar-inner {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  padding: var(--space-2) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.top-bar-region {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-left: var(--space-3);
  border-left: 3px solid var(--vw-white);
}

.top-bar-meta {
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .top-bar-meta { display: none; }
}

/* ============================== HEADER ============================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--vw-white);
  border-bottom: 1px solid var(--vw-grey-20);
}

.brand {
  display: flex; align-items: center; gap: var(--space-4);
  text-decoration: none; color: var(--vw-black-85);
}

.logo-img {
  height: 24px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: var(--vw-grey-20);
  display: block;
}

.brand-sub {
  font-size: var(--text-xs);
  color: var(--vw-grey);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex; align-items: center; gap: var(--space-6);
}

.site-nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--vw-grey);
  font-weight: 500;
}

.site-nav a:hover { color: var(--vw-blue); }

@media (max-width: 880px) {
  .brand-sub, .brand-divider { display: none; }
  .site-nav a:not(:last-child) { display: none; }
  .site-nav a:last-child::before {
    content: "Menu \2192";
    font-weight: 500;
  }
  .site-nav a:last-child { font-size: 0; }
  .site-nav a:last-child::before { font-size: var(--text-sm); }
}

/* ============================== HERO ============================== */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 11vw, 8rem) var(--space-6) clamp(4rem, 9vw, 7rem);
  background: var(--vw-white);
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg,
      var(--vw-blue-10) 0%,
      var(--vw-white) 60%);
}

.hero-bg::before {
  /* VHB signature: curved angular shape bottom-left */
  content: ""; position: absolute;
  bottom: -120px; left: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: var(--vw-blue);
  opacity: 0.06;
}

.hero-bg::after {
  /* Subtle blueprint grid */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(73, 124, 171, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(73, 124, 171, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  width: min(100% - 0px, var(--content-wide));
  margin-inline: auto;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: var(--space-3);
  color: var(--vw-black-85);
}

.hero-tagline {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--vw-blue);
  margin-bottom: var(--space-8);
  letter-spacing: -0.005em;
}

.hero-lede {
  font-size: var(--text-lg);
  color: var(--vw-grey);
  max-width: 58ch;
  margin-bottom: var(--space-12);
  line-height: 1.55;
  font-weight: 400;
}

.hero-lede strong {
  color: var(--vw-black-85);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  max-width: 820px;
  padding-block: var(--space-8);
  border-top: 1px solid var(--vw-grey-20);
  border-bottom: 1px solid var(--vw-grey-20);
  margin-bottom: var(--space-10);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--vw-blue);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--vw-grey);
  margin-top: var(--space-1);
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--vw-blue);
  color: var(--vw-white);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
}

.hero-cta:hover {
  background: var(--vw-blue-dark);
  transform: translateX(2px);
}

.hero-cta span { transition: transform var(--transition-interactive); }
.hero-cta:hover span { transform: translateX(4px); }

/* ============================== CONTEXT ============================== */

.context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.context-card {
  background: var(--vw-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--vw-grey-20);
  border-top: 4px solid var(--vw-blue);
}

.context-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--vw-black-85);
  letter-spacing: -0.005em;
}

.context-card p {
  font-size: var(--text-sm);
  color: var(--vw-grey);
  margin-bottom: var(--space-3);
  line-height: 1.65;
}

.context-card p:last-child { margin-bottom: 0; }

.context-card p.src,
.ws-content p.src,
.proj-table + p.src,
section p.src {
  font-size: var(--text-xs);
  color: var(--vw-grey-80);
}

.context-card .src a,
.ws-content .src a,
section .src a {
  color: var(--vw-blue);
  text-decoration: underline;
  text-decoration-color: rgba(73, 124, 171, 0.35);
  text-underline-offset: 2px;
}

.context-card .src a:hover,
section .src a:hover {
  text-decoration-color: var(--vw-blue);
}

.themes {
  background: var(--vw-blue-10);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--vw-blue);
}

.themes-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--vw-black-85);
}

.themes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.themes-list li {
  font-size: var(--text-sm);
  color: var(--vw-grey);
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  line-height: 1.55;
}

.themes-list li span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--vw-blue);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 2.2ch;
}

.themes-list li strong { color: var(--vw-black-85); font-weight: 600; }

/* ============================== TRENDS ============================== */

.trends-intro {
  font-size: var(--text-base);
  color: var(--vw-grey);
  max-width: 65ch;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.trends-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.trend-card {
  background: var(--vw-white);
  border: 1px solid var(--vw-grey-20);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

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

.trend-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--vw-blue);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 2.4ch;
  padding-top: 2px;
}

.trend-card p {
  font-size: var(--text-sm);
  color: var(--vw-black-85);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.trends-src {
  margin-top: var(--space-2);
}

/* ============================== WATERSCHAP ============================== */

.section--waterschap {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  background: var(--vw-white);
}

.section--waterschap.section--alt { background: var(--vw-grey-10); }

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
}

.ws-grid--reverse .ws-map-wrap { order: 2; }
.ws-grid--reverse .ws-content { order: 1; }

@media (max-width: 900px) {
  .ws-grid, .ws-grid--reverse {
    grid-template-columns: 1fr;
  }
  .ws-grid--reverse .ws-map-wrap { order: unset; }
  .ws-grid--reverse .ws-content { order: unset; }
}

.ws-map-wrap {
  position: sticky;
  top: 5rem;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--vw-grey-20);
  box-shadow: var(--shadow-md);
  background: var(--vw-white);
}

@media (max-width: 900px) {
  .ws-map-wrap {
    position: relative; top: 0;
    aspect-ratio: 4 / 3;
  }
}

.ws-map {
  width: 100%; height: 100%;
}

.ws-name {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: var(--space-3);
  color: var(--vw-black-85);
}

.ws-region {
  font-size: var(--text-base);
  color: var(--vw-grey);
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.kpi {
  background: var(--vw-white);
  border: 1px solid var(--vw-grey-20);
  border-left: 3px solid var(--vw-blue);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.kpi-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--vw-blue);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.kpi-label {
  font-size: var(--text-xs);
  color: var(--vw-grey);
  line-height: 1.4;
}

.ws-summary {
  font-size: var(--text-base);
  color: var(--vw-grey);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.ws-summary strong { color: var(--vw-black-85); font-weight: 600; }

.proj-heading {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--vw-black-85);
}

/* ============================== TABLES ============================== */

.proj-table, .kansen-table {
  width: 100%;
  font-size: var(--text-sm);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--vw-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--vw-grey-20);
  margin-bottom: var(--space-4);
}

.proj-table th, .kansen-table th {
  background: var(--vw-blue);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vw-white);
  padding: var(--space-3) var(--space-4);
}

.proj-table td, .kansen-table td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--vw-grey-20);
  vertical-align: top;
  color: var(--vw-black-85);
}

.proj-table tbody tr:last-child td,
.kansen-table tbody tr:last-child td { border-bottom: none; }

.proj-table tbody tr:hover,
.kansen-table tbody tr:hover {
  background: var(--vw-blue-10);
}

.proj-table td:first-child,
.kansen-table td:first-child {
  font-weight: 600;
  color: var(--vw-black-85);
  white-space: nowrap;
}

.proj-table td:last-child,
.kansen-table td:last-child {
  white-space: nowrap;
  color: var(--vw-grey);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .proj-table td:first-child,
  .proj-table td:last-child,
  .kansen-table td:first-child,
  .kansen-table td:last-child {
    white-space: normal;
  }
}

/* Status-kolom in proj-table — overschrijft generieke td:last-child styling */
.proj-table td.status-cell {
  white-space: normal;
  color: var(--vw-black-85);
  font-variant-numeric: normal;
  min-width: 130px;
  max-width: 180px;
  line-height: 1.4;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge--open {
  background: #e6f4ea;
  color: #1e6a3a;
}
.status-badge--open::before { background: #2e8c4d; }

.status-badge--lopend {
  background: #e6f0fb;
  color: #1e4a82;
}
.status-badge--lopend::before { background: #2e6fb8; }

.status-badge--aanbesteding {
  background: #fff3df;
  color: #8a5a1c;
}
.status-badge--aanbesteding::before { background: #d68a2a; }

.status-badge--gegund {
  background: #ececec;
  color: #4a4a4a;
}
.status-badge--gegund::before { background: #8a8a8a; }

.status-badge--doorlopend {
  background: #f2eef7;
  color: #5e3a82;
}
.status-badge--doorlopend::before { background: #8a6fb8; }

.status-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 400;
  color: var(--vw-grey);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}

/* Statuslegenda boven tabel */
.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 var(--space-3);
  padding: 10px 14px;
  background: var(--vw-blue-10);
  border-radius: var(--radius-sm);
  font-size: 11px;
}
.status-legend .status-badge {
  font-size: 10px;
  padding: 2px 8px;
}

/* ============================== VHB AANSLUITING ============================== */

.vhb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.vhb-card {
  background: var(--vw-white);
  border: 1px solid var(--vw-grey-20);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--vw-blue);
}

.vhb-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--vw-blue);
  letter-spacing: -0.005em;
}

.vhb-card p {
  font-size: var(--text-sm);
  color: var(--vw-grey);
  line-height: 1.6;
}

/* ============================== KANSEN ============================== */

.kansen-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-12);
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}

.next-steps {
  background: var(--vw-white);
  border: 1px solid var(--vw-grey-20);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  border-left: 4px solid var(--vw-blue);
}

.next-steps h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-5);
  color: var(--vw-black-85);
}

.next-steps ol {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.next-steps li {
  counter-increment: step;
  font-size: var(--text-base);
  color: var(--vw-black-85);
  padding-left: var(--space-10);
  position: relative;
  max-width: 65ch;
  line-height: 1.55;
}

.next-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--vw-blue);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ============================== FOOTER ============================== */

.site-footer {
  padding: var(--space-12) var(--space-6);
  background: var(--vw-blue);
  color: var(--vw-white);
  font-size: var(--text-sm);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-meta {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.footer-meta .footer-author {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}
.site-footer a {
  color: var(--vw-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 2px;
}

.site-footer a:hover {
  text-decoration-color: var(--vw-white);
}

/* ============================== LEAFLET TUNING ============================== */

.leaflet-container {
  background: var(--vw-grey-10) !important;
  font-family: var(--font-body) !important;
}

.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  color: var(--vw-grey) !important;
}

.leaflet-control-attribution a { color: var(--vw-blue) !important; }

.ws-popup {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--vw-grey);
  line-height: 1.5;
}
.ws-popup strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--vw-blue);
  margin-bottom: 2px;
  font-weight: 600;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   NIEUWE SECTIES — VHB feedback ronde (juni 2026)
   ============================================================ */

/* ---------- 01 — Waarom relevant voor VHB ---------- */
.section--why {
  background: #fff;
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--line-soft);
}
.section--why .section-title {
  margin-bottom: 12px;
}
.section--why .section-lede {
  max-width: 760px;
  margin-bottom: 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--vhb-blue);
  border-radius: 4px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(73,124,171,0.10);
  transform: translateY(-2px);
}
.why-num {
  font-family: var(--font-display, var(--font-sans));
  font-size: 32px;
  font-weight: 300;
  color: var(--vhb-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- 02 — Overzichtskaart 3 waterschappen ---------- */
.section--overview {
  background: var(--bg-soft, #f6f7f9);
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.overview-lede {
  max-width: 760px;
  margin-bottom: 32px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.overview-map-wrap {
  position: sticky;
  top: 80px;
}
.overview-map {
  width: 100%;
  height: 560px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  background: #eef1f4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.overview-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.overview-legend h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.legend-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.legend-swatch {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.legend-body {
  flex: 1;
}
.legend-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.legend-body span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.overview-src {
  font-size: 12px;
  color: var(--ink-mute, #888);
  margin-top: 16px;
  font-style: italic;
}

/* ---------- Gespreksopening blok binnen waterschap-secties ---------- */
.opener {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--vhb-blue);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 28px 0 36px;
}
.opener-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--vhb-blue);
  margin-bottom: 8px;
}
.opener p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

/* ---------- 09 — Bewijs / referenties visueel ---------- */
.section--proof {
  background: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.proof-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Pijplijn-rijen in projecttabellen — subtiel onderscheid t.o.v. lopende projecten */
.proj-pipeline {
  background: var(--vw-blue-10);
}
.proj-pipeline td {
  color: var(--ink-soft);
  font-size: 13px;
}
.proj-pipeline td strong {
  color: var(--vw-blue-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 4px;
}

/* Gemaal Oostoever — referentievisual */
.ref-visual--oostoever {
  background: linear-gradient(135deg, #2c5f8d 0%, #497CAB 55%, #7fb3d9 100%);
}
.ref-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.ref-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.ref-visual {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #497CAB 0%, #36608A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.03em;
  position: relative;
  overflow: hidden;
}
.ref-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.ref-visual--echten { background: linear-gradient(135deg, #497CAB 0%, #2F4F70 100%); }
.ref-visual--dodewaard { background: linear-gradient(135deg, #36608A 0%, #1F3D5C 100%); }
.ref-visual--ijmuiden { background: linear-gradient(135deg, #7AA3C7 0%, #497CAB 100%); }

/* Foto-variant van de referentie-visual (vervangt SVG-illustratie) */
.ref-visual--photo {
  margin: 0;
  padding: 0;
  background: var(--vw-blue-10);
}
.ref-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ref-visual--photo::after {
  content: none;
}

/* Bronvermelding onder de foto */
.ref-credit {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.ref-credit a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
}
.ref-credit a:hover {
  text-decoration-color: var(--vw-blue);
  color: var(--vw-blue-dark);
}
.ref-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ref-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--vhb-blue);
}
.ref-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ref-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- 10 — Teamblok ---------- */
.section--team {
  background: var(--bg-soft, #f6f7f9);
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.team-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #eef1f4;
  filter: grayscale(15%);
}
.team-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.team-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 13px;
  color: var(--vhb-blue);
  font-weight: 500;
  margin: 0 0 8px;
}
.team-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- 11 — Benaderstrategie ---------- */
.section--strategy {
  background: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.strategy-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-soft, #f6f7f9);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-top: 3px solid var(--vhb-blue);
}
.step-num {
  font-family: var(--font-display, var(--font-sans));
  font-size: 36px;
  font-weight: 200;
  color: var(--vhb-blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- 12 — Vragen voor het eerste gesprek ---------- */
.section--questions {
  background: var(--bg-soft, #f6f7f9);
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.questions-intro {
  max-width: 760px;
  margin-bottom: 36px;
}
.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.question-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 22px 24px;
}
.question-mark {
  font-family: var(--font-display, var(--font-sans));
  font-size: 28px;
  font-weight: 300;
  color: var(--vhb-blue);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.question-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ---------- 13 — Overzicht (kansen-tabel) ---------- */
.section--overview2 {
  background: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.section--overview2 .section-lede {
  max-width: 760px;
  margin-bottom: 32px;
}

/* ---------- Bronnen ---------- */
.section--sources {
  background: var(--bg-soft, #f6f7f9);
  padding: clamp(56px, 7vw, 80px) 0 clamp(48px, 6vw, 64px);
  border-top: 1px solid var(--line-soft);
}
.sources-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}
.sources-list li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute, #888);
  padding-left: 0;
}
.sources-list li a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  transition: color .15s ease, border-color .15s ease;
}
.sources-list li a:hover {
  color: var(--vhb-blue);
  border-bottom-color: var(--vhb-blue);
}

/* ---------- Map tooltip / label voor overzichtskaart ---------- */
.ws-tooltip {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.ws-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.ws-label-bubble {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(73,124,171,0.30);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--vhb-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: inline-block;
}

/* ============================================================
   RESPONSIVE — nieuwe secties
   ============================================================ */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .overview-grid { grid-template-columns: 1fr; gap: 28px; }
  .overview-map-wrap { position: static; }
  .overview-map { height: 420px; }
  .ref-grid { grid-template-columns: 1fr; gap: 20px; }
  .vhb-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .question-grid { grid-template-columns: 1fr; }
  .sources-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .opener p { font-size: 15px; }
  .overview-map { height: 360px; }
}

/* ============================================================
   AANSCHERPING — juni 2026 ronde 2
   ============================================================ */

/* "Waarom nu contact leggen?" — iets rustigere variant van .opener */
.opener--why {
  background: var(--vw-blue-10);
  border-left-color: var(--vw-blue-dark);
  margin-top: 14px;
  margin-bottom: 36px;
}
.opener--why .opener-label {
  color: var(--vw-blue-dark);
}
.opener--why p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
}

/* Team-disclaimer */
.team-disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin: -28px 0 32px;
  padding: 12px 16px;
  background: var(--vw-blue-10);
  border-left: 2px solid var(--vw-blue);
  border-radius: 2px;
  max-width: 720px;
}

/* Vragen — genummerd in plaats van ?-iconen */
.question-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: question;
}
.question-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 22px 24px;
}
.question-num {
  font-family: var(--font-display, var(--font-sans));
  font-size: 20px;
  font-weight: 500;
  color: var(--vhb-blue);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: -0.01em;
  min-width: 32px;
}
.question-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* Bronnen — inklapbaar en visueel rustiger */
.sources-details {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.sources-summary {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-soft);
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .15s ease, background .15s ease;
}
.sources-summary::-webkit-details-marker { display: none; }
.sources-summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 300;
  color: var(--vhb-blue);
  line-height: 1;
  transition: transform .2s ease;
}
.sources-details[open] .sources-summary::after {
  content: "−";
}
.sources-summary:hover {
  color: var(--vhb-blue);
  background: var(--vw-blue-10);
}
.sources-details .sources-list {
  padding: 8px 22px 22px;
  border-top: 1px solid var(--line-soft);
  margin: 0;
}

@media (max-width: 960px) {
  .question-list { grid-template-columns: 1fr; }
}
