/* Elizabeths Bakes — Spacing, radii, shadows, motion
   Cozy = soft corners, generous air, warm diffuse shadows. */

:root {
  /* ---- Spacing (4px base) ---- */
  --space-1:  0.25rem;  /*  4px */
  --space-2:  0.5rem;   /*  8px */
  --space-3:  0.75rem;  /* 12px */
  --space-4:  1rem;     /* 16px */
  --space-5:  1.5rem;   /* 24px */
  --space-6:  2rem;     /* 32px */
  --space-7:  2.5rem;   /* 40px */
  --space-8:  3.5rem;   /* 56px */
  --space-9:  5rem;     /* 80px */

  /* ---- Radii — soft, rounded, homey ---- */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* ---- Shadows — warm, low, diffuse (walnut-tinted, never grey) ---- */
  --shadow-xs:   0 1px 2px rgba(90, 68, 51, 0.06);
  --shadow-sm:   0 2px 6px rgba(90, 68, 51, 0.08);
  --shadow-md:   0 6px 18px rgba(90, 68, 51, 0.10);
  --shadow-lg:   0 14px 34px rgba(90, 68, 51, 0.13);
  --shadow-inset: inset 0 1px 2px rgba(90, 68, 51, 0.10);

  /* ---- Motion — gentle, no bounce ---- */
  --ease-soft:   cubic-bezier(0.33, 0.02, 0.24, 1); /* @kind other */
  --dur-fast:    140ms; /* @kind other */
  --dur-base:    220ms; /* @kind other */
  --dur-slow:    360ms; /* @kind other */

  /* ---- Layout ---- */
  --container:      1120px;
  --container-wide: 1280px;
}
