.contacts-page {
    background: #fffaf3;
    color: #4b3528;
    overflow: hidden;
}

.contacts-page a {
    color: inherit;
    text-decoration: none;
}

.contacts-page .container {
    max-width: 1180px;
}

/* HERO */

.contacts-hero {
    position: relative;
    padding: 46px 0 34px;
    background:
        radial-gradient(circle at 72% 28%, #e7f4ec 0 0, transparent 34%),
        radial-gradient(circle at 20% 80%, #ffe8d5 0 0, transparent 30%),
        #fffaf3;
}

.contacts-hero__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    min-height: 410px;
}

.contacts-label {
    font-size: 22px;
    font-weight: 800;
    color: #9a6b50;
    margin-bottom: 16px;
}

.contacts-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    color: #5b3827;
    margin: 0 0 24px;
}

.contacts-hero h1 span {
    color: #ff7a2c;
}

.contacts-hero p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
    color: #6f5547;
    margin: 0;
}

.contacts-hero__image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contacts-hero__image img {
    width: 100%;
    max-width: 680px;
    display: block;
    object-fit: contain;
}

/* CONTACT CARDS */

.contacts-info {
    padding: 12px 0 24px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    position: relative;
    min-height: 188px;
    background: #fffefd;
    border: 1px solid #f0c8a8;
    border-radius: 28px;
    padding: 26px 22px;
    box-shadow: 0 8px 20px rgba(112, 76, 44, 0.05);
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 25px;
    color: #fff;
    margin-bottom: 16px;
}

.contact-icon.pink {
    background: #f28b88;
}

.contact-icon.green {
    background: #85bcae;
}

.contact-icon.yellow {
    background: #f5b75b;
}

.contact-icon.purple {
    background: #b49ad8;
}

.contact-card h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    color: #4b3528;
    margin: 0 0 10px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: #6d5548;
    margin: 0;
}

/* MAP */

.contacts-map-section {
    padding: 0 0 24px;
}

.contacts-map-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    background: #f8fbf6;
    border: 1px solid #dce5d9;
    border-radius: 32px;
    padding: 28px;
}

.map-text {
    position: relative;
}

.map-text h2,
.video-column h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    color: #4b3528;
    margin: 0 0 34px;
}

.map-text p {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    color: #5f4637;
    margin: 0;
}

.map-text img {
    width: 170px;
    display: block;
    margin-top: 22px;
}

.map-box iframe {
    width: 100%;
    height: 305px;
    border: 0;
    border-radius: 26px;
    display: block;
}

.route-btn {
    width: fit-content;
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #d5ece2;
    color: #356256;
    border-radius: 999px;
    padding: 13px 34px;
    font-size: 17px;
    font-weight: 900;
}

/* HOW TO FIND */

.how-find-section {
    padding: 0 0 24px;
}

.how-find-card {
    display: grid;
    grid-template-columns: 315px 1fr 315px;
    gap: 30px;
    align-items: center;
    background: linear-gradient(90deg, #fffdf9 0%, #fff5eb 100%);
    border: 1px solid #efd1b8;
    border-radius: 32px;
    padding: 32px;
}

.phone-preview {
    position: relative;
    width: 235px;
    margin-left: 14px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(83, 56, 38, .18);
    background: #ddd;
}

.phone-preview img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .88);
    color: #5d4032;
    font-size: 38px;
    display: grid;
    place-items: center;
}

.story-caption {
    margin-top: 14px;
    text-align: center;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.steps-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.find-step {
    display: grid;
    grid-template-columns: 74px 44px 1fr;
    gap: 16px;
    align-items: center;
}

.step-image {
    width: 74px;
    height: 74px;
    border: 1px solid #efc8a9;
    border-radius: 50%;
    background: #fffaf5;
    display: grid;
    place-items: center;
    color: #82573d;
    font-size: 30px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.step-number.pink {
    background: #ef8583;
}

.step-number.green {
    background: #88bdae;
}

.step-number.purple {
    background: #b49ad8;
}

.step-number.orange {
    background: #ffa65d;
}

.find-step h3 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    color: #4b3528;
    margin: 0 0 5px;
}

.find-step p {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    color: #7a6051;
    margin: 0;
}

.door-column img {
    width: 100%;
    display: block;
}

/* CTA */

.contacts-cta-section {
    padding: 0 0 36px;
}

.contacts-cta {
    position: relative;
    background: #fffefd;
    border-radius: 32px;
    padding: 30px 245px 28px 30px;
    box-shadow: 0 10px 28px rgba(80, 55, 35, .07);
}

.contacts-cta h2 {
    text-align: center;
    color: #36796b;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 24px;
}

.contacts-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: nowrap;
}

.social-card {
    min-width: 145px;
    height: 66px;
    border: 1px solid #ead6c4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    color: #4b3528;
}

.social-card i {
    font-size: 30px;
    color: #e9875e;
}

.social-card b {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
}

.social-card small {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: #7a6051;
    font-weight: 700;
}

.main-contact-btn {
    width: 158px;
    height: 70px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff8131, #ff6b24);
    color: #fff !important;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 8px 18px rgba(255, 107, 36, .22);
}

.cta-sheep {
    position: absolute;
    right: 28px;
    bottom: -2px;
    width: 150px;
}

.cta-note {
    position: absolute;
    right: 140px;
    top: 26px;
    color: #5aa08f;
    font-size: 27px;
    line-height: 1.05;
    font-weight: 700;
    transform: rotate(-7deg);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .contacts-hero__inner,
    .contacts-map-card,
    .how-find-card {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-hero h1 {
        font-size: 48px;
    }

    .contacts-cta {
        padding-right: 30px;
    }

    .cta-sheep,
    .cta-note {
        display: none;
    }

    .contacts-socials {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .contacts-hero {
        padding-top: 34px;
    }

    .contacts-hero h1 {
        font-size: 39px;
    }

    .contacts-hero p {
        font-size: 16px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map-card,
    .how-find-card {
        padding: 22px;
    }

    .phone-preview {
        margin: 0 auto;
    }

    .find-step {
        grid-template-columns: 58px 38px 1fr;
        gap: 10px;
    }

    .step-image {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .contacts-cta h2 {
        font-size: 25px;
    }

    .social-card,
    .main-contact-btn {
        width: 100%;
    }
}