/* --- BRAND SYSTEM VARIABLES --- */
:root {
    --primary-green: #08CB00;
    --soft-green: #C6D870;
    --white: #FFFFFF;
    --black: #111111;
    --light-gray: #F4F4F4;
    --dark-gray: #1a1a1a;
    --font-display: 'Monoton', system-ui, sans-serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --header-height: 90px;
    --transition-smooth: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- GLOBAL RESET & ARCHITECTURAL FOUNDATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.65;
}

/* --- TYPOGRAPHY ARSENAL --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

p {
    font-size: 1.05rem;
    color: #333333;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.monoton-font {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.section-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    display: block;
}

.editorial-meta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 15px;
    display: block;
}

/* --- IMAGERY & ANIMATION CORE --- */
.photo-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #EFEFEF;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.photo-wrapper:hover img {
    transform: scale(1.04);
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.8) 100%);
    z-index: 1;
}

/* --- EDITORIAL INTERACTION ELEMENTS --- */
.editorial-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.editorial-btn:hover {
    background-color: var(--primary-green);
    color: var(--black);
}

/* --- MINIMAL HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1000;
    border-bottom: 1px solid rgba(17,17,17,0.06);
}

.logo {
    font-size: 1.6rem;
    color: var(--black);
    text-decoration: none;
    z-index: 1010;
    font-weight: 700;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-center a:hover, .nav-center a.active-node {
    color: var(--primary-green);
}

.nav-right-btn {
    background-color: var(--primary-green);
    color: var(--black);
    padding: 14px 28px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.nav-right-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* --- RESPONSIVE HAMBURGER NAVIGATION SYSTEM --- */
.hamburger-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-smooth);
}

.hamburger-trigger.open .line-1 { transform: translateY(8px) rotate(45deg); }
.hamburger-trigger.open .line-2 { opacity: 0; }
.hamburger-trigger.open .line-3 { transform: translateY(-8px) rotate(-45deg); }

.mobile-magazine-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
}

.mobile-magazine-menu.active {
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-links a {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.mobile-menu-links a:hover {
    color: var(--primary-green);
}

/* --- MULTI-PAGE CHASSIS SYSTEM --- */
.page-layer {
    display: none;
    padding-top: var(--header-height);
}

.page-layer.active-layer {
    display: block;
    animation: magazineFadeReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes magazineFadeReveal {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- EDITORIAL LAYOUT UTILITIES --- */
.journal-section {
    padding: 100px 6%;
    position: relative;
}

.alt-bg {
    background-color: var(--light-gray);
}

/* ==================== HOME PAGE SECTIONS ==================== */

/* Section 01: Fullscreen Image Hero */
.hero-fullscreen {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    position: relative;
}

.hero-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(8, 203, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--black);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    border: 1px solid white;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--black);
}

.hero-stats-panel {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Three Card Grid */
.three-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* Stats Banner */
.stats-banner {
    background: var(--black);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-block .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-block .stat-desc {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Case Feature */
.case-feature {
    background: var(--light-gray);
}

.case-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.case-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.case-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.case-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
}

.case-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Research Grid */
.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.research-card {
    padding: 30px;
    background: white;
    border: 1px solid #eee;
}

.research-tag {
    font-size: 0.7rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.research-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.research-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
}

.industry-overlay h3 {
    color: white;
    font-size: 1.2rem;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.insight-featured .insight-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.insight-category {
    font-size: 0.7rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.insight-featured h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.insight-featured p {
    color: #666;
    margin-bottom: 20px;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.insight-item h4 {
    font-size: 1.1rem;
    margin: 10px 0;
}

.insight-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a8a00 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-light {
    display: inline-block;
    background: var(--black);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background: white;
    color: var(--black);
}

.btn-outline-light {
    display: inline-block;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--black);
    color: white;
}

/* Section 02: Image Strip Story (Original preserved) */
.strip-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.strip-card {
    background: white;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.strip-card .photo-wrapper {
    height: 300px;
}

.strip-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.strip-card p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Split Editorial Layout (Original preserved) */
.split-editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-editorial-layout .photo-wrapper {
    height: 600px;
}

.long-form-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #333;
}

/* Mosaic Layout (Original preserved) */
.mosaic-container {
    background-color: var(--soft-green);
}

.mosaic-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mosaic-block {
    grid-column: span 4;
}

.mosaic-block.wide-2 {
    grid-column: span 6;
}

.mosaic-block.narrow {
    grid-column: span 3;
}

.mosaic-block.text-quote-pod {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.35);
}

.mosaic-block .photo-wrapper {
    height: 380px;
}

.mosaic-block.wide-2 .photo-wrapper {
    height: 520px;
}

/* Full Width Feature (Original preserved) */
.full-width-feature-banner {
    height: 700px;
    position: relative;
}

.feature-banner-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 850px;
    width: 90%;
    z-index: 2;
}

/* Research Chapters (Original preserved) */
.chapters-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.chapter-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.chapter-row.inverse {
    grid-template-columns: 1fr 1.2fr;
}

.chapter-row .photo-wrapper {
    height: 500px;
}

/* Case Study Dark Canvas (Original preserved) */
.case-dark-canvas {
    background-color: var(--black);
    color: var(--white);
}

.case-dark-canvas .photo-wrapper {
    height: 550px;
    margin-bottom: 50px;
}

.case-outcomes-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.metric-value {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

/* Industry Showcase (Original preserved) */
.industry-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.industry-showcase-card {
    position: relative;
    height: 450px;
    cursor: pointer;
}

.industry-card-title-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: var(--white);
    font-size: 1.5rem;
}

/* Insights Journal (Original preserved) */
.insights-newspaper-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.insights-featured-column .photo-wrapper {
    height: 450px;
    margin-bottom: 30px;
}

.insights-supporting-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.supporting-story-node {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 40px;
}

/* Final Image Hero (Original preserved) */
.final-city-hero {
    height: 700px;
    position: relative;
}

/* ==================== SUBPAGE SYSTEM GRAPHICS ==================== */
.editorial-subpage-banner {
    height: 60vh;
    min-height: 450px;
    position: relative;
    margin-bottom: 60px;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    background: rgba(8, 203, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.subpage-banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Layout Matrix */
.contact-split-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-height));
}

.contact-photo-anchor {
    height: 100%;
    min-height: 550px;
}

.contact-form-pod {
    padding: 80px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
}

.editorial-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.editorial-field-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    color: #555555;
}

.editorial-field-group input,
.editorial-field-group textarea,
.editorial-field-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    padding: 12px 0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    color: var(--black);
    transition: border-color 0.4s ease;
    width: 100%;
}

.editorial-field-group input:focus,
.editorial-field-group textarea:focus,
.editorial-field-group select:focus {
    border-color: var(--primary-green);
}

/* Modal Architecture for Privacy / Terms Documents */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modal-overlay.modal-visible {
    display: flex;
}

.legal-document-container {
    background-color: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* ==================== FOOTER ==================== */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 6% 50px;
}

.footer-top-framework {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-nav-columns-group {
    display: flex;
    gap: 80px;
}

.footer-link-stack a {
    color: #999999;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.footer-link-stack a:hover {
    color: var(--primary-green);
}

.newsletter-form-container {
    max-width: 380px;
    width: 100%;
}

.newsletter-input-wrap {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 20px;
}

.newsletter-input-wrap input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--white);
    font-family: inherit;
    outline: none;
    width: 100%;
}

.newsletter-submit {
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-base-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666666;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials a {
    color: #666666;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-green);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1200px) {
    .journal-section {
        padding: 80px 5%;
    }
    
    .three-card-grid {
        gap: 30px;
    }
    
    .strip-story-grid {
        gap: 30px;
    }
}

@media (max-width: 1100px) {
    .nav-center,
    .nav-right-btn {
        display: none;
    }
    
    .hamburger-trigger {
        display: flex;
    }
    
    .split-editorial-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .split-editorial-layout .photo-wrapper {
        height: 450px;
    }
    
    .chapter-row,
    .chapter-row.inverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chapter-row .photo-wrapper {
        height: 400px;
    }
    
    .chapter-row:nth-child(even) .photo-wrapper {
        order: -1;
    }
    
    .hero-stats-panel {
        display: none;
    }
}

@media (max-width: 900px) {
    .three-card-grid,
    .research-grid,
    .industry-grid,
    .insights-grid,
    .strip-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mosaic-asymmetric-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .mosaic-block.text-quote-pod {
        order: -1;
    }
    
    .industry-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .insights-newspaper-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-split-matrix {
        grid-template-columns: 1fr;
    }
    
    .contact-photo-anchor {
        min-height: 400px;
    }
    
    .case-outcomes-strip {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-nav-columns-group {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .journal-section {
        padding: 60px 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-image img {
        height: 350px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-primary-light,
    .btn-outline-light {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin: 5px 0;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .insight-featured h3 {
        font-size: 1.3rem;
    }
    
    .insights-list {
        gap: 20px;
    }
    
    .footer-top-framework {
        flex-direction: column;
        gap: 40px;
    }
    
    .newsletter-form-container {
        max-width: 100%;
    }
    
    .hero-stats-panel {
        display: flex;
        bottom: 20px;
        gap: 20px;
    }
    
    .stat-item {
        padding: 10px 20px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-showcase-card {
        height: 350px;
    }
    
    .case-image img {
        height: 250px;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
    }
    
    .legal-document-container {
        padding: 30px 20px;
    }
    
    .footer-base-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-socials a {
        margin: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .hero-stats-panel {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        bottom: 10px;
    }
    
    .stat-item {
        padding: 8px 16px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

