/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --brand-dark: #074730;
    --brand-green: #619a58;
    --brand-gold: #c39c4a;
    --brand-light: #f9fbf9;
    --text-dark: #1a2e25;
    
    --background-color: var(--brand-light);
    --text-color: var(--text-dark);
    --text-muted: #5e6b65;
    --border-color: #e2e8e4;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}