.family-company__inner {
    /*max-width: var(--container-max);*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 726fr 714fr;
    min-height: 765px;
}

/* LEFT COLUMN */
.family-company__left {
    display: flex;
    flex-direction: column;
}

/* Intro block (black, 446px tall) */
.family-company__intro {
    background-color: var(--color-black);
    color: var(--color-white);
    height: 446px;
    padding: 67px 110px 0 94px;
}

.family-company__label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin: 0 0 21px;
}

.family-company__title {
    font-family: var(--font-decorative);
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0 0 7px;
}

.family-company__description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin: 0;
}

.family-company__description p {
    margin: 0;
}

/* Features block (green, 319px tall) */
.family-company__features {
    position: relative;
    background-color: #037750;
    height: 319px;
    padding: 103px 81px 0 81px;
    overflow: hidden;
}

.family-company__ornament {
    position: absolute;
    top: 13px;
    width: 141px;
    height: 125px;
    pointer-events: none;
}

.family-company__ornament--left {
    left: 14px;
}

.family-company__ornament--right {
    right: 14px;
}

.family-company__features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.family-company__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100px;
    height: 100px;
}

.family-company__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.family-company__feature-text {
    font-family: var(--font-decorative);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
}

/* RIGHT COLUMN (image) */
.family-company__image {
    height: 765px;
    overflow: hidden;
}

.family-company__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MOBILE / INTERMEDIATE (below desktop breakpoint) */
@media (max-width: 1000px) {
    .family-company__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .family-company__image {
        display: none;
    }

    .family-company__intro {
        height: auto;
        padding: 33px 33px 33px 24px;
    }

    .family-company__label {
        margin: 0 0 21px;
    }

    .family-company__title {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 10px;
    }

    .family-company__description p {
        margin: 0 0 24px;
    }

    .family-company__description p:last-child {
        margin-bottom: 0;
    }

    .family-company__description br {
        display: none;
    }

    .family-company__features {
        height: auto;
        min-height: 532px;
        padding: 126px 0 62px;
    }

    .family-company__ornament {
        top: 11px;
        width: 158px;
        height: auto;
        max-width: calc((100% - 40px) / 2);
        aspect-ratio: 158 / 140;
    }

    .family-company__ornament--left {
        left: 13px;
    }

    .family-company__ornament--right {
        right: 13px;
    }

    .family-company__features-list {
        grid-template-columns: 100px 100px;
        column-gap: 46px;
        row-gap: 37px;
        justify-content: center;
    }

    .family-company__feature {
        align-items: flex-start;
        gap: 12px;
        width: auto;
        height: auto;
    }

    .family-company__feature-text {
        font-size: 21px;
        line-height: 1;
        text-align: left;
    }
}
