/* ==========================================================================
   Quirk — Radius & shadow tokens
   Soft, rounded, friendly. Pills for actions. Shadows are warm & low.
   ========================================================================== */

:root {
  /* Corner radii — generous & soft, echoing the rounded wordmark */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  36px;
  --radius-pill: 999px;
  --radius-card: var(--radius-xl);

  /* Shadows — warm-tinted, soft, never harsh */
  --shadow-xs:  0 1px 2px rgba(42, 49, 59, 0.06);
  --shadow-sm:  0 2px 6px rgba(42, 49, 59, 0.08);
  --shadow-md:  0 6px 18px rgba(42, 49, 59, 0.10);
  --shadow-lg:  0 14px 38px rgba(42, 49, 59, 0.14);
  --shadow-xl:  0 28px 64px rgba(42, 49, 59, 0.18);

  /* Brand-tinted lift (use on red/cream cards) */
  --shadow-brand: 0 12px 30px rgba(234, 61, 23, 0.22);

  /* Focus ring */
  --ring-brand: 0 0 0 4px rgba(234, 61, 23, 0.22);
  --ring-blue:  0 0 0 4px rgba(62, 130, 255, 0.22);

  /* Motion — light, springy, never sluggish */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:    120ms;  /* @kind other */
  --dur-base:    200ms;  /* @kind other */
  --dur-slow:    320ms;  /* @kind other */
}
