/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #dc2626; /* Brand Red */
    --primary-hover: #b91c1c;
    --secondary-color: #000000; /* Black */
    --secondary-hover: #171717;
    --accent-color: #ef4444; /* Bright Red */
    --background-color: #ffffff; /* White */
    --surface-color: #fdfdfd;
    --text-color: #0a0a0a; /* Near Black */
    --text-muted: #525252;
    --border-color: #e5e5e5;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}