/* ─── ABOUT PAGE STYLES ─── */

/* ─── ABOUT HERO ─── */
.about-hero {
    margin-top: 64px;
    padding: 120px 48px;
    background: var(--cream);
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.about-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}
.about-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-hero p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── TEAM EDITORIAL ─── */
.team-editorial {
    padding: 120px 48px;
    border-bottom: 1px solid var(--rule);
}
.team-editorial-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img {
    border-radius: 4px;
    overflow: hidden;
}
.about-img img {
    width: 100%;
    display: block;
}
.team-editorial-text .eyebrow {
    margin-bottom: 20px;
}
.team-editorial-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 24px;
}
.team-editorial-text p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.team-editorial-text p:last-child {
    margin-bottom: 0;
}

/* ─── PHILOSOPHY (DARK) ─── */
.philosophy {
    background: var(--navy);
    padding: 120px 48px;
}
.philosophy-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.philosophy .eyebrow {
    color: var(--coral);
}
.philosophy h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 64px;
}
.philosophy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.philosophy-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.philosophy-col:first-child h3 {
    color: var(--white);
}
.philosophy-col:last-child h3 {
    color: var(--coral);
}
.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.philosophy-list li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.philosophy-col:first-child .philosophy-list li {
    color: rgba(255,255,255,0.45);
}
.philosophy-col:first-child .philosophy-list li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.25);
}
.philosophy-col:last-child .philosophy-list li {
    color: rgba(255,255,255,0.70);
}
.philosophy-col:last-child .philosophy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

/* ─── SCAN / BUILD / MANAGE ─── */
.framework {
    padding: 120px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}
.framework-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.framework-header {
    margin-bottom: 64px;
}
.framework-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}
.framework-header p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 600px;
}
.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.framework-card {
    padding: 0;
}
.framework-card .num {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 48px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 20px;
}
.framework-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}
.framework-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── ABOUT CTA (centered, dark) ─── */
.about-cta {
    background: var(--navy-deep);
    padding: 100px 48px;
    text-align: center;
}
.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.about-cta h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}
.about-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 36px;
}

/* ─── MAP SECTION ─── */
.map-section {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.map-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.map-section-text .eyebrow { margin-bottom: 20px; }
.map-section-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}
.map-section-text p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
}
.map-section-img img {
    width: 100%;
    display: block;
}

/* ─── RESPONSIVE: 1024px ─── */
@media (max-width: 1024px) {
    .team-editorial-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .philosophy-columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-section-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 24px;
    }
    .team-editorial {
        padding: 80px 24px;
    }
    .philosophy {
        padding: 80px 24px;
    }
    .framework {
        padding: 80px 24px;
    }
    .about-cta {
        padding: 72px 24px;
    }
}
