        :root {
            --deep-red: #D0311E;
            --black: #000000;
            --orange: #FE7F2D;
            --gold: #FFBF00;
            --white: #cdc4c4;
            --editorial-gray: #fbfba7;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: "Lexend", sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Smooth Scroll Custom System */
        html {
            scroll-behavior: smooth;
        }

        /* --- MAGAZINE HEADER PLATFORM --- */
        header.magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            z-index: 2000;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px 40px;
        }

        .header-layer-01 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding-bottom: 15px;
            transition: all 0.4s ease;
        }
        .header-layer-01 .red-marker { color: var(--deep-red); }

        .header-layer-02 {
            text-align: center;
            height: 100px;
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        .header-layer-02 h1 {
            font-weight: 900;
            font-size: 42px;
            line-height: 0.9;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .header-layer-02 h1 span { display: block; }

        .header-layer-03 {
            border-top: 1px solid var(--black);
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a, .nav-action-trigger {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            position: relative;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--deep-red);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-action-trigger {
            color: var(--deep-red);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Shrunk State when Scrolled */
        header.magazine-header.scrolled {
            padding: 12px 40px;
        }
        header.magazine-header.scrolled .header-layer-01,
        header.magazine-header.scrolled .header-layer-03 {
            display: none !important;
        }
        header.magazine-header.scrolled .header-layer-02 {
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        header.magazine-header.scrolled .header-layer-02 h1 {
            flex-direction: row;
            font-size: 16px;
            margin-top: 5rem;
            letter-spacing: 0.05em;
            gap: 4px;
        }
        header.magazine-header.scrolled .header-layer-02::after {
            content: 'JOURNAL';
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            margin-left: auto;
            margin-right: 40px;
        }
        header.magazine-header.scrolled .header-layer-02::before {
            content: 'PLAN A TRIP →';
            font-size: 12px;
            font-weight: 700;
            color: var(--deep-red);
            order: 3;
            cursor: pointer;
        }

        /* Hamburger Management Overlay System */
        .editorial-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 3000;
        }
        .editorial-menu-bar {
            width: 24px;
            height: 2px;
            background-color: var(--black);
            transition: 0.3s;
        }

        /* --- PAGE INFRASTRUCTURE --- */
        .editorial-page {
            display: none;
            padding-top: 180px;
        }
        .editorial-page.active-page {
            display: block;
        }

        /* --- UNIVERSAL EDITORIAL LAYOUT COMPONENTS --- */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            background: var(--black);
            color: var(--white);
            padding: 15px 0;
            margin: 40px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 4vw;
            letter-spacing: 0.05em;
        }
        @keyframes marquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- HOMEPAGE SPECIFIC SECTIONS --- */
        /* Chapter 00: The Cover Hero */
        .magazine-cover-hero {
            min-height: calc(100vh - 180px);
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            padding: 0 40px 60px 40px;
            gap: 60px;
            align-items: center;
            background: var(--white);
        }
        .cover-image-frame {
            position: relative;
            width: 90%;
            height: 105vh;
            margin-top: 1rem;
            overflow: hidden;
            box-shadow: 30px 30px 0px var(--editorial-gray);
            transition: transform 0.8s ease;
        }
        .cover-image-frame img {
            width: 100%;
            height: 100%;
            transform: scale(1.05);
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .cover-image-frame:hover img {
            transform: scale(1.12);
        }
        .cover-typography {
            display: flex;

            flex-direction: column;
            justify-content: center;
        }
        .cover-typography h2 {
            font-size: 7.5vw;
            font-weight: 900;
            line-height: 0.85;
            margin-top: 2rem;
            text-transform: uppercase;
            letter-spacing: -0.05em;
            margin-bottom: 40px;
        }
        .cover-typography h2 span.accent-red {
            color: var(--deep-red);
            display: block;
        }
        .cover-meta-block {
            margin-top: auto;
            border-top: 2px solid var(--black);
            padding-top: 30px;
        }
        .cover-desc {
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .cover-issue-badge {
            font-size: 12px;
            font-weight: 700;
            color: var(--deep-red);
        }

        /* Chapter 01: The Reason To Leave */
        .chapter-reason {
            padding: 120px 40px;
            background: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }
        .chapter-label-red {
            color: var(--deep-red);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 30px;
            display: block;
        }
        .giant-editorial-statement {
            font-size: 5vw;
            font-weight: 900;
            line-height: 1.05;
            text-transform: uppercase;
            margin-bottom: 60px;
            letter-spacing: -0.03em;
        }
        .two-column-editorial {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 100px;
        }
        .editorial-lead-para {
            font-size: 24px;
            font-weight: 400;
            line-height: 1.7;
            color: #222;
        }
        .travel-notes-stack {
            display: flex;
            flex-direction: column;
            gap: 40px;
            border-left: 2px solid var(--orange);
            padding-left: 30px;
        }
        .note-item h4 {
            font-size: 11px;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .note-item p {
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Chapter 02: Destinations Panel Archive */
        .chapter-destinations {
            background: var(--black);
            color: var(--white);
            padding: 120px 0;
            overflow: hidden;
        }
        .horizontal-magazine-strip {
            display: flex;
            gap: 40px;
            padding: 0 40px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .horizontal-magazine-strip::-webkit-scrollbar { display: none; }
        .destination-panel {
            min-width: 45vw;
            scroll-snap-align: start;
            position: relative;
            cursor: pointer;
        }
        .panel-image-container {
            width: 100%;
            height: 60vh;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.5s ease;
        }
        .panel-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .destination-panel:hover .panel-image-container img {
            transform: scale(1.08);
        }
        .destination-panel:hover .panel-image-container {
            border-color: var(--deep-red);
            box-shadow: 0px 0px 20px rgba(208, 49, 30, 0.3);
        }
        .panel-meta {
            margin-top: 20px;
        }
        .panel-num {
            font-size: 14px;
            color: var(--deep-red);
            font-weight: 700;
            margin-bottom: 5px;
        }
        .panel-title {
            font-size: 36px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .panel-phrase {
            font-size: 14px;
            font-weight: 300;
            color: #aaa;
            text-transform: uppercase;
            max-width: 80%;
        }

        /* Chapter 03: The Flight Discovery System */
        .chapter-flight-tool {
            background: var(--orange);
            color: var(--black);
            padding: 120px 40px;
        }
        .conceptual-flight-layout {
            max-width: 1200px;
            margin: 0 auto;
        }
        .conceptual-flight-layout h2 {
            font-size: 5vw;
            font-weight: 900;
            line-height: 0.95;
            text-transform: uppercase;
            margin-bottom: 60px;
        }
        .editorial-flight-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            border-top: 2px solid var(--black);
            border-bottom: 2px solid var(--black);
            padding: 60px 0;
        }
        .form-field-group {
            display: flex;
            flex-direction: column;
        }
        .form-field-group label {
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .form-field-group input {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(0,0,0,0.3);
            font-family: "Lexend", sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--black);
            padding: 10px 0;
            text-transform: uppercase;
            outline: none;
        }
        .form-field-group input::placeholder { color: rgba(0,0,0,0.25); }
        .flight-submit-container {
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .flight-submit-btn {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 20px 50px;
            font-family: "Lexend", sans-serif;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .flight-submit-btn:hover {
            background: var(--deep-red);
        }
        .flight-editorial-footnote {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Chapter 04: The Route Diagram Narrative */
        .chapter-route {
            background: var(--black);
            color: var(--white);
            padding: 120px 40px;
            position: relative;
        }
        .route-visual-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        .route-line-backbone {
            position: absolute;
            left: 25px;
            top: 0;
            width: 2px;
            height: 100%;
            background: rgba(255,255,255,0.1);
        }
        .route-node-story {
            position: relative;
            padding-left: 80px;
            margin-bottom: 80px;
            cursor: pointer;
        }
        .route-marker-dot {
            position: absolute;
            left: 16px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 4px solid var(--black);
            transition: all 0.3s ease;
        }
        .dot-red { background: var(--deep-red); }
        .dot-orange { background: var(--orange); }
        .dot-gold { background: var(--gold); }
        
        .route-node-story:hover .route-marker-dot {
            transform: scale(1.3);
            box-shadow: 0 0 15px currentColor;
        }
        .route-node-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .route-node-title {
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .route-node-blurb {
            font-size: 15px;
            color: #ccc;
            max-width: 600px;
            display: none;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Chapter 05: The Long Read Section */
        .chapter-long-read {
            padding: 140px 40px;
            background: var(--white);
        }
        .long-read-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }
        .long-read-visual img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
        }
        .long-read-content h2 {
            font-size: 4.5vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 40px;
        }
        .long-read-text-flow p {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #333;
        }
        .magazine-pull-quote {
            border-top: 3px solid var(--deep-red);
            border-bottom: 3px solid var(--deep-red);
            padding: 30px 0;
            margin: 40px 0;
            font-size: 32px;
            font-weight: 900;
            color: var(--deep-red);
            text-transform: uppercase;
            line-height: 1.1;
        }

        /* Chapter 06: Visual Story Itinerary */
        .chapter-itinerary-story {
            background: var(--editorial-gray);
            padding: 120px 40px;
        }
        .itinerary-container-axis {
            max-width: 1200px;
            margin: 0 auto;
        }
        .itinerary-item-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 120px;
            align-items: center;
        }
        .itinerary-item-row:nth-child(even) {
            direction: rtl;
        }
        .itinerary-item-row:nth-child(even) .itinerary-text-box {
            direction: ltr;
        }
        .itinerary-img-box {
            height: 50vh;
            overflow: hidden;
        }
        .itinerary-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .itinerary-text-box {
            padding: 20px;
        }
        .itinerary-day-tag {
            font-size: 36px;
            font-weight: 900;
            color: var(--deep-red);
            margin-bottom: 10px;
        }
        .itinerary-action-heading {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .itinerary-location-meta {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 15px;
        }
        .itinerary-note-pill {
            display: inline-block;
            background: var(--orange);
            color: var(--black);
            font-size: 11px;
            font-weight: 700;
            padding: 6px 12px;
            text-transform: uppercase;
            margin-top: 15px;
        }

        /* Chapter 07: Travel Objects Archive */
        .chapter-objects {
            background: var(--gold);
            color: var(--black);
            padding: 120px 40px;
        }
        .objects-layout-shell {
            max-width: 1200px;
            margin: 0 auto;
        }
        .objects-layout-shell h2 {
            font-size: 6vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.9;
            margin-bottom: 60px;
        }
        .objects-grid-system {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .object-card-asset {
            background: rgba(255,255,255,0.15);
            padding: 40px 30px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }
        .object-card-asset:hover {
            background: var(--white);
            transform: translateY(-5px);
        }
        .object-card-name {
            font-size: 22px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .object-card-story {
            font-size: 14px;
            font-weight: 400;
            color: #333;
        }

        /* Chapter 08: The Journal Archive Complex Grid */
        .chapter-journal-grid {
            padding: 120px 40px;
            background: var(--white);
        }
        .journal-complex-grid-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        .journal-feature-block {
            border-right: 1px solid rgba(0,0,0,0.1);
            padding-right: 40px;
        }
        .journal-feature-img {
            width: 100%;
            height: 60vh;
            object-fit: cover;
            margin-bottom: 25px;
        }
        .journal-feature-title {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .journal-secondary-stack {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .secondary-story-row {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding-bottom: 30px;
        }
        .secondary-story-row h4 {
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .secondary-story-row h4:hover { color: var(--deep-red); }

        /* Chapter 09: Emotional Trip Planner Engine */
        .chapter-trip-planner {
            background: var(--editorial-gray);
            padding: 120px 40px;
        }
        .planner-engine-box {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px;
            box-shadow: 20px 20px 0px var(--black);
        }
        .planner-engine-box h2 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        .planner-step-section {
            margin-bottom: 40px;
        }
        .planner-step-lbl {
            font-size: 11px;
            font-weight: 900;
            color: var(--deep-red);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .planner-options-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .planner-opt-btn {
            background: var(--white);
            border: 2px solid var(--black);
            padding: 12px 24px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .planner-opt-btn.selected-option, .planner-opt-btn:hover {
            background: var(--black);
            color: var(--white);
        }
        .dynamic-recommendation-output {
            margin-top: 50px;
            border-top: 2px dashed rgba(0,0,0,0.2);
            padding-top: 40px;
            display: none;
        }
        .dynamic-output-label {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }
        .dynamic-destination-result {
            font-size: 32px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--deep-red);
        }

        /* Chapter 10: The Last Page Back Cover */
        .chapter-back-cover {
            height: 90vh;
            position: relative;
            background-size: cover;
            background-position: center;
            background-image: url('https://i.pinimg.com/1200x/5a/3c/18/5a3c183cced39223b8afa7d7e56c52ce.jpg');
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
        }
        .chapter-back-cover::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4);
        }
        .back-cover-payload {
            position: relative;
            z-index: 10;
            color: var(--white);
        }
        .back-cover-payload h2 {
            font-size: 5vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 30px;
        }
        .back-cover-payload p {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        .back-cover-trigger-btn {
            background: var(--deep-red);
            color: var(--white);
            border: none;
            padding: 20px 40px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: background 0.3s;
        }
        .back-cover-trigger-btn:hover { background: var(--white); color: var(--black); }

        /* --- DESTINATIONS PAGE SYSTEM --- */
        .destinations-hero {
            padding: 80px 40px;
            background: var(--white);
        }
        .destinations-hero h1 {
            font-size: 7vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.9;
        }
        .feeling-categorization-section {
            padding: 60px 40px;
        }
        .feeling-block-row {
            margin-bottom: 100px;
        }
        .feeling-header-title {
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            border-bottom: 2px solid var(--black);
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--deep-red);
        }
        .destination-deep-dive-card {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            margin-bottom: 60px;
            background: var(--editorial-gray);
            padding: 40px;
        }
        .dive-card-visual img {
            width: 100%;
            height: 50vh;
            object-fit: cover;
        }
        .dive-card-content h3 {
            font-size: 36px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .dive-card-story {
            font-size: 16px;
            margin-bottom: 25px;
            color: #333;
        }
        .dive-meta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            font-size: 13px;
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 20px;
        }
        .dive-meta-item strong { text-transform: uppercase; display: block; margin-bottom: 2px; }

        /* --- FLIGHTS PAGE SYSTEM --- */
        .flights-editorial-hero {
            background: var(--black);
            color: var(--white);
            padding: 100px 40px;
            text-align: center;
        }
        .flights-editorial-hero h1 {
            font-size: 6vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
        }
        .flights-showcase-section {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .flight-story-strip {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.15);
            padding: 40px 0;
        }
        .flight-route-typo {
            font-size: 32px;
            font-weight: 900;
            text-transform: uppercase;
        }
        .flight-route-duration {
            font-size: 16px;
            font-weight: 700;
            color: var(--orange);
        }
        .flight-route-meta {
            font-size: 14px;
            text-transform: uppercase;
            color: #555;
            text-align: right;
        }

        /* --- ITINERARIES PAGE SYSTEM --- */
        .itineraries-editorial-feed {
            padding: 80px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .itinerary-magazine-spread {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            border-bottom: 2px solid var(--black);
            padding-bottom: 80px;
            margin-bottom: 80px;
        }
        .spread-left-side h2 {
            font-size: 48px;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.05;
            margin-bottom: 30px;
        }
        .spread-metrics-box {
            background: var(--gold);
            padding: 30px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .spread-metrics-box ul { list-style: none; }
        .spread-metrics-box ul li { margin-bottom: 10px; font-size: 18px; }
        .spread-right-side img {
            width: 100%;
            height: 65vh;
            object-fit: cover;
        }
        .spread-day-breakdown-mini {
            margin-top: 30px;
        }
        .mini-day-step {
            margin-bottom: 20px;
            border-left: 3px solid var(--deep-red);
            padding-left: 15px;
        }
        .mini-day-step strong { display: block; text-transform: uppercase; }

        /* --- JOURNAL ARCHIVE PAGE --- */
        .journal-filter-strip {
            display: flex;
            gap: 20px;
            padding: 20px 40px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            background: var(--editorial-gray);
            overflow-x: auto;
        }
        .filter-tag-btn {
            background: none;
            border: 1px solid var(--black);
            padding: 8px 20px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            cursor: pointer;
            white-space: nowrap;
        }
        .filter-tag-btn.active-filter {
            background: var(--black);
            color: var(--white);
        }
        .journal-masonry-feed {
            padding: 60px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        .journal-card-item {
            border: 1px solid rgba(0,0,0,0.06);
            background: var(--white);
        }
        .journal-card-img {
            width: 100%;
            height: 40vh;
            object-fit: cover;
        }
        .journal-card-body {
            padding: 25px;
        }
        .journal-card-cat {
            font-size: 11px;
            font-weight: 900;
            color: var(--deep-red);
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .journal-card-title {
            font-size: 22px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        /* --- ABOUT PAGE CONTENT --- */
        .about-editorial-manifesto {
            max-width: 900px;
            margin: 0 auto;
            padding: 100px 40px;
        }
        .about-manifesto-heading {
            font-size: 5vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 60px;
        }
        .manifesto-body-block p {
            font-size: 22px;
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }
        .manifesto-core-values {
            margin-top: 60px;
            border-top: 2px solid var(--black);
            padding-top: 40px;
        }
        .value-statement-item {
            margin-bottom: 40px;
        }
        .value-statement-item h3 {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: var(--deep-red);
        }

        /* --- CONTACT PAGE FORM SYSTEM --- */
        .contact-editorial-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 100px 40px;
        }
        .contact-editorial-container h1 {
            font-size: 5vw;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 60px;
        }
        .editorial-contact-form-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .editorial-input-group {
            display: flex;
            flex-direction: column;
        }
        .editorial-input-group label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 0.1em;
        }
        .editorial-input-group input, .editorial-input-group textarea {
            border: none;
            border-bottom: 2px solid var(--black);
            padding: 15px 0;
            font-family: "Lexend", sans-serif;
            font-size: 18px;
            outline: none;
            background: transparent;
        }
        .editorial-submit-btn-action {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 20px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 20px;
        }
        .editorial-submit-btn-action:hover { background: var(--deep-red); }

        /* --- PRIVACY & TERMS PAGE --- */
        .legal-editorial-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 100px 40px;
        }
        .legal-editorial-container h1 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 40px;
            border-bottom: 4px solid var(--deep-red);
            padding-bottom: 15px;
        }
        .legal-text-block h2 {
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 40px;
            margin-bottom: 15px;
        }
        .legal-text-block p {
            margin-bottom: 20px;
            color: #333;
            font-weight: 400;
        }

        /* --- UNSUBSCRIBE SYSTEM INTERACTION --- */
        .unsubscribe-card-frame {
            max-width: 500px;
            margin: 100px auto;
            padding: 40px;
            background: var(--editorial-gray);
            border: 2px solid var(--black);
            text-align: center;
        }
        .unsubscribe-card-frame h2 {
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .unsub-btn-confirm {
            background: var(--deep-red);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 20px;
            width: 100%;
        }

        /* --- EXTERNAL SUBSCRIPTION MODULE MODAL OVERLAY --- */
        .subscribe-modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .subscribe-modal-overlay.modal-open {
            display: flex;
        }
        .subscribe-inner-modal-content {
            background: var(--white);
            padding: 40px;
            max-width: 600px;
            width: 100%;
            position: relative;
            border: 4px solid var(--deep-red);
        }
        .close-modal-trigger {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            font-weight: 900;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* --- GIANT EDITORIAL FOOTER ENGINE --- */
        footer.giant-magazine-footer {
            background: var(--black);
            color: var(--white);
            padding: 100px 40px 40px 40px;
            margin-top: 120px;
        }
        .footer-brand-title-block h2 {
            font-size: 8vw;
            font-weight: 900;
            line-height: 0.85;
            text-transform: uppercase;
            letter-spacing: -0.04em;
        }
        .footer-brand-statement {
            font-size: 4vw;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--deep-red);
            margin-bottom: 60px;
        }
        .footer-columns-structure {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) 1.5fr;
            gap: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 60px;
            margin-bottom: 60px;
        }
        .footer-col-nav h4 {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 20px;
        }
        .footer-col-nav ul { list-style: none; }
        .footer-col-nav ul li { margin-bottom: 12px; }
        .footer-col-nav ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
        }
        .footer-col-nav ul li a:hover { color: var(--white); }
        
        .footer-newsletter-block h4 {
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .footer-newsletter-block p {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 25px;
        }
        .footer-newsletter-trigger-btn {
            background: var(--deep-red);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            font-family: "Lexend", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
        }
        .footer-newsletter-trigger-btn:hover { background: var(--orange); }

        .footer-copyright-bar {
            background: var(--white);
            color: var(--black);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-copyright-links {
            display: flex;
            gap: 20px;
        }
        .footer-copyright-links a {
            color: var(--black);
            text-decoration: none;
            cursor: pointer;
        }

        /* --- RESPONSIVE MANAGEMENT INFRASTRUCTURE --- */
        @media (max-width: 1024px) {
            .magazine-cover-hero, .two-column-editorial, .long-read-grid, .destination-deep-dive-card, .itinerary-magazine-spread {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .cover-image-frame { width: 100%; height: 50vh; }
            .editorial-flight-form { grid-template-columns: 1fr; }
            .header-layer-02 h1 { font-size: 28px; }
            .nav-links { display: none; }
            .editorial-menu-btn { display: flex; }
            header.magazine-header.scrolled .header-layer-02::after { display: none; }
        }

        /* Menu state for mobile hamburger interaction */
        .magazine-header.menu-open .nav-links {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%; left: 0; width: 100%;
            background: var(--white);
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            gap: 20px;
        }
