/* ============================================================
   SPACING & LAYOUT
   A soft 4px-based rhythm. Section padding is fluid; the page
   is capped at 1200px with a fluid gutter.
   ============================================================ */

:root {
  /* ---- Spacing scale ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* ---- Layout ---- */
  --maxw: 1200px;                          /* page max width */
  --maxw-prose: 680px;                     /* section-header text width */
  --gutter: clamp(20px, 5vw, 64px);        /* @kind spacing */
  --section-pad: clamp(72px, 9vw, 128px);  /* vertical section rhythm */

  /* common content measures */
  --measure-lede: 46ch;
  --measure-display: 24ch;
}
