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

    html {
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
    }

    html::-webkit-scrollbar {
        width: 6px;
    }

    html::-webkit-scrollbar-track {
        background: transparent;
    }

    html::-webkit-scrollbar-thumb {
        background: rgba(201, 168, 76, 0.3);
        border-radius: 3px;
    }

    body {
        background-color: #030810;
        overflow-x: hidden;
    }

    /* Hero Animations */
    .hero-anim {
        animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-anim:nth-child(1) { animation-delay: 0.1s; }
    .hero-anim:nth-child(2) { animation-delay: 0.3s; }
    .hero-anim:nth-child(3) { animation-delay: 0.5s; }
    .hero-anim:nth-child(4) { animation-delay: 0.7s; }

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

    /* Scroll Line Animation */
    @keyframes scrollLine {
        0% { top: -16px; opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

    .animate-scrollLine {
        animation: scrollLine 2s ease-in-out infinite;
    }

    /* Reveal Animations */
    .reveal-up, .reveal-left, .reveal-right {
        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-left {
        transform: translateX(-40px);
    }

    .reveal-right {
        transform: translateX(40px);
    }

    .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Navbar */
    #navbar {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }

    #navbar.scrolled {
        background: rgba(3, 8, 16, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }

    #navbar.scrolled .nav-link {
        color: rgba(212, 207, 196, 0.8);
    }

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

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

    .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(6) { transition-delay: 0.3s; }

    /* Hamburger Animation */
    #bar1.open {
        transform: rotate(45deg) translate(3px, 3px);
    }

    #bar2.open {
        opacity: 0;
    }

    #bar3.open {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 1.5rem;
    }

    /* Gold shimmer on buttons */
    .bg-gold-500 {
        position: relative;
        overflow: hidden;
    }

    .bg-gold-500::after {
        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.6s ease;
    }

    .bg-gold-500:hover::after {
        left: 100%;
    }

    /* Selection */
    ::selection {
        background: rgba(201, 168, 76, 0.25);
        color: #f5f0e8;
    }

    /* Date input fix */
    input[type="date"]::-webkit-calendar-picker-indicator {
        filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
        cursor: pointer;
    }

    /* Parallax hero image */
    #heroImg {
        will-change: transform;
    }

    /* Subtle grain overlay */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.025;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 256px 256px;
    }
