/* ==========================================================================
   Mama Bear Law — Spacing, Radius & Layout Tokens
   8px base rhythm. Generous section padding; roomy card interiors.
   ========================================================================== */

:root {
  /* Spacing scale (8px base) */
  --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 */
  --section-pad-y: clamp(3.5rem, 8vw, 7rem);
  --section-pad-x: clamp(1.25rem, 5vw, 4rem);

  /* Content widths */
  --container-max: 1200px;
  --container-narrow: 820px;
  --content-measure: 68ch;

  /* Radii — soft but not pill-y; cards are gently rounded */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;   /* buttons, chips, phone badge */
  --radius-circle: 50%;
}
