/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #4169e1;
    --primary-hover: #27408b;
    --secondary-color: #fbcfe8;
    --accent-color: #f472b6;
    --background-color: #f4eae1;
    --surface-color: #faf5f0;
    --text-color: #1e293b;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}