/* ============================================================
   Totaal WK — base.css
   Reset, root tokens, typografie, basis-elementen
   ============================================================ */

:root {
  /* Kleuren */
  --c-orange: #ff5a00;
  --c-orange-soft: #ff7a2e;
  --c-orange-deep: #d94600;
  --c-black: #0a0a0a;
  --c-ink: #141414;
  --c-paper: #fdf6ee;
  --c-paper-2: #f4e6d6;
  --c-paper-soft: #faf1e4;
  --c-white: #ffffff;
  --c-grey: #6b6157;
  --c-line: #1a1a1a;

  /* Typografie */
  --f-display: "Unbounded", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Maten */
  --maxw: 1240px;
  --gap: clamp(1rem, 2.4vw, 2rem);
  --radius: 0px;
  --border: 3px solid var(--c-black);
  --border-thick: 5px solid var(--c-black);
  --shadow-hard: 8px 8px 0 var(--c-black);
  --shadow-hard-sm: 5px 5px 0 var(--c-black);
  --shadow-orange: 8px 8px 0 var(--c-orange);

  --t-fast: .18s ease;
  --t-med: .3s cubic-bezier(.2,.7,.3,1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--c-paper);
  color: var(--c-ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--c-black);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--c-orange-deep);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--c-black); }

ul, ol { margin: 0 0 1.1rem 1.3rem; }
li { margin-bottom: .45rem; }

img, svg { max-width: 100%; display: block; }

strong { font-weight: 700; color: var(--c-black); }

mark {
  background: var(--c-orange);
  color: var(--c-black);
  padding: 0 .2em;
  font-weight: 600;
}

::selection {
  background: var(--c-orange);
  color: var(--c-black);
}

:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.4rem);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden { display: none; }
