:root {
    --stage-bg: #F0F0F0;
    --card-bg: #4588e6;
    --card-border: #4c91e8;
    --text: #ffffff;
}

* {
    box-sizing: border-box;
}

.stage {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(16px, 3.3vw, 64px) clamp(14px, 2.9vw, 56px);
    background: var(--stage-bg);
    border-radius: clamp(18px, 2vw, 34px);
}

.contacts-layout {
    display: grid;
    grid-template-columns: minmax(320px, 700px) minmax(360px, 1fr);
    align-items: stretch;
    gap: clamp(16px, 2vw, 36px);
}

.contacts-frame {
    width: 100%;
}

.contacts-card {
    background: var(--card-bg);
    border-radius: clamp(22px, 2.4vw, 46px);
    padding: clamp(20px, 1.8vw, 34px) clamp(14px, 1.9vw, 36px) clamp(22px, 2vw, 38px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    height: 100%;
}

.map-slot {
    min-width: 0;
    min-height: clamp(380px, 48vw, 960px);
    border-radius: clamp(14px, 1.4vw, 26px);
    background: linear-gradient(180deg, #edf1f6 0%, #e4e8ee 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: hidden;
}

.map-slot iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.title {
	color: #fff;
    margin: 0 0 clamp(14px, 1.6vw, 28px);
    font-size: clamp(34px, 4.1vw, 68px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.group {
    margin-bottom: clamp(14px, 1.2vw, 22px);
}

.group:last-child {
    margin-bottom: 0;
}

.label {
	color: #fff;
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.8vw, 12px);
    margin: 0 0 clamp(8px, 0.8vw, 12px);
    font-size: clamp(24px, 2.3vw, 40px);
    line-height: 1.15;
    font-weight: 700;
}

.icon {
    width: clamp(22px, 1.8vw, 32px);
    height: clamp(22px, 1.8vw, 32px);
    flex: 0 0 clamp(22px, 1.8vw, 32px);
    fill: currentColor;
    color: #fff;
}

.text {
	color: #fff;
    margin: 0 0 0 clamp(0px, 2.2vw, 44px);
    font-size: clamp(16px, 1.3vw, 34px);
    line-height: 1.15;
    font-weight: 700;
}

.text a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.tight {
    line-height: 1.12;
}

@media (max-width: 1200px) {
    .stage {
        min-height: auto;
    }

    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .map-slot {
        min-height: clamp(320px, 48vw, 560px);
    }

    .text {
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    body {
        padding: 8px;
    }

    .stage {
        min-height: auto;
        padding: 14px 10px;
        border-radius: 14px;
    }

    .contacts-card {
        border-radius: 20px;
        padding: 16px 12px 18px;
    }

    .map-slot {
        min-height: 300px;
        border-radius: 14px;
    }

    .title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .label {
        font-size: clamp(20px, 6.3vw, 28px);
    }

    .text {
        font-size: clamp(15px, 4.6vw, 22px);
    }
}