/* НаШ Brand Design System — Tokens v5 (warm-paper variant)
 * Source-of-truth: fruits-handoff.zip / Watercolor SVG Attempt.html :root
 * Decision date: 2026-05-04 (user locked)
 * Usage: @import this file first in every module CSS.
 */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,500;0,700;1,500;1,700&family=Caveat:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Warm-paper base tokens (v5, from Watercolor SVG Attempt.html) ─── */
  --paper:      #fbf7ef;
  --paper-2:    #f0e9d6;
  --ink:        #1d1b16;
  --ink-2:      #3c362c;
  --muted:      #8a8271;
  --accent:     #e24a2e;
  --accent-soft:#f2c8bd;
  --line:       #e5dfcd;

  /* ── Legacy / compat aliases ────────────────────────────────────────── */
  --bg:         var(--paper);
  --tomato:     var(--accent);
  --white:      #fff;

  /* ── Typography ─────────────────────────────────────────────────────── */
  --f-sans: 'Onest', 'Inter', -apple-system, sans-serif;
  --f-warm: 'Fraunces', Georgia, serif;
  --f-hand: 'Caveat', cursive;
  --f-mono: 'JetBrains Mono', monospace;
}

/* ── Global resets ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
