/* ==========================================================================
   Northwest Nodes — About
   Narrative, manifesto, strips, editorial
   ========================================================================== */

/* ==========================================================================
   NARRATIVE
   ========================================================================== */

.narrative {
    padding: var(--section-pad) 56px;
    background: var(--warm-white);
}

.narrative-inner {
    max-width: var(--reading-width);
    margin: 0 auto;
}

.narrative-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}

.narrative p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.86;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.narrative p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   MANIFESTO
   ========================================================================== */

.manifesto {
    padding: var(--section-pad-tight) 56px;
    background: var(--warm-white);
    border-top: 1px solid var(--border-light);
}

.manifesto-inner {
    max-width: var(--reading-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.manifesto-staccato p:not(.section-label) {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--navy);
    letter-spacing: -0.01em;
    max-width: none;
}

.manifesto-lead {
    padding-left: 48px;
    border-left: 1px solid var(--border-light);
}

.manifesto-lead-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.86;
    color: var(--text-secondary);
    max-width: 420px;
    margin-bottom: 18px;
}

.manifesto-lead-text:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ABOUT STRIPS
   ========================================================================== */

.about-strips {
    padding: 0 56px;
    background: var(--warm-white);
}

.about-strips-inner {
    max-width: 960px;
    margin: 0 auto;
}

.about-strip {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.about-strip:last-child {
    border-bottom: 1px solid var(--border-light);
}

.about-strip-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
}

.about-strip-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-top: 4px;
    max-width: none;
}

/* ==========================================================================
   EDITORIAL
   ========================================================================== */

.editorial {
    padding: var(--section-pad) 56px;
    background: var(--off-white);
}

.editorial.editorial-warm {
    background: var(--warm-white);
}

.editorial-inner {
    max-width: var(--reading-width);
    margin: 0 auto;
}

.editorial-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}

.editorial p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.86;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.editorial p:last-of-type {
    margin-bottom: 0;
}

.editorial-sig {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 48px;
}

.editorial-sig-value {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.editorial-sig-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* ==========================================================================
   RESPONSIVE — ABOUT
   ========================================================================== */

@media (max-width: 1200px) {
    .narrative,
    .manifesto,
    .about-strips,
    .editorial {
        padding-left: 40px;
        padding-right: 40px;
    }

    .manifesto-inner {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .narrative,
    .manifesto,
    .about-strips,
    .editorial {
        padding-left: 32px;
        padding-right: 32px;
    }

    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .manifesto-lead {
        padding-left: 0;
        border-left: none;
        padding-top: 32px;
        border-top: 1px solid var(--border-light);
    }

    .about-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .narrative,
    .manifesto,
    .about-strips,
    .editorial {
        padding-left: 24px;
        padding-right: 24px;
    }

    .editorial-sig {
        flex-wrap: wrap;
        gap: 28px 40px;
    }
}

@media (max-width: 480px) {
    .manifesto-staccato p:not(.section-label) {
        font-size: 22px;
    }
}