/* ─── Process Hero ─────────────────────────────────────── */
.process-hero {
  background: var(--ink);
  padding: 160px 80px 80px;
  text-align: center;
}

.process-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.process-hero .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}

.process-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}

.process-sub {
  font-size: 17px;
  color: var(--ash);
  line-height: 1.65;
}

/* ─── Delivery Steps Grid ──────────────────────────────── */
.process-steps {
  background: var(--cream);
  padding: var(--space-lg) 80px;
}

.process-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.delivery-step {
  background: var(--stone);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--copper);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.step-body {
  flex: 1;
  min-width: 0;
}

.step-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.delivery-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.delivery-deliverables li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.delivery-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.step-timeline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-dark);
  background: rgba(200,117,51,0.08);
  border: 1px solid rgba(200,117,51,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── CTA Band ─────────────────────────────────────────── */
.process-cta-band {
  background: var(--ink);
  padding: 80px;
}

.process-cta-band .cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.process-cta-band .cta-band-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 36px;
}

.process-cta-band .cta-btn {
  display: inline-block;
  background: var(--copper);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.1s ease;
}

.process-cta-band .cta-btn:hover {
  background: #d4853a;
  transform: translateY(-2px);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .process-hero { padding: 120px 32px 60px; }
  .process-steps, .process-cta-band { padding-left: 32px; padding-right: 32px; }
  .process-steps-inner {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .delivery-step {
    padding: 28px;
    gap: 20px;
  }
  .step-num { font-size: 24px; }
  .step-body h2 { font-size: 22px; }
}
