/* ========================================
   HOME HERO
   ======================================== */

.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;

    display: grid;
    place-content: center;

    text-align: center;
}

.hero h1 {
    margin: 0;

    font-family: var(--font-title);
    font-weight: 600;
    font-size: clamp(4rem, 13vw, 11rem);

    line-height: 0.88;
    letter-spacing: -0.08em;
}

.tagline {
    margin: 2rem 0 0;

    color: var(--white);

    font-size: clamp(1.4rem, 3vw, 2.5rem);
    line-height: 1.15;
}

/* ========================================
   HOME CONTENT
   ======================================== */

.manifesto,
.home-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.manifesto p {
    font-size: clamp(1.3rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.home-section h2 {
    margin: 0.5rem 0 1rem;

    font-size: clamp(2.2rem, 6vw, 5rem);
}

.home-section p {
    color: var(--muted);

    font-size: 1.2rem;
    line-height: 1.6;
}
**

/* ========================================
   SPARKS
   ======================================== */

.spark {
    margin: 0;
}

.home-section .spark-text {
    margin: 0;

    color: var(--white);

    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.2;
    /* font-size: 1.1rem; */
}

.spark-source {
    margin-top: 1.5rem;

    color: var(--muted);

    /* font-size: 0.9rem; */
    font-style: normal;
    letter-spacing: 0.08em;
    font-size: 1.2rem;
}

.spark-source:empty {
    display: none;
}

/* ========================================
   RESPONSIVE HOME
   ======================================== */

@media (max-width: 620px) {
    .hero {
        padding-inline: 1rem;
    }

    .manifesto,
    .home-section {
        padding: 4rem 1rem;
    }
}
