/* manifesto */

.manifesto {
    background-color: #0c0c0c;
    padding: 150px 60px;
}

.manifesto-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-inner .section-eyebrow {
    justify-content: center;
    margin-bottom: 40px;
}

.manifesto-line {
    font-family: var(--font-secondary), sans-serif;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.4;
    color: #8f8f8f;
    margin-bottom: 8px;
}

.manifesto-line-accent {
    color: #f6f6f6;
    margin-top: 24px;
}

/* final cta band */

.project-cta-band {
    padding: 120px 60px;
    text-align: center;
    background-color: #0c0c0c;
    border-top: 1px solid rgba(183, 183, 183, .14);
}

.project-cta-band .section-eyebrow {
    justify-content: center;
    margin-bottom: 20px;
}

.project-cta-band h2 {
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 400;
    color: #f2f2f2;
    max-width: 640px;
    margin: 0 auto 34px;
    line-height: 1.3;
}

.project-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border: 1px solid rgba(183, 183, 183, .4);
    color: #f2f2f2;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .4s ease, color .4s ease, border-color .4s ease;
}

.project-cta-btn:hover {
    background-color: #f2f2f2;
    color: #000;
    border-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
    .manifesto {
        padding: 90px 24px;
    }

    .project-cta-band {
        padding: 80px 24px;
    }
}
