/* Debts or Death — Spacing, Radius, Shadow, Motion
   Generous, calm spacing. Soft rounded cards, restrained shadows.
   Premium = quiet elevation, not heavy drop-shadows. */

:root {
  /* Spacing (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;
  --space-32: 128px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;     /* default card / input */
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-pill: 999px;

  /* Shadows — soft, neutral, low spread */
  --shadow-xs: 0 1px 2px rgba(22,25,31,0.06);
  --shadow-sm: 0 1px 2px rgba(22,25,31,0.06), 0 1px 3px rgba(22,25,31,0.05);
  --shadow-md: 0 2px 4px rgba(22,25,31,0.05), 0 6px 16px rgba(22,25,31,0.07);
  --shadow-lg: 0 8px 24px rgba(22,25,31,0.10), 0 2px 6px rgba(22,25,31,0.06);
  --shadow-xl: 0 18px 48px rgba(22,25,31,0.16), 0 6px 14px rgba(22,25,31,0.08);
  /* warm oxblood-tinted elevation for brand surfaces */
  --shadow-brand: 0 12px 32px rgba(107,23,34,0.22);
  --shadow-gold: 0 6px 18px rgba(194,161,77,0.28);

  /* Rings */
  --ring-focus: 0 0 0 3px rgba(148,40,58,0.28);
  --ring-gold: 0 0 0 3px rgba(194,161,77,0.30);

  /* Layout */
  --sidebar-w: 264px;
  --sidebar-w-collapsed: 72px;
  --topbar-h: 64px;
  --content-max: 1240px;
  --site-max: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 360ms;   /* @kind other */
  --dur-slower: 600ms; /* @kind other */
}
