/* ================================================================
   SPACING / SIZE / EFFECTS TOKENS
   ================================================================ */
:root {
  /* Spacing scale (4px base) */
  --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 */

  /* Radii — modest, hand-cut feel; never pill except tags/badges */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 999px;

  /* Borders */
  --border-width-hairline: 1px;
  --border-width-default: 1.5px;
  --border-width-heavy: 3px;

  /* Shadows — warm, low-contrast, no neon/blue */
  --shadow-sm: 0 1px 2px rgba(36, 31, 24, 0.08);
  --shadow-md: 0 4px 12px rgba(36, 31, 24, 0.12);
  --shadow-lg: 0 12px 32px rgba(36, 31, 24, 0.18);
  --shadow-inset: inset 0 1px 3px rgba(36, 31, 24, 0.15);

  /* Motion — understated, no bounce; this is a trade brand, not playful */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-normal: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */

  /* Container widths */
  --container-max: 1200px;
  --container-narrow: 760px;
}
