/* ===================================
   Start With These 3 Simple Steps Block Styles
   =================================== */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { text-align: center; }
.step-num {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft, rgba(212, 175, 55, 0.15)) 0%, var(--bg-deep, #07021a) 70%);
  border: 1px solid var(--gold, #d4af37);
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-bright, #f4d27a);
  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, #07021a), 0 0 36px rgba(212, 175, 55, 0.28);
}
.step-card h3 { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 500; margin-bottom: 14px; letter-spacing: 0.02em; color: var(--text-primary, #f5e6d3); }
.step-card p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-secondary, #b5a89e); line-height: 1.6; }

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