/* ============================================================
   Better Being — Spacing & layout tokens
   8px base grid. Generous, architectural negative space.
   ============================================================ */

:root {
  --sp-0: 0;          /* @kind spacing */
  --sp-1: 0.25rem;   /* 4 */
  --sp-2: 0.5rem;    /* 8 */
  --sp-3: 0.75rem;   /* 12 */
  --sp-4: 1rem;      /* 16 */
  --sp-5: 1.5rem;    /* 24 */
  --sp-6: 2rem;      /* 32 */
  --sp-7: 3rem;      /* 48 */
  --sp-8: 4rem;      /* 64 */
  --sp-9: 6rem;      /* 96 */
  --sp-10: 8rem;     /* 128 */

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1440px;
  --gutter: clamp(1.5rem, 5vw, 6rem);   /* @kind spacing */
  --section-y: clamp(4rem, 9vw, 8rem);  /* @kind spacing */
}
