.contact-hero {
  padding: 170px 0 120px;
  background: var(--color-bg);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.contact-hero__content h1 {
  max-width: 740px;
  margin: 22px 0 34px;
  font-family: var(--font-heading);
  font-size: clamp(68px, 7vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--color-heading);
}

.contact-hero__description {
  max-width: 620px;
  margin-bottom: 44px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
}

.contact-hero__description p {
  margin: 0;
}

.contact-hero__image {
  height: 700px;
  max-height: 76vh;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}

.contact-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s ease;
}

.contact-hero__image:hover img {
  transform: scale(1);
}

.contact-hero__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid rgba(230, 226, 219, 0.85);
  border-bottom: 1px solid rgba(230, 226, 219, 0.85);
}

.contact-hero__info a,
.contact-hero__info div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 150px;
  padding: 36px 28px;
  border-right: 1px solid rgba(230, 226, 219, 0.85);
  text-decoration: none;
}

.contact-hero__info a:last-child,
.contact-hero__info div:last-child {
  border-right: 0;
}

.contact-hero__info small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.42);
}

.contact-hero__info span {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-heading);
}

.contact-hero__info a span {
  transition: var(--transition);
}

.contact-hero__info a[href^="tel"] span {
  white-space: nowrap;
}
.contact-hero__info a[href^="mailto"] span {
  font-size: clamp(22px, 2vw, 32px);
  word-break: break-word;
}
.contact-hero__info a:hover span {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 135px 0 100px;
  }

  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-hero__image {
    height: 560px;
    max-height: none;
  }

  .contact-hero__info {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .contact-hero__info a:nth-child(2n),
  .contact-hero__info div:nth-child(2n) {
    border-right: 0;
  }

  .contact-hero__info a,
  .contact-hero__info div {
    border-bottom: 1px solid rgba(230, 226, 219, 0.85);
  }

  .contact-hero__info a:nth-last-child(-n + 2),
  .contact-hero__info div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 115px 0 80px;
  }

  .contact-hero__content h1 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .contact-hero__description {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .contact-hero__image {
    height: 420px;
    border-radius: 24px;
  }

  .contact-hero__info {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .contact-hero__info a,
  .contact-hero__info div {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 219, 0.85);
  }

  .contact-hero__info a:nth-last-child(-n + 2),
  .contact-hero__info div:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(230, 226, 219, 0.85);
  }

  .contact-hero__info a:last-child,
  .contact-hero__info div:last-child {
    border-bottom: 0;
  }

  .contact-hero__info span {
    font-size: clamp(30px, 9vw, 42px);
  }
}
