        /* --- DESIGN SYSTEM & RESET --- */
        :root {
            --primary: #283F24;
            --accent: #FF3F33;
            --bg: #FFFFFF;
            --text: #283F24;
            --font-main: "Archivo Narrow", sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-main);
        }

        body {
            overflow-x: hidden;
            width: 100%;
        }

        /* Generic Utility & Typography Classes */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 0.95;
        }

        p {
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        img, video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        button {
            font-family: var(--font-main);
            cursor: pointer;
            border: none;
            background: none;
            transition: var(--transition-smooth);
        }

        /* --- GLOBAL ANIMATIONS (SCROLL-REVEAL EFFECT) --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- STICKY GLOBAL HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 130px;
            z-index: 1000;
            background-color: var(--bg);
            border-bottom: 1px solid rgba(40, 63, 36, 0.15);
            padding: 24px 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.4s ease, background-color 0.4s ease;
        }

        header.shrink {
            padding: 12px 64px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-placeholder {
            font-weight: 700;
            font-size: 24px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--primary);
        }

        .nav-and-actions {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary);
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: var(--accent);
            transition: var(--transition-smooth);
        }

        nav ul li a:hover::after, nav ul li a.active-link::after {
            width: 100%;
        }

        .book-now-btn {
            background-color: var(--accent);
            color: #FFFFFF;
            padding: 12px 28px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .book-now-btn:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        /* Hamburger menu for small layouts */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            width: 28px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition-smooth);
        }

        /* --- PAGE LAYOUT MANAGERS --- */
        .page-view {
            display: none;
            padding-top: 85px; /* Clear header space */
        }

        .page-view.active-view {
            display: block;
        }

        /* --- HOME PAGE SECTIONS --- */
        /* Section 1: Hero Cinematic Video */
        .home-hero {
            position: relative;
            padding: 40px 64px;
            background-color: var(--bg);
            height: calc(100vh - 85px);
            display: flex;
            align-items: center;
        }

        .hero-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-video-wrapper video {
            transform: scale(1);
            animation: slowZoom 25s infinite alternate ease-in-out;
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        .hero-text-overlay {
            position: absolute;
            left: 60px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: #FFFFFF;
            mix-blend-mode: difference;
            pointer-events: none;
        }

        .hero-text-overlay h1 {
            font-size: clamp(48px, 8vw, 110px);
            margin-bottom: 16px;
        }

        .hero-text-overlay p.quote {
            font-style: italic;
            font-weight: 400;
            font-size: 18px;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        .hero-social-stack {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 10;
        }

        .social-circle {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 12px;
            font-weight: 600;
            background: rgba(40, 63, 36, 0.2);
            backdrop-filter: blur(2px);
            transition: var(--transition-smooth);
        }

        .social-circle:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            transform: scale(1.1);
        }

        /* Section 2: 30vh Split Block */
        .home-split-30vh {
            height: 45vh; /* Amplified slightly for text clarity but strictly inline with style instruction rules */
            display: flex;
            width: 100%;
            margin-top: -2.5rem;
        }

        .split-left {
            width: 30%;
            background-color: var(--bg);
            color: var(--primary);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid rgba(40, 63, 36, 0.1);
        }

        .split-left h2 {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .split-right {
            width: 70%;
            background-color: var(--primary);
            color: #FFFFFF;
            padding: 40px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
        }

        .split-right .illustration-container {
            width: 35%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .split-right .illustration-container img {
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.85;
        }

        .split-right-content {
            width: 60%;
        }

        .split-right-content h2 {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .split-right-content p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Section 2 Bottom: Editorial Facts */
        .editorial-facts-row {
            background-color: var(--bg);
            padding: 60px 64px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            border-bottom: 1px solid rgba(40, 63, 36, 0.15);
        }

        .fact-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fact-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
        }

        .fact-title {
            font-size: 20px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--primary);
        }

        /* Section 3: White Editorial Card Deck */
        .home-section-cards {
            background-color: var(--bg);
            padding: 100px 64px;
            text-align: center;
        }

        .section-header-centered {
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header-centered h2 {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-header-centered p {
            font-size: 16px;
            color: var(--primary);
            opacity: 0.8;
        }

        .editorial-dark-card {
            background-color: var(--primary);
            color: #FFFFFF;
            border-radius: 8px;
            padding: 80px 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }

        .traveller-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .traveller-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 24px;
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        .traveller-profile h3 {
            font-size: 22px;
            margin-bottom: 4px;
            letter-spacing: 0.05em;
        }

        .traveller-profile span {
            color: var(--accent);
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            display: block;
        }

        .traveller-profile p {
            font-size: 14px;
            opacity: 0.85;
            max-width: 280px;
        }

        /* Section 4: Editorial Testimonial Slider */
        .home-testimonial-slider {
            background-color: var(--bg);
            padding: 120px 64px;
            border-top: 1px solid rgba(40, 63, 36, 0.1);
            border-bottom: 1px solid rgba(40, 63, 36, 0.1);
            text-align: center;
            position: relative;
        }

        .slider-container {
            max-width: 900px;
            margin: 40px auto 0 auto;
            min-height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-text {
            font-size: 32px;
            font-weight: 400;
            line-height: 1.4;
            color: var(--primary);
            transition: opacity 0.4s ease;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            transition: var(--transition-smooth);
        }

        .slider-arrow:hover {
            background-color: var(--primary);
            color: #FFFFFF;
        }

        /* Section 5: Dark Green Expedition Cards */
        .home-dark-destinations {
            background-color: var(--primary);
            color: #FFFFFF;
            padding: 100px 64px;
        }

        .home-dark-destinations .section-header-centered h2 {
            color: #FFFFFF;
        }
        .home-dark-destinations .section-header-centered p {
            color: #FFFFFF;
            opacity: 0.75;
        }

        .tall-destination-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .tall-card {
            display: flex;
            flex-direction: column;
            height: 600px;
            border: 1px solid rgba(255,255,255,0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .tall-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tall-card-upper {
            height: 65%;
            overflow: hidden;
        }

        .tall-card-upper img {
            transition: transform 0.6s ease;
        }

        .tall-card:hover .tall-card-upper img {
            transform: scale(1.08);
        }

        .tall-card-lower {
            height: 35%;
            background-color: #FFFFFF;
            color: var(--primary);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tall-card-lower h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .tall-card-lower p {
            font-size: 14px;
            opacity: 0.8;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-story-btn {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            text-align: left;
            margin-top: 12px;
            display: inline-block;
        }

        /* Section 6: Image Gallery Grid */
        .home-gallery-section {
            background-color: var(--bg);
            padding: 100px 64px 0 64px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            transition: transform 0.6s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(40, 63, 36, 0.85);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            text-align: center;
            transition: var(--transition-smooth);
        }

        .gallery-title {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transform: translateY(15px);
            transition: var(--transition-smooth);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-title {
            transform: translateY(0);
        }


        /* --- ADDITIONAL PAGES SYSTEM COMPOSITIONS --- */
        
        /* Editorial Header Blueprint */
        .page-editorial-hero {
            padding: 80px 64px;
            background-color: var(--bg);
            border-bottom: 1px solid rgba(40, 63, 36, 0.15);
        }

        .page-editorial-hero h1 {
            font-size: clamp(40px, 6vw, 80px);
            color: var(--primary);
            margin-bottom: 24px;
        }

        .hero-magazine-intro {
            font-size: 22px;
            max-width: 800px;
            line-height: 1.5;
            color: var(--primary);
            font-weight: 400;
        }

        .editorial-layout-block {
            padding: 80px 64px;
        }

        /* About Page Features */
        .about-timeline {
            display: flex;
            flex-direction: column;
            gap: 48px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-node {
            display: flex;
            gap: 60px;
            border-left: 2px solid var(--primary);
            padding-left: 40px;
            position: relative;
        }

        .timeline-node::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 0;
            width: 12px;
            height: 12px;
            background-color: var(--accent);
            border-radius: 50%;
        }

        .node-year {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            min-width: 100px;
        }

        .split-image-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            background-color: var(--primary);
            color: #FFFFFF;
            padding: 60px;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 8px;
        }

        /* Tours Page Layouts */
        .categories-nav {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
            border-bottom: 1px solid #283F24;
            padding-bottom: 16px;
        }

        .category-tab {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 700;
            opacity: 0.5;
        }

        .category-tab.active-tab {
            opacity: 1;
            color: var(--accent);
        }

        .tour-packages-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .tour-package-card {
            border: 1px solid rgba(40, 63, 36, 0.15);
        }

        .tour-pkg-img {
            height: 350px;
        }

        .tour-pkg-desc {
            padding: 32px;
            background: #FFFFFF;
        }

        .tour-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid rgba(40, 63, 36, 0.1);
        }

        .tour-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(40, 63, 36, 0.15);
            padding: 24px 0;
        }

        .faq-question {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            cursor: pointer;
        }

        .faq-answer {
            margin-top: 12px;
            display: none;
            opacity: 0.8;
        }

        /* News / Magazine Layout */
        .magazine-featured-grid {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 48px;
        }

        .featured-article-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .magazine-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .mini-article {
            display: flex;
            gap: 20px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(40, 63, 36, 0.1);
        }

        .mini-img {
            width: 120px;
            height: 120px;
            flex-shrink: 0;
        }

        /* Contact Layout Components */
        .contact-split-layout {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 64px;
        }

        .contact-info-panel h3 {
            font-size: 24px;
            margin-top: 32px;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .contact-form-panel {
            background-color: #F9F9F9;
            padding: 48px;
            border: 1px solid rgba(40, 63, 36, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-full {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(40, 63, 36, 0.25);
            background: #FFFFFF;
            font-family: var(--font-main);
            font-size: 15px;
            outline: none;
            transition: var(--transition-smooth);
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary);
        }

        .form-submit-btn {
            background-color: var(--accent);
            color: #FFFFFF;
            width: 100%;
            padding: 16px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 16px;
        }

        .form-submit-btn:hover {
            opacity: 0.95;
        }

        .map-section-mock {
            height: 400px;
            background-color: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }


        /* --- NEWSLETTER BLOCK & COMMON COMPONENT --- */
        .editorial-newsletter-block {
            background-color: var(--primary);
            color: #FFFFFF;
            padding: 80px 64px;
            text-align: center;
        }

        .newsletter-inner {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-inner h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .newsletter-inner p {
            font-size: 15px;
            opacity: 0.8;
            margin-bottom: 32px;
        }

        .newsletter-form-inline {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .newsletter-form-inline input {
            flex-grow: 1;
            padding: 14px;
            border: none;
            font-family: var(--font-main);
            font-size: 14px;
        }

        .newsletter-form-inline button {
            background-color: var(--accent);
            color: white;
            padding: 0 32px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.1em;
        }


        /* --- FOOTER --- */
        footer {
            background-color: var(--bg);
            color: var(--text);
            padding: 80px 64px 40px 64px;
            border-top: 1px solid var(--primary);
        }

        .footer-top-grid {
            display: grid;
            grid-template-columns: 25% 20% 20% 35%;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(40, 63, 36, 0.1);
        }

        .footer-brand h2 {
            font-size: 24px;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
        }

        .footer-links-col h4 {
            font-size: 14px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-links-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links-col ul li a {
            font-size: 15px;
            opacity: 0.8;
        }

        .footer-links-col ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            font-size: 13px;
            opacity: 0.7;
        }

        .footer-legal-links {
            display: flex;
            gap: 24px;
        }

        .footer-legal-links span {
            cursor: pointer;
        }
        .footer-legal-links span:hover {
            color: var(--accent);
        }


        /* --- MODAL DIALOG OVERLAYS (LEGAL & MANAGEMENTS) --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(40, 63, 36, 0.8);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-card {
            background: #FFFFFF;
            max-width: 700px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 48px;
            position: relative;
            color: var(--primary);
        }

        .modal-close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 24px;
            font-weight: 700;
        }

        .modal-card h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .modal-card p {
            margin-bottom: 16px;
            font-size: 15px;
        }


        /* --- RESPONSIVE STRUCTURAL OVERRIDES --- */
        @media (max-width: 1024px) {
            header { padding: 20px 32px; }
            header.shrink { padding: 12px 32px; }
            .home-hero { padding: 20px 32px; }
            .nav-and-actions nav { display: none; }
            .hamburger { display: flex; }
            
            .home-split-30vh { height: auto; flex-direction: column; }
            .split-left { width: 100%; }
            .split-right { width: 100%; flex-direction: column; align-items: flex-start; }
            .split-right .illustration-container { width: 100%; height: 150px; margin-bottom: 16px; }
            .split-right-content { width: 100%; }
            
            .editorial-facts-row, .editorial-dark-card, .tall-destination-grid, .footer-top-grid, .stat-grid {
                grid-template-columns: 1fr;
            }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
            .tour-packages-grid, .magazine-featured-grid, .contact-split-layout { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .form-full { grid-column: span 1; }
        }

        /* Responsive full-width navigation drawer triggered by JS hamburger */
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100%;
            background-color: var(--bg);
            z-index: 1500;
            padding: 100px 40px;
            box-shadow: 5px 0 20px rgba(0,0,0,0.1);
            transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .mobile-drawer.open {
            left: 0;
        }
        .mobile-drawer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .mobile-drawer ul li a {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
        }
