.about {
    position: relative;
    width: 100%;
    min-height: 22vh;

    padding: 4.5% 6% 4.5% 28%;

    background: #f5ecdf;
    overflow: hidden;
}

.about__floral {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 24%;
    height: auto;
}

.about__content {
    width: 100%;

    display: grid;
    grid-template-columns: 48% 44%;
    gap: 8%;
    align-items: center;
}

.about__title {
    margin: 0;

    color: #566b56;

    font-size: clamp(1.4rem, 2.1vw, 2.8rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.about__text {
    margin: 0;

    color: #3f463f;

    font-size: clamp(0.75rem, 0.9vw, 1.1rem);
    line-height: 1.7;
}

@media (max-width: 800px) {
    .about {
        padding: 8% 6% 10% 6%;
    }

    .about__floral {
        opacity: 0.28;
        width: 42%;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}