/* =========================================================================
   GrownK - Professional Storytelling Agency
   Style System - V7 Photorealistic Scrollytelling
   ========================================================================= */

:root {
    /* V7 Photorealistic Scrollytelling Theme */
    --bg-light: #f7f6f2; /* Warm editorial off-white */
    --bg-white: #ffffff;
    --bg-dark: #111111;
    --bg-card: #ffffff;
    
    --text-main: #1a1a1a;
    --text-muted: #555555;
    
    --accent-primary: #111111; /* Stark black for contrast */
    --accent-gold: #cfa85e; /* Keeping a hint of premium gold */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    
    --glass-border: rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, #cfa85e, #e8c97a);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    transition: opacity 0.6s ease;
}

/* Page Load Fade-In */
body.loading { opacity: 0; }



/* =========================================================================
   Chapter Transition Dividers
   ========================================================================= */
.chapter-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.chapter-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0.7;
}
.chapter-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    opacity: 0.3;
}

/* =========================================================================
   Typography & Utilities
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
h4 { font-style: italic; font-weight: 500; font-size: 1.8rem; }
p { color: var(--text-muted); font-size: 1.05rem; }
a { text-decoration: none; color: var(--text-main); transition: var(--transition-fast); }

.container { max-width: 1200px; /* Slightly wider for bento grids */ margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 160px 0; }

.accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-style: italic;
    padding-right: 5px;
    font-weight: 500;
}

.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.editorial-heading { font-size: clamp(2.5rem, 5vw, 4.5rem); max-width: 850px; margin-bottom: 2rem; }
.editorial-text { font-size: clamp(1.15rem, 2vw, 1.4rem); max-width: 700px; font-weight: 300; line-height: 1.8; color: var(--text-main); }
.story-block { max-width: 850px; position: relative; z-index: 5; }
.align-center .story-block { margin: 0 auto; text-align: center; }
.align-center .editorial-text, .align-center .editorial-heading { margin-left: auto; margin-right: auto; }


/* =========================================================================
   Glassmorphism Base Classes
   ========================================================================= */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 1px; /* Sharp editorial edges */
    position: relative;
    overflow: hidden;
}

/* Mouse spotlight effect wrapper */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    pointer-events: none;
}
.glass-panel:hover::before { opacity: 1; }
.glass-panel > * { position: relative; z-index: 1; }


/* =========================================================================
   Buttons & Links (Magnetic Base)
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}
.btn-large { padding: 22px 44px; }

.btn-primary {
    background: #fff;
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 16px 0;
    position: relative;
}
.btn-text::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 0%; height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}
.btn-text:hover::after { width: 100%; }

.bounce-arrow { display: inline-flex; animation: bounce-down 2.5s ease-in-out infinite; color: var(--accent-gold); }
@keyframes bounce-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* =========================================================================
   Navigation
   ========================================================================= */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 35px 0; z-index: 1000; transition: var(--transition-fast); }
.navbar.scrolled {
    padding: 20px 0;
    background: rgba(247, 246, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 500; letter-spacing: 1px; color: var(--text-main); }
.logo span { color: var(--accent-gold); font-style: italic; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 500; }
.nav-links a:hover { color: var(--text-main); }

/* Hamburger Button */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; z-index: 1100; }
.hamburger-line { display: block; width: 100%; height: 1px; background: var(--text-main); position: absolute; left: 0; transition: var(--transition-fast); }
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(247, 246, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition-fast);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-link { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-style: italic; margin-bottom: 2rem; color: var(--text-muted); }
.mobile-link:hover { color: var(--text-main); }
.mobile-cta { margin-top: 2rem; }

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; position: relative; overflow: hidden; }
.hero-content { padding-left: 5%; padding-right: 5%; padding-top: 80px; position: relative; z-index: 2; }
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -0.03em; margin-bottom: 2rem; line-height: 1.05; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 550px; margin-bottom: 3.5rem; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.hero-ctas { display: flex; gap: 40px; align-items: center; }

/* Ambient Orb */
.hero-orb {
    position: absolute;
    top: -10%; left: -5%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(207, 168, 94, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: float-orb 25s infinite alternate ease-in-out;
}
@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.1); }
}

.hero-heroic-visual {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-mask {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Start hidden on the right */
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.hero-image-inner {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    transform-origin: left center;
}

/* =========================================================================
   Section Background Utilities (Parallax Watermarks)
   ========================================================================= */
.section-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
    overflow: hidden;
}

.section-bg-image {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* native simple parallax */
    opacity: 0.25; /* Increased opacity for more presence */
    filter: saturate(0.6); /* Desaturate slightly for editorial feel */
}

/* =========================================================================
   Conflict & Guide Sections
   ========================================================================= */
.conflict { position: relative; overflow: hidden; }
.conflict .container { position: relative; z-index: 2; }
.guide { position: relative; overflow: hidden; }
.guide .container { position: relative; z-index: 5; }
.guide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(207, 168, 94, 0.05) 0%, transparent 70%);
    z-index: 1;
}
.conflict-accent { font-family: var(--font-heading); font-size: 10rem; line-height: 0.8; color: rgba(212, 175, 55, 0.15); margin-bottom: -4rem; margin-left: -1rem; user-select: none; }
.divider-line { width: 80px; height: 1px; background: var(--accent-gold); margin-top: 3rem; opacity: 0.5; }

/* =========================================================================
   Horizontal Scrollytelling (Solutions)
   ========================================================================= */
.section-header { margin-bottom: 5rem; max-width: 800px; }
.section-title { font-size: clamp(3rem, 5vw, 4rem); color: var(--text-main); }
.section-subtitle { font-size: 1.2rem; color: var(--text-muted); }

.h-scroll-section {
    width: 100%;
    overflow: hidden; /* Hide horizontal scrollbar, GSAP controls it */
    position: relative;
    padding-bottom: 50px;
}

.h-scroll-container {
    display: flex;
    width: 300vw; /* 3 cards */
    will-change: transform;
}

.h-card {
    width: 100vw;
    height: 75vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.h-card-inner {
    width: 45%;
    background: var(--bg-white);
    padding: 4vw;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.h-card-inner:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.h-card-dark .h-card-inner {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.h-card-dark h3 {
    color: var(--bg-white);
}

.h-card-dark p, .h-card-dark .h-pricing-note {
    color: #aaaaaa;
}

.h-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.h-card h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.h-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.h-pricing-note {
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-muted);
}
.h-card-dark .h-pricing-note {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.h-card-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 90%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Specialties Tags */
.specialties-section { padding-top: 6rem; border-top: 1px solid rgba(0,0,0,0.1); }
.subsection-title { font-size: 2rem; font-style: italic; margin-bottom: 1rem; color: var(--text-main); }
.subsection-desc { color: var(--text-muted); font-size: 1.1rem; }
.tag-grid { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 2rem; }
.service-tag { padding: 14px 24px; border: 1px solid rgba(0,0,0,0.1); background: var(--bg-white); font-size: 0.9rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.service-tag i { color: var(--accent-gold); font-size: 1.2rem; transition: color 0.4s; }
.service-tag:hover { background: var(--text-main); border-color: var(--text-main); color: var(--bg-white); transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.service-tag:hover i { color: var(--bg-white); }

/* =========================================================================
   Sticky Scroll Methodology (Journey)
   ========================================================================= */
.sticky-journey { padding: 0; position: relative; overflow: hidden; }
.journey-wrapper {
    display: flex;
    position: relative;
    z-index: 2;
    max-width: 1400px; margin: 0 auto;
    border-top: 1px solid var(--glass-border);
}

.journey-left {
    width: 40%;
    padding: 160px 5%;
    border-right: 1px solid var(--glass-border);
}

.sticky-content {
    position: sticky;
    top: 160px; /* Offset from top */
}

.journey-right { width: 60%; padding: 160px 8%; display: flex; flex-direction: column; gap: 150px; }

.timeline-step { display: flex; gap: 40px; }
.step-number { font-family: var(--font-heading); font-size: 4rem; color: rgba(0,0,0,0.05); line-height: 0.8; transition: color 0.4s; }
.reveal.visible .step-number { color: var(--accent-gold); }

.step-content h4 { font-size: 2rem; margin-bottom: 1rem; color: var(--text-main); }
.step-content p { font-size: 1.1rem; color: var(--text-muted); }

/* =========================================================================
   Impact (Case Studies) - Glass Bento
   ========================================================================= */
.case-study-grid { display: flex; flex-direction: column; gap: 30px; }
.case-card { display: grid; grid-template-columns: 1fr 2fr; gap: 0; padding: 0; }
.case-metric { padding: 60px; border-right: 1px solid var(--glass-border); display: flex; flex-direction: column; justify-content: center; }
.case-story { padding: 60px; }

.metric-value { font-family: var(--font-heading); font-size: 5rem; color: var(--text-main); line-height: 1; }
.metric-suffix { font-family: var(--font-heading); font-size: 2.5rem; color: var(--accent-gold); font-style: italic; }
.metric-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); margin-top: 1rem; }

.client-credit { display: flex; align-items: center; gap: 20px; margin-top: 3rem; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-card); border: 1px solid rgba(0,0,0,0.1); color: var(--text-main); display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-heading); font-size: 1.2rem; }
.client-name { color: var(--text-main) !important; font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; }

/* =========================================================================
   Resolution (Contact Form)
   ========================================================================= */
.resolution { padding: 160px 0; border-top: 1px solid var(--glass-border); position: relative; }
.resolution::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 500px; background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08), transparent 70%); z-index: -1; }
.resolution .editorial-heading { text-align: center; margin: 0 auto 2rem; }
.resolution .editorial-text { text-align: center; margin: 0 auto 4rem; }

.contact-form { max-width: 800px; margin: 0 auto; padding: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 20px; background: rgba(0, 0, 0, 0.02);
    border: none; border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: var(--transition-fast); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--accent-gold); background: rgba(0, 0, 0, 0.04); }
.contact-form textarea { resize: vertical; margin-bottom: 40px; min-height: 150px; }

.contact-form .form-submit {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Resolution Layout */
.resolution .container { position: relative; z-index: 10; }
.resolution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-top: 60px;
}
.resolution-text .editorial-heading { margin-bottom: 30px; text-align: left; }
.resolution-text .editorial-text { margin-bottom: 50px; color: var(--text-main); text-align: left; }

.contact-info-list {
    display: flex; flex-direction: column; gap: 20px;
    border-top: 1px solid var(--glass-border); padding-top: 30px;
}
.contact-info-item { display: flex; flex-direction: column; gap: 5px; }
.info-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); }
.info-value { font-size: 1.5rem; font-family: var(--font-heading); color: var(--accent-gold); font-style: italic; }

/* Form Success Toast */
.form-success-toast {
    position: fixed;
    bottom: 40px; right: 40px;
    background: var(--bg-dark);
    color: #f5f5f7;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}
.form-success-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { border-top: none; padding: 100px 0 40px; background: #050508; color: #f5f5f7; }
.site-footer .logo { color: #ffffff; }
.site-footer .footer-mission { color: #a1a1a6; margin-top: 1rem; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 80px; flex-wrap: wrap; gap: 60px; }
.footer-brand { max-width: 350px; }
.footer-contact p { color: #ffffff; font-size: 1.2rem; font-family: var(--font-heading); font-style: italic; margin-top: 1.5rem; }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; }
.footer-nav a { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; color: #f5f5f7; }
.footer-nav a:hover { color: var(--accent-gold); }

.footer-bottom { display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #888888; }
.social-text-links { display: flex; gap: 40px; }
.social-text-links a { text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: #888888; }
.social-text-links a:hover { color: var(--accent-gold); }

/* Form Group */
.form-group {
    margin-bottom: 30px;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0,0,0,0.25);
    font-weight: 300;
}

/* =========================================================================
   Animations & Reveal
   ========================================================================= */
.reveal { opacity: 1; transform: none; transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* =========================================================================
   GSAP Custom Animations & Progress
   ========================================================================= */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%; height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transform-origin: left;
}

/* Text Mask Reveal Utilities */
.line-mask {
    display: block;
    overflow: hidden;
    padding-bottom: 5px;
}
.line-mask .mask-text {
    display: inline-block;
    transform: translateY(110%);
    animation: mask-text-fallback 1s ease-out 0.5s forwards; /* CSS fallback if GSAP fails */
}
.line-mask .mask-text:nth-child(1) { animation-delay: 0.5s; }

.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up-fallback 1s ease-out 1.2s forwards; /* CSS fallback */
}
.gs-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* CSS Fallback Animations (fire if GSAP doesn't override) */
@keyframes mask-text-fallback {
    to { transform: translateY(0); }
}
@keyframes fade-up-fallback {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 1024px) {
    .journey-wrapper { flex-direction: column; }
    .journey-left { width: 100%; padding: 80px 5% 40px; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .sticky-content { position: relative; top: 0; }
    .journey-right { width: 100%; padding: 80px 5%; gap: 80px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .section-padding { padding: 100px 0; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-heroic-visual { height: 50vh; }
    .hero-title { font-size: 2.8rem; }
    .editorial-heading { font-size: 2rem; }
    
    /* Stack horizontal scroll on mobile */
    .h-scroll-section { overflow: visible; }
    .h-scroll-container { display: flex; flex-direction: column; width: 100%; }
    .h-card { width: 100%; height: auto; min-height: auto; padding: 20px 0; }
    .h-card-inner { width: 100%; padding: 30px; }
    .h-card-img { display: none; }
    
    .case-card { grid-template-columns: 1fr; }
    .case-metric { padding: 40px; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .case-story { padding: 40px; }
    
    .resolution-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 30px 20px; }

    .section-bg-image { background-attachment: scroll; } /* Fixed bg broken on mobile */
    .hero-ctas { flex-direction: column; gap: 20px; align-items: flex-start; }
    .chapter-divider { padding: 30px 5%; }
    .chapter-number { font-size: 0.75rem; }
    .timeline-step { flex-direction: column; gap: 15px; }
    .step-number { font-size: 2.5rem; }
    .step-content h4 { font-size: 1.5rem; }
    .conflict-accent { font-size: 5rem; margin-bottom: -2rem; }
    .tag-grid { gap: 10px; }
    .service-tag { padding: 10px 16px; font-size: 0.8rem; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .social-text-links { justify-content: center; }
}

@media (max-width: 480px) {
    .section-padding { padding: 80px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .editorial-heading { font-size: 1.8rem; }
    .contact-form { padding: 30px; }
    .step-number { font-size: 2rem; }
    .metric-value { font-size: 3rem; }
    .metric-suffix { font-size: 1.5rem; }
    .btn-large { padding: 16px 32px; font-size: 0.85rem; }
}
