/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #4a6755;
    --primary-hover: #3b5344;
    --secondary-color: #c06c54;
    --background-color: #fbf9f6;
    --surface-color: #ffffff;
    --text-color: #3b3632;
    --text-muted: #7c736a;
    --border-color: #e6dfd7;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
