/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #1a365d;
    --primary-hover: #2a4365;
    --secondary-color: #a38757;
    --accent-color: #9b2c2c;
    --background-color: #faf9f6;
    --surface-color: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
