        /* CORE CONFIGURATION & RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        :root {
            --performance-lime: #D8E983;
            --deep-garage: #492828;
            --velocity-red: #FF5555;
            --white: #FFFFFF;
            --black: #111111;
            --font-main: 'Roboto Flex', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* CORE TYPOGRAPHY STYLING */
        h1, h2, h3, h4 {
            font-stretch: 110%;
            text-transform: uppercase;
            line-height: 0.9;
        }
        
        p {
            font-weight: 350;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* SCANNABLE HEADINGS & RULES */
        .editorial-label {
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 4px;
            color: var(--velocity-red);
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        /* DYNAMIC PAGE SWITCHER ARCHITECTURE */
        .app-page {
            display: none;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .app-page.active-page {
            display: block;
        }

        /* HIGH-PERFORMANCE HEADER NAVIGATION */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: rgba(73, 40, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(216, 233, 131, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4%;
            z-index: 1000;
        }

        .logo-box img {
            height: 38px;
            object-fit: contain;
            display: block;
        }

        .logo-fallback {
            font-weight: 1000;
            font-size: 1.6rem;
            letter-spacing: -1.5px;
            color: var(--performance-lime);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease, font-weight 0.3s ease;
            cursor: pointer;
        }

        .nav-menu a:hover, .nav-menu a.active-link {
            color: var(--performance-lime);
            font-weight: 900;
        }

        /* HAMBURGER SYSTEM */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }

        .hamburger-btn span {
            width: 28px;
            height: 2px;
            background-color: var(--performance-lime);
            transition: all 0.3s ease;
        }

        /* HOME: SPLIT EDITORIAL WALL HERO */
        .home-hero {
            height: 100vh;
            width: 100%;
            display: flex;
            position: relative;
            overflow: hidden;
            padding-top: 90px;
        }

        .hero-split-panel {
            flex: 1;
            position: relative;
            background-size: cover;
            background-position: center;
            transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: flex-end;
            padding: 40px;
            overflow: hidden;
        }

        .hero-split-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }

        .panel-auto {
            background-image: url('https://i.pinimg.com/736x/5a/cc/67/5acc670542caba4c0f6ed21054bcd7f3.jpg');
        }

        .panel-athletics {
            background-image: url('https://images.unsplash.com/photo-1502224562085-639556652f33?auto=format&fit=crop&w=1200&q=80');
        }

        .hero-split-panel:hover {
            flex: 1.4;
        }

        .panel-inner-content {
            position: relative;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUpFade 0.8s 0.4s ease forwards;
        }

        .panel-inner-content h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            color: var(--white);
        }

        .floating-hub-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(216, 233, 131, 0.15);
            backdrop-filter: blur(12px);
            border: 2px solid var(--performance-lime);
            padding: 30px 60px;
            z-index: 10;
            text-align: center;
            pointer-events: none;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .floating-hub-badge h1 {
            color: var(--performance-lime);
            font-size: clamp(2rem, 4vw, 3.8rem);
            font-weight: 1000;
            letter-spacing: -2px;
        }

        .floating-hub-badge span {
            display: block;
            color: var(--white);
            font-size: 0.85rem;
            letter-spacing: 6px;
            margin-top: 5px;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* SECTION 02: SPOTLIGHT TIMELINE */
        .spotlight-section {
            background-color: var(--deep-garage);
            color: var(--performance-lime);
            padding: 120px 6%;
            position: relative;
        }

        .timeline-container {
            position: relative;
            margin-top: 80px;
        }

        .timeline-axis {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--performance-lime) 0%, rgba(216, 233, 131, 0.1) 100%);
            transform: translateX(-50%);
        }

        .timeline-year {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 3rem;
            font-weight: 900;
            background: var(--deep-garage);
            padding: 0 20px;
            letter-spacing: -1px;
        }

        .timeline-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            margin-bottom: 120px;
            position: relative;
            align-items: center;
        }

        .timeline-block:nth-child(even) {
            direction: rtl;
        }

        .timeline-block:nth-child(even) .timeline-text-panel {
            direction: ltr;
        }

        .timeline-img-panel {
            overflow: hidden;
            height: 480px;
            border: 1px solid rgba(216, 233, 131, 0.2);
        }

        .timeline-img-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .timeline-block:hover .timeline-img-panel img {
            transform: scale(1.05);
        }

        .timeline-text-panel h3 {
            font-size: clamp(2rem, 3.5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 0.95;
        }

        .timeline-text-panel p {
            color: var(--white);
            margin-bottom: 30px;
            font-size: 1.15rem;
        }

        .tech-stats-grid {
            display: flex;
            gap: 40px;
            border-top: 1px dashed rgba(216, 233, 131, 0.3);
            padding-top: 20px;
        }

        .stat-item span {
            display: block;
        }

        .stat-item .stat-val {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--velocity-red);
        }

        .stat-item .stat-lbl {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.7);
        }

        /* SECTION 03: PERFORMANCE INDEX */
        .index-section {
            background-color: var(--performance-lime);
            color: var(--deep-garage);
            display: flex;
            height: 85vh;
            width: 100%;
            overflow: hidden;
        }

        .index-panel {
            flex: 1;
            height: 100%;
            padding: 80px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-right: 1px solid rgba(73, 40, 40, 0.15);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            background-color: var(--performance-lime);
        }

        .index-panel:last-child {
            border-right: none;
        }

        .index-panel:hover {
            flex: 1.6;
            background-color: var(--white);
        }

        .index-panel h2 {
            font-size: clamp(2.5rem, 4vw, 5rem);
            font-weight: 1000;
        }

        .index-panel-img {
            height: 250px;
            width: 100%;
            margin: 30px 0;
            overflow: hidden;
            opacity: 0.8;
            transition: opacity 0.4s ease;
        }

        .index-panel:hover .index-panel-img {
            opacity: 1;
        }

        .index-panel-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* SECTION 04: FEATURED REPORT (MAGAZINE WHITE) */
        .featured-report-section {
            background-color: var(--white);
            color: var(--black);
            padding: 120px 8%;
        }

        .report-head {
            font-size: clamp(3rem, 7vw, 7.5rem);
            font-weight: 1000;
            letter-spacing: -3px;
            line-height: 0.85;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        .report-hero-image {
            width: 100%;
            height: 70vh;
            object-fit: cover;
            margin-bottom: 60px;
        }

        .three-column-article {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .three-column-article p {
            font-size: 1.15rem;
            text-align: justify;
            color: #333;
        }

        .three-column-article p::first-letter {
            font-size: 3.5rem;
            font-weight: 900;
            float: left;
            line-height: 0.8;
            margin-right: 10px;
            color: var(--velocity-red);
        }

        /* SECTION 05: PARALLAX BANNER */
        .parallax-banner {
            height: 70vh;
            width: 100%;
            background-image: url('https://images.unsplash.com/photo-1547949003-9792a18a2601?auto=format&fit=crop&w=1600&q=80');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-banner::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.5);
        }

        .parallax-text {
            position: relative;
            z-index: 2;
            text-align: center;
            font-size: clamp(2rem, 5vw, 4.5rem);
            font-weight: 1000;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* SECTION 06: GEAR SHOWCASE CONVEYOR BELT */
        .gear-showcase-section {
            background-color: var(--deep-garage);
            padding: 120px 0;
            overflow: hidden;
        }

        .conveyor-belt-container {
            display: flex;
            gap: 30px;
            padding: 40px 5%;
            overflow-x: auto;
            scrollbar-width: none;
        }
        
        .conveyor-belt-container::-webkit-scrollbar {
            display: none;
        }

        .gear-conveyor-card {
            flex: 0 0 380px;
            background: #543131;
            border: 1px solid rgba(216, 233, 131, 0.15);
            padding: 25px;
            position: relative;
            transition: transform 0.4s ease;
        }

        .gear-conveyor-card:hover {
            transform: translateY(-15px) scale(1.02);
            z-index: 5;
        }

        .gear-card-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .gear-conveyor-card h4 {
            color: var(--performance-lime);
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 10px;
        }

        /* SECTION 07: ASYMMETRIC EXPERT OPINIONS */
        .opinions-section {
            background-color: var(--performance-lime);
            color: var(--deep-garage);
            padding: 120px 8%;
        }

        .asymmetric-quote-grid {
            display: grid;
            grid-template-columns: 1.41fr 1fr;
            gap: 80px 40px;
            margin-top: 60px;
        }

        .opinion-block.large-quote h3 {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .opinion-block.small-quote h3 {
            font-size: clamp(1.3rem, 2vw, 1.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .opinion-author {
            font-size: 0.85rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--velocity-red);
        }

        /* ==================== INNER PAGES STYLING ==================== */
        
        /* COMMON HERO STYLE FOR INTERNAL PAGES */
        .inner-page-hero {
            padding: 160px 6% 80px 6%;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .inner-page-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, var(--black) 15%, rgba(0,0,0,0.4) 100%);
        }

        .inner-hero-text-wrapper {
            position: relative;
            z-index: 5;
        }

        .inner-page-hero h1 {
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 1000;
            letter-spacing: -4px;
            color: var(--performance-lime);
        }

        /* AUTO STORIES PAGE SECTIONS */
        .auto-stories-hero {
            background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80');
        }

        .inner-layout-block {
            padding: 100px 6%;
            background-color: var(--black);
        }

        .split-row-block {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .split-row-block img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border: 1px solid #333;
        }

        .blueprint-section {
            background-color: #112233;
            border: 2px dashed rgba(216, 233, 131, 0.3);
            padding: 60px;
            color: var(--performance-lime);
            font-family: monospace;
            margin: 60px 0;
        }

        /* GEAR LAB PAGE SECTIONS */
        .gear-lab-hero {
            background-image: url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?auto=format&fit=crop&w=1600&q=80');
        }

        .lab-table-container {
            width: 100%;
            overflow-x: auto;
            margin: 40px 0;
        }

        .lab-data-table {
            width: 100%;
            border-collapse: collapse;
            color: var(--white);
            text-align: left;
        }

        .lab-data-table th, .lab-data-table td {
            padding: 20px;
            border-bottom: 1px solid #333;
        }

        .lab-data-table th {
            background-color: var(--deep-garage);
            color: var(--performance-lime);
            font-weight: 800;
            text-transform: uppercase;
        }

        /* ATHLETICS PAGE SECTIONS */
        .athletics-hero {
            background-image: url('https://images.unsplash.com/photo-1476480862126-209bfaa8edc8?auto=format&fit=crop&w=1600&q=80');
        }

        /* FEATURES PAGE SECTIONS (MAGAZINE COVER SYSTEM) */
        .features-hero {
            background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80');
        }

        .pull-quote-block {
            border-left: 6px solid var(--velocity-red);
            padding-left: 30px;
            margin: 50px 0;
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--performance-lime);
        }

        /* ABOUT PAGE SECTIONS */
        .about-statement-block {
            padding: 140px 6% 80px 6%;
            background-color: var(--performance-lime);
            color: var(--deep-garage);
        }

        .about-statement-block h1 {
            font-size: clamp(3rem, 8vw, 7.5rem);
            font-weight: 1000;
            margin-bottom: 30px;
        }

        /* CONTACT PAGE SECTIONS */
        .contact-split-view {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 90px);
            margin-top: 90px;
        }

        .contact-left-visual {
            background-image: url('https://i.pinimg.com/736x/dd/c4/30/ddc430a348a51bdcfdaeee64aaf3f07b.jpg');
            background-size: cover;
            background-position: center;
        }

        .contact-right-form-pane {
            background-color: var(--deep-garage);
            padding: 80px 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .editorial-form-group {
            margin-bottom: 25px;
        }

        .editorial-form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--performance-lime);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .editorial-field {
            width: 100%;
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(216, 233, 131, 0.3);
            padding: 15px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 1rem;
        }

        .editorial-field:focus {
            outline: none;
            border-color: var(--performance-lime);
        }

        .editorial-submit-btn {
            background-color: var(--performance-lime);
            color: var(--deep-garage);
            border: none;
            padding: 18px 40px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .editorial-submit-btn:hover {
            opacity: 0.9;
        }

        /* ==================== PREMIUM FOOTER ==================== */
        footer {
            background-color: var(--deep-garage);
            color: var(--performance-lime);
            padding: 100px 6% 40px 6%;
            border-top: 1px solid rgba(216, 233, 131, 0.2);
        }

        .footer-huge-logo {
            font-size: clamp(3rem, 11vw, 11rem);
            font-weight: 1000;
            letter-spacing: -4px;
            line-height: 0.85;
            margin-bottom: 60px;
        }

        .footer-columns-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            border-bottom: 1px solid rgba(216, 233, 131, 0.2);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-col ul li a:hover {
            color: var(--performance-lime);
        }

        .footer-newsletter-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-newsletter-box .email-field {
            padding: 12px;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(216, 233, 131, 0.4);
            color: #fff;
            font-family: var(--font-main);
        }

        .footer-newsletter-box .sub-btn {
            background-color: var(--performance-lime);
            color: var(--deep-garage);
            border: none;
            padding: 12px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
        }

        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }

        /* KEYFRAME ANIMATIONS */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUpFade {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* SYSTEM RESPONSIVENESS OVERRIDES */
        @media (max-width: 1024px) {
            .timeline-block {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .timeline-block:nth-child(even) {
                direction: ltr;
            }
            .timeline-axis {
                left: 20px;
            }
            .timeline-year {
                left: 20px;
                transform: none;
            }
            .index-section {
                flex-direction: column;
                height: auto;
            }
            .three-column-article {
                grid-template-columns: 1fr;
            }
            .asymmetric-quote-grid {
                grid-template-columns: 1fr;
            }
            .footer-columns-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
            .split-row-block {
                grid-template-columns: 1fr;
            }
            .contact-split-view {
                grid-template-columns: 1fr;
            }
            .contact-left-visual {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hamburger-btn {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--deep-garage);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                gap: 35px;
                transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .nav-menu.mobile-open {
                left: 0;
            }
            .home-hero {
                flex-direction: column;
            }
            .footer-columns-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-bottom-row {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* ============ AUTO STORIES PAGE STYLES ============ */

/* Hero */
.auto-stories-hero {
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Engineering Deep Dive */
.engineering-deep-dive {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.engineering-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.engineering-card {
    padding: 2.5rem;
    border: 1px solid rgba(40, 63, 36, 0.08);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.engineering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.06);
    border-color: var(--championship-gold);
}

.engineering-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.engineering-card h3 {
    font-size: 1.3rem;
    color: var(--primary-forest);
    margin-bottom: 0.75rem;
}

.engineering-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.engineering-features {
    list-style: none;
    padding: 0;
}

.engineering-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.engineering-features li:last-child {
    border-bottom: none;
}

/* Design Philosophy */
.design-philosophy-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.design-philosophy-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.design-philosophy-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 1.5rem;
}

.design-philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.design-gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.design-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.design-gallery img:hover {
    transform: scale(1.02);
}

/* Materials Section */
.materials-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.materials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.material-item {
    padding: 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
    border-bottom: 3px solid var(--championship-gold);
}

.material-item h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.material-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.material-stat {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-forest);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Performance Data */
.performance-data-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.performance-data-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.performance-data-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
}

.performance-stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-forest);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-forest);
    margin-top: 0.25rem;
}

.stat-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Featured Stories */
.featured-stories-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.featured-stories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.story-card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(40, 63, 36, 0.06);
    transition: var(--transition-smooth);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.06);
}

.story-card-image {
    height: 220px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-content {
    padding: 1.5rem;
}

.story-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--championship-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.story-card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.story-card-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--championship-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.read-more:hover {
    color: var(--primary-forest);
}

/* Interview Section */
.interview-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.interview-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interview-quote blockquote {
    font-family: var(--font-editorial, Georgia, serif);
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--championship-gold);
    margin-bottom: 1.5rem;
}

.interview-quote cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.7;
}

.interview-image {
    border-radius: 4px;
    overflow: hidden;
}

.interview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Timeline */
.timeline-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.timeline-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--championship-gold);
    transition: var(--transition-smooth);
}

.timeline-item:hover {
    background: var(--tint-1, #f7f7f7);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-forest);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Auto CTA */
.auto-cta-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.auto-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.auto-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.auto-cta-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.auto-cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.auto-cta-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.auto-cta-form input:focus {
    outline: none;
    border-color: var(--championship-gold);
}

.auto-cta-form .btn-gold {
    padding: 0.8rem 2rem;
    white-space: nowrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .engineering-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .performance-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .design-gallery {
        grid-template-columns: 1fr;
    }
    
    .design-gallery img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .engineering-grid {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .auto-cta-form {
        flex-direction: column;
    }
    
    .auto-cta-form .btn-gold {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .performance-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-quote blockquote {
        font-size: 1.4rem;
    }
}


/* ============ GEAR LAB PAGE STYLES ============ */

/* Hero */
.gear-lab-hero {
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1574457878126-6d4ca9f4f2a7?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Table Styles */
.lab-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.lab-data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-main);
    min-width: 600px;
}

.lab-data-table thead {
    background: var(--primary-forest);
    color: var(--white);
}

.lab-data-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.lab-data-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--black);
    font-size: 0.95rem;
}

.lab-data-table tbody tr {
    background: var(--white);
    transition: var(--transition-smooth);
}

.lab-data-table tbody tr:hover {
    background: var(--tint-1, #f7f7f7);
}

/* Testing Protocols */
.testing-protocols-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.protocols-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.protocol-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--championship-gold);
}

.protocol-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(40, 63, 36, 0.06);
}

.protocol-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--championship-gold);
    min-width: 60px;
    opacity: 0.5;
}

.protocol-content h3 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.protocol-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.protocol-stat {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-text, #666);
    flex-wrap: wrap;
}

.protocol-stat span {
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Material Science */
.material-science-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.material-science-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.material-science-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.material-science-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.material-science-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.material-stat-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 4px;
}

.material-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-forest);
    display: block;
}

.material-stat-item .stat-description {
    font-size: 0.85rem;
    color: #666;
}

.material-science-image {
    border-radius: 4px;
    overflow: hidden;
}

.material-science-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Comparative Analysis */
.comparative-analysis-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.comparative-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparative-item {
    padding: 1.5rem 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
}

.comparative-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comparative-header h3 {
    font-size: 1.1rem;
    color: var(--primary-forest);
}

.comparative-rating {
    font-weight: 700;
    color: var(--primary-forest);
}

.comparative-bar {
    height: 8px;
    background: rgba(40, 63, 36, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.comparative-fill {
    height: 100%;
    background: var(--championship-gold);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparative-details {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #888;
}

/* Test Reports */
.test-reports-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.test-reports-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.test-report-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(40, 63, 36, 0.06);
    transition: var(--transition-smooth);
}

.test-report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.06);
}

.test-report-image {
    height: 200px;
    overflow: hidden;
}

.test-report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-report-content {
    padding: 1.5rem;
}

.test-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--championship-gold);
    font-weight: 600;
}

.test-report-content h3 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin: 0.5rem 0;
}

.test-report-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.test-metrics {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* Lab Ratings */
.lab-ratings-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.lab-ratings-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.rating-item:hover {
    border-left-color: var(--championship-gold);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(40, 63, 36, 0.04);
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--championship-gold);
    min-width: 50px;
}

.rating-content {
    flex: 1;
}

.rating-content h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--championship-gold);
    margin: 0.25rem 0;
}

.rating-stars span:last-child {
    color: #888;
}

.rating-content p {
    font-size: 0.85rem;
    color: #666;
}

/* Industry Standards */
.industry-standards-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.industry-standards-content {
    max-width: 1000px;
    margin: 0 auto;
}

.industry-standards-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 2rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.standard-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.standard-icon {
    font-size: 1.5rem;
    color: var(--championship-gold);
}

.standard-detail h4 {
    font-size: 1rem;
    color: var(--championship-gold);
    margin-bottom: 0.25rem;
}

.standard-detail p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Gear CTA */
.gear-cta-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.gear-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gear-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.gear-cta-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.gear-cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.gear-cta-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.gear-cta-form input:focus {
    outline: none;
    border-color: var(--championship-gold);
}

.gear-cta-form .btn-gold {
    padding: 0.8rem 2rem;
    white-space: nowrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .test-reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .material-science-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .test-reports-grid {
        grid-template-columns: 1fr;
    }
    
    .material-science-stats {
        grid-template-columns: 1fr;
    }
    
    .gear-cta-form {
        flex-direction: column;
    }
    
    .gear-cta-form .btn-gold {
        width: 100%;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparative-details {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .lab-data-table {
        font-size: 0.8rem;
    }
    
    .lab-data-table th,
    .lab-data-table td {
        padding: 0.8rem 1rem;
    }
    
    .protocol-card {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ============ ATHLETICS PAGE STYLES ============ */

/* Hero */
.athletics-hero {
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Performance Physiology */
.performance-physiology-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
}

.physiology-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.physiology-card {
    padding: 2rem;
    border: 1px solid rgba(40, 63, 36, 0.06);
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.physiology-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(40, 63, 36, 0.04);
    border-color: var(--championship-gold);
}

.physiology-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.physiology-card h3 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.physiology-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.physiology-data {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    font-size: 0.8rem;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Training Methodologies */
.training-methodologies-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.training-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.training-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.training-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.training-principles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.principle-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border-radius: 4px;
}

.principle-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--championship-gold);
    min-width: 45px;
}

.principle-detail h4 {
    font-size: 1rem;
    color: var(--primary-forest);
    margin-bottom: 0.25rem;
}

.principle-detail p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.training-image {
    border-radius: 4px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Nutrition & Recovery */
.nutrition-recovery-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.nutrition-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.nutrition-item {
    padding: 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
    border-bottom: 3px solid var(--championship-gold);
}

.nutrition-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.nutrition-item h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.nutrition-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Sport Specific */
.sport-specific-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.sport-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.sport-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(40, 63, 36, 0.06);
    transition: var(--transition-smooth);
}

.sport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.06);
}

.sport-image {
    height: 200px;
    overflow: hidden;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-content {
    padding: 1.5rem;
}

.sport-content h3 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.sport-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.sport-metrics {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* Biomechanics */
.biomechanics-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.biomechanics-content {
    max-width: 1200px;
    margin: 0 auto;
}

.biomechanics-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 2rem;
}

.biomechanics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.biomechanics-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.biomechanics-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--championship-gold);
    margin-bottom: 0.5rem;
}

.biomechanics-detail h4 {
    font-size: 1.1rem;
    color: var(--championship-gold);
    margin-bottom: 0.25rem;
}

.biomechanics-detail p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Psychological */
.psychological-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.psychological-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.psychological-item {
    padding: 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
    border-top: 4px solid var(--championship-gold);
}

.psychological-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.psychological-item h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.psychological-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Injury Prevention */
.injury-prevention-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.injury-content {
    max-width: 1200px;
    margin: 0 auto;
}

.injury-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.injury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.injury-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
    border-left: 4px solid var(--championship-gold);
}

.injury-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.injury-item h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.injury-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Long Form */
.long-form-athletics-section {
    background-color: var(--white);
    color: var(--black);
    padding: 6rem 15% 8rem 15%;
}

.long-form-athletics-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.long-form-athletics-section .thin-quote {
    text-align: center;
    display: block;
    margin-bottom: 4rem;
    color: #555;
}

.long-form-athletics-section .stacked-blocks-wrapper {
    display: flex;
    flex-direction: column;
}

.long-form-athletics-section .editorial-block {
    padding: 3rem 0;
}

.long-form-athletics-section .editorial-block:first-child {
    padding-top: 0;
}

.long-form-athletics-section .editorial-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-forest);
}

.long-form-athletics-section .editorial-block p {
    font-size: 1.05rem;
    color: #444;
    text-align: justify;
    line-height: 1.8;
}

.long-form-athletics-section hr {
    background-color: rgba(0, 0, 0, 0.08);
    margin: 0;
}

/* Closing */
.athletics-closing-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin: 1rem 0 2rem;
}

.closing-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .physiology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .psychological-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .training-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .biomechanics-grid {
        grid-template-columns: 1fr;
    }
    
    .injury-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .physiology-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .sport-grid {
        grid-template-columns: 1fr;
    }
    
    .psychological-grid {
        grid-template-columns: 1fr;
    }
    
    .injury-grid {
        grid-template-columns: 1fr;
    }
    
    .long-form-athletics-section {
        padding: 4rem 5% 6rem 5%;
    }
}

@media (max-width: 480px) {
    .sport-metrics {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .principle-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ============ ABOUT PAGE STYLES ============ */

/* Statement Block */
.about-statement-block {
    padding: 8rem 4% 4rem 4%;
    background: var(--primary-forest);
    color: var(--white);
    text-align: center;
}

.about-statement-block h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 1.5rem;
}

.about-statement-block p {
    margin: 0 auto;
}

/* Origin Section */
.origin-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.origin-content {
    max-width: 1400px;
    margin: 0 auto;
}

.origin-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.origin-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.origin-image {
    border-radius: 4px;
    overflow: hidden;
}

.origin-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.expertise-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.expertise-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-item {
    padding: 2rem;
    border: 1px solid rgba(40, 63, 36, 0.06);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(40, 63, 36, 0.04);
    border-color: var(--championship-gold);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.expertise-item h4 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.expertise-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.expertise-tags span {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 20px;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.team-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(40, 63, 36, 0.06);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.06);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-top: 1rem;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--championship-gold);
    font-weight: 600;
    margin: 0.25rem 0 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

/* Methodology Section */
.methodology-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.methodology-content {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 2rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.methodology-step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--championship-gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--championship-gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About Statistics */
.about-statistics-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--tint-1, #f7f7f7);
    border-radius: 4px;
}

.stats-grid .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-forest);
    display: block;
}

.stats-grid .stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.25rem;
}

/* Principles Section */
.principles-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
}

.principles-content {
    max-width: 1400px;
    margin: 0 auto;
}

.principles-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.principle-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
    border-top: 4px solid var(--championship-gold);
}

.principle-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.principle-card h4 {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.principle-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Partnerships */
.partnerships-section {
    padding: 6rem 4%;
    background: var(--white);
    color: var(--black);
}

.partnerships-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 2rem;
}

.partnerships-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partnership-item {
    padding: 2rem;
    border: 1px solid rgba(40, 63, 36, 0.06);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.partnership-item:hover {
    border-color: var(--championship-gold);
}

.partnership-logo {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.partnership-item h4 {
    font-size: 1rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
}

.partnership-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Manifesto Long */
.manifesto-long-section {
    padding: 6rem 4%;
    background: var(--primary-forest);
    color: var(--white);
}

.manifesto-long-content {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-long-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--championship-gold);
    margin-bottom: 2rem;
}

.manifesto-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.manifesto-block p:last-child {
    margin-bottom: 0;
}

/* About Closing */
.about-closing-section {
    padding: 6rem 4%;
    background: var(--cream-bg, #faf8f4);
    color: var(--black);
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin: 1rem 0 2rem;
}

.closing-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnerships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .origin-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-statement-block {
        padding: 6rem 4% 3rem 4%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-statement-block h1 {
        font-size: 2.5rem;
    }
    
    .about-statement-block p {
        font-size: 1.2rem;
    }
}

/* Footer Newsletter Styles */
.footer-col .email-field {
    background: transparent;
    border: 1px solid rgba(255, 222, 66, 0.2);
    padding: 0.7rem 1rem;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.85rem;
    flex: 1;
    min-width: 150px;
    transition: var(--transition-smooth);
}

.footer-col .email-field:focus {
    outline: none;
    border-color: var(--championship-gold);
    box-shadow: 0 0 10px rgba(255, 222, 66, 0.05);
}

.footer-col .email-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.footer-newsletter-box {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-col .sub-btn {
    background: var(--championship-gold);
    color: var(--primary-forest);
    border: none;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.footer-col .sub-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 222, 66, 0.2);
}

#newsletterStatusBox,
#unsubscribeStatusBox {
    font-size: 0.85rem;
    margin-top: 10px;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: none;
}

#newsletterStatusBox.success,
#unsubscribeStatusBox.success {
    display: block;
    color: #7aff6b;
    border-left: 3px solid #7aff6b;
    background: rgba(122, 255, 107, 0.05);
}

#newsletterStatusBox.error,
#unsubscribeStatusBox.error {
    display: block;
    color: #ff6b6b;
    border-left: 3px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-newsletter-box {
        flex-direction: column;
    }
    
    .footer-col .email-field {
        width: 100%;
        min-width: auto;
    }
    
    .footer-col .sub-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-unsubscribe-box div {
        flex-direction: column;
    }
}
