/* Start custom CSS for html, class: .elementor-element-469b68a */.em-msk {
    --em-msk-bg: #f4f6f8;
    --em-msk-surface: #ffffff;
    --em-msk-surface-soft: #eef1f4;
    --em-msk-text: #171a1f;
    --em-msk-muted: #5d6570;
    --em-msk-border: #dfe4e9;
    --em-msk-dark: #12161c;
    --em-msk-dark-soft: #1c222b;
    --em-msk-orange: #f5a000;
    --em-msk-orange-dark: #cf8300;
    --em-msk-orange-soft: #fff2d0;
    --em-msk-green-soft: #eaf7ef;
    --em-msk-green: #247448;
    --em-msk-radius-large: 28px;
    --em-msk-radius-medium: 20px;
    --em-msk-radius-small: 14px;
    --em-msk-shadow: 0 18px 52px rgba(17, 25, 35, 0.10);
    --em-msk-shadow-hover: 0 24px 64px rgba(17, 25, 35, 0.16);

    width: 100%;
    color: var(--em-msk-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.65;
}

.em-msk *,
.em-msk *::before,
.em-msk *::after {
    box-sizing: border-box;
}

.em-msk img {
    display: block;
    max-width: 100%;
}

.em-msk a {
    text-decoration: none;
}

.em-msk h1,
.em-msk h2,
.em-msk h3,
.em-msk p,
.em-msk ul,
.em-msk ol,
.em-msk figure {
    margin-top: 0;
}

.em-msk h1,
.em-msk h2,
.em-msk h3 {
    color: var(--em-msk-text);
    line-height: 1.17;
    letter-spacing: -0.025em;
}

.em-msk h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(38px, 6vw, 70px);
}

.em-msk h2 {
    margin-bottom: 18px;
    font-size: clamp(29px, 4.2vw, 47px);
}

.em-msk h3 {
    margin-bottom: 12px;
    font-size: clamp(20px, 2.2vw, 25px);
}

.em-msk__eyebrow {
    display: block;
    margin-bottom: 11px;
    color: var(--em-msk-orange-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Первый экран */

.em-msk__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    min-height: 650px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--em-msk-radius-large);
    background:
        radial-gradient(
            circle at 12% 5%,
            rgba(245, 160, 0, 0.20),
            transparent 35%
        ),
        var(--em-msk-dark);
    box-shadow: var(--em-msk-shadow);
}

.em-msk__hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 6vw, 80px);
}

.em-msk__location {
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 750;
}

.em-msk__hero h1,
.em-msk__hero .em-msk__lead {
    color: #ffffff;
}

.em-msk__lead {
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--em-msk-muted);
    font-size: clamp(17px, 2vw, 21px);
}

.em-msk__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.em-msk__tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.87);
    font-size: 13px;
    font-weight: 700;
}

.em-msk__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.em-msk__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.em-msk__button:hover {
    transform: translateY(-2px);
}

.em-msk__button--primary {
    background: var(--em-msk-orange);
    color: #17120a;
}

.em-msk__button--primary:hover {
    background: var(--em-msk-orange-dark);
    color: #ffffff;
}

.em-msk__button--secondary {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.em-msk__button--secondary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--em-msk-dark);
}

.em-msk__button--ghost {
    border-color: transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.87);
}

.em-msk__button--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.em-msk__button--light {
    background: #ffffff;
    color: var(--em-msk-dark);
}

.em-msk__button--light:hover {
    background: var(--em-msk-orange-soft);
    color: var(--em-msk-dark);
}

.em-msk__hero-note {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.em-msk__hero-image {
    position: relative;
    min-height: 100%;
    margin: 0;
    background: #222933;
}

.em-msk__hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 22, 28, 0.26),
            transparent 35%
        );
    pointer-events: none;
}

.em-msk__hero-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
}

.em-msk__hero-image figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    max-width: calc(100% - 32px);
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(10, 13, 17, 0.72);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.35;
}

/* Факты */

.em-msk__quick-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.em-msk__quick-fact {
    padding: 21px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__quick-fact strong {
    display: block;
    margin-bottom: 6px;
    color: var(--em-msk-text);
    font-size: 19px;
}

.em-msk__quick-fact span {
    display: block;
    color: var(--em-msk-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Навигация */

.em-msk__nav {
    position: sticky;
    top: 12px;
    z-index: 15;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(17, 25, 35, 0.08);
    backdrop-filter: blur(12px);
}

.em-msk__nav a {
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--em-msk-surface-soft);
    color: var(--em-msk-text);
    font-size: 14px;
    font-weight: 750;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.em-msk__nav a:hover {
    background: var(--em-msk-orange);
    color: #17120a;
}

/* Общие секции */

.em-msk__section {
    margin-top: clamp(58px, 8vw, 102px);
    scroll-margin-top: 100px;
}

.em-msk__section-heading {
    max-width: 970px;
    margin-bottom: 31px;
}

.em-msk__section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--em-msk-muted);
    font-size: 18px;
}

/* Введение */

.em-msk__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
    gap: clamp(26px, 5vw, 60px);
    align-items: start;
}

.em-msk__intro-text p {
    color: var(--em-msk-muted);
    font-size: 17px;
}

.em-msk__intro-text p:last-child {
    margin-bottom: 0;
}

.em-msk__aside {
    padding: 27px;
    border: 1px solid rgba(245, 160, 0, 0.42);
    border-radius: var(--em-msk-radius-large);
    background:
        linear-gradient(
            180deg,
            var(--em-msk-orange-soft),
            #ffffff 72%
        );
    box-shadow: var(--em-msk-shadow);
}

.em-msk__aside > strong {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.35;
}

.em-msk__aside ul {
    display: grid;
    gap: 9px;
    margin-bottom: 0;
    padding-left: 21px;
}

.em-msk__aside li {
    color: var(--em-msk-muted);
}

.em-msk__aside li::marker {
    color: var(--em-msk-orange-dark);
}

/* Карточки */

.em-msk__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.em-msk__card {
    min-height: 275px;
    padding: 24px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.em-msk__card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 160, 0, 0.72);
    box-shadow: var(--em-msk-shadow-hover);
}

.em-msk__card-number {
    display: inline-flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--em-msk-orange-soft);
    color: var(--em-msk-orange-dark);
    font-size: 14px;
    font-weight: 900;
}

.em-msk__card p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

/* Тёмный блок */

.em-msk__section--dark {
    padding: clamp(28px, 5vw, 60px);
    border-radius: var(--em-msk-radius-large);
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(245, 160, 0, 0.17),
            transparent 30%
        ),
        var(--em-msk-dark);
    color: #ffffff;
}

.em-msk__section--dark h2,
.em-msk__section--dark h3,
.em-msk__section--dark strong {
    color: #ffffff;
}

.em-msk__section--dark .em-msk__eyebrow {
    color: #ffc248;
}

.em-msk__check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.em-msk__check-grid article {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--em-msk-radius-medium);
    background: rgba(255, 255, 255, 0.055);
}

.em-msk__check-icon {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--em-msk-orange);
    color: #17120a;
    font-size: 14px;
    font-weight: 900;
}

.em-msk__check-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
}

.em-msk__safety-note {
    margin-top: 19px;
    padding: 22px;
    border-left: 5px solid var(--em-msk-orange);
    border-radius: 0 var(--em-msk-radius-medium) var(--em-msk-radius-medium) 0;
    background: rgba(255, 255, 255, 0.07);
}

.em-msk__safety-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.em-msk__safety-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Услуги */

.em-msk__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.em-msk__service {
    padding: 26px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__service ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 20px;
    margin-bottom: 0;
    padding-left: 21px;
}

.em-msk__service li {
    color: var(--em-msk-muted);
}

.em-msk__service li::marker {
    color: var(--em-msk-orange-dark);
}

/* Кухня */

.em-msk__section--kitchen {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(27px, 5vw, 58px);
    align-items: start;
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--em-msk-radius-large);
    background:
        linear-gradient(
            135deg,
            #fff7e4,
            #f5f7f9 68%
        );
}

.em-msk__kitchen-content p {
    color: var(--em-msk-muted);
    font-size: 17px;
}

.em-msk__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #936000;
    font-weight: 850;
}

.em-msk__text-link::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.2s ease;
}

.em-msk__text-link:hover::after {
    transform: translateX(4px);
}

.em-msk__kitchen-list {
    padding: 25px;
    border: 1px solid rgba(245, 160, 0, 0.37);
    border-radius: var(--em-msk-radius-medium);
    background: rgba(255, 255, 255, 0.76);
}

.em-msk__kitchen-list > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
}

.em-msk__kitchen-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    margin-bottom: 0;
    padding-left: 20px;
}

.em-msk__kitchen-list li {
    color: var(--em-msk-muted);
}

.em-msk__kitchen-list li::marker {
    color: var(--em-msk-orange-dark);
}

/* Решение по проводке */

.em-msk__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: clamp(28px, 6vw, 68px);
    align-items: start;
}

.em-msk__split-content p {
    color: var(--em-msk-muted);
    font-size: 17px;
}

.em-msk__decision {
    display: grid;
    gap: 13px;
}

.em-msk__decision > div {
    padding: 21px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__decision > div:first-child {
    border-color: #b9dfc8;
    background: var(--em-msk-green-soft);
}

.em-msk__decision strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.em-msk__decision p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

/* Щит */

.em-msk__section--soft {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--em-msk-radius-large);
    background: var(--em-msk-surface-soft);
}

.em-msk__panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.em-msk__panel-grid > div {
    padding: 24px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__panel-grid strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
}

.em-msk__panel-grid ul {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 21px;
}

.em-msk__panel-grid li {
    color: var(--em-msk-muted);
}

.em-msk__panel-grid li::marker {
    color: var(--em-msk-orange-dark);
}

.em-msk__links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.em-msk__links-row a {
    padding: 10px 14px;
    border: 1px solid var(--em-msk-border);
    border-radius: 999px;
    background: var(--em-msk-surface);
    color: var(--em-msk-text);
    font-size: 14px;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.em-msk__links-row a:hover {
    border-color: var(--em-msk-orange);
    background: var(--em-msk-orange-soft);
}

/* Сеть */

.em-msk__network {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: clamp(27px, 5vw, 58px);
}

.em-msk__network-main p {
    color: var(--em-msk-muted);
    font-size: 17px;
}

.em-msk__network-links {
    display: grid;
    gap: 12px;
}

.em-msk__network-links a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
    color: var(--em-msk-text);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.em-msk__network-links a:hover {
    transform: translateY(-3px);
    border-color: var(--em-msk-orange);
    box-shadow: var(--em-msk-shadow);
}

.em-msk__network-links strong {
    font-size: 18px;
}

.em-msk__network-links span {
    color: var(--em-msk-muted);
    font-size: 14px;
}

/* Цена */

.em-msk__section--price {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--em-msk-radius-large);
    background:
        linear-gradient(
            145deg,
            #fff6de,
            #f1f4f7 65%
        );
}

.em-msk__price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.em-msk__price-grid article {
    padding: 24px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: rgba(255, 255, 255, 0.88);
}

.em-msk__price-grid span {
    display: block;
    margin-bottom: 9px;
    color: var(--em-msk-muted);
    font-size: 14px;
    font-weight: 750;
}

.em-msk__price-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--em-msk-text);
    font-size: 25px;
    line-height: 1.25;
}

.em-msk__price-grid p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

.em-msk__price-note {
    margin-top: 17px;
    padding: 19px 21px;
    border-left: 5px solid var(--em-msk-orange);
    border-radius: 0 var(--em-msk-radius-medium) var(--em-msk-radius-medium) 0;
    background: rgba(255, 255, 255, 0.76);
}

.em-msk__price-note p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

/* Этапы */

.em-msk__steps {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.em-msk__steps li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__steps li > span {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--em-msk-orange);
    color: #17120a;
    font-size: 14px;
    font-weight: 900;
}

.em-msk__steps h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.em-msk__steps p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

/* Нормы */

.em-msk__section--norms {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--em-msk-radius-large);
    background: var(--em-msk-dark);
    color: #ffffff;
}

.em-msk__section--norms h2,
.em-msk__section--norms h3,
.em-msk__section--norms strong {
    color: #ffffff;
}

.em-msk__section--norms .em-msk__eyebrow {
    color: #ffc248;
}

.em-msk__norm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.em-msk__norm-grid article {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--em-msk-radius-medium);
    background: rgba(255, 255, 255, 0.055);
}

.em-msk__norm-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
}

.em-msk__warning {
    margin-top: 18px;
    padding: 22px;
    border-left: 5px solid var(--em-msk-orange);
    border-radius: 0 var(--em-msk-radius-medium) var(--em-msk-radius-medium) 0;
    background: rgba(255, 255, 255, 0.07);
}

.em-msk__warning strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.em-msk__warning p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Гарантия */

.em-msk__warranty {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.em-msk__warranty article {
    padding: 25px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__warranty article > strong {
    display: block;
    margin-bottom: 11px;
    color: var(--em-msk-orange-dark);
    font-size: 28px;
}

.em-msk__warranty p {
    margin-bottom: 0;
    color: var(--em-msk-muted);
}

/* FAQ */

.em-msk__faq {
    display: grid;
    gap: 11px;
    max-width: 1050px;
}

.em-msk__faq details {
    overflow: hidden;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
}

.em-msk__faq summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--em-msk-text);
    cursor: pointer;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.4;
    list-style: none;
}

.em-msk__faq summary::-webkit-details-marker {
    display: none;
}

.em-msk__faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--em-msk-orange-soft);
    color: var(--em-msk-orange-dark);
    font-size: 21px;
    font-weight: 800;
}

.em-msk__faq details[open] summary::after {
    content: "−";
}

.em-msk__faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--em-msk-muted);
}

/* Внутренние ссылки */

.em-msk__section--links {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--em-msk-radius-large);
    background: var(--em-msk-surface-soft);
}

.em-msk__internal-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.em-msk__internal-links a {
    display: flex;
    min-height: 130px;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 21px;
    border: 1px solid var(--em-msk-border);
    border-radius: var(--em-msk-radius-medium);
    background: var(--em-msk-surface);
    color: var(--em-msk-text);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.em-msk__internal-links a:hover {
    transform: translateY(-4px);
    border-color: var(--em-msk-orange);
    box-shadow: var(--em-msk-shadow);
}

.em-msk__internal-links strong {
    font-size: 18px;
}

.em-msk__internal-links span {
    color: var(--em-msk-muted);
    font-size: 14px;
}

/* Финальный CTA */

.em-msk__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    margin-top: clamp(58px, 8vw, 102px);
    padding: clamp(31px, 6vw, 65px);
    border-radius: var(--em-msk-radius-large);
    background:
        radial-gradient(
            circle at 88% 0%,
            rgba(245, 160, 0, 0.25),
            transparent 36%
        ),
        var(--em-msk-dark);
    color: #ffffff;
}

.em-msk__cta h2 {
    color: #ffffff;
}

.em-msk__cta .em-msk__eyebrow {
    color: #ffc248;
}

.em-msk__cta-content p {
    max-width: 850px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.em-msk__cta-actions {
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: 10px;
}

.em-msk__cta-actions .em-msk__button {
    width: 100%;
}

.em-msk__cta-phone {
    padding: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.em-msk__cta-phone:hover {
    color: #ffffff;
}

/* Планшеты */

@media (max-width: 1100px) {

    .em-msk__hero {
        grid-template-columns: 1fr;
    }

    .em-msk__hero-image,
    .em-msk__hero-image img {
        min-height: 430px;
    }

    .em-msk__quick-facts,
    .em-msk__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .em-msk__check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .em-msk__intro-grid,
    .em-msk__section--kitchen,
    .em-msk__split,
    .em-msk__network {
        grid-template-columns: 1fr;
    }

    .em-msk__cta {
        grid-template-columns: 1fr;
    }

    .em-msk__cta-actions {
        max-width: 460px;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .em-msk__cta-actions .em-msk__button {
        width: auto;
        flex: 1 1 190px;
    }

    .em-msk__cta-phone {
        width: 100%;
        text-align: left;
    }

}

/* Мобильные устройства */

@media (max-width: 760px) {

    .em-msk {
        font-size: 15px;
    }

    .em-msk__hero {
        min-height: auto;
        border-radius: 22px;
    }

    .em-msk__hero-content {
        padding: 31px 21px;
    }

    .em-msk h1 {
        font-size: 37px;
    }

    .em-msk h2 {
        font-size: 29px;
    }

    .em-msk__location {
        border-radius: 14px;
        line-height: 1.45;
    }

    .em-msk__hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .em-msk__button {
        width: 100%;
    }

    .em-msk__hero-image,
    .em-msk__hero-image img {
        min-height: 285px;
    }

    .em-msk__quick-facts,
    .em-msk__cards,
    .em-msk__services,
    .em-msk__price-grid,
    .em-msk__warranty,
    .em-msk__internal-links,
    .em-msk__norm-grid,
    .em-msk__panel-grid {
        grid-template-columns: 1fr;
    }

    .em-msk__nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 11px;
    }

    .em-msk__nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 8px 9px;
        text-align: center;
    }

    .em-msk__section--dark,
    .em-msk__section--soft,
    .em-msk__section--kitchen,
    .em-msk__section--price,
    .em-msk__section--norms,
    .em-msk__section--links {
        margin-right: -3px;
        margin-left: -3px;
        padding: 27px 18px;
        border-radius: 22px;
    }

    .em-msk__check-grid {
        grid-template-columns: 1fr;
    }

    .em-msk__service ul,
    .em-msk__kitchen-list ul {
        grid-template-columns: 1fr;
    }

    .em-msk__card {
        min-height: auto;
        padding: 21px;
    }

    .em-msk__steps li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .em-msk__steps li > span {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    .em-msk__cta {
        padding: 31px 21px;
        border-radius: 22px;
    }

    .em-msk__cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
    }

    .em-msk__cta-actions .em-msk__button {
        width: 100%;
    }

    .em-msk__cta-phone {
        text-align: center;
    }

}

/* Узкие экраны */

@media (max-width: 430px) {

    .em-msk h1 {
        font-size: 34px;
    }

    .em-msk__nav {
        grid-template-columns: 1fr;
    }

    .em-msk__hero-image,
    .em-msk__hero-image img {
        min-height: 235px;
    }

    .em-msk__quick-fact,
    .em-msk__service,
    .em-msk__card,
    .em-msk__aside {
        padding: 19px;
    }

}

/* Уменьшение анимации */

@media (prefers-reduced-motion: reduce) {

    .em-msk *,
    .em-msk *::before,
    .em-msk *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

}/* End custom CSS */