/* =============================================
   MANIFESTO SECTION
   Centered word-by-word reveal tagline
   Dark text on cream bg with diagonal stripes
   ============================================= */

.manifesto {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.015) 40px,
            rgba(0, 0, 0, 0.015) 41px
        ),
        var(--color-cream, #FFF4F0);
    padding: var(--section-padding, 100px) 0;
}

.manifesto__text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.manifesto__text p {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 500;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.35;
    color: var(--color-black, #000);
    margin: 0;
}

/* Word spans for scroll reveal */
.reveal-word {
    display: inline-block;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    margin-right: 0.2em;
}

.reveal-word.is-revealed {
    opacity: 1;
}

/* Script accent words — SAME dark color, just italic serif */
.manifesto .script-accent {
    color: var(--color-black, #000);
}

/* Mobile */
@media (max-width: 767px) {
    .manifesto {
        padding: var(--section-padding-mobile, 56px) 0;
    }

    .manifesto__text p {
        font-size: clamp(24px, 5vw, 32px);
    }
}
