:root {
            --bg-main: #FDFCF8;
            --accent-gold: #D4AF37;
            --accent-sage: #9A9E8C;
            --text-main: #35322E;
        }
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            background-color: var(--bg-main);
            color: var(--text-main);
        }
        .font-serif {
            font-family: 'Playfair Display', serif;
        }
        .text-gold { color: var(--accent-gold); }
        .bg-cream { background-color: var(--bg-main); }
        
        /* Smooth transitions for high-end feel */
        .transition-premium {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-light {
            background: rgba(253, 252, 248, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade {
            animation: fadeIn 0.8s ease-out forwards;
        }