/* Explain: Defines theme colors, typography, and architectural shapes. - */
:root {
    --primary-color: #8E1717;      /* Primary Burgundy */
    --primary-hover: #681313;      /* Deep Burgundy */
    --secondary-color: #C28A32;    /* Warm Gold */
    --accent-color: #C28A32;       /* Warm Gold */
    --background-color: #FCF8F0;   /* Warm Ivory */
    --surface-color: #ffffff;      /* Pure white */
    --surface-muted: #F3EBDD;      /* Warm Stone */
    --surface-stone: #F3EBDD;      /* Warm Stone */
    --charcoal-color: #302E2A;     /* Charcoal */
    --text-color: #302E2A;         /* Charcoal */
    --text-muted: #706C64;         /* Muted Gray */
    --border-color: rgba(142, 23, 23, 0.12);
    --shadow-soft: 0 12px 40px rgba(142, 23, 23, 0.06);
    --shadow-card: 0 8px 24px rgba(142, 23, 23, 0.04);
    
    /* Architectural shapes */
    --radius-arch: 999px 999px 16px 16px;
    --radius-soft: 12px;
    
    /* Typography */
    --font-heading: 'Amiri', serif;
    --font-body: 'Inter', sans-serif;
}