/*
Theme Name: Poema Poko Custom
Author: RANA ARHAM
Version: 8.0 (Mobile Responsive Fixes & Minimal Design)
*/

/* =========================================
   0. COLOR VARIABLES (STRICT BRANDING)
   ========================================= */
:root {
    /* Deep Royal Blue (Matches Distinction Divine) */
    --brand-blue: #0a1f68; 
    
    /* Rich Metallic Gold */
    --brand-gold: #D4AF37; 
    
    /* Lighter Gold for Gradients */
    --gold-light: #FFD700;
    
    /* Background Cream */
    --brand-cream: #fcfaf7;
    --text-body: #2c2c2c;  
}

/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-cream);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; }

/* typography helpers */
.text-center { text-align: center; }
.italic { font-style: italic; font-weight: 400; }
.serif-font { font-family: 'Playfair Display', serif; }

/* Force all headings to be Royal Blue */
h1, h2, h3, h4, h5, h6 {
    color: var(--brand-blue);
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0;
    background: rgba(252, 250, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 31, 104, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.5rem; letter-spacing: 1px; 
    color: var(--brand-blue); 
}
.logo span { color: var(--brand-gold); }

.desktop-nav a { margin-left: 30px; font-weight: 500; font-size: 0.95rem; color: var(--brand-blue); }
.desktop-nav a:hover { color: var(--brand-gold); }

.btn-header-cta {
    background: var(--brand-blue); 
    color: #fff !important;
    padding: 10px 25px; border-radius: 50px;
}
.btn-header-cta:hover { 
    background: var(--brand-gold); 
    color: var(--brand-blue) !important;
    transform: translateY(-2px); 
}

/* Mobile Burger Menu */
.burger-menu { display: none; cursor: pointer; z-index: 1002; }
.line { width: 25px; height: 3px; background: var(--brand-blue); margin: 5px; transition: 0.3s; }

.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--brand-cream); display: flex; align-items: center; justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1001;
}
.mobile-nav-overlay.active { right: 0; }
.mobile-nav-overlay nav { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.mobile-link { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brand-blue); }

/* =========================================
   3. HOMEPAGE STYLES
   ========================================= */
.hero-premium { padding: 150px 0 100px; background: var(--brand-cream); overflow: hidden; }

.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1; margin-bottom: 25px;
    color: var(--brand-blue); 
}

.eyebrow {
    font-weight: 700; text-transform: uppercase; color: var(--brand-gold);
    letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 15px; display: block;
}

.btn-primary {
    display: inline-block; 
    background: var(--brand-blue); 
    color: #ffffff;
    padding: 18px 40px; border-radius: 50px; font-weight: 600;
    margin-top: 30px; transition: 0.3s;
}
.btn-primary:hover { background: var(--brand-gold); transform: scale(1.05); color: var(--brand-blue); }

/* Homepage Blob Animation */
.hero-visual { animation: float 6s ease-in-out infinite; }

.blob-mask {
    width: 100%; max-width: 550px; aspect-ratio: 1/1;
    border-radius: 50%; overflow: hidden; margin: 0 auto;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    animation: morph 8s ease-in-out infinite alternate;
}
.blob-mask img { width: 100%; height: 100%; object-fit: cover; }

/* "Pour Qui" Section */
.pour-qui { padding: 100px 0; background: #fff; border-radius: 60px 60px 0 0; }
.recognition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }

.rec-card {
    background: var(--brand-cream); padding: 40px; border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05); transition: 0.3s;
}
.rec-card span {
    font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brand-gold);
    display: block; margin-bottom: 15px;
}
.rec-card:hover { transform: translateY(-10px); background: var(--brand-blue); color: #fff; }

/* Bio Section */
.bio-section { padding: 120px 0; }
.bio-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.bio-image img { border-radius: 30px; box-shadow: -20px 20px 0px var(--brand-gold); }
.quote { border-left: 4px solid var(--brand-gold); padding-left: 20px; font-style: italic; margin-top: 30px; color: #555; }


/* =========================================
   4. MISSING HOMEPAGE GRIDS (FIXED)
   ========================================= */

/* Fix for "Ce que je fais" (Services Summary) */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 Columns */
    gap: 30px;
    margin-top: 50px;
}

.services-section .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.services-section .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

/* Fix for "Journal" on Homepage */
.home-journal-section { padding: 100px 0; background: var(--brand-cream); }

.home-journal-section .journal-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 Columns */
    gap: 30px;
    margin-top: 50px;
}

.home-journal-section .journal-card-home {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    text-decoration: none;
}

.home-journal-section .journal-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.journal-card-home h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brand-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.journal-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.read-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-gold);
    letter-spacing: 1px;
}


/* =========================================
   5. SERVICES PAGE (EDITORIAL DESIGN)
   ========================================= */

/* Services Hero */
.editorial-hero { padding: 160px 0 100px; background: var(--brand-cream); overflow: hidden; }

.hero-editorial-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: center;
}

.hero-text-col h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem); 
    line-height: 1; margin-bottom: 30px; 
    color: var(--brand-blue); 
}

.eyebrow-editorial {
    font-family: 'Inter', sans-serif; text-transform: uppercase;
    letter-spacing: 3px; font-size: 0.85rem; color: var(--brand-gold); margin-bottom: 20px; display: block;
}

.hero-subtext p { font-size: 1.1rem; max-width: 450px; margin-bottom: 30px; color: #444; }

.link-underline {
    font-weight: 600; border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 5px; color: var(--brand-blue);
}

/* Services Image Frame */
.image-frame-editorial { position: relative; z-index: 1; }
.image-frame-editorial::before {
    content: ''; position: absolute; top: 10%; right: -20px;
    width: 90%; height: 90%; background: #eaddcf; 
    z-index: -1; border-radius: 200px 200px 0 0;
}
.image-frame-editorial img {
    width: 100%; max-width: 500px; border-radius: 200px 200px 0 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); filter: contrast(1.05);
}

.floating-caption {
    position: absolute; bottom: 40px; left: -40px;
    background: #fff; padding: 15px 30px;
    font-family: 'Inter', sans-serif; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 2px; 
    color: var(--brand-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Services List (OFFRE) */
.editorial-list-section { padding: 150px 0; position: relative; overflow: hidden; }

.bg-typography {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 20vw; font-family: 'Playfair Display', serif; font-weight: 900;
    color: rgba(212, 175, 55, 0.05); z-index: 0; pointer-events: none;
}

.services-staggered-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 60px; position: relative; z-index: 2;
}

.editorial-item { padding-top: 40px; border-top: 1px solid rgba(26, 26, 26, 0.1); }
.offset-down { margin-top: 120px; } 

.giant-num {
    font-family: 'Playfair Display', serif; font-size: 5rem;
    color: rgba(212, 175, 55, 0.3); display: block; line-height: 1;
    margin-bottom: -30px; position: relative; z-index: -1;
}
.editorial-item h3 {
    font-size: 1.8rem; margin-bottom: 20px;
    background: var(--brand-cream); display: inline-block; padding-right: 20px;
}

/* Visual Interlude (Saved for future use on About Page) */
.visual-interlude { padding: 150px 0; background: #fff; }
.interlude-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.interlude-image img { width: 100%; box-shadow: 20px 20px 0 var(--brand-cream); }
.interlude-text blockquote {
    font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic;
    border-left: 4px solid var(--brand-gold); padding-left: 30px; margin-bottom: 20px;
}
.interlude-text cite {
    display: block; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.8rem; color: #888; padding-left: 30px;
}

/* =========================================
   REVISED: PRICING MENU (4-COLUMN ROW & BOLD PRICES)
   ========================================= */
.editorial-pricing { 
    padding: 100px 0; 
    background-color: #f8f6f2; /* Light luxury background */
}

.editorial-h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    margin-bottom: 60px; 
    text-align: center; 
    color: var(--brand-blue);
}

/* GRID CONTAINER: Force 4 Columns on Desktop */
.pricing-menu { 
    display: grid;
    /* This forces exactly 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; /* Slightly tighter gap to fit all 4 */
    max-width: 1250px; /* Wider container to breathe */
    margin: 0 auto; 
    align-items: stretch; /* Ensures all cards stretch to same height */
}

/* SERVICE CARD */
.menu-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    
    /* Premium Look */
    border-top: 5px solid var(--brand-gold); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    
    /* Layout: Pushes button to bottom */
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 50px rgba(10, 31, 104, 0.15); 
    border-top-color: var(--brand-blue); /* Color shift on hover */
}

/* Special Highlight for "Cycle Intensif" (2nd Card usually) */
.menu-item.highlight { 
    background: #fff;
    border-top: 5px solid var(--brand-blue);
    transform: scale(1.03); /* Pop out slightly */
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* CARD HEADERS */
.menu-header { margin-bottom: 15px; }

.menu-header h3 { 
    font-size: 1.35rem; /* Slightly smaller to prevent wrapping */
    margin-bottom: 15px; 
    color: var(--brand-blue);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* PRICING TAG (THE "CATCHY" PART) */
.menu-meta { 
    display: block; /* Force it to own line */
    width: 100%;
    text-align: center;
    font-size: 0.9rem; 
    font-weight: 800; /* Extra Bold */
    text-transform: uppercase; 
    letter-spacing: 1px;
    
    /* High Visibility Styling */
    background: var(--brand-blue); 
    color: var(--brand-gold);
    padding: 10px 5px;
    border-radius: 4px;
    margin-bottom: 5px;
}

/* DESCRIPTION TEXT */
.menu-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1; /* This fills the empty space so buttons align */
}

/* BUTTON */
.link-arrow { 
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 12px 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}

.link-arrow:hover {
    background: var(--brand-blue);
    color: #fff;
}


/* =========================================
   6. FOOTER (ROYAL BLUE)
   ========================================= */
.site-footer {
    background: var(--brand-blue); 
    color: #fff;
    padding: 80px 0 30px; margin-top: 100px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); text-align: center;
    padding-top: 30px; margin-top: 60px; color: #ccc; font-size: 0.9rem;
}

/* Logo in Footer */
.footer-logo { color: #ffffff !important; margin-bottom: 20px; }
.footer-logo span { color: var(--brand-gold) !important; }

/* Links */
.footer-col a { color: #ccc; } 
.footer-col a:hover { color: #fff; padding-left: 5px; }

/* Contact Link */
.contact-link {
    display: flex; align-items: center; gap: 10px;
    color: #ffffff !important; 
    margin-bottom: 20px; font-size: 0.95rem; transition: 0.3s;
}
.contact-link svg { stroke: var(--brand-gold); transition: 0.3s; }
.contact-link:hover { color: var(--brand-gold) !important; padding-left: 5px; }

/* Social Icons */
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; color: #ffffff !important;
    transition: all 0.3s ease; padding-left: 0 !important;
}
.social-icons a svg { width: 20px; height: 20px; stroke-width: 1.5; }
.social-icons a:hover {
    background: var(--brand-gold); 
    color: var(--brand-blue) !important; 
    transform: translateY(-3px);
}


/* =========================================
   7. ANIMATIONS
   ========================================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}


/* =========================================
   8. ABOUT NARRATIVE (SLIDER & STYLES)
   ========================================= */
.narrative-about { background-color: var(--brand-cream); padding-top: 100px; }

.narrative-about .narrow-container { max-width: 800px; margin: 0 auto; }

.narrative-about .chapter-marker {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--brand-gold); margin-bottom: 20px;
}

/* Identity Opening */
.narrative-opener { padding: 120px 0; text-align: center; }
.narrative-opener h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2; margin-bottom: 30px;
    color: var(--brand-blue);
}
.narrative-opener .highlight-serif { font-style: italic; color: var(--brand-gold); }
.narrative-opener .lead-text { font-size: 1.2rem; color: #555; line-height: 1.8; }

/* Biography Layout */
.biography-chapter { padding: 100px 0; }
.bio-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.bio-narrative h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 30px; }
.bio-narrative p { margin-bottom: 20px; font-size: 1.05rem; color: #444; }

/* --- SLIDESHOW STYLES --- */
.slider-wrapper {
    position: relative; width: 100%;
    height: 600px; 
    border-radius: 8px; overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* Values Axis */
.values-axis { padding: 100px 0; background: #fff; }
.axis-header { text-align: center; margin-bottom: 60px; }
.axis-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; }

.values-list {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 50px; border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 50px;
}
.value-item { padding-right: 20px; }
.value-num { font-family: 'Playfair Display', serif; color: #e0e0e0; font-size: 3rem; display: block; margin-bottom: 10px; }
.value-item h4 { font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* Ecosystem */
.ecosystem-block { padding: 120px 0; }
.ecosystem-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.eco-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 30px; }
.eco-image img { width: 100%; height: 500px; object-fit: cover; filter: sepia(20%); }

/* Authorship Block */
.authorship-block { padding: 120px 0; background: var(--brand-blue); color: #fff; }
.book-narrative { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.book-cover-art img {
    max-height: 550px; width: auto; margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.book-manifesto h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 30px; line-height: 1; color: #fff; }
.book-manifesto p { font-size: 1.1rem; color: #ccc; margin-bottom: 40px; max-width: 450px; }
.text-link { color: var(--brand-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }


/* --- NEW EVANGELIST SECTION (MINIMALIST & BLUE) --- */
.evangelist-section {
    background-color: var(--brand-blue); /* Royal Blue */
    color: #fff;
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.gold-crown-icon svg { margin-bottom: 30px; stroke: var(--brand-gold); width: 50px; height: 50px; }

/* Gradient Gold Title */
.gold-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--brand-gold);
    background: linear-gradient(to right, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.evangelist-body p {
    font-size: 1.2rem; line-height: 1.8; 
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px; max-width: 700px;
    margin-left: auto; margin-right: auto;
    font-weight: 300;
}

.quote-gold {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.5rem;
    color: var(--brand-gold);
    margin: 50px auto; max-width: 800px;
}

/* Invitation Box - MINIMALIST FIX */
.invitation-box {
    border: 1px solid rgba(212, 175, 55, 0.4); 
    background: transparent; /* REMOVED DARK BACKGROUND */
    padding: 60px 40px; margin: 80px auto 0;
    max-width: 700px; border-radius: 4px;
}

.invitation-box h3 {
    color: var(--brand-gold) !important; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 0.9rem; margin-bottom: 30px;
}
.invitation-box .small-text { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

/* The Royal Gold Button */
.btn-royal-gold {
    display: inline-block;
    background: var(--brand-gold);
    color: var(--brand-blue);
    padding: 18px 45px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-royal-gold:hover {
    transform: translateY(-3px);
    background: #ffffff; color: var(--brand-blue);
}

/* Quiet Closure */
.quiet-closure { padding: 100px 0 50px; }
.quiet-closure p { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; color: #888; margin-bottom: 30px; }
.quiet-closure h5 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: var(--brand-blue); }


/* =========================================
   9. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    /* FORCE ALL GRIDS TO 1 COLUMN */
    .hero-grid,
    .bio-grid,
    .bio-layout,
    .hero-editorial-grid,
    .interlude-grid,
    .services-staggered-grid,
    .services-section .services-grid,
    .home-journal-section .journal-grid-home,
    .ecosystem-grid,
    .book-narrative,
    .values-list {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    
    .desktop-nav { display: none; }
    .burger-menu { display: block; }
    
    /* REORDER IMAGES TO TOP */
    .hero-image-col, 
    .bio-visual,
    .eco-image,
    .book-cover-art { 
        order: -1; 
        margin-bottom: 30px;
    }
    
    .image-frame-editorial img { width: 100%; max-width: 100%; }
    .floating-caption { position: relative; left: 0; bottom: 0; display: inline-block; margin-top: -20px; }
    
    .offset-down { margin-top: 0; }
    .bg-typography { display: none; }
    
    .menu-item {
        grid-template-columns: 1fr; text-align: left;
        align-items: start; gap: 20px; padding: 30px 0;
    }
    .menu-item:hover { padding-left: 0; }
    
    .slider-wrapper { height: 400px; }
    
    /* Values List Borders Mobile */
    .values-list { border-top: none; padding-top: 0; }
    .value-item { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 30px; }
    
    /* Font Size Adjustments */
    h1, .gold-title, .editorial-h2 { font-size: 2.5rem !important; }
    
    /* Padding Adjustments */
    .narrative-opener, .biography-chapter, .ecosystem-block, .authorship-block, .evangelist-section {
        padding: 60px 0;
    }
    .invitation-box { padding: 30px 20px; margin-top: 40px; }
	
/* =========================================
   9. MOBILE RESPONSIVE (FINAL CLEAN FIX)
   ========================================= */
@media (max-width: 992px) {

    /* --- 1. GLOBAL GRID RESET (Force 1 Column) --- */
    .hero-grid,
    .bio-grid,
    .bio-layout,
    .hero-editorial-grid,
    .interlude-grid,
    .services-staggered-grid,
    .services-section .services-grid,
    .home-journal-section .journal-grid-home,
    .ecosystem-grid,
    .book-narrative,
    .values-list,
    .pricing-menu {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
        width: 100%;
        display: grid;
    }
    
    /* --- 2. HEADER & NAV --- */
    .desktop-nav { display: none; }
    .burger-menu { display: block; }
    
    /* --- 3. REORDER IMAGES TO TOP --- */
    .hero-image-col, 
    .bio-visual,
    .eco-image,
    .book-cover-art { 
        order: -1; 
        margin-bottom: 30px;
    }
    
    /* FIX: Prevent Group Photo from Cutting Off */
    .eco-image img, 
    .image-frame-editorial img { 
        width: 100%; 
        height: auto !important; 
        object-fit: contain !important;
        max-width: 100%; 
    }

    .floating-caption { position: relative; left: 0; bottom: 0; display: inline-block; margin-top: -20px; }
    
    /* --- 4. TYPOGRAPHY & SPACING --- */
    .offset-down { margin-top: 0; }
    .bg-typography { display: none; }
    
    h1, .gold-title, .editorial-h2 { font-size: 2.2rem !important; }
    
    /* Reduced Padding for Mobile Sections */
    .narrative-about { padding-top: 80px; }
    .narrative-opener, .biography-chapter, .ecosystem-block, .authorship-block, .evangelist-section, .editorial-pricing {
        padding: 60px 0;
    }
    
    .slider-wrapper { height: 350px; }
    .values-list { border-top: none; padding-top: 0; }
    .value-item { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 30px; }
    .invitation-box { padding: 30px 20px; margin-top: 40px; }

    /* --- 5. PRICING MENU FIX (Corrected) --- */
    .pricing-menu {
        padding: 0 15px; /* Safety padding from screen edges */
        box-sizing: border-box;
    }

    .menu-item {
        width: 100%;
        margin: 0 auto;
        text-align: left;
        padding: 30px 20px; /* Comfortable internal padding */
        box-sizing: border-box; /* Prevents overflow */
    }

    /* DISABLE HOVER JUMP ON MOBILE (Fixes scrolling glitch) */
    .menu-item:hover,
    .menu-item.highlight { 
        transform: none !important; 
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; /* Static shadow */
    }

    .menu-meta {
        display: inline-block;
        width: auto;
        margin-bottom: 15px;
    }
}