/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #2F3640;
    --primary-hover: #232932;
    --secondary-color: #5f6874;
    --accent-color: #E1B12C;
    --accent-hover: #c99c20;
    --background-color: #FFFFFF;
    --surface-color: #F5F6FA;
    --surface-warm: #fbfaf6;
    --text-color: #2F3640;
    --text-muted: #69717d;
    --border-color: #e7e8ec;
    --shadow-soft: 0 18px 50px rgba(47, 54, 64, 0.08);
    --shadow-card: 0 12px 30px rgba(47, 54, 64, 0.07);
    --radius-card: 1.35rem;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
}