.location-page {
  padding: 60px var(--gutter) 120px;
  flex: 1;
}

.location-page__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.location-page__intro {
  text-align: center;
  margin-bottom: 60px;
}

.location-page__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.location-page__title {
  margin: 10px 0;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text);
}

.location-page__subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* 🔥 ещё больше воздуха между колонками */
.location-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 88px;
  align-items: start;
}

/* 🔥 больше воздуха перед Address */
.location-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.location-page__block {
  padding-top: 4px;
}

.location-page__block-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-page__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.location-page__text a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}

.location-page__text a:hover {
  opacity: 0.7;
}

/* 🔥 карта */
.location-page__map-wrap {
  width: 100%;
}

.location-page__map-link {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  border: 0;
}

.location-page__map-image {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 28px;
  background: #f7f7f7;
  transition: transform .42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.location-page__map-link:focus,
.location-page__map-link:focus-visible,
.location-page__map-link:active {
  outline: none;
  box-shadow: none;
}

/* 🔥 subtle hover эффект */
.location-page__map-link:hover .location-page__map-image {
  transform: scale(1.035);
}

/* 🔥 финальный воздух перед кнопкой */
.services-page__cta {
  width: 100%;
  margin-top: 140px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .location-page {
    padding: 60px var(--gutter) 100px;
  }

  .location-page__intro {
    margin-bottom: 60px;
  }

  .location-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-page__content {
    margin-top: 0;
  }

  .services-page__cta {
    margin-top: 100px;
  }
}

@media (max-width: 700px) {
  .location-page__title {
    font-size: 44px;
  }
}
