/* ===================================
   LEDE (shared paragraph style)
   =================================== */

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
}

/* ===================================
   STEPS / PROCESS GRID
   =================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 38px 30px;
}

.step-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, var(--bg-deep) 70%);
  border: 1px solid var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--bg-deep), 0 0 36px rgba(212, 175, 55, 0.28);
}

.step-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.step-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

/* ===================================
   LIGHT THEME OVERRIDES
   =================================== */

[data-theme="light"] .step-num {
  background: radial-gradient(circle, var(--gold-soft) 0%, #fff 70%);
  box-shadow: 0 0 0 6px var(--bg-deep), 0 0 28px rgba(176, 131, 34, 0.22);
}
