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

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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(212, 168, 67, 0.3);
        color: #FDF8F0;
    }

    /* Scroll 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:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }

    /* Navbar scroll state */
    nav.scrolled {
        background: rgba(4, 31, 22, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(212, 168, 67, 0.1);
    }

    nav.scrolled #navbar {
        background: rgba(4, 31, 22, 0.95);
    }

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

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

    /* Hamburger animation */
    #mobile-toggle.active #bar1 {
        transform: translateY(6px) rotate(45deg);
    }
    #mobile-toggle.active #bar2 {
        opacity: 0;
    }
    #mobile-toggle.active #bar3 {
        transform: translateY(-6px) rotate(-45deg);
        width: 1.5rem;
    }

    /* Gold shimmer effect on hover for cards */
    .group:hover .rounded-full {
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
    }

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #041F16;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(212, 168, 67, 0.3);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 168, 67, 0.5);
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .font-serif {
            line-height: 1.15;
        }
    }

    /* Focus visible styles */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid rgba(212, 168, 67, 0.6);
        outline-offset: 2px;
    }

    /* Image loading placeholder */
    img {
        background: linear-gradient(135deg, #0B3D2C 0%, #064E3B 100%);
    }
