/* ============================================================
   Snowball Studio — Spacing, radii, shadow, layout tokens
   ============================================================ */
: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: 3rem;     /* 48 */
  --space-8: 4rem;     /* 64 */
  --space-9: 6rem;     /* 96 */
  --space-10: 8rem;    /* 128 */

  /* --- Radii ---
     Snowball rounds generously. Images & media use lg/xl;
     the brand mark itself is a perfect circle. */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;   /* default for cards & images */
  --radius-xl:  32px;   /* large media blocks */
  --radius-2xl: 48px;
  --radius-pill: 999px; /* buttons, chips, capsules */
  --radius-circle: 50%;

  /* --- Borders --- */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* --- Shadows (restrained; brand favours flat + crisp borders) --- */
  --shadow-sm: 0 1px 2px rgba(12,13,18,0.06);
  --shadow-md: 0 6px 20px rgba(12,13,18,0.08);
  --shadow-lg: 0 18px 48px rgba(12,13,18,0.12);
  --shadow-blue: 0 14px 40px rgba(1,41,253,0.28);

  /* --- Layout --- */
  --container-max: 1200px;
  --container-wide: 1400px;
  --gutter: clamp(1.25rem, 5vw, 4rem); /* @kind spacing */

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
  --dur-slow: 480ms; /* @kind other */
}
