/* Trinitas Studio — Spacing & layout tokens
   6px base unit (6, 12, 18, 24…). 7-column grid on documents and pages.
   The quiet feng shui layer: nobody sees the system, we know it's there. */

:root {
  --space-unit: 6px;
  --space-1: 6px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 30px;
  --space-6: 36px;
  --space-8: 48px;
  --space-10: 60px;
  --space-12: 72px;
  --space-16: 96px;
  --space-20: 120px;
  --space-24: 144px;

  /* ---- Grid ---- */
  --grid-columns: 7;   /* @kind other */
  --grid-gutter: 24px;
  --container-max: 1200px;
  --container-reading: 720px;  /* Modern Practice reading width */
}
