/* Little Twiglets — Spacing, radii, shadows, motion
   Soft, rounded, generous — matched to a warm & cosy toddler brand. */

:root{
  /* Spacing scale (4px base) */
  --sp-1: 0.25rem;  /* 4 */
  --sp-2: 0.5rem;   /* 8 */
  --sp-3: 0.75rem;  /* 12 */
  --sp-4: 1rem;     /* 16 */
  --sp-5: 1.5rem;   /* 24 */
  --sp-6: 2rem;     /* 32 */
  --sp-7: 3rem;     /* 48 */
  --sp-8: 4rem;     /* 64 */
  --sp-9: 6rem;     /* 96 */

  /* Radii — pill & round-cornered, echoing the logo's soft forms.
     Nothing sharp; toddlers, not enterprise dashboards. */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Borders */
  --border-w: 1.5px; /* @kind other */
  --border-w-bold: 3px; /* @kind other */

  /* Shadows — warm-brown-tinted, soft & low, never harsh grey */
  --shadow-xs: 0 1px 2px rgba(63,23,14,0.08);
  --shadow-sm: 0 2px 6px rgba(63,23,14,0.10);
  --shadow-md: 0 6px 18px rgba(63,23,14,0.12);
  --shadow-lg: 0 14px 36px rgba(63,23,14,0.16);
  --shadow-focus: 0 0 0 4px rgba(242,142,22,0.30);

  /* Motion — gentle, bouncy, playful. Never snappy/mechanical. */
  --ease-soft:   cubic-bezier(0.33, 1, 0.68, 1); /* @kind other */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* Layout */
  --container-max: 1180px; /* @kind other */
  --container-narrow: 720px; /* @kind other */
}
