/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #d97706; /* Warm Wheat / Amber */
    --primary-hover: #b45309;
    --secondary-color: #15803d; /* Agricultural Green */
    --accent-color: #f59e0b;
    --background-color: #fdfbf7; /* Very light warm tone */
    --surface-color: #ffffff;
    --text-color: #431407; /* Dark Brown */
    --text-muted: #78716c;
    --border-color: #e7e5e4;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
}