/* CounselPress — Spacing, sizing & layout tokens (8px base, generous whitespace) */

:root {
  --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-y: clamp(3.5rem, 2.5rem + 4vw, 7rem); /* @kind spacing */
  --section-y-sm: clamp(2.5rem, 2rem + 2vw, 4rem); /* @kind spacing */

  /* Container widths */
  --container:       1200px;
  --container-wide:  1360px;
  --container-narrow:820px;   /* article measure */
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 3rem); /* @kind spacing */

  /* Control sizing (accessible touch targets ≥ 44px) */
  --control-h-sm: 40px;
  --control-h:    48px;
  --control-h-lg: 56px;
  --tap-min: 44px;
}
