@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@500;600&display=swap');
        
        :root {
            --accent: #c2410f;
        }
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        
        .heading-font {
            font-family: 'Space Grotesk', 'Inter', system_ui, sans-serif;
            font-weight: 600;
            letter-spacing: -0.025em;
        }

        .section-header {
            font-size: 2.25rem;
            line-height: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.04em;
        }

        .nav-active {
            color: #c2410f;
            position: relative;
        }
        
        .nav-active:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #c2410f;
        }

        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('../assets/logo.JPG');
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed;
        }

        .canyon-gradient {
            background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
        }

        .trail-card {
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                       box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
        }
        
        .trail-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        .product-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }

        .sb-logo {
            font-weight: 900;
            letter-spacing: -0.05em;
        }

        .accent {
            color: #c2410f;
        }

        .btn-primary {
            background-color: #c2410f;
            transition: all 0.2s ease;
        }
        
        .btn-primary:hover {
            background-color: #9f3410;
            transform: translateY(-1px);
        }

        .modal {
            animation: modalPop 0.2s ease forwards;
        }

        @keyframes modalPop {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .member-dashboard {
            background: linear-gradient(145deg, #1f2937, #111827);
        }

        .nav-scrolled {
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(12px);
        }

        .stat-number {
            font-variant-numeric: tabular-nums;
        }

        .fake-link {
            cursor: pointer;
        }

        .soggy-bg {
            background-image: 
                linear-gradient(rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.92)),
                url('../assets/logo.JPG');
            background-size: cover;
            background-position: center;
        }