    /* ── Base & Utilities ── */
    *, *::before, *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        margin: 0;
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(192, 96, 58, 0.2);
        color: #3A2218;
    }

    /* ── Hero Animations ── */
    .hero-anim {
        opacity: 0;
        transform: translateY(30px);
        animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-anim:nth-child(1) { animation-delay: 0.1s; }
    .hero-anim:nth-child(2) { animation-delay: 0.25s; }
    .hero-anim:nth-child(3) { animation-delay: 0.4s; }
    .hero-anim:nth-child(4) { animation-delay: 0.55s; }

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

    /* ── Scroll Indicator ── */
    .scroll-dot {
        animation: scrollBounce 2s ease-in-out infinite;
    }

    @keyframes scrollBounce {
        0%, 100% { transform: translateY(0); opacity: 0.6; }
        50% { transform: translateY(8px); opacity: 0.2; }
    }

    /* ── Scroll Reveal ── */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }

    /* ── Navbar Scroll State ── */
    #navbar.scrolled {
        background: rgba(58, 34, 24, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    #navbar.scrolled .nav-link-text {
        color: white;
    }
    #navbar.scrolled .nav-link-sub {
        color: rgba(245, 237, 218, 0.7);
    }

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

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }
    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }
    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* ── Image Loading ── */
    img {
        background-color: rgba(245, 237, 218, 0.3);
    }

    /* ── Focus Styles ── */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
        outline: 2px solid #C0603A;
        outline-offset: 2px;
    }

    /* ── Custom Scrollbar ── */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #FAF8F4;
    }
    ::-webkit-scrollbar-thumb {
        background: #D4B06A;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #C0603A;
    }

    /* ── Responsive Adjustments ── */
    @media (max-width: 640px) {
        .reveal {
            transform: translateY(25px);
        }
    }
