/* ============================================================
   toekom.st — Spacing & layout tokens
   8px grid. All spacing in multiples of 8 (with 4px half-step).
   ============================================================ */

:root {
  /* --- Spacing scale (8px grid) --- */
  --space-0:  0;
  --space-1:  0.25rem;  /* 4px */
  --space-2:  0.5rem;   /* 8px */
  --space-3:  0.75rem;  /* 12px */
  --space-4:  1rem;     /* 16px */
  --space-5:  1.5rem;   /* 24px — default component gap */
  --space-6:  2rem;     /* 32px */
  --space-8:  3rem;     /* 48px — section inner padding */
  --space-10: 4rem;     /* 64px */
  --space-12: 5rem;     /* 80px — section vertical rhythm */
  --space-16: 8rem;     /* 128px */

  /* --- Container widths --- */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1280px;
  --container-2xl: 1440px;
  --grid-gap:      var(--space-5);
}
