    /* Base & Reset */
    *, *::before, *::after {
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #fefdfb;
    }
    ::-webkit-scrollbar-thumb {
        background: #a81a36;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #c92648;
    }
    
    /* Selection */
    ::selection {
        background: #f9d0d9;
        color: #420716;
    }
    
    /* Hero Animations */
    .hero-anim {
        opacity: 0;
        transform: translateY(30px);
        animation: heroFadeUp 0.8s ease forwards;
    }
    .hero-anim:nth-child(1) { animation-delay: 0.2s; }
    .hero-anim:nth-child(2) { animation-delay: 0.5s; }
    .hero-anim:nth-child(3) { animation-delay: 0.8s; }
    .hero-anim:nth-child(4) { animation-delay: 1.1s; }
    
    @keyframes heroFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Scroll Reveal - Progressive Enhancement */
    @media (prefers-reduced-motion: no-preference) {
        .scroll-reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
    }
    
    .scroll-reveal {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile Menu Transitions */
    .menu-line {
        display: block;
    }
    
    /* Navbar active state */
    .navbar-scrolled {
        background: rgba(254, 253, 251, 0.95) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(168, 26, 54, 0.08);
    }
    
    .navbar-scrolled .font-serif,
    .navbar-scrolled span {
        color: #420716 !important;
    }
    
    /* Image hover */
    .group img {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Form focus styles */
    input:focus, select:focus, textarea:focus {
        border-color: #a81a36 !important;
        box-shadow: 0 0 0 3px rgba(168, 26, 54, 0.1) !important;
    }
    
    /* Smooth image loading */
    img {
        image-rendering: auto;
    }
    
    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
        .hero-anim {
            opacity: 1;
            transform: none;
        }
        .scroll-reveal {
            opacity: 1;
            transform: none;
        }
    }
