/* ═══════════════════════════════════════════════════
   BASE.CSS — Uncle AI
   Universal reset + typography shared by ALL pages.
   Load this first on every page.
   ═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE BODY ── */
body {
  font-family: 'Inter', sans-serif;
  background: #FDF6EE;
  color: #2A1A0E;
}

/* ── LINKS ── */
a { text-decoration: none; color: inherit; }
