/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #008c45;
    --primary-hover: #006b35;
    --secondary-color: #cd212a;
    --accent-color: #f59e0b;
    --background-color: #fffdf7;
    --surface-color: #ffffff;
    --text-color: #292524;
    --text-muted: #57534e;
    --border-color: #e7e5e4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}
