    /* ========================================
       Build Wildcat Stadium — Custom Styles
       ======================================== */

    /* Base reset & smooth scrolling */
    *, *::before, *::after {
        box-sizing: border-box;
    }

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

    body {
        overflow-x: hidden;
    }

    /* Selection color */
    ::selection {
        background-color: #B85D3E;
        color: #fefcf8;
    }

    /* ========================================
       Navigation
    ======================================== */
    #navbar {
        background: transparent;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(250, 250, 248, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    #navbar.scrolled .nav-logo-text {
        color: #1c1914;
    }

    /* Mobile menu animations */
    #menu-btn.open #line1 {
        transform: translateY(4px) rotate(45deg);
    }

    #menu-btn.open #line2 {
        opacity: 0;
        transform: scaleX(0);
    }

    #menu-btn.open #line3 {
        transform: translateY(-4px) rotate(-45deg);
        width: 1.5rem;
    }

    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    /* ========================================
       Scroll Reveal Animations
    ======================================== */
    .reveal {
        opacity: 1;
        transform: none;
        transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), 
                    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .reveal.fade-up {
        transform: translateY(30px);
    }

    .reveal.fade-down {
        transform: translateY(-30px);
    }

    .reveal.fade-left {
        transform: translateX(-30px);
    }

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

    .reveal.revealed {
        opacity: 1;
        transform: none;
    }

    /* Staggered delays */
    .reveal:nth-child(1) { transition-delay: 0.05s; }
    .reveal:nth-child(2) { transition-delay: 0.15s; }
    .reveal:nth-child(3) { transition-delay: 0.25s; }
    .reveal:nth-child(4) { transition-delay: 0.35s; }

    /* ========================================
       Scroll Indicator Animation
    ======================================== */
    @keyframes scrollDown {
        0% { transform: translateY(-100%); }
        100% { transform: translateY(400%); }
    }

    .animate-scroll-down {
        animation: scrollDown 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    }

    /* ========================================
       Hover line animation for nav links
    ======================================== */
    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #B85D3E;
        transition: width 0.3s ease;
    }

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

    /* ========================================
       Reduced motion preference
    ======================================== */
    @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;
        }
    }

    /* ========================================
       Mobile responsiveness
    ======================================== */
    @media (max-width: 767px) {
        .font-serif {
            font-size: clamp(2rem, 8vw, 3.5rem);
        }

        section {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
    }

    /* ========================================
       Subtle image hover zoom
    ======================================== */
    img {
        transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    /* ========================================
       Form focus styles
    ======================================== */
    input:focus, textarea:focus {
        outline: none;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    /* ========================================
       Counter animation
    ======================================== */
    @keyframes countUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .counting {
        animation: countUp 0.4s ease forwards;
    }
