.services-page {
  min-height: 100svh;
  background: var(--l);
  color: var(--d);
}

.services-hero {
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: 7rem;
}

.services-hero .container {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.services-kicker {
  font-size: 0.85rem;
}

.services-hero h1 {
  font-size: clamp(4.8rem, 18vw, 18rem);
  white-space: nowrap;
}

.services-copy {
  max-width: 44rem;
}

.services-copy p {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
}

.services-list {
  padding: 2rem 0 7rem;
}

.services-list .container {
  display: grid;
  gap: 1px;
}

.services-list article {
  display: grid;
  grid-template-columns: 5rem minmax(10rem, 0.7fr) minmax(16rem, 1fr);
  gap: 2rem;
  border-top: 1px solid currentColor;
  padding: 1.4rem 0;
}

.services-list article:last-child {
  border-bottom: 1px solid currentColor;
}

.services-list span,
.services-list h2,
.services-list p {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.05;
}

.services-list h2 {
  font-family: var(--f-nm);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .services-hero h1 {
    font-size: clamp(3.3rem, 18vw, 6rem);
  }

  .services-list article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
