/* Hunger House — Spacing, radii, shadows, borders, motion */

:root {
  /* Spacing scale (4px base) */
  --space-0:  0;
  --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:  2.5rem;  /* 40 */
  --space-8:  3rem;    /* 48 */
  --space-9:  4rem;    /* 64 */
  --space-10: 6rem;    /* 96 */

  /* Radii — soft & friendly, echoing rounded lettering */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --radius-blob: 40px 28px 36px 24px; /* organic hand-drawn corner */

  /* Borders */
  --border-width: 1.5px;
  --border-width-bold: 2.5px;

  /* Shadows — warm-tinted, soft (never harsh black) */
  --shadow-xs:  0 1px 2px rgba(43, 42, 38, 0.06);
  --shadow-sm:  0 2px 8px rgba(43, 42, 38, 0.08);
  --shadow-md:  0 6px 18px rgba(43, 42, 38, 0.10);
  --shadow-lg:  0 14px 34px rgba(43, 42, 38, 0.14);
  --shadow-brand: 0 10px 28px rgba(0, 132, 132, 0.22);

  /* Motion — gentle, welcoming */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   360ms; /* @kind other */

  /* Layout */
  --container-max: 1200px;
  --container-text: 680px;
}
