.contact-header-img {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  line-height: 0;
}

.contact-header-img__image {
  width: 100%;
  height: auto;
  display: block;
}

.contact-page {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 80px) 80px;
  box-sizing: border-box;
  background: #fff;
}

.contact-page__content {
  flex: 1 1 420px;
  max-width: 100%;
}

.contact-page__title {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #1c1c1c;
}

.contact-page__description {
  margin: 0 0 40px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.65;
  color: #757575;
}

.contact-page__section {
  margin-bottom: 32px;
}

.contact-page__section:last-child {
  margin-bottom: 0;
}

.contact-page__section-title {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: #1c1c1c;
}

.contact-page__section-text {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 14px);
  font-weight: 400;
  line-height: 1.6;
  color: #757575;
}

.contact-page__section-text:last-child {
  margin-bottom: 0;
}

.contact-page__section-text a {
  color: inherit;
  text-decoration: none;
}

.contact-page__section-text a:hover {
  color: #d3b574;
}

.contact-page__map {
  --contact-map-height: 560px;
  flex: 1 1 520px;
  max-width: 100%;
  min-height: var(--contact-map-height);
}

.contact-page__map-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: var(--contact-map-height);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.contact-page__map-card:hover .contact-page__map-hint {
  background: #fff;
  color: #333;
}

.contact-page__map-frame {
  width: 100%;
  height: 100%;
  min-height: var(--contact-map-height);
  border: 0;
  display: block;
  z-index: 1;
}

.contact-page__map-overlay {
  position: absolute;
  inset: 0;
  z-index: 500;
}

.contact-page__map-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 501;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #666;
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
}

.contact-page__map-frame.leaflet-container {
  font-family: inherit;
}

.contact-page__map-frame .contact-map-label.leaflet-tooltip {
  width: 280px;
  max-width: calc(100vw - 48px);
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  color: #757575;
  font-family: "Poppins", sans-serif;
  white-space: normal;
  box-sizing: border-box;
}

.contact-page__map-frame .contact-map-label.leaflet-tooltip-top:before {
  border-top-color: #fff;
}

.contact-page__map-frame .contact-map-label__title {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1c1c1c;
}

.contact-page__map-frame .contact-map-label__address {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #757575;
}

@media (max-width: 900px) {
  .contact-page {
    padding: 48px clamp(20px, 4vw, 40px) 64px;
  }

  .contact-page__content,
  .contact-page__map {
    flex: 1 1 100%;
  }

  .contact-page__map {
    --contact-map-height: 440px;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 40px 20px 48px;
    gap: 32px;
  }

  .contact-page__description {
    margin-bottom: 32px;
  }

  .contact-page__section {
    margin-bottom: 24px;
  }

  .contact-page__map {
    --contact-map-height: 380px;
  }
}
