/* ============================================================
   BASE — gedeelde tokens, reset & fonts
   De enige bron van waarheid voor kleuren, fonts en reset.
   Wordt op ELKE pagina als eerste geladen, vóór de
   pagina-specifieke CSS. Definieer kleuren/fonts hier, niet
   opnieuw in de andere bestanden.
   ============================================================ */

:root {
  /* Merkkleuren */
  --orange: #F15A22;
  --orange-dark: #d44c1a;
  --cream: #FDF4EC;
  --cream-2: #f7ead9;
  --dark: #1A1A1A;
  --dark-2: #2a2a2a;
  --text: #2e2e2e;
  --muted: #7a7a7a;

  /* Lijnen & vlakken */
  --line: rgba(26, 26, 26, .08);
  --line-dark: rgba(255, 255, 255, .08);
  --bg: #f5f5f4;
  --border: rgba(0, 0, 0, 0.08);

  /* Status */
  --green: #16a34a;
  --red: #dc2626;

  /* Vormgeving */
  --radius-btn: 14px;

  /* Fonts */
  --display: "Archivo", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ UTILITIES ============ */
/* Visueel verborgen, maar wél leesbaar voor screenreaders & SEO.
   Gebruikt voor een h1 op pagina's zonder zichtbare hoofd-titel. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
