        :root {
            --bg: #FFFFFF;
            --fg: #1a1a1a;
            --accent: #1a1a1a;
            --accent-light: #333333;
            --warm: #f0f0f0;
            --warm-light: #e8e8e8;
            --success: #2d6a4f;
            --error: #c0392b;
            --orange: #FFC637;
            --serif: 'Oswald', sans-serif;
            --serif-alt: 'Oswald', sans-serif;
            --sans: 'Oswald', sans-serif;
            --side-padding: 52px;
            /* Spacing scale */
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 12px;
            --spacing-lg: 16px;
            --spacing-xl: 20px;
            --spacing-2xl: 24px;
            --spacing-3xl: 32px;
            --spacing-4xl: 40px;
            --spacing-5xl: 48px;
            --spacing-6xl: 60px;
            --spacing-7xl: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ========== ACCESSIBILITY =========== */
        .skip-link {
            position: absolute;
            top: -9999px;
            left: -9999px;
            z-index: 9999;
            padding: 0.5em 1em;
            background: var(--orange);
            color: var(--fg);
            text-decoration: none;
            border-radius: 0 0 4px 0;
            font-weight: 700;
        }

        .skip-link:focus {
            top: 0;
            left: 0;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ========== ENTRANCE ANIMATIONS =========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .reveal {
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .reveal-stagger > * {
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .reveal-stagger > :nth-child(1) { animation-delay: 0.1s; }
        .reveal-stagger > :nth-child(2) { animation-delay: 0.2s; }
        .reveal-stagger > :nth-child(3) { animation-delay: 0.3s; }
        .reveal-stagger > :nth-child(4) { animation-delay: 0.4s; }
        .reveal-stagger > :nth-child(5) { animation-delay: 0.5s; }
        .reveal-stagger > :nth-child(6) { animation-delay: 0.6s; }
        .reveal-stagger > :nth-child(7) { animation-delay: 0.7s; }
        .reveal-stagger > :nth-child(8) { animation-delay: 0.8s; }

        @keyframes headingIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Apply text glow to subtitle */
        .subtitle-word {
            font-weight: 700;
        }

        /* Link hover transitions */
        a {
            transition: color 0.3s ease, text-decoration-color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-cta:hover,
        .mobile-menu-cta:hover {
            color: var(--orange);
        }

        /* Skip to content link */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent);
            color: white;
            padding: var(--spacing-sm) var(--spacing-lg);
            text-decoration: none;
            z-index: 100;
            border-radius: 0 0 4px 0;
        }

        .skip-to-content:focus-visible {
            top: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--sans);
            line-height: 1.9;
            color: var(--fg);
            background: var(--bg);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--serif);
        }

        /* ============= NAVBAR ============= */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--spacing-lg) 0;
            transition: padding 0.4s ease, background 0.4s ease;
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
            will-change: background, padding;
        }

        nav.scrolled {
            background: rgba(250, 248, 245, 0.97);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: var(--spacing-md) 0;
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .nav-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--side-padding);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: var(--serif);
            font-weight: 700;
            font-size: 1.2em;
            color: white;
            text-decoration: none;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            gap: var(--spacing-4xl);
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.7em;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:focus-visible {
            outline: 2px solid white;
            outline-offset: 4px;
            border-radius: 2px;
        }

        nav.scrolled .nav-logo {
            color: var(--fg);
        }

        nav.scrolled .nav-links a {
            color: var(--fg);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: currentColor;
            transition: width 0.3s ease;
        }

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

        .nav-cta {
            background: transparent !important;
            color: white !important;
            padding: var(--spacing-sm) var(--spacing-lg) !important;
            border: 2px solid white !important;
            border-radius: 6px !important;
            font-weight: 600 !important;
            letter-spacing: 1px !important;
            font-size: 0.75em !important;
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
            cursor: pointer !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        nav.scrolled .nav-cta {
            background: transparent !important;
            color: #1a1a1a !important;
            border-color: #1a1a1a !important;
        }

        .nav-cta:hover {
            background: var(--orange) !important;
            color: #1a1a1a !important;
            border-color: var(--orange) !important;
        }

        nav.scrolled .nav-cta:hover {
            background: var(--orange) !important;
            color: #1a1a1a !important;
            border-color: var(--orange) !important;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            position: relative;
            background: transparent;
            border: 2px solid white;
            padding: 0;
            flex-shrink: 0;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: white;
            border-radius: 2px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: transform 0.35s ease-in, opacity 0.3s ease;
        }

        .hamburger span:nth-child(1) { top: 11px; }
        .hamburger span:nth-child(2) { top: 21px; }
        .hamburger span:nth-child(3) { top: 31px; }

        nav.scrolled .hamburger span {
            background: var(--fg);
        }

        nav.scrolled .hamburger {
            border-color: var(--fg);
        }

        .hamburger.active span {
            background: var(--fg) !important;
            transition: transform 1.2s ease-out, opacity 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile menu overlay (outside nav, no stacking context issues) */
        .mobile-menu {
            display: none;
        }

        /* ============= HERO ============= */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }

        .hero-gallery {
            position: absolute;
            inset: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            transform: scale(1.05);
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
            transition: opacity 1.5s ease-in-out, transform 8s ease-out;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.25) 0%,
                rgba(0,0,0,0.1) 40%,
                rgba(0,0,0,0.55) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            bottom: 40px;
            left: var(--side-padding);
            right: var(--side-padding);
            z-index: 10;
            color: white;
            animation: slideInLeft 0.8s ease-out 0.2s backwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-sm);
            padding: 10px var(--spacing-2xl);
            font-size: 0.85em;
            font-weight: 700;
            letter-spacing: 3px;
            color: white;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            background: rgba(255,255,255,0.12);
            border: 2px solid var(--orange);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 20px rgba(224, 125, 39, 0.3);
            border-radius: 50px;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: 28px;
    align-items: center;
}

.hero-badges .subtitle {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-sm);
            padding: 10px var(--spacing-xl);
            font-size: 0.95em;
            font-weight: 500;
            letter-spacing: 0.5px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            background: rgba(255,255,255,0.12);
            border: 1.5px solid rgba(255,255,255,0.25);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            border-radius: 50px;
        }

        .location-badge svg {
            opacity: 0.9;
        }

        .hero-content h1 {
            font-size: clamp(2.3em, 7.2vw, 5.5em);
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.1;
            filter: url(#grainFilter);
        }

        .hero-content h1 .subtitle-word {
            font-size: 0.65em;
            display: block;
            font-weight: 700;
            margin-top: 12px;
        }

        .hero-content .subtitle {
            font-size: clamp(1em, 2vw, 1.4em);
            font-weight: 300;
            font-style: italic;
            text-shadow: 1px 2px 10px rgba(0,0,0,0.5);
            font-family: var(--serif);
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: #1a1a1a !important;
            text-align: center;
            opacity: 0.8;
            animation: bounce 2s infinite;
        }

        .hero-scroll:hover {
            color: #1a1a1a !important;
        }

        .hero-scroll svg {
            color: #1a1a1a !important;
            stroke: #1a1a1a !important;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        .gallery-dots {
            position: absolute;
            bottom: 30px;
            right: var(--side-padding);
            z-index: 10;
            display: flex;
            gap: var(--spacing-md);
        }

        .gallery-dot {
            width: 40px;
            height: 3px;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            transition: background 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gallery-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: white;
            transition: none;
        }

        .gallery-dot.active::after {
            width: 100%;
            transition: width 5s linear;
        }

        /* ============= SECTIONS ============= */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--side-padding);
        }

        .section {
            padding: var(--spacing-7xl) 0;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .section-label {
            display: inline-block;
            font-size: 0.65em;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: var(--spacing-lg);
            font-family: var(--sans);
            padding: var(--spacing-md) var(--spacing-2xl);
            background: transparent;
            border: 2.5px solid var(--accent);
            border-radius: 10px;
            box-shadow: none;
        }

        .section h2 {
            font-size: clamp(2.5em, 5vw, 4.2em);
            margin-bottom: var(--spacing-2xl);
            margin-left: 0;
            margin-right: 0;
            color: var(--fg);
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 1.05;
            animation: headingIn 0.8s ease-out backwards;
        }

        .section-desc {
            font-size: 1.1em;
            color: #555;
            max-width: 800px;
            margin-bottom: var(--spacing-4xl);
            line-height: 1.9;
        }

        /* 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);
            contain: layout style;
            will-change: opacity, transform;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
            will-change: auto;
        }

        /* ============= COUNTDOWN ============= */
        .countdown-section {
            background: linear-gradient(135deg, var(--fg) 0%, #0d0d0d 100%);
            padding: var(--spacing-7xl) 0;
            color: var(--bg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--orange), transparent);
            opacity: 0.3;
        }

        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: var(--spacing-6xl);
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-family: var(--sans);
            font-size: 3.5em;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0px;
        }

        .countdown-label {
            font-size: 0.7em;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: var(--spacing-sm);
            opacity: 0.7;
            font-weight: 500;
        }

        /* ============= ABOUT ============= */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-7xl);
            align-items: center;
        }

        .about-text p {
            font-size: 1.05em;
            color: #444;
            margin-bottom: var(--spacing-lg);
            line-height: 1.9;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-2xl);
            margin-top: var(--spacing-4xl);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: var(--serif);
            font-size: 2.5em;
            font-weight: 900;
            color: #1a1a1a;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75em;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: var(--spacing-sm);
            color: #666;
            font-weight: 600;
        }

        .about-image {
            position: relative;
            width: 100%;
            height: 650px;
        }

        .about-slideshow {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0,0,0,0.15);
        }

        .about-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            transform: scale(1.02);
            z-index: 0;
        }

        .about-slide.active {
            opacity: 1;
            z-index: 1;
            animation: slidezoom 6s ease-out forwards;
        }

        @keyframes slidezoom {
            0% {
                transform: scale(1.08);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .about-slide-indicators {
            position: absolute;
            bottom: var(--spacing-xl);
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: var(--spacing-md);
        }

        .about-slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
            border: 2px solid transparent;
        }

        .about-slide-dot:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
            box-shadow: 0 0 8px rgba(255,255,255,0.8);
        }

        .about-slide-dot.active {
            background: var(--orange);
            transform: scale(1.3);
            box-shadow: 0 0 12px rgba(224, 125, 39, 0.8);
        }

        .about-image img {
            width: 100%;
            height: 650px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        /* ============= HIKE CARDS ============= */
        .hikes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-6xl);
        }

        .hike-card {
            background: rgba(255,255,255,1);
            border: 2px solid rgba(230, 230, 230, 0.8);
            padding: var(--spacing-2xl);
            cursor: default;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            will-change: transform, box-shadow;
        }

        .hike-card:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .hike-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--fg);
            transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 0;
        }

        .hike-card:hover::before,
        .hike-card.selected::before {
            height: 100%;
        }

        .hike-card > * {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .hike-card:hover > *,
        .hike-card.selected > * {
            color: var(--bg) !important;
        }

        .hike-card:hover .distance,
        .hike-card.selected .distance {
            color: var(--orange) !important;
        }

        .hike-card:hover,
        .hike-card.selected {
            border-color: var(--orange);
            transform: translateY(-4px);
            background: rgba(255,255,255,1);
            box-shadow: 0 16px 48px rgba(255, 198, 55, 0.15);
        }

        .hike-tag {
            display: inline-block;
            font-size: 0.6em;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: var(--spacing-xl);
            padding: var(--spacing-sm) var(--spacing-lg);
            border: 2.5px solid var(--orange);
            border-radius: 10px;
            font-family: var(--sans);
            background: transparent;
            box-shadow: none;
        }

        .hike-card:hover .hike-tag,
        .hike-card.selected .hike-tag {
            color: #1a1a1a !important;
            background: var(--orange);
            border-color: var(--orange);
        }

        .hike-card h3 {
            font-size: 1.5em;
            color: var(--fg);
            margin-bottom: var(--spacing-lg);
            font-weight: 700;
        }

        .hike-card .distance {
            font-size: 4.5em;
            font-weight: 900;
            color: var(--fg);
            margin: var(--spacing-2xl) 0;
            letter-spacing: -3px;
            line-height: 1;
            font-family: var(--serif);
        }

        .hike-card .price {
            font-size: 2em;
            color: var(--accent);
            margin-bottom: var(--spacing-lg);
            font-weight: 900;
        }

        .hike-card .features {
            list-style: none;
        }

        .hike-card .features li {
            padding: var(--spacing-lg) 0;
            border-bottom: 1px solid var(--warm-light);
            color: #555;
            font-size: 0.95em;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
        }

        .hike-card:hover .features li,
        .hike-card.selected .features li {
            border-bottom-color: rgba(250,248,245,0.15);
            color: rgba(250,248,245,0.85) !important;
        }

        .hike-card .features li svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            stroke: var(--accent);
        }

        .hike-card .features li .icon-svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .hike-card:hover .features li svg,
        .hike-card.selected .features li svg {
            stroke: rgba(250,248,245,0.6);
        }

        .hike-card:hover .features li .icon-svg,
        .hike-card.selected .features li .icon-svg {
            filter: brightness(0) invert(1) opacity(0.6);
        }

        .hike-card .select-label {
            display: block;
            text-align: center;
            margin-top: var(--spacing-2xl);
            font-size: 0.7em;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            font-family: var(--sans);
        }

        .hike-card:hover .select-label,
        .hike-card.selected .select-label {
            color: var(--bg) !important;
        }

        /* ============= GPX DOWNLOADS ============= */
        .gpx-downloads-wrapper {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .gpx-downloads-label {
            font-size: 0.85em;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .gpx-downloads {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            align-items: center;
            grid-auto-rows: minmax(44px, auto);
        }

        .gpx-download-map {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-sm);
            padding: var(--spacing-md) var(--spacing-lg);
            background: rgba(255,255,255,0.08);
            border: 1.5px solid rgba(255,255,255,0.25);
            color: white;
            border-radius: 6px;
            font-size: 0.8em;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            font-family: var(--sans);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            line-height: 1;
            margin: 0;
            min-height: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .gpx-download-map svg {
            width: 16px;
            height: 16px;
            min-width: 16px;
            min-height: 16px;
            max-width: 16px;
            max-height: 16px;
            stroke-width: 2;
            position: relative;
            z-index: 1;
            display: block;
            flex-shrink: 0;
            flex-grow: 0;
            align-self: center;
        }

        .gpx-download-map:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.35);
        }

        .gpx-download-map.active {
            background: var(--orange);
            color: #1a1a1a;
            border-color: var(--orange);
            font-weight: 700;
        }

        .gpx-download-map.active:hover {
            background: #FFD563;
            border-color: #FFD563;
        }

        /* ============= SCHEDULE ============= */
        .schedule-section {
            background: white;
        }

        #registration {
        }

        #included {
        }

        .timeline {
            position: relative;
            padding-left: 0;
        }

        .timeline::before {
            display: none;
        }

        .timeline-item {
            position: relative;
            padding: var(--spacing-2xl);
            margin-bottom: var(--spacing-md);
            background: #ffffff;
            border-left: 5px solid var(--accent);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: background 0.3s ease, box-shadow 0.3s ease;
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 0 var(--spacing-2xl);
            align-items: flex-start;
            focus-within: outline 2px solid var(--accent);
        }

        .timeline-item:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        .timeline-item:focus-within {
            outline: 2px solid var(--orange);
            outline-offset: 2px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item:nth-child(1),
        .timeline-item:nth-child(2),
        .timeline-item:nth-child(3),
        .timeline-item:nth-child(4) {
            border-left-color: var(--orange);
        }

        .timeline-dot {
            display: none;
        }

        .timeline-time {
            font-size: 0.85em;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1a1a1a;
            font-family: var(--sans);
            padding-top: 2px;
            grid-column: 1;
            grid-row: 1 / span 2;
        }

        .timeline-title {
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 0;
            color: #1a1a1a;
            grid-column: 2;
        }

        .timeline-desc {
            color: #222;
            font-size: 0.98em;
            line-height: 1.9;
            margin: 0;
            grid-column: 2;
        }

        /* ============= MAP ============= */
        .map-section {
            background: #1a1a1a;
            padding: var(--spacing-7xl) 0;
            color: white;
            max-width: none;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        
        .map-section .map-section-title {
            font-size: clamp(2em, 5vw, 3.5em);
            font-family: var(--sans);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 16px;
            color: white !important;
        }
        
        .map-section .map-selector-label {
            color: var(--orange);
        }
        
        .map-section .gpx-downloads-label {
            color: var(--orange);
        }

        .map-controls {
            display: flex;
            gap: var(--spacing-4xl);
            margin-bottom: 10px;
            align-items: flex-start;
            flex-wrap: wrap;
            justify-content: center;
        }

        .map-controls-left,
        .map-controls-right {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
            flex: 1;
            min-width: 280px;
        }

        .map-selector-wrapper {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .map-selector-label {
            font-size: 0.85em;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .map-selector {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            align-items: center;
            grid-auto-rows: minmax(44px, auto);
        }

        .map-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.08);
            border: 1.5px solid rgba(255,255,255,0.25);
            padding: var(--spacing-md) var(--spacing-lg);
            cursor: pointer;
            font-size: 0.8em;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: var(--sans);
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            box-shadow: none;
            border-radius: 6px;
            line-height: 1;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            min-height: 44px;
            height: 44px;
            margin: 0;
            flex-shrink: 0;
        }

        .map-btn:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .map-btn:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.35);
        }

        .map-btn.active {
            background: var(--orange);
            color: #1a1a1a;
            border-color: var(--orange);
            font-weight: 700;
        }

        .map-btn.active:hover {
            background: #FFD563;
            border-color: #FFD563;
        }

        .map-container {
            margin: var(--spacing-xl) 0 0;
            border: 1.5px solid rgba(255,255,255,0.1);
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .map-container #mapFrame {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }

        /* ============= WHAT'S INCLUDED ============= */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-2xl);
            margin-top: var(--spacing-3xl);
        }

        .included-card {
            text-align: center;
            padding: var(--spacing-4xl) var(--spacing-2xl);
            border: 2px solid rgba(230, 230, 230, 0.5);
            background: rgba(255,255,255,1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .included-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            background: rgba(255,255,255,1);
            box-shadow: 0 16px 48px rgba(0,0,0,0.15);
        }

        .included-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto var(--spacing-xl);
            stroke: var(--accent);
        }

        .included-card h4 {
            font-size: 1em;
            margin-bottom: var(--spacing-sm);
            font-family: var(--sans);
            font-weight: 700;
        }

        .included-card p {
            font-size: 0.85em;
            color: #777;
            line-height: 1.9;
        }

        /* ============= FAQ ============= */
        .faq-section {
        }

        .faq-list {
        }

        .faq-item {
            border-bottom: 1px solid var(--warm-light);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-2xl) 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05em;
            transition: color 0.2s ease, transform 0.2s ease;
            gap: var(--spacing-xl);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-toggle {
            font-size: 1.7em;
            font-weight: 300;
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
            width: 30px;
            text-align: center;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-bottom: 24px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.9;
            font-size: 0.95em;
        }

        /* ============= REGISTRATION ============= */
        .reg-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: var(--spacing-6xl);
            align-items: start;
        }

        .registration-form {
            background: rgba(255,255,255,1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: var(--spacing-6xl);
            border: 2px solid rgba(230, 230, 230, 0.5);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .form-group {
            margin-bottom: var(--spacing-xl);
        }

        .form-group label {
            display: block;
            margin-bottom: var(--spacing-sm);
            font-weight: 600;
            color: var(--fg);
            font-size: 0.72em;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: var(--spacing-lg) var(--spacing-lg);
            border: 1.5px solid var(--warm);
            font-size: 1em;
            background: white;
            font-family: var(--sans);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            border-radius: 0;
            -webkit-appearance: none;
            color: var(--fg);
        }

        .form-group select option {
            color: var(--fg);
            background: white;
        }

        .form-group select option:default {
            color: var(--fg);
        }

        .form-group input:focus-visible,
        .form-group select:focus-visible {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.08);
        }

        .form-group.error input,
        .form-group.error select {
            border-color: var(--error);
        }

        .error-message {
            color: var(--error);
            font-size: 0.85em;
            margin-top: var(--spacing-xs);
            display: none;
            font-weight: 500;
        }

        .form-group.error .error-message {
            display: block;
        }

        .btn {
            background: var(--fg);
            color: white;
            padding: var(--spacing-lg) var(--spacing-4xl);
            border: none;
            font-size: 0.75em;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
            width: 100%;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-family: var(--sans);
            border-radius: 6px;
        }

        .btn:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .btn:hover {
            background: #2a2a2a;
            color: white;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            will-change: auto;
        }

        .btn-secondary {
            background: transparent;
            color: var(--fg);
            border: 2px solid var(--orange);
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            border-radius: 6px;
            font-size: 0.75em;
            letter-spacing: 1.5px;
        }

        .btn-secondary:hover {
            background: var(--orange);
            color: var(--fg);
            border-color: var(--orange);
        }

        .btn-secondary:disabled {
            opacity: 0.4;
            background: var(--warm);
            color: var(--fg);
        }

        .btn-remove {
            background: transparent;
            color: var(--accent);
            padding: 6px 12px;
            border: 1px solid var(--accent);
            font-size: 0.65em;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: var(--sans);
            border-radius: 4px;
        }

        .btn-remove:hover {
            background: var(--accent);
            color: var(--bg);
        }

        .btn-remove:active {
            background: var(--accent);
            color: var(--bg);
        }

        .participant-form {
            background: transparent;
            padding: var(--spacing-lg) 0;
            border-bottom: 1px solid var(--accent);
            margin-bottom: var(--spacing-lg);
            border-radius: 0;
        }
        
        .participant-form:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }

        .participant-form h4 {
            font-size: 0.98em;
            text-transform: uppercase;
            letter-spacing: 1.6px;
            color: var(--accent);
            margin-bottom: var(--spacing-lg);
        }
        }

        /* Sidebar */
        .reg-sidebar {
        }

        .summary {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--bg);
            padding: var(--spacing-4xl);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .summary h3 {
            color: var(--bg);
            margin-bottom: var(--spacing-xl);
            font-size: 1em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: var(--sans);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid rgba(250,248,245,0.15);
            font-weight: 500;
            font-size: 0.95em;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            font-size: 1.5em;
            margin-top: var(--spacing-xl);
            padding-top: var(--spacing-xl);
            border-top: 2px solid rgba(250,248,245,0.3);
        }

        .reg-info {
            margin-top: var(--spacing-xl);
            padding: var(--spacing-xl);
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1.5px solid rgba(230, 230, 230, 0.5);
            box-shadow: 0 8px 32px rgba(0,0,0,0.05);
        }

        .reg-info p {
            font-size: 0.85em;
            color: #777;
            line-height: 1.9;
            margin-bottom: 8px;
        }

        .reg-info p:last-child {
            margin-bottom: 0;
        }

        /* Payment loading overlay */
        .payment-loading {
            display: none;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-6xl);
            text-align: center;
        }

        .payment-loading-content p {
            margin-top: var(--spacing-xl);
            font-size: 1.1em;
            color: var(--fg);
        }

        .spinner {
            width: 48px;
            height: 48px;
            border: 4px solid var(--warm);
            border-top: 4px solid var(--accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Payment result messages */
        .payment-result {
            margin-top: 30px;
        }

        .success-message {
            background: #d4edda;
            color: var(--success);
            padding: var(--spacing-4xl);
            text-align: center;
            margin-top: var(--spacing-4xl);
        }

        .success-message h3 {
            margin-bottom: var(--spacing-md);
            font-weight: 700;
            font-size: 1.3em;
        }

        .failure-message {
            background: #f8d7da;
            color: #721c24;
            padding: var(--spacing-4xl);
            text-align: center;
            margin-top: var(--spacing-4xl);
        }

        .failure-message h3 {
            margin-bottom: var(--spacing-md);
            font-weight: 700;
            font-size: 1.3em;
        }

        .failure-message .btn {
            display: inline-block;
            margin-top: var(--spacing-xl);
            width: auto;
            text-decoration: none;
        }

        .success-message p {
            font-size: 1em;
        }

        /* ============= SUPPORTERS MARQUEE ============= */
        .sponsors-marquee-section {
            background: #faf8f5;
            border-top: 1px solid rgba(26,26,26,0.08);
            border-bottom: 1px solid rgba(26,26,26,0.08);
            padding: var(--spacing-lg) 0;
            overflow: hidden;
        }

        .sponsors-marquee {
            width: 100%;
            overflow: hidden;
        }

        .sponsors-track {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-2xl);
            width: 100%;
            animation: none;
            will-change: transform;
            backface-visibility: hidden;
            transform: translate3d(0, 0, 0);
        }

        .sponsors-track .sponsor-logo[aria-hidden="true"] {
            display: none;
        }

        .sponsor-logo {
            height: 58px;
            margin-right: 0;
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sponsor-logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            display: block;
            opacity: 0.92;
        }

        @keyframes sponsorsMarquee {
            from {
                transform: translate3d(0, 0, 0);
            }
            to {
                transform: translate3d(-50%, 0, 0);
            }
        }

        /* ============= FOOTER ============= */
        footer {
            background: var(--fg);
            color: var(--warm);
            padding: var(--spacing-5xl) 0 var(--spacing-xl);
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--spacing-5xl);
            margin-bottom: var(--spacing-5xl);
        }

        .footer-brand p {
            font-size: 0.9em;
            line-height: 1.9;
            opacity: 0.7;
            margin-top: var(--spacing-lg);
        }

        .footer-logo {
            font-family: var(--serif);
            font-weight: 700;
            font-size: 1.3em;
            color: white;
            text-decoration: none;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-social {
            display: flex;
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: var(--warm);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }

        .footer-social a:focus-visible,
        .footer-social a:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        footer h4 {
            font-size: 0.7em;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: var(--spacing-lg);
            color: rgba(250,248,245,0.5);
            font-family: var(--sans);
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: var(--spacing-sm);
        }

        footer ul li:last-child {
            margin-bottom: 0;
        }

        footer ul li a {
            color: var(--warm);
            text-decoration: none;
            font-size: 0.9em;
            line-height: 1.35;
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }

        footer ul li a:focus-visible {
            outline: 1px dotted rgba(255, 255, 255, 0.6);
            outline-offset: 2px;
        }

        footer ul li a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(250,248,245,0.1);
            padding-top: var(--spacing-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8em;
            opacity: 0.5;
            gap: var(--spacing-xl);
        }

        .footer-bottom-left,
        .footer-bottom-right {
            flex: 1;
        }

        .footer-bottom-right {
            text-align: right;
        }

        .back-to-top {
            background: rgba(255, 255, 255, 0.1);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: var(--warm);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .back-to-top:hover,
        .back-to-top:focus-visible {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.35);
            color: var(--warm);
        }

        .back-to-top:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }

        .back-to-top.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* ============= DESKTOP 1536px+ (1536x864+) ============= */
        @media (max-width: 1920px) {
            :root {
                --side-padding: 52px;
            }
        }

        /* ============= LARGE DESKTOP 1366px-1919px (1366x768) ============= */
        @media (max-width: 1536px) {
            :root {
                --side-padding: 48px;
            }
        }

        /* ============= DESKTOP 1280px-1365px (1280x720) ============= */
        @media (max-width: 1366px) {
            :root {
                --side-padding: 44px;
            }
        }

        /* ============= TABLET LANDSCAPE + SMALL DESKTOP 1024px-1279px ============= */
        @media (max-width: 1280px) {
            :root {
                --side-padding: 40px;
            }
            .hikes-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .included-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-bottom: 0;
            }
            .reg-grid {
                grid-template-columns: 1fr;
                padding: 30px 0 10px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            footer ul li {
                margin-bottom: 6px;
            }
            .map-selector {
                gap: 4px;
            }
        }

        /* ============= TABLET PORTRAIT + MOBILE LANDSCAPE (768px-1099px) ============= */
        @media (max-width: 1100px) {
            :root {
                --side-padding: 32px;
            }

            .nav-links-desktop {
                display: none !important;
            }

            .hamburger {
                display: block;
            }

            .mobile-menu {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(250,248,245,0.98);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .mobile-menu.open {
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu-links {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 100%;
                gap: 35px;
            }

            .mobile-menu-links a {
                color: var(--fg);
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1em;
                letter-spacing: 3px;
                text-transform: uppercase;
                transition: opacity 0.2s ease;
            }

            .mobile-menu-links a:hover {
                opacity: 0.6;
            }

            .mobile-menu-cta {
                background: var(--fg) !important;
                color: var(--bg) !important;
                padding: 14px 35px !important;
                border-radius: 8px !important;
                border: none !important;
            }

            .mobile-menu-close {
                position: fixed;
                top: 18px;
                right: 32px;
                background: transparent;
                border: 2px solid var(--fg);
                cursor: pointer;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 44px;
                height: 44px;
                z-index: 1001;
                padding: 0;
                border-radius: 8px;
            }

            .mobile-menu-close span {
                display: block;
                width: 20px;
                height: 2px;
                background: var(--fg);
                border-radius: 2px;
                position: absolute;
                transition: transform 0.3s ease;
            }

            .mobile-menu-close span:first-child {
                transform: rotate(45deg);
            }

            .mobile-menu-close span:last-child {
                transform: rotate(-45deg);
            }

            nav.scrolled .mobile-menu-close {
                top: 12px;
            }

            .hero-content {
                bottom: 50px;
            }

            .section {
                padding: 68px 0;
            }

            .section h2 {
                margin-bottom: 18px;
            }

            .section-desc {
                margin-bottom: 28px;
            }

            #registration .section-desc {
                margin-bottom: 12px;
            }

            .countdown-section,
            #registration,
            .map-section {
                padding: 68px 0;
            }

            .hikes-grid {
                grid-template-columns: 1fr;
            }

            .included-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
                margin-bottom: 10px;
            }

            .countdown-grid {
                gap: 25px;
            }

            .countdown-number {
                font-size: 2.2em;
            }

            .registration-form {
                padding: var(--spacing-4xl) var(--spacing-lg);
            }

            .map-controls {
                display: flex;
                flex-direction: column;
                gap: var(--spacing-2xl);
                margin-bottom: var(--spacing-sm);
                order: 2;
            }

            .map-controls-left {
                width: 100%;
            }

            .map-controls-right {
                width: 100%;
            }

            .map-selector {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .map-btn {
                padding: 12px 12px;
                font-size: 0.8em;
                line-height: 1.3;
            }

            .gpx-downloads {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .gpx-download-map {
                width: 100%;
                justify-content: center;
            }

            .map-container {
                order: 3;
                width: 100%;
            }

            .map-container #mapFrame {
                height: 350px;
            }

            .map-section .container {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 0 var(--side-padding);
            }

            .map-section-title {
                grid-row: auto;
            }

            .map-controls {
                display: flex;
            }

            .map-controls-left {
                width: 100%;
                grid-row: auto;
            }

            .map-controls-right {
                width: 100%;
                grid-row: auto;
            }

            .map-container {
                width: 100%;
                grid-row: auto;
                margin-top: 8px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 12px;
            }

            .sponsors-track {
                gap: var(--spacing-3xl);
                animation-duration: 28s;
            }

            .sponsor-logo {
                height: 50px;
            }

            footer {
                padding: 40px 0 16px;
            }

            footer h4 {
                margin-bottom: 10px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
        }

        /* ============= TABLET (768px-1100px) ============= */
        @media (max-width: 1100px) and (min-width: 769px) {
            .hikes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============= MOBILE LANDSCAPE (480px-767px) ============= */
        @media (max-width: 768px) {
            :root {
                --side-padding: 25px;
            }

            .nav-links-desktop {
                display: none !important;
            }

            .hamburger {
                display: block;
            }

            .mobile-menu {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(250,248,245,0.98);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .mobile-menu.open {
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu-links {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 100%;
                gap: 35px;
            }

            .mobile-menu-links a {
                color: var(--fg);
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1em;
                letter-spacing: 3px;
                text-transform: uppercase;
                transition: opacity 0.2s ease;
            }

            .mobile-menu-links a:hover {
                opacity: 0.6;
            }

            .mobile-menu-cta {
                background: var(--fg) !important;
                color: var(--bg) !important;
                padding: 14px 35px !important;
                border-radius: 8px !important;
                border: none !important;
            }

            .mobile-menu-close {
                position: fixed;
                top: 18px;
                right: 25px;
                background: transparent;
                border: 2px solid var(--fg);
                cursor: pointer;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 44px;
                height: 44px;
                z-index: 1001;
                padding: 0;
                border-radius: 8px;
            }

            .mobile-menu-close span {
                display: block;
                width: 20px;
                height: 2px;
                background: var(--fg);
                border-radius: 2px;
                position: absolute;
                transition: transform 0.3s ease;
            }

            .mobile-menu-close span:first-child {
                transform: rotate(45deg);
            }

            .mobile-menu-close span:last-child {
                transform: rotate(-45deg);
            }

            nav.scrolled .mobile-menu-close {
                top: 12px;
            }

            .hero-content {
                bottom: 50px;
            }

            .section {
                padding: 52px 0;
            }

            .section h2 {
                margin-bottom: 16px;
            }

            .countdown-section,
            #registration,
            .map-section {
                padding: 52px 0;
            }

            .section-desc {
                font-size: 1.05em;
                margin-bottom: 24px;
            }

            .hikes-grid {
                grid-template-columns: 1fr;
            }

            .included-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
                margin-bottom: 10px;
            }

            .countdown-grid {
                gap: 25px;
            }

            .countdown-number {
                font-size: 2.2em;
            }

            .registration-form {
                padding: 35px 25px;
            }

            .map-controls {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .map-selector {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .map-btn {
                padding: 12px 12px;
                font-size: 0.75em;
            }

            .gpx-downloads {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .gpx-download-map {
                width: 100%;
                justify-content: center;
            }

            .map-container #mapFrame {
                height: 350px;
            }

            .map-section .container {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 0 var(--side-padding);
            }

            .map-controls {
                display: contents;
            }

            .map-controls-left {
                width: 100%;
                grid-row: 2;
            }

            .map-container {
                width: 100%;
                grid-row: 3;
                margin-top: 8px;
            }

            .map-controls-right {
                width: 100%;
                grid-row: 4;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sponsors-track {
                justify-content: flex-start;
                width: max-content;
                gap: 0;
                animation: sponsorsMarquee 28s linear infinite;
            }

            .sponsors-track .sponsor-logo[aria-hidden="true"] {
                display: flex;
            }

            .sponsor-logo {
                height: 54px;
                margin-right: var(--spacing-4xl);
            }

            footer {
                padding: 32px 0 12px;
            }

            footer h4 {
                margin-bottom: 12px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                padding-top: 10px;
                text-align: center;
                align-items: center;
                opacity: 0.75;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-social {
                justify-content: center;
                margin-top: 10px;
            }

            .footer-brand p {
                margin-top: 10px;
                margin-bottom: 12px;
            }

            footer h4 {
                text-align: center;
            }

            footer ul {
                text-align: center;
            }

            .footer-bottom-left,
            .footer-bottom-right {
                width: 100%;
                flex: none;
                text-align: center;
            }

            .back-to-top {
                display: none;
            }
        }

        /* ============= MOBILE PORTRAIT (360px-479px) ============= */
        @media (max-width: 480px) {
            :root {
                --side-padding: 16px;
            }

            .section {
                padding: 46px 0;
            }

            .sponsors-marquee-section {
                padding: 12px 0;
            }

            .sponsors-track {
                justify-content: flex-start;
                width: max-content;
                gap: 0;
                animation: sponsorsMarquee 26s linear infinite;
            }

            .sponsors-track .sponsor-logo[aria-hidden="true"] {
                display: flex;
            }

            .sponsor-logo {
                height: 48px;
                margin-right: var(--spacing-3xl);
            }

            .countdown-section,
            #registration,
            .map-section {
                padding: 46px 0;
            }

            .nav-logo {
                font-size: 1.3em;
                letter-spacing: 0.01em;
            }

            .hero-badges {
                margin-top: var(--spacing-lg);
                flex-direction: column;
                align-items: flex-start;
                gap: var(--spacing-md);
            }

            .hero-badges .subtitle {
                order: -1;
                margin-bottom: var(--spacing-sm);
                white-space: normal;
            }

            .hero-badge,
            .location-badge {
                display: flex;
                align-items: center;
                gap: var(--spacing-sm);
                padding: 10px var(--spacing-xl);
            }

            .hero-badge svg,
            .location-badge svg {
                flex-shrink: 0;
                width: 20px;
                height: 20px;
                display: block;
            }

            .mobile-menu-close {
                right: 16px;
                width: 40px;
                height: 40px;
            }

            .mobile-menu-close span {
                width: 18px;
            }

            .hero-title {
                font-size: 2.2em;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 0.85em;
            }

            .section h2 {
                font-size: 1.95em;
                margin-bottom: 14px;
            }

            .section-desc {
                font-size: 1.05em;
                margin-bottom: 22px;
            }

            #registration .section-desc {
                margin-bottom: 12px;
            }

            .hike-card h3 {
                font-size: 1.1em;
            }

            .distance {
                font-size: 1.4em;
            }

            .hike-card .distance {
                margin: var(--spacing-lg) 0;
            }

            .price {
                font-size: 1.1em;
            }

            .hike-card .features li {
                font-size: 0.85em;
            }

            .hike-tag {
                font-size: 0.7em;
                padding: 4px 10px;
            }

            .countdown-number {
                font-size: 1.8em;
            }

            .countdown-label {
                font-size: 0.75em;
            }

            .map-section-title {
                font-size: 1.6em;
            }

            .map-selector-label,
            .gpx-downloads-label {
                font-size: 0.95em;
            }

            .map-btn {
                padding: 10px 10px;
                font-size: 0.85em;
                line-height: 1.3;
            }

            .gpx-download-map {
                padding: 10px 12px;
                font-size: 0.85em;
            }

            .map-container #mapFrame {
                height: 300px;
            }

            .timeline-time {
                font-size: 0.95em;
            }

            .timeline-title {
                font-size: 1.05em;
            }

            .timeline-desc {
                font-size: 0.9em;
            }

            .included-card h4 {
                font-size: 1em;
            }

            .included-card p {
                font-size: 0.85em;
            }

            .faq-item {
                padding: 15px;
                border-radius: 6px;
            }

            .faq-question {
                font-size: 0.95em;
            }

            .faq-answer {
                font-size: 0.85em;
            }

            .form-group label {
                font-size: 0.9em;
            }

            .participant-form {
                padding: 14px 0;
                margin-bottom: 14px;
            }

            .participant-form h4 {
                font-size: 1em;
                margin-bottom: 12px;
            }

            .form-group input,
            .form-group select {
                font-size: 0.9em;
                padding: 10px 12px;
            }

            .btn {
                font-size: 0.9em;
                padding: 12px 20px;
            }

            .summary h3 {
                font-size: 1.1em;
            }

            .summary-item,
            .summary-total {
                font-size: 0.9em;
            }

            .reg-info p {
                font-size: 1.05em;
            }

            footer {
                padding: 24px 0 10px;
            }

            footer h4 {
                font-size: 1em;
            }

            footer p,
            footer a {
                font-size: 0.85em;
            }

            .footer-brand p {
                font-size: 0.85em;
            }
        }

        /* ============= SMALL MOBILE (320px-359px) ============= */
        @media (max-width: 360px) {
            :root {
                --side-padding: 12px;
            }

            .nav-logo {
                font-size: 1.1em;
            }

            nav {
                padding: 14px 0;
            }

            nav.scrolled {
                padding: 10px 0;
            }

            .mobile-menu-close {
                right: 12px;
                width: 36px;
                height: 36px;
            }

            .mobile-menu-close span {
                width: 16px;
            }

            .hero-content {
                bottom: 50px;
                padding: 0 12px;
            }

            .hero-title {
                font-size: 1.8em;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 0.75em;
            }

            .hero-buttons {
                gap: 10px;
                flex-wrap: wrap;
            }

            .hero-btn {
                padding: 10px 16px;
                font-size: 0.8em;
            }

            .section {
                padding: 42px 0;
            }

            .sponsors-marquee-section {
                padding: 10px 0;
            }

            .sponsors-track {
                gap: 0;
                animation-duration: 24s;
            }

            .sponsor-logo {
                height: 44px;
                margin-right: var(--spacing-2xl);
            }

            .countdown-section,
            #registration,
            .map-section {
                padding: 42px 0;
            }

            .reveal {
                padding: 0 12px;
            }

            .section h2 {
                font-size: 1.65em;
                margin-bottom: 12px;
            }

            .section-label {
                font-size: 0.75em;
            }

            .section-desc {
                font-size: 1.05em;
                margin-bottom: 20px;
            }

            #registration .section-desc {
                margin-bottom: 10px;
            }

            .hike-card {
                padding: 20px 12px;
            }

            .hike-card h3 {
                font-size: 1em;
            }

            .distance {
                font-size: 1.2em;
            }

            .hike-card .distance {
                margin: var(--spacing-md) 0;
            }

            .price {
                font-size: 0.95em;
            }

            .hike-card .features {
                gap: 5px;
            }

            .hike-card .features li {
                font-size: 0.75em;
            }

            .hike-card .features svg {
                width: 14px;
                height: 14px;
            }

            .hike-tag {
                font-size: 0.65em;
                padding: 3px 8px;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .stat-box {
                padding: 15px;
            }

            .stat-box h3 {
                font-size: 1.1em;
            }

            .stat-box p {
                font-size: 0.75em;
            }

            .countdown-grid {
                gap: 12px;
            }

            .countdown-item {
                padding: 12px;
            }

            .countdown-number {
                font-size: 1.6em;
            }

            .countdown-label {
                font-size: 0.7em;
            }

            .map-section-title {
                font-size: 1.5em;
                padding: 0 12px;
            }

            .map-controls {
                padding: 0 12px;
            }

            .map-selector-label,
            .gpx-downloads-label {
                font-size: 0.9em;
            }

            .map-btn {
                padding: 8px 8px;
                font-size: 0.8em;
                line-height: 1.3;
            }

            .gpx-download-map {
                padding: 8px 10px;
                font-size: 0.8em;
            }

            .map-container #mapFrame {
                height: 250px;
            }

            .timeline-item {
                padding-left: 25px;
            }

            .timeline-dot {
                width: 10px;
                height: 10px;
                left: -26px;
                top: 6px;
            }

            .timeline-time {
                font-size: 0.86em;
            }

            .timeline-title {
                font-size: 1em;
            }

            .timeline-desc {
                font-size: 0.86em;
            }

            .included-grid {
                grid-template-columns: 1fr;
            }

            .included-card {
                padding: 15px;
            }

            .included-icon {
                width: 32px;
                height: 32px;
            }

            .included-card h4 {
                font-size: 0.95em;
                margin: 8px 0 6px;
            }

            .included-card p {
                font-size: 0.8em;
            }

            .faq-item {
                padding: 12px;
                border-radius: 4px;
            }

            .faq-question {
                font-size: 0.9em;
            }

            .faq-answer p {
                font-size: 0.8em;
            }

            .faq-toggle {
                font-size: 1.45em;
                width: 26px;
            }

            .reg-grid {
                gap: 25px;
            }

            .form-group {
                margin-bottom: 14px;
            }

            .form-group label {
                font-size: 0.85em;
            }

            .participant-form {
                padding: 12px 0;
                margin-bottom: 12px;
            }

            .participant-form h4 {
                font-size: 0.95em;
                letter-spacing: 1.2px;
                margin-bottom: 10px;
            }

            .form-group input,
            .form-group select {
                font-size: 0.85em;
                padding: 9px 10px;
            }

            .error-message {
                font-size: 0.75em;
            }

            .btn {
                font-size: 0.85em;
                padding: 11px 18px;
            }

            .summary {
                padding: 15px;
            }

            .summary h3 {
                font-size: 1em;
            }

            .summary-item,
            .summary-total {
                font-size: 0.85em;
            }

            .reg-info {
                padding: 15px;
            }

            .reg-info p {
                font-size: 1.05em;
            }

            footer {
                padding: 22px 0 10px;
            }

            footer h4 {
                font-size: 0.95em;
            }

            footer p,
            footer a {
                font-size: 0.8em;
            }

            .footer-brand p {
                font-size: 0.8em;
            }

            .footer-social {
                gap: 10px;
            }

            .footer-social a {
                width: 32px;
                height: 32px;
            }

            .footer-social svg {
                width: 16px;
                height: 16px;
            }
        }
