.steps-section {
  padding: 5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

.step-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.step-block:last-child { border-bottom: none; }

.step-number {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  background: var(--cream);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.step-content a {
  color: var(--gold);
  text-decoration: none;
}
.step-content a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .steps-section { padding: 4rem 1.5rem; }
  .step-block { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
}
