body[data-page="services"] .services-hero {
  grid-template-columns: 36% 64%;
  min-height: 620px;
}

body[data-page="services"] .services-hero .hero-copy {
  padding-inline: clamp(32px, 5.4vw, 92px);
}

body[data-page="services"] .services-hero .hero-image {
  min-height: 620px;
}

body[data-page="services"] .services-hero .hero-image img {
  object-position: 56% center;
}

body[data-page="services"] .service-row {
  grid-template-columns: 58% 42%;
  min-height: 570px;
  border-top: 1px solid rgba(95,66,45,.08);
}

body[data-page="services"] .service-row.reverse {
  grid-template-columns: 39% 61%;
}

body[data-page="services"] .service-row .split-image {
  min-height: 570px;
}

body[data-page="services"] .service-row .split-copy {
  padding: clamp(44px, 5vw, 78px);
}

body[data-page="services"] .service-row .section-title {
  margin-block: 7px 17px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 23px 0 31px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #b59172;
  border-radius: 50%;
  color: var(--brown);
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 1020px) {
  body[data-page="services"] .services-hero {
    grid-template-columns: 42% 58%;
  }

  body[data-page="services"] .service-row,
  body[data-page="services"] .service-row.reverse {
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 720px) {
  body[data-page="services"] .services-hero,
  body[data-page="services"] .service-row,
  body[data-page="services"] .service-row.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body[data-page="services"] .services-hero .hero-image,
  body[data-page="services"] .service-row .split-image {
    min-height: 390px;
  }

  body[data-page="services"] .service-row.reverse .split-image {
    order: 0;
  }

  .service-list {
    gap: 10px 14px;
  }
}
