        /* --- DESIGN SYSTEM COLOR PALETTE --- */
        :root {
            --coral-orange: #F96E5B;
            --performance-orange: #FF9D23;
            --black: #000000;
            --white: #FFFFFF;
            --soft-grey: #F5F5F5;
            --font-main: 'Barlow', sans-serif;
        }

        /* --- GLOBAL RESET & SYSTEM RULES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY BASELINE --- */
        h1, h2, h3, h4, .massive-heading, .editorial-headline {
            font-weight: 900; /* Barlow Black / ExtraBold */
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.9;
        }

        p, .editorial-body {
            font-family: var(--font-main);
            font-weight: 400; /* Barlow Regular */
            font-size: 16px;
            line-height: 1.6;
        }

        .small-label {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: inherit;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* --- COMPONENT: EDITORIAL STICKY HEADER --- */
        .editorial-header {
            height: 90px;
            background-color: var(--white);
            color: var(--black);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

.logo-area {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo-area img {
    display: block;
    height: 250px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
}
        .nav-wrapper {
            display: flex;
            align-items: center;
        }

        .desktop-navigation {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 30px;
        }

        .desktop-navigation a {
            font-family: var(--font-main);
            font-weight: 500; /* Barlow Medium */
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--black);
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        /* Minimal Underline Hover Element */
        .desktop-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--black);
            transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .desktop-navigation a:hover::after {
            width: 100%;
        }

        /* Dropdown Setup */
        .dropdown-trigger {
            position: relative;
        }

        .dropdown-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--white);
            border: 1px solid var(--soft-grey);
            list-style: none;
            padding: 15px;
            min-width: 180px;
            display: none;
            flex-direction: column;
            gap: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .dropdown-panel a {
            font-size: 12px;
            display: block;
            width: 100%;
        }

        .dropdown-trigger:hover .dropdown-panel {
            display: flex;
        }

        /* Hamburger Control Element */
        .hamburger-button {
            display: none;
            width: 30px;
            height: 18px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger-button span {
            width: 100%;
            height: 3px;
            background-color: var(--black);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        }

        .hamburger-button.opened span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

        .hamburger-button.opened span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-button.opened span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* Mobile Flyout System */
        .mobile-flyout-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10%;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-flyout-drawer.visible {
            transform: translateY(0);
        }

        .mobile-flyout-links {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .mobile-flyout-links a {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--white);
            text-decoration: none;
        }

        .mobile-flyout-links a:hover {
            color: var(--performance-orange);
        }

        /* --- PAGES ARCHITECTURE CONTROLLER --- */
        .editorial-view-pane {
            display: none;
            width: 100%;
        }

        .editorial-view-pane.active-view {
            display: block;
        }

        /* --- HOME PAGE: SPLIT THREE-PANEL HERO --- */
        .hero-three-panels {
            height: calc(100vh - 90px);
            display: flex;
            width: 100%;
            overflow: hidden;
        }

        .panel-left-coral {
            width: 25%;
            background-color: var(--coral-orange);
            color: var(--black);
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .panel-vertical-container {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vertical-massive-title {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 10vh;
            font-weight: 900;
            line-height: 1;
            transform: rotate(180deg);
        }

        .panel-center-performance {
            width: 30%;
            background-color: var(--performance-orange);
            color: var(--black);
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .panel-center-performance h1 {
            font-size: clamp(40px, 5.5vw, 75px);
            line-height: 0.85;
        }

        .panel-quote-text {
            font-size: 22px;
            font-weight: 500;
            line-height: 1.4;
            border-left: 4px solid var(--black);
            padding-left: 15px;
        }

        .panel-right-photography {
            width: 45%;
            position: relative;
        }

        .panel-right-photography img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* --- HOME PAGE: SECTION 2 (ASYMMETRICAL LAYOUT) --- */
        .section-edition {
            background-color: var(--white);
            color: var(--black);
            padding: 120px 50px;
        }

        .edition-intro-block h2 {
            font-size: clamp(36px, 5vw, 64px);
            margin-top: 10px;
            margin-bottom: 80px;
        }

        .asymmetrical-magazine-row {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 40px;
            align-items: flex-start;
        }

        .magazine-story-container {
            display: flex;
            flex-direction: column;
        }

        .magazine-story-container img {
            width: 100%;
            object-fit: cover;
            margin-bottom: 25px;
            background-color: var(--soft-grey);
        }

        /* Asymmetrical structural height variation */
        .magazine-story-container:nth-child(1) img { height: 500px; }
        .magazine-story-container:nth-child(2) img { height: 380px; }
        .magazine-story-container:nth-child(3) img { height: 560px; }

        .magazine-story-container h3 {
            font-size: 26px;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        /* --- HOME PAGE: SECTION 3 (AUTOMOBILE INTEGRATION SPLIT) --- */
        .section-automobile-split {
            background-color: var(--soft-grey);
            display: flex;
            min-height: 90vh;
        }

        .split-image-half {
            width: 50%;
            position: relative;
        }

        .split-image-half img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .split-content-half {
            width: 50%;
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-content-half h2 {
            font-size: 46px;
            margin-bottom: 30px;
        }

        .split-content-half p {
            margin-bottom: 50px;
            color: rgba(0, 0, 0, 0.8);
        }

        .statistics-editorial-grid {
            display: flex;
            gap: 60px;
            border-top: 2px solid var(--black);
            padding-top: 40px;
        }

        .stat-editorial-node h4 {
            font-size: 54px;
            color: var(--coral-orange);
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-editorial-node p {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(0, 0, 0, 0.6);
        }

        /* --- HOME PAGE: SECTION 4 (CAR LONG HORIZONTAL ROWS) --- */
        .section-car-rows {
            background-color: var(--black);
            color: var(--white);
            padding: 120px 50px;
        }

        .section-car-rows h2 {
            font-size: 60px;
            text-align: center;
            margin-bottom: 90px;
        }

        .horizontal-editorial-row {
            display: flex;
            align-items: center;
            gap: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding: 60px 0;
        }

        .horizontal-editorial-row:last-child {
            border-bottom: none;
        }

        .horizontal-editorial-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .row-image-container {
            flex: 1.2;
            height: 350px;
            overflow: hidden;
        }

        .row-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .row-text-container {
            flex: 1;
        }

        .row-text-container h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .row-text-container p {
            color: rgba(255, 255, 255, 0.75);
        }

        /* --- HOME PAGE: SECTION 5 (MOTOR STRIPED GRID) --- */
        .section-motor-grid {
            background-color: var(--performance-orange);
            color: var(--black);
            padding: 120px 50px;
        }

        .two-column-editorial-matrix {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .structured-editorial-block h3 {
            font-size: 42px;
            margin-bottom: 25px;
            line-height: 1;
        }

        .structured-editorial-block p {
            font-size: 17px;
            color: rgba(0, 0, 0, 0.9);
        }

        /* --- HOME PAGE: SECTION 6 (FULL-SCREEN VEHICLE SHOWCASE) --- */
        .fullscreen-showcase-container {
            height: 120vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 100px;
        }

        .fullscreen-background-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .floating-statement-card {
            background-color: var(--white);
            color: var(--black);
            padding: 60px;
            max-width: 650px;
            position: relative;
            z-index: 2;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .floating-statement-card h2 {
            font-size: 40px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        /* --- HOME PAGE: SECTION 7 (JOURNAL MAGAZINE TIMELINE) --- */
        .section-journal-timeline {
            background-color: var(--white);
            padding: 120px 50px;
        }

        .magazine-timeline-horizontal {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            max-width: 1400px;
            margin: 80px auto 0 auto;
            padding-top: 40px;
        }

        /* Connecting thin horizontal line rule */
        .magazine-timeline-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--black);
        }

        .timeline-magazine-node {
            width: 18%;
            position: relative;
        }

        .timeline-magazine-node::before {
            content: '';
            position: absolute;
            top: -45px;
            left: 0;
            width: 12px;
            height: 12px;
            background-color: var(--coral-orange);
        }

        .timeline-year-text {
            font-size: 44px;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1;
        }

        .timeline-heading-text {
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        /* --- HOME PAGE: SECTION 8 (INSIDE THE STUDIO OVER COAL) --- */
        .section-studio-panel {
            background-color: var(--coral-orange);
            color: var(--black);
            padding: 120px 50px;
            display: flex;
            gap: 100px;
        }

        .studio-massive-typography {
            width: 40%;
            font-size: clamp(50px, 7vw, 95px);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.85;
            letter-spacing: -0.05em;
        }

        .studio-longform-block {
            width: 60%;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .studio-longform-block p {
            font-size: 18px;
            color: rgba(0, 0, 0, 0.9);
        }

        /* --- INTERNAL SUBPAGES LAYOUT CORE UNIFORMITY --- */
        .internal-hero-header {
            padding: 140px 50px 60px 50px;
            background-color: var(--soft-grey);
            border-bottom: 2px solid var(--black);
        }

        .internal-hero-header h1 {
            font-size: clamp(44px, 7vw, 88px);
            line-height: 0.9;
        }

        .internal-longform-wrapper {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .internal-editorial-layout {
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .block-split-asymmetric {
            display: flex;
            gap: 80px;
            align-items: flex-start;
        }

        .block-split-asymmetric:nth-child(even) {
            flex-direction: row-reverse;
        }

        .text-column-editorial {
            flex: 1;
        }

        .text-column-editorial h2 {
            font-size: 40px;
            margin-bottom: 25px;
            line-height: 1.05;
        }

        .text-column-editorial p {
            font-size: 17px;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 20px;
        }

        .visual-column-editorial {
            flex: 1.3;
            height: 500px;
            overflow: hidden;
        }

        .visual-column-editorial img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- CONTACT PAGE SPLIT MODULE --- */
        .contact-split-container {
            display: flex;
            min-height: 85vh;
        }

        .contact-left-statement {
            width: 50%;
            background-color: var(--black);
            color: var(--white);
            padding: 100px 80px;
            display: flex;
            align-items: center;
        }

        .contact-left-statement h2 {
            font-size: clamp(38px, 4.5vw, 68px);
            line-height: 1;
            color: var(--white);
        }

        .contact-right-formfield {
            width: 50%;
            padding: 100px 80px;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .architectural-form {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .input-editorial-group {
            display: flex;
            flex-direction: column;
        }

        .input-editorial-group label {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 12px;
        }

        .input-editorial-group input, .input-editorial-group textarea {
            border: none;
            border-bottom: 2px solid var(--black);
            padding: 12px 0;
            font-family: var(--font-main);
            font-size: 16px;
            outline: none;
            background-color: transparent;
            transition: border-color 0.3s ease;
        }

        .input-editorial-group input:focus, .input-editorial-group textarea:focus {
            border-bottom-color: var(--coral-orange);
        }

        .submit-editorial-btn {
            background-color: var(--black);
            color: var(--white);
            border: none;
            padding: 22px 45px;
            font-family: var(--font-main);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 13px;
            cursor: pointer;
            align-self: flex-start;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .submit-editorial-btn:hover {
            background-color: var(--performance-orange);
            color: var(--black);
        }

        /* --- SYSTEMIC LEGAL DIRECTIVES OVER WHITE --- */
        .legal-frame-container {
            padding: 140px 50px;
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-frame-container h1 {
            font-size: 56px;
            margin-bottom: 50px;
        }

        .legal-frame-container h2 {
            font-size: 24px;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .legal-frame-container p {
            font-size: 16px;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 20px;
        }

        /* --- COMPONENT: FOOTER ARTIFACT --- */
        .editorial-footer {
            background-color: var(--black);
            color: var(--white);
            padding: 100px 50px 40px 50px;
        }

        .footer-primary-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 70px;
            margin-bottom: 40px;
        }

        .footer-brand-column h3 {
            font-size: 32px;
            letter-spacing: -0.04em;
            margin-bottom: 25px;
        }

        .footer-link-column h4 {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 25px;
        }

        .footer-link-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link-column ul li a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .footer-link-column ul li a:hover {
            color: var(--coral-orange);
        }

        .newsletter-input-container {
            display: flex;
            border-bottom: 2px solid rgba(255, 255, 255, 0.25);
            padding-bottom: 8px;
            margin-bottom: 15px;
        }

        .newsletter-input-container input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 14px;
            flex: 1;
        }

        .newsletter-action-label {
            background: transparent;
            border: none;
            color: var(--white);
            font-weight: 800;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
        }

        .footer-bottom-statement-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .footer-bottom-statement-row .bold-motto {
            font-weight: 900;
            color: var(--white);
        }

        /* --- RESPONSIVE STRUCTURAL MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .hero-three-panels {
                flex-direction: column;
                height: auto;
            }
            .panel-left-coral, .panel-center-performance, .panel-right-photography {
                width: 100%;
                height: auto;
                padding: 60px 30px;
            }
            .vertical-massive-title {
                writing-mode: horizontal-tb;
                transform: rotate(0);
                font-size: 50px;
                margin: 20px 0;
            }
            .asymmetrical-magazine-row {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .magazine-story-container img, .magazine-story-container:nth-child(2) img, .magazine-story-container:nth-child(3) img {
                height: 400px;
            }
            .section-automobile-split {
                flex-direction: column;
            }
            .split-image-half, .split-content-half {
                width: 100%;
                padding: 60px 30px;
            }
            .split-image-half {
                height: 400px;
            }
            .horizontal-editorial-row {
                flex-direction: column !important;
                gap: 30px;
            }
            .row-image-container {
                width: 100%;
                height: 300px;
            }
            .two-column-editorial-matrix {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .fullscreen-showcase-container {
                padding: 40px 20px;
                height: 100vh;
            }
            .floating-statement-card {
                padding: 40px 25px;
            }
            .magazine-timeline-horizontal {
                flex-direction: column;
                gap: 50px;
                padding-top: 0;
            }
            .magazine-timeline-horizontal::before {
                display: none;
            }
            .timeline-magazine-node {
                width: 100%;
                padding-left: 25px;
                border-left: 2px solid var(--black);
            }
            .timeline-magazine-node::before {
                left: -7px;
                top: 15px;
            }
            .section-studio-panel {
                flex-direction: column;
                gap: 40px;
                padding: 80px 30px;
            }
            .studio-massive-typography, .studio-longform-block {
                width: 100%;
            }
            .block-split-asymmetric {
                flex-direction: column !important;
                gap: 40px;
            }
            .visual-column-editorial {
                width: 100%;
                height: 350px;
            }
            .contact-split-container {
                flex-direction: column;
            }
            .contact-left-statement, .contact-right-formfield {
                width: 100%;
                padding: 80px 30px;
            }
            .footer-primary-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .desktop-navigation {
                display: none;
            }
            .hamburger-button {
                display: flex;
            }
        }

        @media (max-width: 600px) {
            .footer-primary-grid {
                grid-template-columns: 1fr;
            }
            .editorial-header {
                padding: 0 20px;
            }
            .section-edition, .section-car-rows, .section-motor-grid, .section-journal-timeline, .internal-hero-header, .internal-longform-wrapper, .legal-frame-container, .editorial-footer {
                padding: 80px 20px;
            }
        }
        .newsletter-link{
    font-size:11px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.4);
    text-decoration:none;
    cursor:pointer;
    transition:.3s;
}

.newsletter-link:hover{
    color:#fff;
}
