:root {
  --groen: #1f5c3d;
  --groen-licht: #2e7d55;
  --goud: #c8a04b;
  --inkt: #1a2420;
  --grijs: #5c6b64;
  --lijn: #e4e9e6;
  --achtergrond: #f6f8f7;
  --wit: #ffffff;
  --radius: 14px;
  --schaduw: 0 1px 2px rgba(26, 36, 32, 0.06), 0 8px 24px rgba(26, 36, 32, 0.06);
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto Flex", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--inkt);
  background: var(--achtergrond);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--wit);
  border-bottom: 1px solid var(--lijn);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-header img { height: 44px; width: auto; display: block; }
.wip-badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--goud);
  background: rgba(200, 160, 75, 0.12);
  border: 1px solid rgba(200, 160, 75, 0.35);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Hero */
.hero { padding: 56px 0 28px; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 700;
}
.hero p { font-size: 1.1rem; color: var(--grijs); max-width: 60ch; margin: 0; }

/* Secties */
.sectie { padding: 20px 0 64px; }
.sectie-kop {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lijn);
}
.sectie-kop h2 { font-size: 1.35rem; margin: 0; font-weight: 700; }
.sectie-kop .telling { color: var(--grijs); font-size: 0.95rem; }

/* Kaartraster */
.raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.kaart {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--schaduw);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.kaart:hover {
  transform: translateY(-3px);
  border-color: var(--groen-licht);
  box-shadow: 0 2px 4px rgba(26, 36, 32, 0.08), 0 14px 34px rgba(26, 36, 32, 0.12);
}
.kaart .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--groen-licht);
  margin-bottom: 10px;
}
.kaart h3 { font-size: 1.12rem; margin: 0 0 6px; font-weight: 600; }
.kaart .datum { color: var(--grijs); font-size: 0.9rem; margin-top: auto; padding-top: 14px; }
.kaart .pijl { color: var(--groen); font-weight: 600; font-size: 0.9rem; }

/* Lege staat */
.leeg {
  background: var(--wit);
  border: 1px dashed var(--lijn);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  color: var(--grijs);
}
.leeg code {
  display: inline-block;
  margin-top: 10px;
  background: var(--achtergrond);
  border: 1px solid var(--lijn);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.88rem;
  color: var(--inkt);
}

/* WIP-tegel (placeholder voor toekomstige modules) */
.tegel-wip {
  background: repeating-linear-gradient(
    -45deg, var(--wit), var(--wit) 12px, #fbfcfb 12px, #fbfcfb 24px
  );
  border: 1px dashed var(--lijn);
  color: var(--grijs);
  box-shadow: none;
  cursor: default;
}
.tegel-wip:hover { transform: none; border-color: var(--lijn); box-shadow: none; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--lijn);
  padding: 28px 0;
  color: var(--grijs);
  font-size: 0.88rem;
}
