.home-process {
  --process-ink: #0b0a08;
  --process-paper: #f4ede1;
  --process-muted: #595651;
  --process-node: #595754;
  background: var(--process-paper);
  color: var(--process-ink);
  padding: clamp(82px, 6.8vw, 116px) 0 clamp(94px, 7.5vw, 130px);
}

.home-process__header {
  margin-bottom: clamp(48px, 4.3vw, 72px);
}

.home-process__eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.home-process__header h2 {
  max-width: 1120px;
  margin: 0;
  color: var(--process-ink);
  font-family: var(--sans);
  font-size: clamp(58px, 5.15vw, 88px);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.065em;
}

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  align-items: start;
}

.home-process__step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 19px;
  right: clamp(-40px, -2.3vw, -25px);
  color: var(--process-ink);
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.home-process__number {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--process-node);
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
}

.home-process__copy {
  padding-top: 7px;
}

.home-process__copy h3 {
  margin: 0 0 9px;
  color: var(--process-ink);
  font-family: var(--sans);
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.home-process__copy p {
  max-width: 250px;
  margin: 0;
  color: var(--process-muted);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.42;
}

@media (max-width: 1180px) {
  .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

  .home-process__step:nth-child(2)::after {
    content: none;
  }
}

@media (max-width: 700px) {
  .home-process {
    padding: 68px 0 78px;
  }

  .home-process__header {
    margin-bottom: 40px;
  }

  .home-process__header h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .home-process__steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-process__step {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 17px;
  }

  .home-process__number {
    width: 60px;
    height: 60px;
  }

  .home-process__step::after {
    content: none !important;
  }
}
