/* ============================================================
   Stanley Bankruptcy Law — Spacing, radii, shadows, layout
   ============================================================ */
: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 */

  /* Corner radii — restrained, professional */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows — warm, soft, low (built on ink, not pure black) */
  --shadow-sm: 0 1px 2px rgba(25, 33, 28, 0.06), 0 1px 1px rgba(25, 33, 28, 0.04);
  --shadow-md: 0 4px 14px rgba(25, 33, 28, 0.08), 0 1px 3px rgba(25, 33, 28, 0.06);
  --shadow-lg: 0 16px 40px rgba(25, 33, 28, 0.12), 0 4px 10px rgba(25, 33, 28, 0.06);
  --shadow-brand: 0 10px 28px rgba(27, 58, 46, 0.22);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 76px;

  /* 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: 130ms; /* @kind other */
  --dur: 220ms; /* @kind other */
  --dur-slow: 380ms; /* @kind other */
}
