:root {
    /* Colors */
    --color-bg: #F7F5F0;
    --color-surface: #FFFFFF;
    --color-primary: #111B3D;
    --color-primary-light: #2A3663;
    --color-text-main: #111B3D;
    --color-text-muted: #888888;
    --color-border: #E5E5E5;
    
    /* Semantic Colors */
    --color-success-bg: #F0FDF4;
    --color-success-text: #16A34A;
    --color-error-bg: #EAE3E1;
    --color-error-text: #E11D48;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-8: 48px;
    --space-12: 72px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(17, 27, 61, 0.05);
    --shadow-md: 0 4px 12px rgba(17, 27, 61, 0.08);
    --shadow-lg: 0 12px 24px rgba(17, 27, 61, 0.12);
    
    /* Navigation */
    --nav-height: 80px;
}
