/* ============================================================
   THEMES.CSS — Light and Dark Mode Definitions
   Passberg.org Research Domain System

   Only background tone, text tone, and logo asset change.
   Layout, structure, and interaction model are identical
   across both themes.
   ============================================================ */

body.light-mode {
  --bg: #F5F1E8;
  --text: #1A1A1A;
  --accent: #C26A2E;
  --text-secondary: #5C5A55;
  --border: #C8C2B4;
}

body.dark-mode {
  --bg: #0E0E0E;
  --text: #EAEAEA;
  --accent: #C26A2E;
  --text-secondary: #888884;
  --border: #2A2A2A;
}
