/* ==========================================================
   GLOBAL — reset en basis-elementstijlen
   ========================================================== */
* { box-sizing: border-box; }
html { height: 100%; }
body {
  margin: 0; min-height: 100%; background: #fff; color: var(--inkt);
  font: 16px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; color: inherit; }
a { color: var(--org-deep); text-decoration: none; }
a:hover { color: var(--org); }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 9px; }
