/* Explain: Theme tokens defining the website's color palette and typography. - */
:root {
    --primary-color: #5C2C26; /* Deep Burgundy */
    --primary-hover: #9E7A3B; /* Muted Gold for hover text/bg */
    --secondary-color: #F4EAD5; /* Rich Parchment */
    --accent-color: #A37C33; /* Elegant Gold */
    --logo-subtitle-color: #5C2C26; /* Burgundy for subtitle to ground it */
    --button-color: #C5A059; /* Bright Gold for buttons */
    --background-color: #FDFBF7; /* Very light cream/parchment */
    --surface-color: #F8F4E6; /* Slight darker cream for cards */
    --footer-bg: #F0E6D2; /* Solid parchment */
    --text-color: #2A1B18; /* Near Black/Dark Brown */
    --text-muted: #5C4A46; /* Medium Brown */
    --border-color: rgba(92, 44, 38, 0.12); /* Burgundy tint */
    --glass-bg: rgba(253, 251, 247, 0.85);
    --glass-border: rgba(197, 160, 89, 0.35); /* Gold border */
    --nav-bg: rgba(253, 251, 247, 0.95);
    --field-bg: rgba(255, 255, 255, 0.7);
    --accent-soft: rgba(197, 160, 89, 0.15);
    --accent-dark: #8B6508;
    --secondary-soft: rgba(92, 44, 38, 0.12);
    --shadow-soft: 0 22px 70px rgba(42, 27, 24, 0.08);
    --shadow-button: 0 16px 36px rgba(197, 160, 89, 0.25);
    --font-heading: 'Frank Ruhl Libre', serif;
    --font-body: 'Assistant', sans-serif;
    --font-logo: 'Frank Ruhl Libre', serif;
}