.section-process {
  background: var(--tint);
  color: var(--ink);
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.process-line-wrap {
  position: relative;
  height: 2px;
  background: rgba(52, 48, 42, 0.16);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.process-line-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--clay);
  transform: translate(-50%, -50%);
  animation: kt-travel 5s cubic-bezier(.65, 0, .35, 1) infinite alternate;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
}

.process-step-num.clay {
  color: var(--clay);
}

.process-step-num.sage {
  color: var(--sage);
}

.process-step-num.taupe {
  color: var(--taupe);
}

.process-step-title {
  margin: 0;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.process-step-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.96rem;
}
