        /* --- CORE ANATOMY & RESET SYSTEM --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Manrope", sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        :root {
            --black: #000000;
            --orange: #FF5722;
            --dark-slate: #25343F;
            --cream: #EDE9E6;
            --white: #FFFFFF;
            --transition-speed: 0.6s;
            --transition-curve: cubic-bezier(0.16, 1, 0.3, 1);
        }

        html, body {
            background-color: var(--black);
            color: var(--cream);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--black);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--orange);
        }

        /* --- GLOBAL EDITORIAL TYPOGRAPHY --- */
        h1, h2, h3, h4 {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1.05;
            color: var(--white);
        }

        p {
            font-weight: 300;
            line-height: 1.7;
            font-size: 1.05rem;
            color: rgba(237, 233, 230, 0.85);
        }

        .section-padding {
            padding: 140px 8%;
        }

        /* --- HARDWARE-ACCELERATED TRANSITION ENGINE --- */
        .spa-page {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity var(--transition-speed) var(--transition-curve),
                        transform var(--transition-speed) var(--transition-curve);
            width: 100%;
            min-height: 100vh;
        }

        .spa-page.page-active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* --- PREMIUM STATIC HEADER NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--black);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4%;
            z-index: 1000;
            border-bottom: 1px solid rgba(237, 233, 230, 0.08);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

.logo-container{
    display:flex;
    align-items:center;
    text-decoration:none;
    cursor:pointer;
}

.logo-text{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-text img{
    height:158px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:all .35s ease;
}

.logo-container:hover .logo-text img{
    transform:scale(1.05);
}        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--cream);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        nav a:hover, nav a.nav-active {
            color: var(--white);
        }

        .header-right .contact-btn {
            color: var(--orange);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        .header-right .contact-btn:hover {
            color: var(--white);
        }

        /* Responsive Mobile Hamburger Button */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1010;
            padding: 10px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background-color: var(--cream);
            transition: transform 0.3s var(--transition-curve), opacity 0.3s ease;
        }

        /* --- FIXED POSITION BACKGROUND PARALLAX PANEL --- */
        .parallax-hero {
            position: relative;
            height: 100vh;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        /* Smooth linear illumination layer */
        .parallax-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
            z-index: 1;
        }

        .hero-inner-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 8% 100px 8%;
            text-align: center;
        }

        .hero-inner-content h1 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            margin-bottom: 25px;
        }

        .hero-inner-content p {
            max-width: 650px;
            margin: 0 auto 35px auto;
            color: rgba(237, 233, 230, 0.8);
            font-weight: 300;
        }

        /* Luxury CTA Button */
        .premium-btn {
            display: inline-block;
            background-color: transparent;
            border: 1px solid var(--white);
            color: var(--white);
            padding: 16px 40px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background-color 0.4s var(--transition-curve), color 0.4s var(--transition-curve), border-color 0.4s var(--transition-curve);
            cursor: pointer;
        }

        .premium-btn:hover {
            background-color: var(--white);
            color: var(--black);
        }

        /* --- COMPONENT: DUAL TRAINING STORIES (SPLIT VIEW) --- */
        .split-stories-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            background-color: var(--black);
        }

        .story-panel {
            position: relative;
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 80px 10%;
            text-decoration: none;
            overflow: hidden;
        }

        .story-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .story-panel:hover::before {
            opacity: 0.95;
        }

        .story-panel .panel-text-wrap {
            position: relative;
            z-index: 2;
            transition: transform 0.5s var(--transition-curve);
        }

        .story-panel:hover .panel-text-wrap {
            transform: translateY(-15px);
        }

        .story-panel h2 {
            font-size: clamp(2rem, 3.5vw, 3.5rem);
            margin-bottom: 15px;
        }

        /* --- COMPONENT: FIXED BACKGROUND MANIFESTO --- */
        .manifesto-panel {
            justify-content: flex-start;
            align-items: center;
        }

        .manifesto-panel .editorial-box {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 0 8%;
        }

        .editorial-box h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 30px;
        }

        .editorial-box p {
            font-size: 1.2rem;
            color: rgba(237, 233, 230, 0.95);
        }

        /* --- COMPONENT: FOUR PILLARS SECTION --- */
        .orange-pillars-block {
            background-color: var(--orange);
            color: var(--black);
        }

        .orange-pillars-block h2 {
            color: var(--black);
            font-size: clamp(2rem, 4.5vw, 4rem);
            text-align: center;
            margin-bottom: 90px;
        }

        .pillars-flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .pillar-editorial-card {
            border: 2px solid var(--black);
            padding: 60px 40px;
            text-align: left;
            transition: background-color 0.4s var(--transition-curve), transform 0.4s var(--transition-curve);
        }

        .pillar-editorial-card h3 {
            color: var(--black);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .pillar-editorial-card p {
            color: rgba(0, 0, 0, 0.8);
            font-weight: 400;
        }

        .pillar-editorial-card:hover {
            background-color: var(--black);
            transform: translateY(-12px);
        }

        .pillar-editorial-card:hover h3 {
            color: var(--white);
        }

        .pillar-editorial-card:hover p {
            color: rgba(237, 233, 230, 0.85);
        }

        /* --- COMPONENT: ULTRA-GAPLESS CHALLENGE WALL GALLERY --- */
        .challenge-wall-container {
            background-color: var(--dark-slate);
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 0;
        }

        .challenge-wall-container h2 {
            text-align: center;
            font-size: clamp(2rem, 4.5vw, 4rem);
            margin-bottom: 70px;
            padding: 0 8%;
        }

        .gapless-image-wall {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            width: 100%;
        }

        .wall-card-unit {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
            cursor: pointer;
        }

        .wall-card-unit img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--transition-curve);
        }

        .wall-card-unit::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .wall-card-unit:hover img {
            transform: scale(1.1);
        }

        .wall-card-unit:hover::after {
            opacity: 1;
        }

        /* --- COMPONENT: SPLIT PHILOSOPHY SECTION --- */
        .split-philosophy-block {
            background-color: var(--dark-slate);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 0;
        }

        .philosophy-media-wrapper {
            height: 100%;
            min-height: 750px;
        }

        .philosophy-media-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .philosophy-editorial-wrapper {
            padding: 12% 14%;
        }

        .philosophy-editorial-wrapper h2 {
            font-size: clamp(2.5rem, 4.5vw, 3.8rem);
            margin-bottom: 35px;
        }

        /* --- COMPONENT: INTERACTIVE FIXED NEWSLETTER BLOCK --- */
        .newsletter-panel {
            align-items: center;
            justify-content: center;
        }

        .newsletter-card-frame {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 680px;
            text-align: center;
            padding: 0 4%;
        }

        .newsletter-card-frame h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 20px;
        }

        .newsletter-card-frame p {
            margin-bottom: 45px;
        }

        .form-toggle-switch-bar {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 35px;
        }

        .switch-action-btn {
            background: transparent;
            border: none;
            color: var(--cream);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            cursor: pointer;
            padding-bottom: 6px;
            border-bottom: 2px solid transparent;
            text-transform: uppercase;
            opacity: 0.4;
            transition: all 0.3s ease;
        }

        .switch-action-btn.switch-active {
            border-bottom-color: var(--orange);
            color: var(--white);
            opacity: 1;
        }

        .dynamic-form-shell {
            background: rgba(0, 0, 0, 0.85);
            padding: 50px 40px;
            border: 1px solid rgba(237, 233, 230, 0.1);
            backdrop-filter: blur(15px);
        }

        .interactive-form {
            display: none;
            flex-direction: column;
            gap: 15px;
        }

        .interactive-form.form-active {
            display: flex;
        }

        .horizontal-input-row {
            display: flex;
            width: 100%;
        }

        .horizontal-input-row input[type="email"] {
            flex: 1;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(237, 233, 230, 0.2);
            color: var(--white);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .horizontal-input-row input[type="email"]:focus {
            border-color: var(--orange);
        }

        .horizontal-input-row button {
            background-color: var(--orange);
            color: var(--black);
            border: none;
            padding: 0 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .horizontal-input-row button:hover {
            background-color: var(--white);
            color: var(--black);
        }

        .action-feedback-notice {
            margin-top: 20px;
            font-size: 0.95rem;
            color: #4CAF50;
            display: none;
            font-weight: 500;
        }

        /* --- COMPONENT: STANDALONE INNER PAGE EDITORIAL HEROES --- */
        .inner-page-editorial-hero {
            position: relative;
            padding: 200px 8% 100px 8%;
            background-color: var(--black);
            border-bottom: 1px solid rgba(237, 233, 230, 0.05);
        }

        .inner-page-editorial-hero h1 {
            font-size: clamp(3rem, 6vw, 6rem);
            margin-bottom: 25px;
        }

        .inner-page-editorial-hero p {
            max-width: 700px;
            font-size: 1.2rem;
        }

        /* --- TIMELINE COMPONENT (ABOUT PAGE) --- */
        .timeline-vertical-flow {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 0;
        }

        .timeline-milestone-node {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }

        .node-year-stamp {
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--orange);
            line-height: 1;
        }

        .node-editorial-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .node-editorial-block img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }

        /* --- FOUR CARD MASONRY GRID (VALUES / SPACES) --- */
        .editorial-four-quad-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .editorial-quad-card {
            background: var(--dark-slate);
            padding: 50px 40px;
            border: 1px solid rgba(237, 233, 230, 0.05);
        }

        .editorial-quad-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* --- TRAINER SHOWCASE GENERATION --- */
        .trainer-portrait-deck {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .trainer-profile-unit img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            margin-bottom: 25px;
        }

        .trainer-profile-unit h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        .trainer-profile-unit span {
            display: block;
            color: var(--orange);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        /* --- GRID/FLEX INTERACTIVE ACCOMPANIMENT SHAPES --- */
        .alternating-rows-container {
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .alternating-editorial-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .alternating-editorial-row:nth-child(even) .row-media-box {
            order: 2;
        }

        .row-media-box img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .row-text-box h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* --- ACCORDION SYSTEM (SERVICES FAQ) --- */
        .accordion-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-node {
            border-bottom: 1px solid rgba(237, 233, 230, 0.1);
        }

        .accordion-trigger {
            width: 100%;
            background: none;
            border: none;
            padding: 30px 0;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .accordion-trigger h4 {
            font-size: 1.25rem;
            color: var(--white);
        }

        .accordion-icon {
            color: var(--orange);
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--transition-curve);
        }

        .accordion-panel div {
            padding-bottom: 30px;
        }

        .accordion-node.active-node .accordion-icon {
            transform: rotate(45deg);
        }

        /* --- CALENDAR BOOKING SYSTEM COMPONENT --- */
        .booking-system-dashboard {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 50px;
        }

        .calendar-mockup-wrapper {
            background: var(--dark-slate);
            padding: 40px;
        }

        .calendar-grid-layout {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-top: 30px;
            text-align: center;
        }

        .calendar-day-header {
            font-weight: 700;
            font-size: 0.8rem;
            opacity: 0.5;
        }

        .calendar-day-slot {
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(237, 233, 230, 0.1);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .calendar-day-slot:hover:not(.empty-slot) {
            background: var(--orange);
            color: var(--black);
            font-weight: 700;
        }

        .calendar-day-slot.slot-selected {
            background: var(--white);
            color: var(--black);
            font-weight: 700;
        }

        .booking-form-panel {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border: 1px solid rgba(237, 233, 230, 0.1);
        }

        .standard-input-element {
            width: 100%;
            padding: 16px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(237, 233, 230, 0.2);
            color: var(--white);
            outline: none;
            margin-bottom: 20px;
        }

        .standard-input-element:focus {
            border-color: var(--orange);
        }

        /* --- PRICING MATRIX TABLES & CONFIGURATIONS --- */
        .pricing-tier-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .pricing-tier-card {
            background: var(--dark-slate);
            padding: 60px 40px;
            border: 1px solid rgba(237, 233, 230, 0.05);
            display: flex;
            flex-direction: column;
        }

        .pricing-tier-card.tier-highlight {
            border-color: var(--orange);
            position: relative;
        }

        .tier-highlight::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px; right: 20px;
            background: var(--orange);
            color: var(--black);
            font-size: 0.7rem;
            font-weight: 800;
            padding: 4px 10px;
            letter-spacing: 0.05em;
        }

        .pricing-tier-card h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .tier-price-point {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 30px;
        }

        .tier-price-point span {
            font-size: 1rem;
            font-weight: 300;
            color: rgba(237, 233, 230, 0.6);
        }

        .tier-features-list {
            list-style: none;
            margin-bottom: 40px;
            flex: 1;
        }

        .tier-features-list li {
            margin-bottom: 15px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tier-features-list li::before {
            content: '—';
            color: var(--orange);
        }

        /* Pricing Comparison Table Architecture */
        .comparison-table-shell {
            width: 100%;
            border-collapse: collapse;
            margin-top: 60px;
            text-align: left;
        }

        .comparison-table-shell th, .comparison-table-shell td {
            padding: 22px;
            border-bottom: 1px solid rgba(237, 233, 230, 0.1);
        }

        .comparison-table-shell th {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        /* --- THE SPLIT LAYOUT SCHEMES (CONTACT MODULE) --- */
        .split-form-layout-engine {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        .split-form-layout-engine img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
        }

        /* --- EDITORIAL HIGHLIGHT MODAL COMPONENT --- */
        .editorial-modal-backdrop {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.96);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px;
            backdrop-filter: blur(20px);
        }

        .editorial-modal-window {
            background-color: var(--dark-slate);
            width: 100%;
            max-width: 650px;
            border: 1px solid rgba(237, 233, 230, 0.1);
            position: relative;
        }

        .modal-graphic-header {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .modal-narrative-frame {
            padding: 45px;
        }

        .modal-narrative-frame h3 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }

        .modal-escape-btn {
            position: absolute;
            top: -55px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2.2rem;
            cursor: pointer;
        }

        /* --- HIGH-CONTRAST LUXURY FOOTER STRUCTURE --- */
        footer {
            background-color: var(--orange);
            color: var(--black);
            padding: 100px 8% 50px 8%;
        }

        .footer-primary-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-identity-lockup h2 {
            font-size: 2.8rem;
            color: var(--black);
            margin-bottom: 12px;
        }

        .footer-identity-lockup p {
            color: var(--black);
            font-weight: 500;
        }

        .footer-columns-wrapper {
            display: flex;
            gap: 100px;
            flex-wrap: wrap;
        }

        .footer-links-column h4 {
            color: var(--black);
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            margin-bottom: 25px;
        }

        .footer-links-column ul {
            list-style: none;
        }

        .footer-links-column ul li {
            margin-bottom: 14px;
        }

        .footer-links-column ul li a {
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: opacity 0.2s ease;
        }

        .footer-links-column ul li a:hover {
            opacity: 0.6;
        }

        .footer-secondary-row {
            border-top: 1px solid rgba(0, 0, 0, 0.15);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-social-channels {
            display: flex;
            gap: 30px;
        }

        .footer-social-channels a {
            color: var(--black);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        .footer-copyright-mark {
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* --- ADAPTIVE SYSTEM MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .gapless-image-wall {
                grid-template-columns: repeat(3, 1fr);
            }
            .split-stories-container, 
            .split-philosophy-block,
            .alternating-editorial-row,
            .booking-system-dashboard,
            .split-form-layout-engine {
                grid-template-columns: 1fr;
            }
            .story-panel {
                height: 65vh;
            }
            .philosophy-media-wrapper {
                min-height: 450px;
                height: 50vh;
            }
            .node-editorial-block {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            header .header-right {
                margin-right: 50px;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 380px;
                height: 100vh;
                background-color: var(--black);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.2rem;
                z-index: 1005;
                transition: right 0.5s var(--transition-curve);
                border-left: 1px solid rgba(237, 233, 230, 0.1);
            }

            nav.mobile-active {
                right: 0;
            }

            .hamburger.open-state span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 5px);
            }

            .hamburger.open-state span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.open-state span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -5px);
            }

            .gapless-image-wall {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-columns-wrapper {
                gap: 50px;
                width: 100%;
                justify-content: space-between;
            }

            .horizontal-input-row {
                flex-direction: column;
                gap: 15px;
            }

            .horizontal-input-row button {
                padding: 20px;
            }

            .parallax-hero {
                background-attachment: scroll; /* Fallback rendering for mobile viewport calculation bugs */
            }
            
            .timeline-milestone-node {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
