/* ============================================================
   JewelsUp — Spacing, radius, shadow, motion, layout tokens
   Base grid: 4px. Radii kept modest — refined, not bubbly.
   ============================================================ */

:root {
  /* Spacing scale (4px base) */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --radius-xs:   3px;
  --radius-sm:   5px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   18px;
  --radius-2xl:  26px;
  --radius-pill: 999px;

  /* Border widths */
  --border-hairline: 1px;
  --border-thick:    1.5px;

  /* Shadows — soft, warm-tinted, low spread (understated luxury) */
  --shadow-xs:  0 1px 2px rgba(27, 25, 21, 0.06);
  --shadow-sm:  0 1px 3px rgba(27, 25, 21, 0.08), 0 1px 2px rgba(27, 25, 21, 0.05);
  --shadow-md:  0 4px 12px rgba(27, 25, 21, 0.08), 0 2px 4px rgba(27, 25, 21, 0.05);
  --shadow-lg:  0 12px 28px rgba(27, 25, 21, 0.12), 0 4px 8px rgba(27, 25, 21, 0.06);
  --shadow-xl:  0 24px 56px rgba(27, 25, 21, 0.16), 0 8px 16px rgba(27, 25, 21, 0.07);
  --shadow-gold: 0 6px 20px rgba(200, 164, 81, 0.28);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1); /* @kind other */
  --ease-emphasized: cubic-bezier(0.3, 0, 0, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   180ms; /* @kind other */
  --dur-slow:   280ms; /* @kind other */

  /* Layout */
  --container-max: 1280px;
  --sidebar-w: 248px;
  --header-h: 64px;
}
