    *, *::before, *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    /* Scroll Reveal Animations */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero Animations */
    .hero-eyebrow {
        opacity: 0;
        transform: translateY(20px);
        animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    }

    .hero-title {
        opacity: 0;
        transform: translateY(30px);
        animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    }

    .hero-subtitle {
        opacity: 0;
        transform: translateY(20px);
        animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
    }

    .hero-cta {
        opacity: 0;
        transform: translateY(20px);
        animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
    }

    @keyframes heroFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    #navbar.scrolled {
        background: rgba(61, 43, 31, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-link {
        color: rgba(253, 250, 247, 0.85);
    }

    #navbar.scrolled .nav-link {
        color: rgba(253, 250, 247, 0.85);
    }

    /* Mobile Menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        opacity: 1;
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
        .reveal {
            opacity: 1;
            transform: none;
        }
    }

    /* Selection */
    ::selection {
        background: rgba(229, 90, 52, 0.2);
        color: inherit;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #FDF8F0;
    }
    ::-webkit-scrollbar-thumb {
        background: #d4b362;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #c49a4a;
    }

    /* Focus visible */
    :focus-visible {
        outline: 2px solid #e55a34;
        outline-offset: 2px;
    }

    /* Image aspect ratio utilities */
    .aspect-\[4\/5\] {
        aspect-ratio: 4 / 5;
    }
