/* Unomi — Spacing, radius & elevation tokens
   Radius scale + shadows from engineering handoff sheet, section 03.
   Spacing scale inferred from the live prototype's layout rhythm (4px base). */

:root {
  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;

  /* Corner radius */
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-3xl: 26px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-card: 0 2px 8px rgba(54, 50, 44, 0.05);
  --shadow-button: 0 10px 22px rgba(196, 114, 74, 0.38);
  --shadow-sheet: 0 -12px 40px rgba(54, 50, 44, 0.25);
  --shadow-popover: 0 18px 44px rgba(54, 50, 44, 0.22);
}
