@font-face {
    font-family: 'OswaldStencilCustom';
    src: url('assets/fonts/Oswald-Stencil.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* NFL / Champion Theme */
:root {
    /* Brand Colors */
    --color-primary: #CC0000;
    /* Mark's Signature Red */
    --color-primary-dark: #990000;
    --color-secondary: #000000;
    /* Deep Black */
    --color-text: #FFFFFF;
    /* High Contrast White */
    --color-text-muted: #CCCCCC;
    /* Silver/Grey */
    --color-accent: #333333;
    /* Dark Grey for cards */
    --color-bg-dark: #111111;
    --color-bg-darker: #080808;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Saira Stencil One', 'Oswald', sans-serif;
    /* Priority to custom font */

    /* Spacing */
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disable fade-in on mobile to prevent black space */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

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

html {
    scroll-behavior: smooth;
    background-color: #111111;
    /* Ensure dark background covers everything */
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 400;
    /* Stencil is naturally bold */
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    /* Wider container for 'Global' feel */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 2px;
    /* Sharper corners */
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Book Now Button - Gold/Yellow variant */
.btn-book {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.btn-book:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5) !important;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

.text-primary {
    color: var(--color-primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* Dark nav */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--color-primary);
    /* Red accent line */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    height: 90px;
    width: auto;
    padding: 10px 0;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    /* High Qual: Dark Moody Mountain (Unsplash: Marek Piwnicki) */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text);
    /* Was secondary (black), fixed to text (white) */
    margin-top: -80px;
    padding-top: 80px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    /* Subtle jagged edge */
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        height: auto;
        /* Auto height to fit content */
        min-height: 100vh;
        /* Minimum full viewport height */
        clip-path: none;
        /* Remove jagged edge to prevent gaps */
        margin-top: 0;
        margin-bottom: 0;
        /* No gap */
        padding-top: 120px;
        /* Space for navbar */
        padding-bottom: 3rem;
        /* Bottom padding for content */
        justify-content: flex-start;
        /* Align content to top */
    }

    .hero-content {
        margin-top: 2rem;
        margin-bottom: 3rem;
        /* Ensure content has bottom spacing */
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Force overlapping */
}

.hero-content h1 {
    font-family: 'Big Shoulders Stencil Display', sans-serif;
    /* Fallback to reliable font */
    font-size: 6rem;
    /* Massive Headline */
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    /* Hardcoded White */
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Utilities Extended */
.bg-light {
    background-color: var(--color-bg-darker);
}

.bg-granite {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.text-white {
    color: var(--color-text);
}

.text-primary {
    color: var(--color-primary);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-600 {
    max-width: 600px;
}

.box-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* The Mountain Background (CSS Art or Image Overlay) */
.summit-bg-layer {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_trekking.png');
    /* Reusing existing asset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    opacity: 0.4;
    /* Increased visibility for 'Journey' feel */
    z-index: 0;
}

/* The Connecting Rope */
.summit-rope {
    position: absolute;
    top: 5rem;
    bottom: 5rem;
    left: 50%;
    width: 6px;
    background: repeating-linear-gradient(to bottom,
            var(--color-primary) 0,
            var(--color-primary) 15px,
            transparent 15px,
            transparent 30px);
    /* Dashed trail look */
    transform: translateX(-50%);
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

/* Timeline Styling */
.section-header {
    margin-bottom: 4rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-granite);
    max-width: 700px;
    margin: 1rem auto 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background: var(--color-granite-light);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 5rem;
    height: 5rem;
    background: var(--color-primary);
    color: white;
    border-radius: 0;
    /* Square/Blocky */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.1);
    /* Hard shadow */
    border: 2px solid white;
}

.timeline-content {
    margin-left: 3rem;
    padding-top: 0.5rem;
    border-left: 2px solid var(--color-primary);
    padding-left: 2rem;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .charity-image {
        display: flex !important;
        flex-direction: column;
        gap: 1rem !important;
    }
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 2rem;
}

.timeline-content .time {
    color: var(--color-granite);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Venue Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.venue-features {
    list-style: none;
    margin: 2rem 0;
}

.venue-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.venue-features li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

/* Charity Section */
.charity-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.charity-card {
    background: var(--color-accent);
    padding: 3rem;
    border-radius: 0;
    /* Boxy */
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border: 2px solid var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.charity-card h3 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.charity-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    background: var(--color-bg-darker);
}

.benefit-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary) !important;
    /* Force override inline style if needed, or better, move inline to class */
}

/* Gallery Hover Effect */
.experience-section .box-shadow:hover img {
    transform: scale(1.1);
}

/* Footer (New) */
footer {
    background: #000;
    color: #666;
    padding: 4rem 0;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Agenda Row Styles */
.agenda-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed #333;
}

/* Responsive Updates */
/* Responsive Updates - Mobile Optimization */
@media (max-width: 768px) {

    /* MASTERPIECE / EPIC THEME MOBILE OVERRIDES */

    /* Typography Scaling */
    h1,
    .hero h1,
    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        /* Better readability on mobile */
    }

    h2,
    .section-header h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* Massive Headline Override */
    .big-impact-headline {
        font-size: clamp(3.5rem, 12vw, 5rem) !important;
        line-height: 0.9 !important;
    }

    .trail-content {
        border-left: 2px solid var(--color-primary) !important;
        border-right: none !important;
        opacity: 1 !important;
        /* Always visible on mobile */
        pointer-events: auto;
    }

    .node-summit {
        flex-direction: row;
        align-items: center;
    }

    .node-summit .trail-marker {
        margin-bottom: 0;
        margin-right: 1rem;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    /* Layout Stacking */
    .grid-2,
    .charity-grid,
    .footer-grid,
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        display: grid !important;
    }

    /* Container & Spacing */
    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .section-padding {
        padding: 4rem 0 !important;
    }

    /* Hero adjustments */
    .hero {
        min-height: 100vh;
        /* Keep full height for impact */
        background-attachment: scroll !important;
        /* Fix mobile parallax jitter */
        background-position: center center !important;
        padding-top: 0;
        align-items: center;
        /* Center vertically */
    }

    .hero video {
        opacity: 0.6 !important;
        /* Slightly darker video on mobile for text contrast */
    }

    /* Mobile Navigation Drawer */
    .navbar {
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.95);
        /* Solid dark bg on mobile */
    }

    .logo img {
        height: 40px;
        /* Smaller logo */
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: relative;
        /* Fix for z-index */
        z-index: 1100;
        /* Above drawer */
    }

    .menu-toggle .bar {
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: 0.3s;
    }

    /* Restore Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9998;
        /* High Z-index */
        padding: 2rem;
        display: flex !important;
        /* Override display:none */
        height: 100vh;
        /* Fixed height */
        width: 100vw;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger touch targets */
        font-family: 'Oswald', sans-serif;
    }

    /* Feature-Specific Mobile Fixes */

    /* Reveal Animation - Simplified for Mobile Performance */
    .reveal-on-scroll {
        transform: translateY(0) !important;
        /* No movement, just fade */
        transition: opacity 0.5s ease !important;
    }

    /* "We Rise" - Ensure it fits */
    .rise-text {
        font-size: inherit;
        /* Inherit from parent h2 */
        display: block;
        /* Stack if needed */
        margin-top: 0.5rem;
    }

    /* Timeline */
    .timeline::before {
        left: 0.5rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
        margin-left: -1rem;
        /* Align with line */
    }

    .timeline-content {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    /* Footer adjustments */
    footer {
        text-align: left;
        /* Easier to read stacked text */
    }

    .footer-col {
        margin-bottom: 2rem;
        border-bottom: 1px solid #222;
        padding-bottom: 1rem;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    /* Modals */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    border: 2px solid var(--color-primary);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Accordion Styles */
.accordion {
    border-top: 1px solid #333;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-header:hover .accordion-title {
    color: var(--color-primary);
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
}

.accordion-header .icon {
    font-size: 2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body {
    padding-bottom: 2rem;
    padding-top: 1rem;
}

/* Footer Styles */
footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 6rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #666;
}

.partnership-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.partnership-lockup img {
    height: 40px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Sponsorship Page Utilities */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bg-granite {
    background-color: #1a1a1a;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Interactive Map Styles */
.map-section {
    position: relative;
    background: #111;
    padding: 4rem 0;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: radial-gradient(circle at 50% 50%, #222 0%, #111 100%);
    border: 1px solid #333;
    border-radius: 4px;
}

.map-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.map-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 4s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.map-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-point:hover circle {
    r: 8;
    fill: #FFD700;
    filter: drop-shadow(0 0 10px #FFD700);
}

.map-tooltip {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-point:hover+.map-tooltip {
    opacity: 1;
}


/* Motion Design */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Optimization */
.hero {
    will-change: background-position;
}

/* Global Parallax for Headers */
header[style*='url'] {
    position: relative;
    background-attachment: scroll !important;
    /* Reset inline fixed */
    background-position: center center !important;
    background-size: cover !important;
    overflow: hidden;
}

header[style*='url']::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Check to ensure this matches the inline style URL logic or use general class */
    /* Because inline styles have the URL, we can't easily move it to pseudo-element without JS or specific classes */
    /* Reverting to simply ensuring background-attachment: fixed works but adding min-height safety */
}

/* Better Parallax Fix */
/* If the user sees black space, it's likely the 'cover' isn't stretching enough on scroll */
header[style*='url'] {
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 100vh !important;
    /* Force full height */
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    padding: 0.5rem 0;
    border: 1px solid #333;
    border-top: 2px solid var(--color-primary);
    list-style: none;
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    font-size: 0.9rem;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: block;
        background: transparent;
        border: none;
        border-left: 1px solid #333;
        margin-left: 1rem;
        padding-left: 0;
    }
}

/* =========================================
   MASTERPIECE / EPIC THEME EXTENSIONS
   ========================================= */

/* Typography Overrides for Epic Feel */
body.epic-theme {
    background-color: #050505;
    color: #e0e0e0;
}

body.epic-theme h1,
body.epic-theme h2,
body.epic-theme h3,
body.epic-theme h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.epic-theme p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Animation Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-Reveal Defaults (Matched to Epic Theme) */
.reveal,
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active,
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Rise Animation */
.rise-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.rise-text {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s ease;
}

.rise-text.show {
    transform: translateY(0);
    opacity: 1;
}

/* Cinematic Components */
.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* Pillar Cards */
.pillar-card {
    background: #111;
    padding: 3rem;
    border-left: 2px solid #333;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--color-primary);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s ease;
}

.pillar-card:hover::before {
    width: 100%;
}

.pillar-card h4 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pillar-card p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Quote Box */
.quote-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 4rem;
    position: relative;
}

.quote-box::after {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    color: #222;
    z-index: 0;
    line-height: 0;
}

.quote-content {
    position: relative;
    z-index: 1;
}

/* Speaker Cards */
.speaker-card {
    background: #0a0a0a;
    border: 1px solid #222;
    text-align: center;
    padding-bottom: 2rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.speaker-card:hover {
    border-color: var(--color-primary);
}

.speaker-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #111;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.speaker-card:hover .speaker-img {
    filter: grayscale(0%);
}

/* Hero Text Shadow */
.epic-hero-text {
    font-size: clamp(3rem, 8vw, 7rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* =========================================
   SUMMIT DIAGONAL ASCENT (One Side)
   ========================================= */

.trail-map-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    background: url('mountain_ridge_ascent.png') center/cover no-repeat;
    overflow: hidden;
    margin-top: 0;
}

.trail-overlay {
    position: absolute;
    inset: 0;
    /* Gradient to darken bottom/left for text readability */
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.trail-point {
    position: absolute;
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    /* Stack vertically to save horizontal space on the slope */
    align-items: center;
    text-align: center;
    cursor: default;
    transition: all 0.3s ease;
    z-index: 10;
    width: 400px;
    /* Wider for extensive text */
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 900px) {

    /* Stack Summit Framework Cards */
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .summit-card,
    .summit-card.center {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none !important;
        /* Disable any fancy desktop transforms if present */
    }

    /* MISSION MAP MOBILE OPTIMIZATION */
    /* Hide the complex SVG interaction on mobile */
    .map-wrapper {
        display: none !important;
    }

    /* Show the simple stack on mobile */
    .mission-mobile-stack {
        display: block !important;
        /* Force show */
    }

    /* TRIM WHITESPACE: Reduce height/padding for Summit Cards on mobile */
    .summit-card .big-letter {
        font-size: 8rem;
        /* Reduce from default if massive */
        line-height: 0.8;
        margin-bottom: -1rem;
        /* Pull letter up */
    }

    .summit-card {
        padding-top: 0;
        /* Ensure no top padding */
    }
}

/* Base state for Mobile Stack (Hidden on Desktop) */
.mission-mobile-stack {
    display: none;
    padding: 2rem 1rem;
}

.mission-stack-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

/* =========================================
   HOMEPAGE VISUAL OVERHAUL STYLES
   ========================================= */

/* 1. Parallax Breaker */
.parallax-breaker {
    width: 100%;
    height: 80vh;
    /* Tall visual break */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-breaker::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle overlay */
}

/* 2. Split Layout (Image / Text) */
.split-layout {
    display: flex;
    min-height: 80vh;
    width: 100%;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: #0a0a0a;
}

/* Mobile Split: Stacked */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }

    .split-image {
        min-height: 50vh;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

    .parallax-breaker {
        background-attachment: scroll;
        /* Disable fixed attachment on mobile for performance */
        height: 50vh;
    }
}

/* 3. Visual Grid (The Vibe) */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 1rem;
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.v-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.v-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v-item:hover img {
    transform: scale(1.05);
}

/* Detailed Grid Layout */
.v-item-large {
    grid-column: span 8;
}

.v-item-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.v-item-std {
    grid-column: span 4;
}

@media (max-width: 900px) {
    .visual-grid {
        display: flex;
        flex-direction: column;
        grid-template-rows: auto;
    }

    .v-item-large,
    .v-item-tall,
    .v-item-std {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
}


.mission-stack-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission-stack-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.mission-stack-content {
    padding: 1.5rem;
}

.mission-stack-day {
    color: var(--color-primary);
    font-family: 'Oswald';
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mission-stack-title {
    font-family: 'Saira Stencil One';
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.mission-stack-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trail-point:hover {
    z-index: 20;
    transform: translate(-50%, 50%) scale(1.05);
    /* Slight scale */
}

.trail-marker {
    width: 50px;
    height: 50px;
    background: #000;
    /* Solid black to pop against white/rock */
    border: 2px solid #fff;
    /* White border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* White Text */
    font-family: 'Saira Stencil One';
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

/* Connect the marker to the line visually if needed, but SVG does that */

.trail-content {
    background: rgba(0, 0, 0, 0.9);
    /* Darker for readability */
    padding: 1.5rem;
    /* More padding */
    border-radius: 4px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    /* Let clicks pass through description */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.trail-point:hover .trail-content {
    opacity: 1;
    pointer-events: auto;
}

.trail-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    font-family: 'Oswald';
    letter-spacing: 1px;
}

.trail-content p {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    /* Larger font for reading */
    line-height: 1.5;
    margin: 0;
    margin-top: 0.2rem;
}


/* Mobile SUMMITS Header Row */
.mobile-summits-row {
    display: none;
    /* Hidden on Desktop */
}

@media (max-width: 900px) {
    .mobile-summits-row {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem 1rem 0 1rem;
        background: #111;
    }

    .summit-circle {
        width: 35px;
        height: 35px;
        background: #000;
        border: 1px solid var(--color-primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Saira Stencil One';
        font-size: 1rem;
        box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
    }
}

/* Convergence Animation Classes */
.trail-point.converging {
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    z-index: 100;
}

.trail-point.converged {
    opacity: 0;
}

.node-summit.final-form {
    transform: translate(-50%, 50%) scale(1.5) !important;
    z-index: 200;
}

.node-summit.final-form .trail-marker {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* DIAGONAL POSITIONS (Bottom Left -> Top Right) */
/* Slope approx: x: 10%->90%, y: 90%->10% */

/* S */
.node-seed {
    bottom: 15%;
    left: 15%;
}

/* U */
.node-understand {
    bottom: 25%;
    left: 25%;
}

/* M */
.node-mindset {
    bottom: 35%;
    left: 35%;
}

/* M */
.node-momentum {
    bottom: 45%;
    left: 45%;
}

/* I - Higher Peak before the dip */
.node-identify {
    bottom: 62%;
    left: 55%;
}

/* T - The Dip (Reduced: from 55% to 58%) */
.node-traverse {
    bottom: 58%;
    left: 70%;
}

/* FALSE SUMMIT REMOVED */

/* S (Summit) */
.node-summit {
    bottom: 85%;
    left: 85%;
}

.node-summit .trail-marker {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    background: #fff;
    color: #000;
    border-color: #fff;
}

.node-summit .trail-content h4 {
    font-size: 1.2rem;
}

/* ANIMATION STYLES */
.climb-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.climb-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw-path 5s linear forwards;
    /* Speed up to 5s */
}

.anim-step {
    opacity: 0;
    transform: translate(-50%, 100%);
    animation: step-pop 0.5s ease forwards;
    animation-delay: var(--delay);
}

@keyframes draw-path {
    to {
        stroke-dashoffset: 0;

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.mobile-swipe-hint {
    display: none;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .mobile-swipe-hint {
        display: block;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

@keyframes step-pop {
    to {
        opacity: 1;
        transform: translate(-50%, 50%) scale(1);

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Mobile/Tablet Vertical Timeline Layout */
@media (max-width: 900px) {
    .trail-map-container {
        height: auto;
        padding: 4rem 1.5rem;
        background: linear-gradient(to bottom, #111 0%, #050505 100%);
        /* Clean dark bg */
        margin-top: 0;
    }

    /* Hide the complex mountain SVG path */
    .climb-svg {
        display: none;
    }

    /* Reset Nodes to Relative Stacking */
    .trail-point {
        position: relative;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 3rem auto;
        /* Vertical spacing */
        flex-direction: row !important;
        align-items: flex-start;
        text-align: left !important;
        opacity: 1;
        /* Ensure visible */
    }

    /* Vertical Connecting Line */
    .trail-map-container::before {
        content: '';
        position: absolute;
        top: 4rem;
        bottom: 4rem;
        left: 39px;
        /* Align with center of markers (1.5rem padding + 25px half marker) */
        width: 2px;
        background: repeating-linear-gradient(to bottom, var(--color-primary) 0, var(--color-primary) 5px, transparent 5px, transparent 10px);
        z-index: 1;
    }

    /* Markers */
    .trail-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
        margin-bottom: 0;
        z-index: 2;
        /* Sit on top of line */
        background: #000;
        flex-shrink: 0;
    }

    /* Content Cards */
    .trail-content {
        flex: 1;
        opacity: 1 !important;
        /* Always visible */
        pointer-events: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid var(--color-primary) !important;
        border-right: none !important;
        background: rgba(20, 20, 20, 0.6);
    }

    .trail-content p {
        display: block;
    }

    /* Specific Tweaks */
    .node-summit {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
    }

    .node-summit .trail-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        background: var(--color-primary);
        color: #fff;
    }

    /* Disable Animations */
    .anim-step,
    .climb-path {
        animation: none !important;
        transition: none !important;
    }

    /* Hide Desktop UI Elements */
    #final-summits-text,
    button[onclick^="replay"] {
        display: none !important;

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* ---------------------------------------------------- */
/* MOBILE MENU STYLES (Added for Global Functionality) */
/* ---------------------------------------------------- */

.menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex !important;
        /* Override any hidden states */
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        z-index: 2000;
        /* Ensure top visibility */
        width: 30px;
        height: 30px;
    }

    .menu-toggle .bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff !important;
        /* Force White for visibility against dark bg */
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
        margin: 0;
        /* Flex gap handles spacing */
    }

    /* Hamburger Animation (Reverted to X) */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        width: 25px;
        /* Reset width */
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        width: 25px;
        /* Reset width */
    }

    /* Mobile Nav Drawer */
    .nav-links {
        position: fixed;
        top: 86px;
        /* Below navbar (approx height) */
        left: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        /* Deep black */
        backdrop-filter: blur(15px);
        width: 100%;
        height: calc(100vh - 86px);
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
        gap: 0;
        border-top: 1px solid #333;
        padding-top: 2rem;

        /* Hiding Logic */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Staggered animation for links when opening */
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }


    .nav-links a {
        font-size: 1.5rem;
        /* Larger for touch */

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Galaxy Fold / Ultra-Narrow Screen Optimization */
@media (max-width: 330px) {
    .container {
        padding: 0 1rem;
        /* Reduce global padding */
    }

    .navbar .logo {
        height: 60px;
        /* Smaller Logo */
        padding: 5px 0;
    }

    .navbar {
        padding: 0.8rem 0;
        /* Thinner navbar */
    }

    .menu-toggle {
        transform: scale(0.9);
        /* Slightly smaller icon */
    }

    .nav-links {
        top: 65px;
        /* Adjust for smaller navbar */
        height: calc(100vh - 65px);
    }

    .nav-links a {
        font-size: 1.2rem;
        /* Smaller menu text */

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
    /* Ensure dropdown is positioned relative to the parent link */
}

/* Desktop Dropdown */
@media (min-width: 901px) {
    .dropdown-menu {
        display: block;
        /* Use opacity/visibility for transition */
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: #0a0a0a;
        border: 1px solid #333;
        min-width: 220px;
        padding: 0.5rem 0;
        z-index: 1000;
        border-radius: 4px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        /* Prevent accidental clicks when hidden */
    }

    .nav-links li:hover .dropdown-menu,
    .nav-links li:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Triangle/Arrow */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #333;
    }

    .dropdown-menu li {
        margin: 0;
        display: block;
        text-align: center;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        color: #ccc;
        font-weight: 400;
        white-space: nowrap;
        transition: all 0.2s;
        border-bottom: 1px solid #111;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .dropdown-menu a:hover {
        background: #111;
        color: var(--color-primary);
        padding-left: 1.5rem;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Mobile Dropdown (Inline) */
@media (max-width: 900px) {
    .dropdown-menu {
        display: block;
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: none;
        width: 100%;
        margin-top: 0.5rem;
        transform: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        padding: 0.8rem 0;
        font-size: 1rem;
        color: #bbb;
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        color: var(--color-primary);

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Speaker Card Read More Button */
.btn-read-more {
    display: none;
    /* Hidden on Desktop */
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 2px;
}

/* Mobile specific overrides */
@media (max-width: 900px) {
    .btn-read-more {
        display: inline-block;
        /* Visible on Mobile */

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Modal Scrollbar Polish */
.modal-content ::-webkit-scrollbar {
    width: 8px;
}

.modal-content ::-webkit-scrollbar-track {
    background: #111;
}

.modal-content ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.modal-content ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Speakers Page Hero */
.speakers-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    /* Desktop: Mark Pattison Image (Right aligned) */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
        url('assets/hero_gen_home.png');
    background-size: cover;
    background-position: top center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    z-index: 1;
}

@media (max-width: 768px) {
    .speakers-hero {
        /* Mobile: Gradient fallback to keep text readable */
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/hero_scenic.webp');
        background-size: cover;
        background-position: center;

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Text Logo Styling */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-highlight {
    color: var(--color-primary);
    /* Red */
    font-size: 0.8em;
    /* Slightly smaller relative to main text */
}

/* Mobile: Keep typical size */
@media (max-width: 900px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo-highlight {
        font-size: 1em;
        /* Reset size difference on mobile if needed, or keep relative */

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}

/* Booking Modal Overlay */
#booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.booking-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booking-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 10001;
    transition: transform 0.2s ease;
}

.booking-modal-close:hover {
    transform: scale(1.1);
}

.booking-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    #booking-modal {
        padding: 0;
    }

    .booking-modal-content {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .booking-modal-close {
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;

    }
}

/* =========================================
   METHODOLOGY LINEUP STYLES (Shared Component)
   ========================================= */
.lineup-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #050505 url('assets/methodology_bg.png') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 2rem;
    text-align: center;
    z-index: 20;
    width: 100%;
    pointer-events: none;
}

.header-overlay p {
    pointer-events: auto;
}

.header-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cards-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 80%;
    width: 100%;
    position: relative;
    z-index: 5;
    padding-bottom: 5vh;
}

.summit-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 -25px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    height: 55vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Create a gap between the two M's (3rd and 4th card) */
.summit-card:nth-child(4) {
    margin-left: 50px;
}

/* The Big Letter with Image Mask */
.summit-card .big-letter {
    font-family: 'Saira Stencil One', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 0.8;
    transition: all 0.4s ease;
    transform: translateY(20px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    filter: grayscale(100%) brightness(0.7);
}

.summit-card:hover {
    transform: translateY(-30px) scale(1.1);
    z-index: 100 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    border-bottom-color: var(--color-primary);
}

.summit-card:hover .big-letter {
    color: transparent;
    -webkit-text-stroke: 0;
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(220, 53, 69, 0.8));
    transform: translateY(0);
}

/* Assign Unique Images per Letter */
.summit-card:nth-child(1) .big-letter {
    background-image: url('assets/hero_trekking.png');
}

.summit-card:nth-child(2) .big-letter {
    background-image: url('assets/hero_scenic.webp');
}

.summit-card:nth-child(3) .big-letter {
    background-image: url('assets/hero_summit.jpg');
}

.summit-card:nth-child(4) .big-letter {
    background-image: url('assets/methodology_bg.png');
}

.summit-card:nth-child(5) .big-letter {
    background-image: url('assets/hero_everest.jpg');
}

.summit-card:nth-child(6) .big-letter {
    background-image: url('assets/activity_scenic.webp');
}

.summit-card:nth-child(7) .big-letter {
    background-image: url('assets/inspired_mountains_v4.png');
}

/* Content Reveal */
.card-content {
    padding: 2rem;
    text-align: center;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.summit-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    display: none;
    display: block;
}

/* Responsive Mobile Styles */
@media (max-width: 1000px) {
    .lineup-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: block;
        overflow: visible;
    }

    .header-overlay {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        pointer-events: none;
    }

    .header-overlay p {
        pointer-events: auto;
    }

    .cards-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10vw;
        align-items: center;
        scroll-snap-type: x mandatory;
        gap: 15px;
        height: 70vh;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .summit-card {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: 80vw;
        height: 60vh;
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        scroll-snap-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Reset the gap for M on mobile */
    .summit-card:nth-child(4) {
        margin-left: 0;
    }

    .summit-card .big-letter {
        font-size: 30vw;
        transform: translateY(0);
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        filter: grayscale(0%);
    }

    .card-content {
        opacity: 1;
        transform: none;
        padding: 1rem;
    }

    .card-content p {
        display: block !important;
        font-size: 1rem;
    }
}