/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #504e4a; /* Dark muted grey-brown */
    --primary-hover: #363432;
    --secondary-color: #a39f98; /* Mid greige */
    --accent-color: #c4b087; /* Muted Scandi gold/wheat */
    --background-color: #faf9f7; /* Scandi off-white */
    --surface-color: #ffffff;
    --text-color: #2e2c2a; /* Deep charcoal */
    --text-muted: #706d69;
    --border-color: #e6e4df;
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Heebo', sans-serif;
}