/*
 * Soft neo-brutalism tokens.
 * Brutalist honesty (thick ink borders, hard offset shadows, flat blocks of
 * colour) with soft, slightly irregular geometry. Nothing here is a square.
 */
:root {
  /* --- colour ------------------------------------------------------------ */
  --ink: #1b1a17; /* borders + all text. Not pure black. */
  --ink-soft: #4a463d; /* secondary text only */
  --paper: #fff6e9; /* warm cream page */
  --paper-deep: #f6e6d2; /* recessed areas */
  --surface: #ffffff;

  --butter: #ffd35c; /* primary accent / CTA */
  --mint: #9be7c4; /* success, "new" */
  --coral: #ff9c8a; /* danger, destructive */
  --peri: #b4c6ff; /* info */
  --lilac: #dcc4ff; /* accent variety */

  /* --- radius: irregular on purpose ------------------------------------- */
  --r-blob: 28px 22px 30px 20px / 22px 30px 20px 28px;
  --r-blob-alt: 20px 30px 22px 28px / 30px 20px 28px 22px;
  --r-card: 22px;
  --r-input: 16px;
  --r-pill: 999px;

  /* --- border + shadow: flat, never blurred ----------------------------- */
  --bw: 2.5px;
  --bw-thick: 3px;
  --shadow: 4px 5px 0 var(--ink);
  --shadow-lg: 7px 8px 0 var(--ink);
  --shadow-in: 2px 2px 0 var(--ink);

  /* --- type -------------------------------------------------------------- */
  --font-display: 'Baloo 2', ui-rounded, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', monospace;

  /* --- space + motion ---------------------------------------------------- */
  --gap-xs: 6px;
  --gap-sm: 10px;
  --gap: 16px;
  --gap-lg: 24px;
  --gap-xl: 36px;

  --dur: 140ms;
  --ease: cubic-bezier(0.2, 0.8, 0.3, 1);

  --tap: 44px; /* minimum touch target */
}
