    /* ─── 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(212, 160, 23, 0.3);
        color: #f5f0e8;
    }

    /* ─── Scrollbar ─── */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a0f0d;
    }
    ::-webkit-scrollbar-thumb {
        background: #064e3b;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #d4a017;
    }

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

    #navbar.scrolled {
        background: rgba(10, 15, 13, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(212, 160, 23, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        position: relative;
    }

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

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

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

    #mobile-menu.closed {
        opacity: 0;
        pointer-events: none;
    }

    .menu-line {
        transition: all 0.3s ease;
    }

    #menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.25rem;
    }

    /* ─── Hero Orbs ─── */
    .hero-orb {
        animation: float 8s ease-in-out infinite;
    }

    .orb-1 {
        animation-delay: 0s;
    }
    .orb-2 {
        animation-delay: -3s;
    }
    .orb-3 {
        animation-delay: -5s;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -20px) scale(1.05); }
        66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    /* ─── Scroll Dot ─── */
    @keyframes scroll-dot {
        0% { top: 0; opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

    .scroll-dot {
        animation: scroll-dot 2s ease-in-out infinite;
    }

    /* ─── Hero Animations ─── */
    .hero-label {
        animation: fadeUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.2s;
    }

    .hero-headline {
        animation: fadeUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.4s;
    }

    .hero-sub {
        animation: fadeUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.6s;
    }

    .hero-ctas {
        animation: fadeUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.8s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ─── Reveal Animations ─── */
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-up.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-up {
        transform: translateY(40px);
    }

    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }
    .reveal-left {
        transform: translateX(-40px);
    }

    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }
    .reveal-right {
        transform: translateX(40px);
    }

    /* ─── Product Cards ─── */
    .product-card {
        transform: translateY(0);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 23, 0.1);
    }

    /* ─── Gold shimmer on buttons ─── */
    .bg-brew-gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .bg-brew-gold:hover::before {
        left: 100%;
    }

    button, a {
        position: relative;
        overflow: hidden;
    }

    /* ─── Input autofill ─── */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #0a0f0d inset !important;
        -webkit-text-fill-color: #f5f0e8 !important;
    }
