:root {
    /* Colors - Soft, Romantic Palette */
    --primary: #d4a574;
    --primary-light: #e6c9a8;
    --primary-dark: #b8935f;
    
    --secondary: #8b7d6b;
    --secondary-light: #a89a88;
    --secondary-dark: #6e6154;
    
    --accent: #c89f86;
    --accent-light: #ddbaa5;
    --accent-dark: #b38768;
    
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
    
    --background: #faf8f5;
    --background-light: #ffffff;
    --background-dark: #f5f2ed;
    
    --border: #e8e3db;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body-kr: 'Noto Sans KR', sans-serif;
    --font-body-en: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Container */
    --container-mobile: 100%;
    --container-desktop: 768px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-modal: 1000;
    --z-toast: 2000;
}
