/* Teddy Arellano — Spacing, radius, shadow, motion tokens */
:root {
  /* Spacing — 4px base rhythm */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius — soft, rounded but not pill-happy */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows — warm-tinted, soft and low */
  --shadow-xs: 0 1px 2px rgba(62, 44, 30, 0.06);
  --shadow-sm: 0 2px 6px rgba(62, 44, 30, 0.08);
  --shadow-md: 0 6px 18px rgba(62, 44, 30, 0.10);
  --shadow-lg: 0 16px 40px rgba(62, 44, 30, 0.14);
  --shadow-inset: inset 0 1px 2px rgba(62, 44, 30, 0.08);

  /* Focus ring */
  --ring: 0 0 0 3px rgba(194, 104, 63, 0.30);

  /* Motion — gentle, no bounce */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);    /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.25, 1);    /* @kind other */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 320ms;   /* @kind other */

  /* Layout */
  --container: 1120px;         /* @kind other */
  --container-narrow: 720px;   /* @kind other */
}
