        /* --- CORE BRAND PALETTE & VARIABLE SYSTEM --- */
        :root {
            --primary-blue: #112E81;
            --ocean-blue: #4274D9;
            --seafoam: #C1EBE9;
            --deep-navy: #0B1F5A;
            --light-mist: #F5FCFC;
            --text-dark: #0B1F5A;
            --font-display: 'Anton', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition-editorial: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            --transition-fast: all 0.3s ease;
        }

        /* --- GLOBAL RESET & STRUCTURE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--light-mist);
            color: var(--text-dark);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }

        .editorial-container {
            padding: 120px 6%;
            position: relative;
        }

        /* --- TYPOGRAPHY SPECIFICATIONS --- */
        h1, h2, h3, h4, .display-font {
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 0.95;
        }

        h2.section-heading {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 60px;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: 300;
            color: rgba(11, 31, 90, 0.85);
        }

        .label-caps {
            font-family: var(--font-display);
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            color: var(--ocean-blue);
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .btn-action {
            display: inline-block;
            padding: 1.2rem 3rem;
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            background-color: var(--primary-blue);
            color: var(--seafoam);
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition-fast);
        }

        .btn-action:hover {
            background-color: var(--ocean-blue);
            color: var(--light-mist);
        }

        .blue-divider {
            width: 100%;
            height: 1px;
            background-color: rgba(17, 46, 129, 0.2);
            margin: 40px 0;
        }

        /* --- APP PAGE ROUTER LAYER VIEW MANAGMENT --- */
        .magazine-view {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .magazine-view.active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MINIMALIST STICKY PLACARD HEADER --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            padding: 25px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition-fast);
        }

        header.scrolled {
            background-color: var(--seafoam);
            padding: 15px 6%;
            box-shadow: 0 10px 30px rgba(11, 31, 90, 0.05);
        }

        .nav-group {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-group a {
            font-family: var(--font-display);
            font-size: 1.3rem;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--primary-blue);
            position: relative;
            padding: 5px 0;
            cursor: pointer;
        }

        .nav-group a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 2px;
            background-color: var(--primary-blue);
            transition: var(--transition-fast);
        }

        .nav-group a:hover::after,
        .nav-group li.active-nav a::after {
            width: 100%;
        }

        .logo-branding {
            font-family: var(--font-display);
            font-size: 2.2rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            
        }

        .hamburger-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-blue);
            cursor: pointer;
            z-index: 2001;
        }

        /* --- HERO: SPLIT WAVE EDITORIAL LAYOUT --- */
        .hero-diagonal-split {
            height: 100vh;
            width: 100%;
            display: flex;
            position: relative;
            overflow: hidden;
            background-color: var(--seafoam);
        }

        .hero-left-pane {
            width: 50%;
            position: relative;
            overflow: hidden;
        }

        .hero-left-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.05);
            animation: gentleWaveSwim 20s ease-in-out infinite alternate;
        }

        @keyframes gentleWaveSwim {
            0% { transform: scale(1.02) translateY(0); }
            100% { transform: scale(1.08) translateY(-10px); }
        }

        .hero-right-pane {
            width: 50%;
            background-color: var(--seafoam);
            padding: 10% 6%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .hero-editorial-heading {
            font-size: 7rem;
            color: var(--primary-blue);
            line-height: 0.85;
            margin-bottom: 30px;
        }

        .hero-editorial-para {
            max-width: 420px;
            margin-bottom: 40px;
        }

        .scroll-indicator-vertical {
            position: absolute;
            bottom: 40px; right: 40px;
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--primary-blue);
            writing-mode: vertical-rl;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            animation: bounceVertical 2s infinite;
        }

        @keyframes bounceVertical {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        /* --- SECTION 2: FLOATING FEATURED WATER SPORTS --- */
        .sports-asymmetric-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 60px;
        }

        .sports-floating-mosaic {
            position: relative;
            height: 700px;
        }

        .mosaic-panel-item {
            position: absolute;
            background-color: var(--primary-blue);
            overflow: hidden;
            transition: var(--transition-editorial);
            cursor: pointer;
        }

        .mosaic-panel-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: var(--transition-editorial);
            opacity: 0.85;
        }

        .mosaic-panel-item:hover img {
            transform: scale(1.1);
            opacity: 1;
        }

        .mosaic-panel-title {
            position: absolute;
            bottom: 20px; left: 20px;
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--light-mist);
            z-index: 10;
        }

        .mosaic-hover-desc {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(11, 31, 90, 0.95);
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-fast);
            z-index: 20;
            color: var(--seafoam);
            text-align: center;
        }

        .mosaic-panel-item:hover .mosaic-hover-desc {
            opacity: 1;
        }

        /* Coordinates mapping out dynamic heights as requested */
        .p1 { top: 0; left: 0; width: 45%; height: 280px; }
        .p2 { top: 40px; left: 52%; width: 43%; height: 220px; }
        .p3 { top: 310px; left: 0; width: 48%; height: 200px; }
        .p4 { top: 290px; left: 52%; width: 45%; height: 360px; }
        .p5 { top: 530px; left: 0; width: 48%; height: 150px; }
        .p6 { top: 670px; left: 52%; width: 45%; height: 180px; }

        /* --- SECTION 3: CURATED DESTINATION WALL --- */
        .destination-parallax-wall {
            background: linear-gradient(rgba(11,31,90,0.4), rgba(11,31,90,0.4)), url('https://i.pinimg.com/1200x/a8/36/66/a836661ffd63529b1e41b29c5536f3d9.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 4%;
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .editorial-overlapping-frame {
            background-color: var(--light-mist);
            padding: 20px;
            width: 320px;
            box-shadow: 0 30px 60px rgba(11,31,90,0.15);
            transform: translateY(0px);
            transition: var(--transition-editorial);
        }

        .editorial-overlapping-frame:nth-child(2) { transform: translateY(-40px); }
        .editorial-overlapping-frame:nth-child(3) { transform: translateY(20px); }

        .editorial-overlapping-frame:hover {
            transform: scale(1.05) translateY(-10px) !important;
            z-index: 50;
        }

        .frame-img-box {
            width: 100%;
            height: 240px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .frame-img-box img { width: 100%; height: 100%; object-fit: cover; }
        .frame-country { font-family: var(--font-display); font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 8px; }

        /* --- SECTION 4: ADVENTURE STORY STRIPS --- */
        .story-strips-stack {
            background-color: var(--seafoam);
            padding: 100px 6%;
        }

        .editorial-story-strip {
            display: grid;
            grid-template-columns: 0.5fr 1.5fr 2fr 2fr;
            gap: 40px;
            align-items: center;
            padding: 40px 0;
        }

        .strip-num { font-family: var(--font-display); font-size: 4rem; color: rgba(17, 46, 129, 0.3); }
        .strip-title { font-size: 2.2rem; color: var(--primary-blue); }
        .strip-landscape-img { width: 100%; height: 180px; object-fit: cover; }
        
        .story-strip-reverse {
            direction: rtl;
        }
        .story-strip-reverse * { direction: ltr; }

        /* --- SECTION 5: FULL IMAGE STATEMENT BLOCK --- */
        .full-viewport-statement-banner {
            height: 70vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .full-viewport-statement-banner img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
            z-index: 1;
            transform: scale(1.02);
            animation: zoomParallax 15s infinite alternate ease-in-out;
        }

        @keyframes zoomParallax {
            0% { transform: scale(1.01); }
            100% { transform: scale(1.07); }
        }

        .statement-quote-overlay {
            position: relative;
            z-index: 2;
            font-family: var(--font-display);
            font-size: 5rem;
            color: var(--seafoam);
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            line-height: 1;
            text-shadow: 0 10px 40px rgba(11, 31, 90, 0.4);
        }

        /* --- SECTION 6: EQUIPMENT EDIT --- */
        .equipment-editorial-showcase {
            background-color: var(--ocean-blue);
            color: var(--light-mist);
        }

        .equipment-vertical-stack {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 60px;
        }

        .equipment-row-item {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .equipment-large-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            box-shadow: 0 30px 50px rgba(11, 31, 90, 0.2);
        }

        .equipment-details-pane h3 { font-size: 3rem; margin-bottom: 25px; color: var(--seafoam); }
        .equipment-details-pane p { color: rgba(245, 252, 252, 0.9); font-size: 1.2rem; margin-bottom: 20px; }

        /* --- SECTION 7: CONTINUOUS MOVING PHOTO STRIP --- */
        .moving-photo-strip-container {
            background-color: var(--light-mist);
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        .ticker-tape-track {
            display: flex;
            width: max-content;
            gap: 30px;
            animation: loopTrack 35s linear infinite;
        }

        .ticker-tape-track:hover {
            animation-play-state: paused;
        }

        @keyframes loopTrack {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        .panoramic-ticker-node {
            position: relative;
            width: 480px;
            height: 300px;
            overflow: hidden;
        }

        .panoramic-ticker-node img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-editorial); }
        
        .panoramic-ticker-node-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(11, 2E, 129, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-fast);
        }

        .panoramic-ticker-node:hover .panoramic-ticker-node-overlay { opacity: 1; }
        .panoramic-ticker-node:hover img { transform: scale(1.08); }
        .ticker-destination-text { font-family: var(--font-display); font-size: 2.5rem; color: var(--seafoam); }

        /* --- SECTION 8: COASTAL JOURNAL COMPOSITION --- */
        .coastal-journal-split {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: flex-start;
        }

        .coastal-paragraph-large { font-size: 2rem; line-height: 1.5; color: var(--primary-blue); font-weight: 300; }
        .stacked-images-vignette { display: flex; flex-direction: column; gap: 40px; }
        .stacked-images-vignette img { width: 100%; height: 400px; object-fit: cover; }

        /* --- SECTION 9: REGIONAL EXPLORE MAP INDEX --- */
        .regional-explore-map-index {
            background-color: var(--seafoam);
        }

        .regions-editorial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .region-card-index {
            border-top: 2px solid var(--primary-blue);
            padding-top: 25px;
        }

        .region-card-index h3 { font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 15px; }
        .region-note { font-size: 0.95rem; font-style: italic; margin-bottom: 10px; }
        .region-rec-tag { display: inline-block; padding: 4px 10px; background-color: var(--primary-blue); color: var(--seafoam); font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }

        /* --- SECTION 10: MAGAZINE ARTICLES --- */
        .magazine-articles-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .magazine-article-column-node {
            display: flex;
            flex-direction: column;
        }

        .magazine-article-column-node img { width: 100%; height: 380px; object-fit: cover; margin-bottom: 20px; transition: var(--transition-fast); }
        .magazine-article-column-node:hover img { transform: translateY(-8px); }
        .article-category-badge { text-transform: uppercase; font-size: 0.85rem; font-weight: 600; color: var(--ocean-blue); margin-bottom: 10px; letter-spacing: 0.05em; }
        .article-heading-link { font-size: 2rem; color: var(--primary-blue); text-decoration: none; margin-bottom: 15px; display: block; }

        /* --- SECTION 11: INTENTIONAL COMMUNITY NEWSLETTER --- */
        .community-sunset-signup-banner {
            background: linear-gradient(rgba(11, 46, 129, 0.3), rgba(11, 46, 129, 0.3)), url('https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1800&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .community-floating-center-card {
            background-color: var(--light-mist);
            padding: 60px;
            max-width: 550px;
            width: 90%;
            box-shadow: 0 40px 80px rgba(11, 31, 90, 0.25);
            text-align: center;
        }

        .input-underlined-group {
            margin-bottom: 30px;
            text-align: left;
        }

        .input-underlined-group label {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .editorial-field-input {
            width: 100%;
            border: none;
            border-bottom: 2px solid rgba(11, 31, 90, 0.2);
            background: transparent;
            padding: 10px 0;
            font-family: var(--font-body);
            font-size: 1.05rem;
            outline: none;
            transition: var(--transition-fast);
        }

        .editorial-field-input:focus { border-bottom-color: var(--primary-blue); }
        .action-divider-text { margin: 25px 0; color: rgba(11,31,90,0.4); font-size: 0.9rem; font-weight: bold; }
        .alert-toast-box { display: none; margin-top: 25px; padding: 15px; background: var(--seafoam); border-left: 4px solid var(--primary-blue); text-align: left; font-size: 0.95rem; }

        /* --- INTERNAL ROUTED EDITORIAL LAYOUT GENERICS --- */
        .internal-editorial-hero {
            background-color: var(--seafoam);
            padding: 160px 6% 80px 6%;
            border-bottom: 2px solid var(--primary-blue);
        }

        .internal-editorial-hero h1 { font-size: 5.5rem; color: var(--primary-blue); }
        
        /* --- DYNAMIC INTERNAL DIRECTORIES --- */
        .blog-posts-list-stack { display: flex; flex-direction: column; gap: 60px; margin-top: 60px; }
        .blog-row-item { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 40px; border-bottom: 1px solid rgba(11,31,90,0.1); padding-bottom: 60px; }
        .blog-row-item img { width: 100%; height: 320px; object-fit: cover; }

        .about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
        .about-hero-img-box img { width: 100%; height: 550px; object-fit: cover; }

        .destinations-magazine-masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
        .dest-magazine-card img { width: 100%; height: 450px; object-fit: cover; margin-bottom: 20px; }

        .legal-document-body { max-width: 800px; margin: 40px 0; line-height: 1.8; }
        .legal-document-body h3 { font-size: 2rem; color: var(--primary-blue); margin: 40px 0 20px 0; }
        .legal-document-body p { margin-bottom: 20px; font-size: 1.1rem; color: rgba(11,31,90,0.9); }

        /* --- PREMIUM DUAL FOOTER STRUCTURE --- */
        footer {
            background-color: var(--primary-blue);
            color: var(--seafoam);
            padding: 100px 6% 40px 6%;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 50px;
            border-bottom: 1px solid rgba(193, 235, 233, 0.2);
            padding-bottom: 80px;
        }

        .footer-brand-statement { font-size: 3.5rem; line-height: 0.95; color: var(--seafoam); }
        .footer-col h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 25px; color: var(--light-mist); letter-spacing: 0.05em; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
        .footer-col a { text-decoration: none; color: var(--seafoam); font-size: 1rem; font-weight: 300; transition: var(--transition-fast); cursor: pointer; }
        .footer-col a:hover { color: var(--light-mist); padding-left: 5px; }
        .footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; font-size: 0.95rem; font-weight: 300; opacity: 0.8; }

        /* --- RESPONSIVE HAMBURGER NAVIGATION MOBILE OVERLAYS --- */
        @media (max-width: 1024px) {
            h2.section-heading { font-size: 3rem; }
            .hero-diagonal-split { flex-direction: column; height: auto; }
            .hero-left-pane, .hero-right-pane { width: 100%; height: 50vh; }
            .hero-editorial-heading { font-size: 4.5rem; }
            .sports-asymmetric-layout { grid-template-columns: 1fr; }
            .sports-floating-mosaic { height: auto; display: flex; flex-direction: column; gap: 20px; }
            .mosaic-panel-item { position: relative; width: 100% !important; height: 250px !important; top: auto !important; left: auto !important; }
            .editorial-story-strip { grid-template-columns: 1fr; }
            .equipment-row-item { grid-template-columns: 1fr; gap: 30px; }
            .equipment-large-img { height: 350px; }
            .coastal-journal-split { grid-template-columns: 1fr; gap: 40px; }
            .regions-editorial-grid { grid-template-columns: 1fr 1fr; }
            .magazine-articles-row { grid-template-columns: 1fr; }
            .footer-grid-layout { grid-template-columns: 1fr 1fr; }
            .blog-row-item { grid-template-columns: 1fr; }
            .about-mission-grid { grid-template-columns: 1fr; }
            .destinations-magazine-masonry { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            header .nav-group {
                position: fixed;
                top: 0; left: -100%; width: 100%; height: 100vh;
                background-color: var(--light-mist);
                flex-direction: column;
                justify-content: center;
                gap: 2.5rem;
                transition: var(--transition-editorial);
                z-index: 2000;
            }
            header .nav-group.mobile-visible { left: 0; }
            .hamburger-menu-btn { display: block; }
            .regions-editorial-grid { grid-template-columns: 1fr; }
            .footer-grid-layout { grid-template-columns: 1fr; }
            .footer-brand-statement { font-size: 2.5rem; }
            .internal-editorial-hero h1 { font-size: 3.5rem; }
        }
