/* ==========================================================================
   Neighborhood Studios — Spacing, sizing & layout tokens
   4px base grid. Generous whitespace is a design principle here.
   ========================================================================== */

: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 — gentle, hand-made; nothing pill-perfect ------------------- */
  --radius-xs: 4px;
  --radius-sm: 7px;
  --radius-md: 11px;     /* default card */
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-blob: 42% 58% 56% 44% / 56% 44% 56% 44%; /* organic, mark-like */

  /* --- Border widths ------------------------------------------------------ */
  --border-hair: 1px;
  --border-thin: 1.5px;
  --border-ink-w: 2px;     /* the "drawn" outline weight */
  --border-bold: 3px;

  /* --- Container widths --------------------------------------------------- */
  --container-sm: 640px;
  --container-md: 820px;
  --container-lg: 1080px;
  --container-xl: 1280px;
  --container-prose: 68ch;

  /* --- Layout ------------------------------------------------------------- */
  --gutter: var(--space-5);
  --section-y: var(--space-9);
  --header-h: 72px;
}
