:root {
    --emerald: #015551;
    --white: #FFFFFF;
    --tint-1: #F7FAF9;
    --tint-2: #E8F2F0;
    --tint-3: #D6E8E4;
    --tint-4: #C7DDD8;
    --font-editorial: "PT Serif Caption", serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- STRUCTURAL BASELINES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-editorial);
    background-color: var(--white);
    color: var(--emerald);
    overflow-x: hidden;
    line-height: 1.625;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

/* --- UTILITY CLASSES --- */
.img-wrapper {
    position: relative;
    background-color: var(--emerald);
    overflow: hidden;
    width: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.65;
    filter: contrast(115%) brightness(95%);
    transition: var(--transition);
}

.img-wrapper:hover img {
    mix-blend-mode: normal;
    opacity: 0.95;
    filter: none;
}

/* --- READING PROGRESS BAR --- */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
    background: transparent;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--emerald);
    transition: width 0.1s ease-out;
}

/* --- FIXED MASTER HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 163, 163, 0.96);
    backdrop-filter: blur(12px);
    z-index: 900;
    height: 100px;
    border-bottom: 1px solid rgba(1, 85, 81, 0.1);
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Small logo */
.logo-box img {
    height: 128px;
}

/* Medium logo (default) */
.logo-box img {
    height: 132px;
}

/* Large logo */
.logo-box img {
    height: 140px;
}

/* Extra large */
.logo-box img {
    height: 248px;
}/* --- DESKTOP NAVIGATION --- */
nav.desktop-nav {
    display: flex;
    gap: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

nav.desktop-nav a {
    position: relative;
    padding: 0.25rem 0;
    opacity: 0.7;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
    opacity: 1;
}

nav.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--emerald);
    transition: var(--transition);
}

nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after {
    width: 100%;
}

/* --- MOBILE NAVIGATION --- */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 999;
}

.hamburger-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--emerald);
    transition: var(--transition);
}

.hamburger-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-toggle.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 950;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-navigation-overlay.open {
    transform: translateY(0);
}

.mobile-navigation-overlay a {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.mobile-navigation-overlay a:hover {
    opacity: 1;
    padding-left: 1rem;
}

/* --- ROUTING UTILITIES --- */
.editorial-view {
    display: none;
    padding-top: 5rem;
}

.editorial-view.active-view {
    display: block;
}

/* --- STRUCTURAL ARCHITECTURE & GRIDS --- */
section {
    padding: 7.5rem 4rem;
    border-bottom: 1px solid rgba(1, 85, 81, 0.08);
    position: relative;
}

.grid-split-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.grid-split-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.grid-split-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* --- EDITORIAL TYPOGRAPHY --- */
.label-editorial {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
    display: inline-block;
    opacity: 0.8;
}

.heading-editorial {
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 4.5rem;
    letter-spacing: -0.01em;
}

.rule-editorial {
    border: none;
    border-top: 1px solid var(--emerald);
    margin: 4.5rem 0;
}

.rule-thin-editorial {
    border: none;
    border-top: 1px solid rgba(1, 85, 81, 0.15);
    margin: 2rem 0;
}

/* --- CARD & EXPANSION MODULES --- */
.card-oversized-horizontal {
    padding: 3.5rem;
    border: 1px solid rgba(1, 85, 81, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.card-oversized-horizontal:hover {
    background-color: var(--white);
    border-color: var(--emerald);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(1, 85, 81, 0.03);
}

.card-meta-block {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.expansion-preview-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-oversized-horizontal.expanded .expansion-preview-content {
    max-height: 200px;
    opacity: 0.85;
    margin-top: 1.5rem;
    border-top: 1px dashed rgba(1, 85, 81, 0.2);
    padding-top: 1rem;
}

/* --- HERO INTELLIGENCE WALL --- */
/* --- HERO INTELLIGENCE WALL --- */
.hero-intelligence-wall {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 6rem 4% 4rem;
    border-bottom: 1px solid rgba(1, 85, 81, 0.08);
}

.hero-top-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-center-alignment {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.progressive-headline {
    font-family: var(--font-editorial);
    font-size: clamp(3.5rem, 8.5vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progressive-headline span {
    display: block;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progressive-headline span:nth-child(1) {
    color: var(--emerald);
    transform: translateX(-20px);
    opacity: 0.9;
}

.progressive-headline span:nth-child(2) {
    color: var(--emerald);
    transform: translateX(20px);
    opacity: 0.7;
}

.progressive-headline span:nth-child(3) {
    color: var(--emerald);
    transform: translateX(-20px);
    opacity: 0.9;
}

.hero-intelligence-wall:hover .progressive-headline span:nth-child(1),
.hero-intelligence-wall:hover .progressive-headline span:nth-child(2),
.hero-intelligence-wall:hover .progressive-headline span:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
}

.hero-description {
    max-width: 650px;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.6;
}

/* --- HERO MATRIX BOTTOM --- */
.hero-intelligence-matrix-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(1, 85, 81, 0.08);
    width: 100%;
    align-items: start;
}

/* --- VERTICAL NAVIGATOR --- */
.vertical-story-navigator {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.navigator-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(1, 85, 81, 0.04);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.navigator-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--emerald);
}

.navigator-node-preview {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--emerald);
    opacity: 0;
    transition: var(--transition);
    text-align: right;
    white-space: nowrap;
}

.navigator-node:hover {
    padding-left: 10px;
}

.navigator-node:hover .navigator-node-preview {
    opacity: 0.6;
}

/* --- STATS SIDEBAR --- */
.hero-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

.stats-primary {
    border-bottom: 2px solid var(--emerald);
    padding-bottom: 20px;
    width: 100%;
    text-align: right;
}

.stats-big-number {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--emerald);
}

.stats-big-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-top: 4px;
}

.stats-secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.stats-item {
    text-align: right;
}

.stats-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--emerald);
}

.stats-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-top: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-intelligence-wall {
        padding: 4rem 4% 3rem;
        min-height: auto;
    }
    
    .hero-intelligence-matrix-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats-sidebar {
        align-items: flex-start;
    }
    
    .stats-primary {
        text-align: left;
    }
    
    .stats-secondary-grid {
        text-align: left;
    }
    
    .stats-item {
        text-align: left;
    }
    
    .navigator-node-preview {
        white-space: normal;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .progressive-headline {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .stats-big-number {
        font-size: 2.5rem;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .stats-secondary-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .progressive-headline {
        font-size: 2rem;
    }
    
    .hero-intelligence-wall {
        padding: 3rem 4% 2rem;
    }
    
    .navigator-node {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    
    .navigator-node-preview {
        opacity: 0.4;
        font-size: 0.75rem;
    }
    
    .stats-secondary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stats-big-number {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 1.2rem;
    }
}/* --- VERTICAL NAVIGATOR --- */
.vertical-story-navigator {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navigator-node {
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid rgba(1, 85, 81, 0.04);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navigator-node-preview {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--emerald);
    opacity: 0;
    transition: var(--transition);
    text-align: right;
    white-space: nowrap;
}

.navigator-node:hover {
    padding-left: 10px;
}

.navigator-node:hover .navigator-node-preview {
    opacity: 0.6;
}

/* --- STATS SIDEBAR --- */
.hero-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

.stats-primary {
    border-bottom: 2px solid var(--emerald);
    padding-bottom: 20px;
    width: 100%;
    text-align: right;
}

.stats-big-number {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--emerald);
}

.stats-big-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-top: 4px;
}

.stats-secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    text-align: right;
}

.stats-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--emerald);
}

.stats-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-top: 4px;
}

/* --- STATISTICS RIBBON --- */
.hero-statistics-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px 4%;
    background: var(--tint-1);
    border-radius: 4px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--emerald);
    font-family: var(--font-editorial);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
    margin-top: 5px;
    opacity: 0.6;
}

.stat-divider {
    width: 1px;
    background: rgba(1, 85, 81, 0.1);
}

/* --- INSIGHTS GRID --- */
.hero-insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
    max-width: 1400px;
    margin: 40px auto;
}

.insight-card {
    padding: 35px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(1, 85, 81, 0.05);
}

.insight-card.primary {
    background: var(--emerald);
    color: var(--white);
}

.insight-card.primary .insight-tag {
    color: rgba(255, 255, 255, 0.7);
}

.insight-card.primary .insight-meta {
    color: rgba(255, 255, 255, 0.6);
}

.insight-card.secondary {
    background: var(--tint-1);
}

.insight-card.tertiary {
    background: var(--white);
    border: 1px solid rgba(1, 85, 81, 0.08);
}

.insight-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald);
    display: block;
    margin-bottom: 12px;
    opacity: 0.6;
}

.insight-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: var(--font-editorial);
}

.insight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.insight-meta {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- DEEP DIVE --- */
.hero-deep-dive {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 4%;
}

.deep-dive-header {
    margin-bottom: 40px;
}

.deep-dive-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    font-family: var(--font-editorial);
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.deep-dive-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid rgba(1, 85, 81, 0.06);
    transition: all 0.3s ease;
}

.deep-dive-item:hover {
    background: var(--tint-1);
    border-color: var(--emerald);
}

.dd-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--emerald);
    font-family: var(--font-editorial);
    min-width: 60px;
    opacity: 0.4;
}

.dd-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.dd-content p {
    font-size: 0.9rem;
    color: var(--emerald);
    line-height: 1.6;
    opacity: 0.7;
}

.dd-meta {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
    opacity: 0.4;
}

/* --- EXPERT VOICES --- */
.hero-expert-voices {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 4%;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.voice-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    padding: 30px;
    border-left: 4px solid var(--emerald);
    background: var(--tint-1);
    margin: 0;
}

.voice-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 400;
    color: var(--emerald);
    opacity: 0.6;
}

/* --- SUBSCRIPTION JOURNAL CONTAINER --- */
.subscription-journal-container {
    background-color: var(--emerald);
    padding: 6rem 4%;
    text-align: center;
    color: var(--white);
}

.subscription-journal-container .label-editorial {
    color: rgba(255, 255, 255, 0.7);
}

.subscription-journal-container .heading-editorial {
    font-size: 2.8rem;
    font-weight: 400;
    font-family: var(--font-editorial);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.subscription-journal-container .form-editorial-minimalist {
    max-width: 700px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0;
}

.subscription-journal-container .input-editorial-minimalist {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.subscription-journal-container .input-editorial-minimalist::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

.subscription-journal-container .input-editorial-minimalist:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.subscription-journal-container .input-editorial-minimalist:hover {
    background: rgba(255, 255, 255, 0.15);
}

.subscription-journal-container .btn-editorial-action {
    background: var(--white);
    color: var(--emerald);
    border: none;
    padding: 14px 30px;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    white-space: nowrap;
}

.subscription-journal-container .btn-editorial-action:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.subscription-journal-container .alert-success-state {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 16px 24px;
    margin: 20px auto 0;
    max-width: 700px;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
    animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.subscription-journal-container .alert-success-state.visible {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MASTER FOOTER SYSTEM --- */
footer {
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--white);
    border-top: 1px solid rgba(1, 85, 81, 0.15);
}

.footer-brand-centered-wrap {
    text-align: center;
    margin-bottom: 6rem;
}

.footer-brand-centered-wrap .logo-box {
    justify-content: center;
    font-size: 1.4rem;
}

.footer-column-headline {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.footer-navigation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-navigation-list a:hover {
    opacity: 0.5;
    transform: translateX(3px);
}

.footer-copyright-statement {
    margin-top: 8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    text-align: center;
    border-top: 1px solid rgba(1, 85, 81, 0.06);
    padding-top: 3rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
    .hero-insights-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-insights-grid .insight-card.primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1120px) {
    header {
        padding: 1.5rem 2.5rem;
    }
    section,
    .hero-intelligence-wall {
        padding: 5rem 2.5rem;
    }
    .grid-split-4,
    .grid-split-3,
    .grid-split-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    nav.desktop-nav {
        display: none;
    }
    .hamburger-toggle {
        display: flex;
    }
    .hero-intelligence-matrix-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .vertical-story-navigator {
        align-items: flex-start;
        text-align: left;
    }
    .form-editorial-minimalist {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .btn-editorial-action {
        padding: 1.25rem;
    }
}

@media (max-width: 992px) {
    .progressive-headline {
        font-size: 4rem;
    }
    .hero-intelligence-matrix-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-statistics-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .deep-dive-grid {
        grid-template-columns: 1fr 1fr;
    }
    .voices-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats-sidebar {
        align-items: flex-start;
    }
    .stats-primary {
        text-align: left;
    }
    .stats-secondary-grid {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-intelligence-wall {
        padding: 4rem 4% 2rem;
    }
    .progressive-headline {
        font-size: 2.8rem;
    }
    .hero-center-alignment {
        padding: 2rem 0;
    }
    .hero-insights-grid {
        grid-template-columns: 1fr;
    }
    .hero-statistics-ribbon {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 30px 4%;
    }
    .stat-number {
        font-size: 2rem;
    }
    .deep-dive-grid {
        grid-template-columns: 1fr;
    }
    .deep-dive-header h2 {
        font-size: 2rem;
    }
    .voice-quote {
        font-size: 1.1rem;
        padding: 20px;
    }
    .subscription-journal-container {
        padding: 4rem 4%;
    }
    .subscription-journal-container .heading-editorial {
        font-size: 2rem;
    }
    .subscription-journal-container .form-editorial-minimalist {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .subscription-journal-container .btn-editorial-action {
        white-space: normal;
        padding: 14px 20px;
    }
    .navigator-node {
        flex-wrap: wrap;
        gap: 4px;
    }
    .navigator-node-preview {
        white-space: normal;
        text-align: left;
        width: 100%;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .progressive-headline {
        font-size: 2rem;
    }
    .hero-statistics-ribbon {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 20px 4%;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .navigator-node {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .navigator-node-preview {
        opacity: 0.5;
        font-size: 0.8rem;
    }
    .subscription-journal-container {
        padding: 3rem 15px;
    }
    .subscription-journal-container .heading-editorial {
        font-size: 1.6rem;
    }
    .subscription-journal-container .input-editorial-minimalist {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
    .subscription-journal-container .alert-success-state {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
    .stats-secondary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stats-big-number {
        font-size: 2.5rem;
    }
    .stats-number {
        font-size: 1.5rem;
    }

    
}  

/* --- CONTACT VIEW STYLES --- */
#contact section {
    padding: 7.5rem 4rem;
    background: var(--white);
}

#contact .grid-split-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

/* --- CONTACT INFO LEFT COLUMN --- */
#contact .contact-info-left {
    padding-top: 1rem;
}

#contact .contact-info-left .contact-item {
    margin-bottom: 3rem;
}

#contact .contact-info-left .contact-item:last-child {
    margin-bottom: 0;
}

#contact .contact-info-left h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    font-weight: 400;
    opacity: 0.6;
}

#contact .contact-info-left p {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 400;
}

#contact .contact-info-left .contact-divider {
    border: none;
    border-top: 1px solid rgba(1, 85, 81, 0.08);
    margin: 2rem 0;
}

/* --- CONTACT FORM RIGHT COLUMN --- */
#contact .contact-form-wrapper {
    background-color: var(--emerald);
    padding: 3.5rem;
    border-radius: 4px;
}

#contact .form-editorial-minimalist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

#contact .input-editorial-minimalist {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.25rem;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
}

#contact .input-editorial-minimalist::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    text-transform: uppercase;
}

#contact .input-editorial-minimalist:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

#contact .input-editorial-minimalist:hover {
    background: rgba(255, 255, 255, 0.12);
}

#contact .input-editorial-minimalist[style*="height: 140px"] {
    font-family: var(--font-editorial);
    line-height: 1.6;
    min-height: 140px;
    resize: vertical;
    text-transform: none;
    letter-spacing: 0.05em;
}

#contact .input-editorial-minimalist[style*="height: 140px"]::placeholder {
    text-transform: none;
    letter-spacing: 0.05em;
}

/* --- CONTACT BUTTON --- */
#contact .btn-editorial-action {
    background: var(--white);
    color: var(--emerald);
    border: none;
    padding: 1.25rem 0;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

#contact .btn-editorial-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.4s ease;
}

#contact .btn-editorial-action:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#contact .btn-editorial-action:hover::after {
    width: 100%;
}

#contact .btn-editorial-action:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- CONTACT ALERT SUCCESS --- */
#contact .alert-success-state {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #4CAF50;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-body, 'Spline Sans', sans-serif);
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 2px;
    animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#contact .alert-success-state.visible {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE CONTACT --- */
@media (max-width: 1120px) {
    #contact section {
        padding: 5rem 2.5rem;
    }
    
    #contact .grid-split-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #contact .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    #contact section {
        padding: 4rem 1.5rem;
    }
    
    #contact .contact-form-wrapper {
        padding: 2rem;
    }
    
    #contact .contact-info-left .contact-item {
        margin-bottom: 2rem;
    }
    
    #contact .contact-info-left p {
        font-size: 1rem;
    }
    
    #contact .input-editorial-minimalist {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }
    
    #contact .btn-editorial-action {
        padding: 1rem 0;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    #contact section {
        padding: 3rem 1rem;
    }
    
    #contact .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    #contact .contact-info-left h4 {
        font-size: 0.65rem;
    }
    
    #contact .contact-info-left p {
        font-size: 0.9rem;
    }
    
    #contact .input-editorial-minimalist {
        padding: 0.75rem 0.85rem;
        font-size: 0.75rem;
    }
    
    #contact .input-editorial-minimalist::placeholder {
        font-size: 0.7rem;
    }
    
    #contact .btn-editorial-action {
        padding: 0.85rem 0;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
    
    #contact .alert-success-state {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
}

/* --- HIGH CONTRAST ACCESSIBILITY --- */
@media (prefers-contrast: high) {
    #contact .input-editorial-minimalist {
        border-width: 2px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    #contact .btn-editorial-action {
        border: 2px solid var(--white);
    }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    #contact .btn-editorial-action,
    #contact .btn-editorial-action::after,
    #contact .alert-success-state {
        transition: none;
        animation: none;
    }
}
