    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(184, 92, 60, 0.3);
        color: #f5efe6;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background: #1a1410;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(201, 168, 76, 0.3);
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(201, 168, 76, 0.5);
    }

    /* ===== NAVBAR ===== */
    #navbar {
        background: transparent;
        transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
    }

    #navbar.scrolled {
        background: rgba(26, 20, 16, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(212, 184, 150, 0.08);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #c9a84c, #d4795a);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #c9a84c !important;
    }

    /* ===== MOBILE MENU ===== */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        position: relative;
    }

    .mobile-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background: #c9a84c;
        transition: width 0.3s ease;
    }

    .mobile-link:hover::after {
        width: 60%;
    }

    /* Menu animation */
    #menu-btn.active .menu-line:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    #menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    #menu-btn.active .menu-line:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
        width: 24px !important;
        margin-left: 0 !important;
    }

    /* ===== HERO ===== */
    .scroll-indicator {
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { opacity: 0.4; transform: scaleY(1); }
        50% { opacity: 1; transform: scaleY(1.2); }
    }

    /* ===== SECTION REVEAL ANIMATIONS ===== */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== PRODUCT CARDS ===== */
    .group:hover img {
        filter: brightness(1.05);
    }

    /* ===== CRAFT SECTION STEPS ===== */
    .group:hover > div:first-child {
        border-color: rgba(201, 168, 76, 0.8) !important;
        background: rgba(201, 168, 76, 0.08) !important;
    }

    /* ===== FORM ===== */
    input:focus, textarea:focus {
        box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
    }

    /* ===== GOLD SHIMMER ACCENT ===== */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    .gold-shimmer {
        background: linear-gradient(90deg, #c9a84c, #dfc06e, #c9a84c);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 4s linear infinite;
    }

    /* ===== FLOATING ANIMATION ===== */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }

    .floating {
        animation: float 6s ease-in-out infinite;
    }

    /* ===== IMAGE PARALLAX CONTAINER ===== */
    .parallax-img {
        will-change: transform;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        html {
            scroll-padding-top: 70px;
        }

        #hero h1 {
            font-size: 2.75rem;
        }

        #hero h1 br {
            display: none;
        }

        .floating {
            display: none;
        }

        .absolute.bottom-8.left-8.right-8 {
            padding: 1rem;
        }

        .absolute.-bottom-6.-left-6 {
            position: relative;
            bottom: auto;
            left: auto;
            margin-top: 1rem;
            max-width: 100%;
        }
    }

    @media (max-width: 640px) {
        #hero h1 {
            font-size: 2.25rem;
        }
    }

    /* ===== 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;
        }
    }
