/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #D9A441;
    --primary-hover: #b88a35;
    --secondary-color: #0B1D2E;
    --secondary-hover: #152f48;
    --background-color: #F9F6F0;
    --surface-color: #FFFFFF;
    --text-color: #0B1D2E;
    --text-muted: #5e6d7d;
    --border-color: #e2dfd9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}
