/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #bd5a18;
    --primary-hover: #a34d14;
    --secondary-color: #2a2d34;
    --accent-color: #f59e0b;
    --background-color: #ffffff;
    --surface-color: #f3f4f6;
    --text-color: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}