/* ========================================
   УСЛУГИ
======================================== */

.services {
    width: 100%;
    background: #f5f2ef;
    color: #171717;

    font-family: "Manrope", Arial, sans-serif;
}

.services__container {
    width: 100%;
    max-width: 1220px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;

    box-sizing: border-box;
}


/* ========================================
   ЗАГОЛОВОК
======================================== */

.services__head {
    padding-top: 50px;
    padding-bottom: 32px;
}

.services__label {
    margin-bottom: 8px;

    color: #a47855;

    font-size: 10px;
    line-height: 1.2;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.04em;
}

.services__title {
    margin: 0;

    color: #191919;

    font-size: 31px;
    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -0.8px;
}

.services__description {
    max-width: 520px;

    margin: 12px 0 0;

    color: #64615e;

    font-size: 12px;
    line-height: 1.6;

    font-weight: 400;
}


/* ========================================
   СЕТКА КАРТОЧЕК
======================================== */

.services__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    padding-bottom: 42px;
}


/* ========================================
   КАРТОЧКА
======================================== */

.service-card {
    min-width: 0;

    padding: 16px;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.56);

    border: 1px solid rgba(255, 255, 255, 0.82);

    border-radius: 11px;

    box-sizing: border-box;

    box-shadow:
        0 5px 25px rgba(40, 32, 25, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(40, 32, 25, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


/* Иконка */

.service-card__icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    background: #f3eee8;

    border-radius: 10px;

    color: #55514d;
}

.service-card__icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Заголовок */

.service-card__title {
    min-height: 52px;

    margin: 0 0 13px;

    color: #292725;

    font-size: 18px;
    line-height: 1.22;

    font-weight: 600;

    letter-spacing: -0.35px;
}


/* Текст */

.service-card__text {
    min-height: 67px;

    margin: 0 0 18px;

    color: #5f5b57;

    font-size: 11px;
    line-height: 1.65;

    font-weight: 400;
}


/* ========================================
   КАРТИНКА
======================================== */

.service-card__image {
    width: 100%;
    height: 145px;

    margin-top: auto;

    overflow: hidden;

    border-radius: 9px;

    background: #ddd6d0;
}

.service-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.035);
}


/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ
======================================== */

.additional-services {
    width: 100%;

    padding: 35px 0 38px;

    background: #efebe7;

    border-top: 1px solid rgba(111, 96, 82, 0.035);
}

.additional-services__head {
    margin-bottom: 25px;
}

.additional-services__title {
    margin: 0;

    color: #191919;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -0.7px;
}

.additional-services__description {
    max-width: 530px;

    margin: 10px 0 0;

    color: #696560;

    font-size: 12px;
    line-height: 1.6;
}


/* ========================================
   СЕТКА ДОП. УСЛУГ
======================================== */

.additional-services__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px 14px;
}


/* Плашка */

.additional-service {
    min-width: 0;
    min-height: 43px;

    padding: 8px 17px;

    display: flex;
    align-items: center;

    gap: 12px;

    box-sizing: border-box;

    background: rgba(230, 222, 214, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.38);

    border-radius: 11px;

    color: #514e4a;

    font-size: 11px;
    line-height: 1.3;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.additional-service:hover {
    background: #e2d8cf;

    color: #231f1c;

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px rgba(50, 41, 34, 0.06);
}


/* Иконка */

.additional-service__icon {
    width: 21px;
    height: 21px;

    flex: 0 0 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #75706b;
}

.additional-service__icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ========================================
   НОУТБУК
======================================== */

@media (max-width: 1100px) {

    .services__grid {
        gap: 14px;
    }

    .service-card {
        padding: 14px;
    }

    .service-card__title {
        font-size: 16px;
    }

    .additional-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .additional-service {
        white-space: normal;
    }
}


/* ========================================
   ПЛАНШЕТ
======================================== */

@media (max-width: 850px) {

    .services__grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .service-card__image {
        height: 180px;
    }

    .service-card__title,
    .service-card__text {
        min-height: 0;
    }

    .additional-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   МОБИЛЬНЫЕ
======================================== */

@media (max-width: 600px) {

    .services__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services__head {
        padding-top: 38px;
        padding-bottom: 25px;
    }

    .services__title,
    .additional-services__title {
        font-size: 27px;
    }

    .services__description,
    .additional-services__description {
        font-size: 12px;
    }

    .services__grid {
        grid-template-columns: 1fr;

        gap: 16px;

        padding-bottom: 35px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card__icon {
        width: 42px;
        height: 42px;

        margin-bottom: 12px;
    }

    .service-card__title {
        font-size: 19px;
    }

    .service-card__text {
        margin-bottom: 16px;

        font-size: 12px;
    }

    .service-card__image {
        height: 210px;
    }

    .additional-services {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .additional-services__grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .additional-service {
        min-height: 48px;

        padding-left: 15px;
        padding-right: 15px;

        font-size: 12px;

        white-space: normal;
    }
}


/* ========================================
   МАЛЕНЬКИЕ ТЕЛЕФОНЫ
======================================== */

@media (max-width: 400px) {

    .service-card__image {
        height: 185px;
    }

    .services__title,
    .additional-services__title {
        font-size: 25px;
    }
}