    /* Base & Typography */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Scroll Reveal Animations */
    .scroll-reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
    .scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
    .scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
    .scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
    .scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }
    .scroll-reveal[data-delay="6"] { transition-delay: 0.6s; }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        .scroll-reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .group:hover img, .rounded-3xl.overflow-hidden img {
            transform: none;
        }
    }

    /* Navbar Styles */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    }

    #navbar.scrolled .nav-link {
        color: #363a46;
    }

    #navbar.scrolled .nav-link:hover {
        color: #C85A3C;
        background: #fdf3ef;
    }

    #navbar.scrolled .font-serif {
        color: #1e2129;
    }

    #navbar.scrolled .text-charcoal-500 {
        color: #5c6170;
    }

    /* Mobile Menu */
    #mobileMenu {
        animation: slideDown 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Custom Select Arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6170' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    /* Selection Color */
    ::selection {
        background: #fbc9b3;
        color: #3a140c;
    }

    /* Focus visible styles */
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
        outline: 2px solid #C85A3C;
        outline-offset: 2px;
        border-radius: 0.5rem;
    }

    /* Smooth image loading */
    img {
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    /* Subtle gradient on hero text */
    .font-serif {
        text-rendering: optimizeLegibility;
    }

    /* Button active state */
    button:active, a:active {
        transform: scale(0.98);
    }

    /* Loading skeleton for images */
    img {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
    }

    /* Form focus transitions */
    input:focus, select:focus, textarea:focus {
        box-shadow: 0 0 0 3px rgba(200, 90, 60, 0.1);
    }

    /* Card hover lift */
    .group:hover {
        transform: translateY(-2px);
    }

    .group {
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
