.service-manifest {
  padding: 180px 0;
  background: var(--color-bg);
}

.service-manifest__head {
  max-width: 980px;
  margin-bottom: 80px;
}

.service-manifest__head h2 {
  margin: 24px 0 0;
  max-width: 1100px;
  font-family: var(--font-heading);
  font-size: clamp(76px, 8vw, 138px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--color-heading);
}

.service-manifest__image {
  margin: 0;
  height: 760px;
  max-height: 82vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}

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

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

.service-manifest__description {
  max-width: 760px;
  margin: 50px 0 0 120px;
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-text);
}

.service-manifest__description p {
  margin: 0;
}

.service-manifest__description p + p {
  margin-top: 22px;
}

@media (max-width: 991px) {
  .service-manifest {
    padding: 110px 0;
  }

  .service-manifest__head {
    margin-bottom: 60px;
  }

  .service-manifest__image {
    height: 600px;
    max-height: none;
  }

  .service-manifest__description {
    max-width: 100%;
    margin-top: 52px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .service-manifest {
    padding: 85px 0;
  }

  .service-manifest__head {
    margin-bottom: 42px;
  }

  .service-manifest__head h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .service-manifest__image {
    height: 420px;
    border-radius: 24px;
  }

  .service-manifest__description {
    margin-top: 38px;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.8;
  }
}
