/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #8c9b88;
    --primary-hover: #768572;
    --secondary-color: #d1bfae;
    --accent-color: #e3d5ca;
    --background-color: #ffffff;
    --surface-color: #eaddc4;
    --text-color: #826128;
    --text-muted: rgba(130, 97, 40, 0.7);
    --border-color: rgba(130, 97, 40, 0.2);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
