/* Ithaca — Spacing & rhythm tokens
   Editorial discipline: a 12-column grid, an 88px column, 24px gutters, 64px page pad.
   Whitespace is prestige — reserve it like a balance sheet reserves capital. */
:root {
  /* Base scale (4px step) */
  --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-18: 72px;
  --space-24: 96px;
  --space-30: 120px;  /* section vertical padding */

  /* Editorial grid rhythm */
  --col: 88px;        /* nominal column width */
  --gutter: 24px;     /* grid gutter */
  --pad: 64px;        /* page / section horizontal padding */
  --section-y: 120px; /* section vertical padding */

  /* Radii — the brand is near-square. Pills are the only round form. */
  --radius-none: 0px;
  --radius-sm: 2px;     /* whisper, rarely used */
  --radius-pill: 999px; /* chips only */

  /* Hairline */
  --hairline: 1px;
}
