/* Explain: Theme tokens with gold and silver gradients, and Playfair Display font. - */
:root {
    --primary-color: #D4AF37;
    --primary-hover: #B5952F;
    --secondary-color: #F8F9FA;
    --accent-color: #C5A059;
    --logo-subtitle-color: #7A7A7A;
    --button-color: #D4AF37;
    --background-color: #FFFFFF;
    --surface-color: #FAFAFA;
    --footer-bg: #F7F7F7;
    --text-color: #222222;
    --text-muted: #666666;
    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(212, 175, 55, 0.3);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --field-bg: #FFFFFF;
    --sage-soft: rgba(212, 175, 55, 0.1);
    --sage-dark: #C5A059;
    --terracotta-soft: rgba(192, 192, 192, 0.2);
    --shadow-soft: 0 10px 40px rgba(212, 175, 55, 0.08);
    --shadow-button: 0 8px 25px rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-logo: 'Playfair Display', serif;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F3E5AB, #D4AF37);
    --silver-gradient: linear-gradient(135deg, #E0E0E0, #FFFFFF, #C0C0C0);
}