/* =============================================
   PROCESS
============================================= */
.process { background: var(--black); }

.process-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 5rem;
}
.process-head .s-rule { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(201,169,110,0.25) 15%,
    rgba(201,169,110,0.25) 85%,
    transparent 100%
  );
}

.process-step { padding: 0 1.5rem; text-align: center; }

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.step-icon {
  width: 7.5rem; height: 7.5rem;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  background: var(--gray-800);
  transition: border-color 0.4s, background 0.4s;
}
.process-step:hover .step-icon {
  border-color: rgba(201,169,110,0.55);
  background: var(--gray-700);
}
.step-icon svg {
  width: 2.9rem; height: 2.9rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-icon .dagger-icon {
  width: auto;
  height: 3.8rem;
  stroke: none;
  fill: var(--gold);
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: #CCCCCC;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-step {
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 1.25rem;
    text-align: left;
    padding: 0;
  }
  .step-num { display: none; }
  .step-icon { width: 5rem; height: 5rem; margin: 0; grid-row: 1 / 3; align-self: center; }
  .step-icon svg { width: 2rem; height: 2rem; }
  .step-icon .dagger-icon { height: 2.6rem; }
  .step-title { align-self: end; margin-bottom: 0.35rem; }
  .step-desc { grid-column: 2; }
  .process-steps::before { display: none; }
}
