.section-process {
  min-height: auto;
  padding-top: clamp(92px, 18vw, 132px);
  padding-bottom: clamp(96px, 20vw, 146px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 22%),
    var(--color-cream-soft);
}

.process-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(28px);
}

.process-shape--one {
  top: 14%;
  left: -34%;
  width: 66%;
  height: 30%;
  background: rgba(102, 115, 76, 0.15);
}

.process-shape--two {
  right: -30%;
  bottom: 10%;
  width: 62%;
  height: 28%;
  background: rgba(181, 154, 97, 0.12);
}

.process-heading {
  max-width: 620px;
}

.process-layout {
  position: relative;
  z-index: 2;
}

.process-photo {
  position: relative;
  width: 72%;
  height: 470px;
  margin: 0 0 54px auto;
  overflow: hidden;
  border-radius: 160px 160px 24px 24px;
  box-shadow: 0 30px 70px rgba(36, 41, 29, 0.16);
}

.process-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(25, 29, 21, 0.48)),
    linear-gradient(90deg, rgba(242, 238, 226, 0.08), transparent 45%);
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.74) contrast(0.99) brightness(1.01);
}

.process-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 19px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-timeline {
  position: relative;
  padding-left: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 7px;
  bottom: 9px;
  left: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-olive), rgba(77, 87, 59, 0.12));
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  padding: 0 0 34px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step__marker {
  position: absolute;
  top: 5px;
  left: -29px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--color-cream-soft);
  border-radius: 50%;
  background: var(--color-olive);
  box-shadow: 0 0 0 1px var(--color-olive);
}

.process-step__number {
  padding-top: 4px;
  color: var(--color-olive);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.process-step__copy {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-line);
}

.process-step:last-child .process-step__copy {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-step__copy h3 {
  margin-bottom: 7px;
  font-size: clamp(1.6rem, 6.5vw, 2.25rem);
  line-height: 0.96;
}

.process-step__copy p {
  max-width: 390px;
  color: var(--color-muted);
  font-size: 0.73rem;
  line-height: 1.58;
}

.process-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 48px;
  color: var(--color-olive);
  font-size: 0.43rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-footer__rule {
  height: 1px;
  background: var(--color-line);
}

@media (max-width: 374px) {
  .process-photo {
    width: 78%;
    height: 420px;
    margin-bottom: 46px;
  }

  .process-timeline {
    padding-left: 27px;
  }

  .process-step {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .process-step__marker {
    left: -26px;
  }

  .process-step__copy h3 {
    font-size: 1.5rem;
  }

  .process-footer {
    font-size: 0.38rem;
    gap: 6px;
  }
}

@media (min-width: 560px) {
  .process-photo {
    width: 68%;
    height: 560px;
    margin-bottom: 68px;
  }

  .process-timeline {
    max-width: 540px;
    margin-left: auto;
  }

  .process-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 42px;
  }

  .process-step__copy p {
    font-size: 0.79rem;
  }

  .process-footer {
    margin-top: 58px;
    font-size: 0.48rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .process-photo img {
    transition: transform var(--transition-slow), filter var(--transition-medium);
  }

  .process-photo:hover img {
    transform: scale(1.035);
    filter: saturate(0.84) contrast(1);
  }

  .process-step:hover .process-step__marker {
    transform: scale(1.22);
  }
}
