        :root {
            --ivory: #FDFCFB;
            --gold: #C5A059;
            --navy: #0F172A;
            --rose: #E9D5D2;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--ivory);
            color: #1a1a1a;
            scroll-behavior: smooth;
        }

        .font-serif { font-family: 'Playfair Display', serif; }
        .font-cursive { font-family: 'Mrs Saint Delafield', cursive; }

        /* Typography & Layout */
        .h-long { min-height: 150vh; }
        .text-balanced { text-wrap: balance; }
        
        /* Custom Animations */
        @keyframes subtleZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        .zoom-bg { animation: subtleZoom 20s infinite alternate ease-in-out; }

        .cart-dot {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--gold);
            color: white;
            font-size: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive Grids */
        .editorial-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 2rem;
        }

        /* Section Transitions */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* Custom Cursors/Buttons */
        .btn-luxury {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(197, 160, 89, 0.3);
            background: transparent;
            padding: 1rem 2.5rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .btn-luxury:hover {
            color: white;
            background: var(--gold);
            border-color: var(--gold);
        }

        /* Search Overlay */
        #search-overlay {
            background: rgba(253, 252, 251, 0.98);
            backdrop-filter: blur(20px);
        }

        .stagger-item { opacity: 0; transition: 0.5s; }
        .active .stagger-item { opacity: 1; }
    /* Animation Keyframes */
    @keyframes glowIn {
        0% { opacity: 0; filter: blur(10px); }
        100% { opacity: 0.3; filter: blur(0); }
    }
    
    @keyframes kenBurns {
        0% { transform: scale(1); }
        100% { transform: scale(1.1); }
    }
    
    @keyframes charReveal {
        0% { opacity: 0; transform: translateY(20px) rotateX(90deg); }
        100% { opacity: 1; transform: translateY(0) rotateX(0); }
    }
    
    @keyframes lineReveal {
        0% { 
            opacity: 0;
            transform: translateX(-50px);
            clip-path: inset(0 100% 0 0);
        }
        100% { 
            opacity: 1;
            transform: translateX(0);
            clip-path: inset(0 0 0 0);
        }
    }
    
    @keyframes typewriter {
        from { width: 0 }
        to { width: 100% }
    }
    
    @keyframes slideUp {
        from { 
            transform: translateY(50px);
            opacity: 0;
        }
        to { 
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes bounceSlow {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes sparkle {
        0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
        50% { opacity: 1; transform: scale(1) rotate(180deg); }
    }
    
    @keyframes countUp {
        to { --num: var(--target); }
    }
    
    @keyframes pulseGlow {
        0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
        50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
    }
    
    @keyframes floatElement {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }
    
    /* Animation Classes */
    .animate-glow-in {
        animation: glowIn 2s ease-out forwards;
    }
    
    .animate-ken-burns {
        animation: kenBurns 20s ease-in-out infinite alternate;
    }
    
    .split-text-reveal .char {
        display: inline-block;
        opacity: 0;
        animation: charReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: calc(var(--char-index) * 0.05s);
    }
    
    .line-text {
        display: inline-block;
        animation: lineReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .typewriter-line {
        overflow: hidden;
        white-space: nowrap;
        animation: typewriter 2s steps(40) forwards;
        opacity: 0;
        animation-delay: calc(var(--line-index, 0) * 1s);
    }
    
    .paragraph-reveal {
        animation: slideUp 1s ease-out forwards;
    }
    
    .slide-up {
        animation: slideUp 0.8s ease-out forwards;
    }
    
    .animate-btn-in {
        animation: slideUp 0.6s ease-out forwards;
        animation-delay: 1s;
        opacity: 0;
    }
    
    .animate-bounce-slow {
        animation: bounceSlow 3s ease-in-out infinite;
    }
    
    .animate-fade-in {
        animation: fadeIn 1s ease-out 0.5s forwards;
        opacity: 0;
    }
    
    .animate-fade-in-delay {
        animation: fadeIn 1s ease-out 2s forwards;
        opacity: 0;
    }
    
    .card-reveal {
        animation: slideUp 0.8s ease-out forwards;
    }
    
    .line-reveal {
        animation: lineReveal 1.2s ease-out forwards;
    }
    
    /* Delays */
    .delay-1 { animation-delay: 0.1s !important; }
    .delay-2 { animation-delay: 0.2s !important; }
    .delay-3 { animation-delay: 0.3s !important; }
    
    /* Element Styles */
    .line-mask {
        overflow: hidden;
        margin-bottom: 0.5rem;
    }
    
    .luxury-btn {
        padding: 1.25rem 2.5rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.75rem;
        border: 1px solid;
        background: transparent;
        color: white;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .luxury-btn:hover {
        transform: translateY(-2px);
    }
    
    .btn-sparkle {
        background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
        background-size: 200% 100%;
        animation: shimmer 3s infinite linear;
    }
    
    .btn-glow-border:hover {
        animation: pulseGlow 1.5s infinite;
    }
    
    .sparkle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: gold;
        border-radius: 50%;
        animation: sparkle 1s infinite;
    }
    
    .floating-element {
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        opacity: 0.3;
        animation: floatElement 8s ease-in-out infinite;
    }
    
    .element-1 { top: 20%; left: 10%; animation-delay: 0s; }
    .element-2 { top: 40%; right: 15%; animation-delay: 2s; }
    .element-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
    
    .count-up {
        --num: 0;
        counter-reset: num var(--num);
        animation: countUp 2s ease-out forwards;
    }
    
    .count-up::after {
        content: counter(num);
    }
    
    .process-step {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .process-step.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .step-glow {
        position: absolute;
        inset: -10px;
        border: 2px solid gold;
        border-radius: 50%;
        animation: pulseGlow 2s infinite;
    }
    
    .quote-card {
        animation: slideUp 1s ease-out 1s forwards;
    }
    
    .cta-pulse {
        animation: pulseGlow 2s ease-in-out infinite;
    }
    
    .highlight-text {
        position: relative;
        display: inline-block;
    }
    
    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: gold;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }
    
    .highlight-text:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }