/* ============================================================
   Coffee & Contracts — Spacing, radii, shadows, motion
   8px base grid.
   ============================================================ */
:root {
  /* ---- Spacing scale (8px base) ---- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ---- Radii ---- */
  --radius-sm: 8px;
  --radius-md: 14px;     /* inputs, small cards */
  --radius-lg: 22px;     /* cards, panels */
  --radius-xl: 32px;     /* large media + feature blocks */
  --radius-pill: 999px;  /* buttons, badges, chips */
  --radius-arch: 999px 999px 22px 22px;  /* signature arch top */

  /* ---- Shadows (soft, warm, low-contrast) ---- */
  --shadow-xs: 0 1px 2px rgba(36, 36, 36, 0.05);
  --shadow-sm: 0 2px 8px rgba(36, 36, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(36, 36, 36, 0.08);
  --shadow-lg: 0 20px 48px rgba(36, 36, 36, 0.10);

  /* ---- Borders ---- */
  --border-width: 1px;            /* @kind other */
  --border-width-strong: 1.5px;  /* @kind other */

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);    /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.2, 1);     /* @kind other */
  --dur-fast: 140ms;   /* @kind other */
  --dur-base: 220ms;   /* @kind other */
  --dur-slow: 360ms;   /* @kind other */

  /* ---- Layout ---- */
  --container: 1200px;          /* @kind other */
  --container-narrow: 760px;    /* @kind other */
}
