/*
  INNER AUTHORITY PROJECT - EDITORIAL REBUILD
  Based on approved visual reference rendering
  
  Key Approach: Composition-first, not component-styling
  - Hero: Asymmetric with boundary-crossing elements
  - Outsourced Authority: Force field, not grid
  - Loop: Circular visual system
  - Method: Linear horizontal journey (distinct from Loop)
  - Founder: Cinematic editorial narrative
*/

/* ============================================
   FOUNDATION
   ============================================ */

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

:root {
    --cream: #F8F6F2;
    --navy: #0B233F;
    --charcoal: #2A3B4C;
    --gold: #B8975A;
    --gold-light: rgba(184, 151, 90, 0.2);
    --gold-muted: rgba(184, 151, 90, 0.6);
    
    --serif: 'Cormorant', serif;
    --sans: 'Inter', sans-serif;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: sticky;
    top: 0;
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 151, 90, 0.15);
    z-index: 1000;
    padding: 20px 40px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--navy);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    text-decoration: none;
    color: var(--navy);
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 10px 20px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--cream) !important;
}

/* ============================================
   HERO - ASYMMETRIC COMPOSITION
   Text left, image bleeds right, handwritten crosses boundary
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    background: var(--cream);
}

.hero-composition {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-text-zone {
    padding-right: 80px;
    z-index: 10;
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-family: var(--serif);
    font-size: 78px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 36px;
}

.hero-subtitle {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--navy);
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--charcoal);
    transform: translateY(-1px);
}

.proof-line {
    margin-top: 48px;
    font-size: 14px;
    font-style: italic;
    color: var(--gold-muted);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.hero-visual-zone {
    position: relative;
    height: 85vh;
    min-height: 650px;
    max-height: 900px;
    margin-left: -40px;
    margin-right: -40px;
}

.hero-visual-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Handwritten overlay crosses text/image boundary */
.handwritten-overlay {
    position: absolute;
    top: 35%;
    left: -120px; /* Crosses into text zone */
    font-family: 'Brush Script MT', cursive;
    font-size: 38px;
    line-height: 1.3;
    color: rgba(184, 151, 90, 0.45);
    transform: rotate(-6deg);
    pointer-events: none;
    z-index: 20;
}

/* ============================================
   RECOGNITION
   ============================================ */

.recognition {
    padding: 120px 0;
    background: var(--cream);
}

.section-headline {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: center;
}

.section-subheadline {
    font-size: 20px;
    font-style: italic;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 80px;
}

.recognition-signals {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.signal {
    text-align: center;
}

.signal-number {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
}

.signal p {
    font-size: 16px;
    line-height: 1.5;
}

.recognition-close {
    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
    text-align: center;
    color: var(--gold);
    margin-top: 60px;
}

/* ============================================
   OUTSOURCED AUTHORITY - FORCE FIELD COMPOSITION
   Not a grid - forces positioned in spatial field
   ============================================ */

/* ============================================
   OUTSOURCED AUTHORITY - QUIETER RECOGNITION
   ============================================ */

.outsourced-authority {
    padding: 100px 0;
    background: var(--navy);
    color: var(--cream);
    text-align: center;
}

.outsourced-authority .section-title {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
}

.oa-statement {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 48px;
    color: rgba(248, 246, 242, 0.7);
}

.oa-recognition {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(248, 246, 242, 0.85);
}

/* ============================================
   PHILOSOPHY - IDENTITY BEFORE STRATEGY™
   ============================================ */

.philosophy {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-family: var(--serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
}

.philosophy-statement {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 48px;
    color: var(--charcoal);
}

.philosophy-close {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
}

/* ============================================
   INSIGHT - YOUR DECISIONS HAVE A HISTORY
   Simplified from Loop - no diagram
   ============================================ */

.insight {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.insight .section-headline {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
}

.insight-statement {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
}

.loop-diagram {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    height: 600px;
}

.loop-circle-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
}

/* Steps positioned around the circle */
.loop-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.loop-step-identity {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.loop-step-beliefs {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.loop-step-decisions {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.loop-step-reality {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.step-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    border: 3px solid var(--cream);
    box-shadow: 0 2px 8px rgba(11, 35, 63, 0.15);
}

.loop-step h3 {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
}

.loop-statement {
    max-width: 600px;
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
}

.loop-insight {
    margin-top: 60px;
    padding: 24px 40px;
    background: rgba(184, 151, 90, 0.08);
    border-left: 3px solid var(--gold);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.loop-insight p {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
}

/* ============================================
   METHOD - THE INNER AUTHORITY METHOD™
   IP-protected: No movement architecture
   ============================================ */

.method {
    padding: 100px 0;
    background: var(--navy);
    color: var(--cream);
    text-align: center;
}

.method .eyebrow {
    color: rgba(184, 151, 90, 0.7);
}

.method .section-title {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.method-statement {
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(248, 246, 242, 0.85);
}

.method-close {
    font-size: 18px;
    font-style: italic;
    color: rgba(248, 246, 242, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   EVIDENCE
   ============================================ */

.evidence {
    padding: 120px 0;
    background: var(--cream);
}

.evidence .eyebrow {
    text-align: center;
}

.evidence .section-title {
    text-align: center;
    margin-bottom: 100px;
}

.evidence-transitions {
    max-width: 900px;
    margin: 0 auto 60px;
}

.transition {
    display: grid;
    grid-template-columns: 300px 80px 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.transition:nth-child(2) {
    margin-left: 60px;
}

.transition:nth-child(3) {
    margin-left: 120px;
}

.before {
    font-size: 18px;
    color: rgba(11, 35, 63, 0.5);
    font-style: italic;
    text-align: right;
}

.arrow {
    font-size: 32px;
    color: var(--gold);
    text-align: center;
}

.after {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--navy);
}

.evidence-close {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    font-style: italic;
}

/* ============================================
   FOUNDER - CINEMATIC EDITORIAL COMPOSITION
   Portrait + narrative flow
   ============================================ */

.founder {
    padding: 120px 0;
    background: var(--navy);
    color: var(--cream);
}

.founder-composition {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 100px;
    align-items: start;
}

.founder-portrait {
    position: sticky;
    top: 120px;
    height: 700px;
}

.founder-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.founder-narrative {
    padding-top: 40px;
}

.founder-narrative .eyebrow {
    color: rgba(184, 151, 90, 0.7);
}

.founder-headline {
    font-family: var(--serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
}

.founder-context {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 60px;
    color: rgba(248, 246, 242, 0.8);
}

/* Dramatically elevated first quote */
.founder-quote-primary {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 40px;
    padding-left: 32px;
    border-left: 3px solid var(--gold);
}

/* Smaller secondary quotes */
.founder-quote-secondary {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 24px;
    border-left: 2px solid rgba(184, 151, 90, 0.4);
    color: rgba(248, 246, 242, 0.75);
}

.founder-revelation {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(248, 246, 242, 0.9);
}

.text-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 48px;
    transition: opacity 0.2s;
}

.text-link:hover {
    opacity: 0.7;
}

.founder-credential {
    font-size: 14px;
    color: rgba(184, 151, 90, 0.7);
    font-style: italic;
}

/* ============================================
   CLIENTS
   ============================================ */

.clients {
    padding: 120px 0;
    background: var(--cream);
}

.clients .section-headline {
    margin-bottom: 80px;
}

.client-evidence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.evidence-item blockquote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.evidence-attribution {
    font-size: 14px;
    font-weight: 600;
}

.evidence-role {
    font-weight: 400;
    color: var(--charcoal);
    font-size: 13px;
}

/* ============================================
   EXPERIENCE
   ============================================ */

.experience {
    padding: 120px 0;
    background: var(--navy);
    color: var(--cream);
    text-align: center;
}

.experience .eyebrow {
    color: rgba(184, 151, 90, 0.7);
}

.experience .section-title {
    font-family: var(--serif);
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 32px;
}

.experience-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 100px;
    color: rgba(248, 246, 242, 0.85);
}

.experience-options {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.experience-option {
    padding: 40px 0;
    border-bottom: 1px solid rgba(184, 151, 90, 0.2);
    position: relative;
}

.experience-option h3 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--gold);
}

.experience-option p {
    font-size: 18px;
    color: rgba(248, 246, 242, 0.8);
}

.experience-option::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--gold);
}

.experience-option:nth-child(1)::after { width: 30%; }
.experience-option:nth-child(2)::after { width: 60%; }
.experience-option:nth-child(3)::after { width: 100%; }

.experience-close {
    font-size: 17px;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 48px;
    color: rgba(248, 246, 242, 0.7);
}

.experience .cta-button {
    background: var(--cream);
    color: var(--navy);
}

.experience .cta-button:hover {
    background: var(--gold);
}

/* ============================================
   INVITATION
   ============================================ */

.invitation {
    padding: 120px 0;
    background: var(--cream);
}

.invitation-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.invitation-title {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
}

.invitation-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.invitation-image {
    height: 600px;
}

.invitation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy);
    color: var(--cream);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-statement {
    font-size: 13px;
    color: rgba(248, 246, 242, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(248, 246, 242, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--cream);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(184, 151, 90, 0.2);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(248, 246, 242, 0.5);
}

/* ============================================
   FOUNDER VOICE INTERRUPTION
   Human moment - Markesha enters the conversation
   ============================================ */

.founder-voice-moment {
    padding: 0;
    background: var(--cream);
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.voice-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.voice-media {
    position: relative;
    width: 100%;
    background: transparent;
    border-radius: 2px;
    overflow: hidden;
}

.voice-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.voice-statement {
    padding-left: 40px;
}

.voice-conviction {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -1px;
    margin: 0;
}

/* ============================================
   LIVED EDITORIAL PAUSE
   Breath between frameworks - environmental moment
   ============================================ */

.lived-pause {
    padding: 0;
    background: var(--cream);
    position: relative;
}

.pause-composition {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.pause-image {
    position: relative;
    height: 85vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.pause-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

/* Subtle gradient for text legibility - preserves lived quality */
.pause-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(11, 35, 63, 0) 0%, 
        rgba(11, 35, 63, 0.15) 60%, 
        rgba(11, 35, 63, 0.45) 100%);
    z-index: 1;
}

.pause-conviction {
    position: absolute;
    bottom: 80px;
    left: 60px;
    right: 60px;
    z-index: 10;
}

.pause-conviction p {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--cream);
    max-width: 700px;
}

/* ============================================
   MOBILE - SEPARATE COMPOSITION
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* NAV */
    .nav {
        padding: 16px 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* HERO - IMAGE-LED MOBILE OPENING */
    .hero {
        min-height: auto;
        padding: 0;
    }
    
    .hero-composition {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;
    }
    
    .hero-visual-zone {
        order: -1;
        height: 65vh;
        min-height: 450px;
        max-height: 600px;
        margin: 0;
        position: relative;
    }
    
    .hero-visual-zone img {
        object-fit: cover;
        object-position: center 15%;
    }
    
    /* Dark gradient for text legibility */
    .hero-visual-zone::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to top, rgba(11, 35, 63, 0.85), transparent);
        z-index: 1;
    }
    
    .handwritten-overlay {
        display: none;
    }
    
    .hero-text-zone {
        padding: 0 24px 60px;
    }
    
    .hero-text-zone .eyebrow {
        position: relative;
        top: auto;
        left: auto;
        color: var(--gold-muted);
        z-index: auto;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* RECOGNITION */
    .recognition {
        padding: 80px 0;
    }
    
    .section-headline {
        font-size: 36px;
        text-align: left;
        padding: 0 24px;
    }
    
    .section-subheadline {
        text-align: left;
        padding: 0 24px;
        margin-bottom: 60px;
    }
    
    .recognition-signals {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }
    
    .signal {
        display: flex;
        gap: 20px;
        text-align: left;
    }
    
    .recognition-close {
        text-align: left;
        padding: 0 24px;
        margin-top: 40px;
    }
    
    /* OUTSOURCED AUTHORITY */
    .outsourced-authority {
        padding: 80px 0;
    }
    
    .outsourced-authority .section-title {
        font-size: 42px;
        text-align: left;
        padding: 0 24px;
    }
    
    .oa-statement {
        text-align: left;
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .oa-recognition {
        text-align: left;
        padding: 0 24px;
    }
    
    /* FOUNDER VOICE - IMMERSIVE MOBILE */
    .founder-voice-moment {
        padding: 0;
        min-height: auto;
        display: block;
    }
    
    .voice-container {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
        grid-template-columns: 1fr;
    }
    
    .voice-media {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .voice-video {
        border-radius: 0;
    }
    
    .voice-statement {
        padding: 0 24px 60px;
        text-align: center;
    }
    
    .voice-conviction {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }
    
    /* PHILOSOPHY */
    .philosophy {
        padding: 80px 0;
    }
    
    .philosophy .section-title {
        font-size: 42px;
        text-align: left;
        padding: 0 24px;
    }
    
    .philosophy-statement {
        text-align: left;
        padding: 0 24px;
    }
    
    .philosophy-close {
        text-align: left;
        padding: 0 24px;
    }
    
    /* INSIGHT */
    .insight {
        padding: 80px 0;
    }
    
    .insight .section-headline {
        font-size: 36px;
        text-align: left;
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .insight-statement {
        text-align: left;
        padding: 0 24px;
    }
    
    /* LIVED EDITORIAL PAUSE - IMMERSIVE MOBILE MOMENT */
    .lived-pause {
        padding: 0;
        margin: 0 -24px;
    }
    
    .pause-composition {
        margin: 0;
    }
    
    .pause-image {
        height: 70vh;
        min-height: 500px;
        max-height: 650px;
    }
    
    .pause-image img {
        object-fit: cover;
        object-position: center 30%;
    }
    
    .pause-conviction {
        bottom: 60px;
        left: 28px;
        right: 28px;
    }
    
    .pause-conviction p {
        font-size: 26px;
        line-height: 1.3;
        max-width: 100%;
    }
    
    /* METHOD */
    .method {
        padding: 80px 0;
    }
    
    .method .section-title {
        font-size: 32px;
        text-align: left;
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .method-statement {
        text-align: left;
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .method-close {
        text-align: left;
        padding: 0 24px;
    }
    
    /* EVIDENCE */
    .evidence {
        padding: 80px 0;
    }
    
    .evidence .section-title {
        font-size: 32px;
        text-align: left;
        padding: 0 24px;
        margin-bottom: 60px;
    }
    
    .evidence-transitions {
        padding: 0 24px;
    }
    
    .transition {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-left: 0 !important;
        margin-bottom: 40px;
    }
    
    .before {
        text-align: left;
        font-size: 16px;
    }
    
    .arrow {
        text-align: left;
        font-size: 24px;
    }
    
    .after {
        font-size: 18px;
    }
    
    .evidence-close {
        padding: 0 24px;
        text-align: left;
    }
    
    /* FOUNDER */
    .founder {
        padding: 0 0 80px;
    }
    
    .founder-composition {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    
    .founder-portrait {
        position: relative;
        top: 0;
        height: 55vh;
        min-height: 400px;
        max-height: 500px;
        margin: 0 0 40px;
    }
    
    .founder-portrait img {
        object-fit: cover;
        object-position: center 15%;
    }
    
    .founder-narrative {
        padding: 0 24px;
    }
    
    .founder-headline {
        font-size: 38px;
    }
    
    .founder-quote-primary {
        font-size: 26px;
    }
    
    /* CLIENTS */
    .client-evidence {
        grid-template-columns: 1fr;
    }
    
    /* INVITATION */
    .invitation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .invitation-image {
        order: -1;
        height: 50vh;
        min-height: 350px;
        max-height: 450px;
        margin: 0 -24px 40px;
    }
    
    .invitation-image img {
        object-fit: cover;
        object-position: center 15%;
    }
    
    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
