/* ─── DONE-FOR-YOU PAGE STYLES ─── */

/* ─── DFY HERO ─── */
.dfy-hero {
    margin-top: 64px;
    padding: 120px 48px;
    background: var(--cream);
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.dfy-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}
.dfy-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;
}
.dfy-hero p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ─── APPROACH (DARK) ─── */
.approach-dark {
    background: var(--navy);
    padding: 120px 48px;
}
.approach-dark-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}
.approach-dark .eyebrow {
    color: var(--coral);
}
.approach-dark 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: 24px;
}
.approach-dark-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}
.approach-list {
    display: flex;
    flex-direction: column;
}
.approach-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.approach-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.approach-item .num {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--coral);
}
.approach-item h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.approach-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

/* ─── SCOPE SECTION (What's Included) ─── */
.scope-section {
    padding: 120px 48px;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
}
.scope-section-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.scope-section .eyebrow {
    margin-bottom: 20px;
}
.scope-section 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: 64px;
}
.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 80px;
}
.scope-category h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}
.scope-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.scope-category ul li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 10px;
}
.scope-category ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

/* ─── YOUR ROLE ─── */
.your-role {
    padding: 80px 48px;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.your-role-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.your-role .eyebrow {
    color: var(--coral);
}
.your-role h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.your-role p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

/* ─── PILLARS ─── */
.pillars {
    padding: 100px 48px;
    background: var(--warm-gray);
    border-bottom: 1px solid var(--rule);
}
.pillars-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pillar-card {
    background: var(--white);
    border-left: 4px solid var(--coral);
    padding: 40px 32px;
    border-radius: 0 4px 4px 0;
}
.pillar-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 14px;
}
.pillar-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── PULL QUOTES (2-column override for DFY) ─── */
.pull-quotes-grid--two {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
}

/* ─── BUYER PROFILES (Who This Is For) ─── */
.buyer-profiles {
    padding: 100px 48px;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
}
.buyer-profiles-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.buyer-profiles .eyebrow {
    margin-bottom: 20px;
}
.buyer-profiles 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: 56px;
}
.buyer-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.profile-card {
    background: var(--white);
    border-radius: 4px;
    padding: 36px 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border-top: 3px solid var(--navy);
}
.profile-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
}
.profile-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── 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) {
    .approach-dark-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .scope-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .pull-quotes-grid--two {
        grid-template-columns: 1fr;
    }
    .buyer-profiles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .map-section-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 768px) {
    .dfy-hero {
        padding: 80px 24px;
    }
    .approach-dark {
        padding: 80px 24px;
    }
    .scope-section {
        padding: 80px 24px;
    }
    .your-role {
        padding: 64px 24px;
    }
    .pillars {
        padding: 72px 24px;
    }
    .buyer-profiles {
        padding: 72px 24px;
    }
    .buyer-profiles-grid {
        grid-template-columns: 1fr;
    }
    .map-section {
        padding: 72px 24px;
    }
    .map-section-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
