/* =============================================================
   JT Designs — Process Section
   Dark background break between services and about.
   ============================================================= */

.process {
  padding: 140px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle oxblood radial glow in the corner */
.process::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(107, 31, 38, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 900px) { .process { padding: 96px 0; } }

.process .label  { color: var(--brass); }

.process h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 14px;
  margin-bottom: 80px;
  max-width: 820px;
}

.process h2 em { font-style: italic; color: var(--brass); }

/* 4-column step layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  padding: 0 40px 0 0;
  position: relative;
}

/* Arrow connector between steps */
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: 8px;
  top: 14px;
  font-size: 18px;
  color: rgba(168, 139, 92, 0.4);
}

@media (max-width: 900px) {
  .process-step::after { display: none; }
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  margin-bottom: 20px;
  display: block;
}

.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.62);
  line-height: 1.6;
}
