/* ============================================================
   Spicy Margarita — Spacing, radii, shadows, motion
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --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;

  /* ---- Radii ---- */
  --radius-sm:   8px;
  --radius-md:   14px;   /* inputs, small cards */
  --radius-lg:   24px;   /* cards, image tiles */
  --radius-xl:   32px;   /* large panels */
  --radius-pill: 999px;  /* buttons, tags, chips */

  /* ---- Shadows (soft, diffuse — never harsh) ---- */
  --shadow-sm:  0 2px 8px rgba(46, 10, 22, 0.06);
  --shadow-md:  0 8px 24px rgba(46, 10, 22, 0.08);
  --shadow-lg:  0 18px 48px rgba(46, 10, 22, 0.12);
  --shadow-card: 0 12px 40px rgba(46, 10, 22, 0.10);

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

  /* ---- Layout ---- */
  --container:  1120px;
  --gutter:     24px;
}
