/* ===================================================
   ABOUT.CSS — About Section Styles
   =================================================== */

.about {
    position: relative;
    padding: 8rem 3rem;
    background-color: #fff;
    overflow: hidden;
}

.about__container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.about__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about__headline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 2rem;
}

.about__headline--muted {
    color: rgba(0, 0, 0, 0.3);
}

.about__body-text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.55);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .about {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about__headline {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .about__body-text {
        font-size: 0.95rem;
    }
}
