/* ============================================================
   theme.css — Color Palette + Typography
   ============================================================ */

:root {
  --bg: #f7f3ea;
  --text: #2b211a;
  --accent: #5a4a86;
  --accent-light: #e8dfcf;
  --border: #d8cbb8;
}

body {
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3 {
  color: var(--accent);
}

a {
  color: var(--accent);
}

a:hover {
  color: #3d2f63;
}
