.service-hero {
  position: relative;
  padding: 170px 0 130px;
  background: var(--color-bg);
  overflow: hidden;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.service-hero__content {
  position: relative;
  z-index: 2;
}

.service-hero__content h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-heading);
  font-size: clamp(64px, 7.5vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--color-heading);
}

.service-hero__description {
  max-width: 560px;
  margin: 34px 0;
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
}

.service-hero__description p {
  margin: 0;
}

.service-hero__description p + p {
  margin-top: 18px;
}

.service-hero__media {
  height: 720px;
  max-height: 76vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s ease;
}

.service-hero__media:hover img {
  transform: scale(1);
}

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

.service-hero__meta-item {
  min-height: 180px;
  padding: 38px 30px;
  border-right: 1px solid rgba(230, 226, 219, 0.8);
}

.service-hero__meta-item:last-child {
  border-right: 0;
}

.service-hero__meta-item strong {
  display: block;
  margin-bottom: 14px;

  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;

  color: var(--color-heading);
}

.service-hero__meta-item span {
  display: block;

  max-width: 170px;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;

  color: var(--color-text);
}

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

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

  .service-hero__media {
    height: 560px;
    max-height: none;
  }

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

  .service-hero__meta-item {
    border-bottom: 1px solid rgba(230, 226, 219, 0.8);
  }

  .service-hero__meta-item:nth-child(2n) {
    border-right: 0;
  }

  .service-hero__meta-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

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

  .service-hero__content h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .service-hero__description {
    margin: 28px 0 34px;
    font-size: 16px;
  }

  .service-hero__media {
    height: 430px;
    border-radius: 24px;
  }

  .service-hero__meta {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .service-hero__meta-item {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 219, 0.8);
  }

  .service-hero__meta-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(230, 226, 219, 0.8);
  }

  .service-hero__meta-item:last-child {
    border-bottom: 0;
  }
}
