/* ============================================================
   Macnitech — Spacing, radius, sizing
   Generous, editorial whitespace on an 8px base.
   ============================================================ */

:root {
  /* ---- Spacing scale (8px base, with 2/4 micro-steps) ---- */
  --space-0:   0;
  --space-1:   0.25rem;   /* 4  */
  --space-2:   0.5rem;    /* 8  */
  --space-3:   0.75rem;   /* 12 */
  --space-4:   1rem;      /* 16 */
  --space-5:   1.5rem;    /* 24 */
  --space-6:   2rem;      /* 32 */
  --space-7:   3rem;      /* 48 */
  --space-8:   4rem;      /* 64 */
  --space-9:   6rem;      /* 96 */
  --space-10:  8rem;      /* 128 — section rhythm */

  /* ---- Radii — soft but architectural (echoes the logo tile) ---- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;    /* matches logo tile corner */
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-hair:  1px;
  --border-thick: 1.5px;

  /* ---- Layout ---- */
  --container:      1200px;   /* default max content width */
  --container-wide: 1400px;
  --container-prose: 68ch;    /* long-form measure         */
  --gutter:         clamp(1.25rem, 5vw, 4rem); /* @kind spacing */
}
