/* ─────────────────────────────────────────────────────────────────────
   tokens.css — Design tokens
   Edit these values to retheme the entire site.
───────────────────────────────────────────────────────────────────── */
:root {
  /* Colours */
  --bg:          #1d1b3a;
  --bg-card:     #252244;
  --bg-elevated: #2e2a58;
  --border:      #3a3570;
  --accent:      #b38dff;
  --accent-dim:  #7f7fd5;
  --text:        #fbe7ff;
  --text-muted:  #e4c1f9;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', system-ui, sans-serif;
  --font-mono:    'Cascadia Code', 'Fira Code', monospace;

  /* Sizes */
  --nav-h:     68px;
  --radius:    12px;
  --radius-sm: 6px;

  /* Animation */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.25s var(--ease);

  /* Dream theme extras */
  --flourish: #e8b4ff;
  --gold:     #f0d490;
  --gold-dim: rgba(240, 212, 144, 0.18);
}
