/* ============================================================
   NORTH HORIZON PARTNERS — how.css
   How We Work section — numbered steps.
   ============================================================ */

.section-how {
  padding: var(--section-py) 0;
}

.section-how h2 {
  margin-bottom: 2rem;
}

/* ── Steps list ─────────────────────────────────────────────── */
.steps {
  max-width: 740px;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-solid);
  transition: background 0.2s ease;
}

.step:first-child {
  border-top: 1px solid var(--border-solid);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dim);
  line-height: 1.1;
  padding-top: 0.15rem;
}

/* Step 03 gets accent highlight */
.step-accent .step-number {
  color: var(--accent);
}

.step-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.step-content p {
  font-size: 0.92rem;
}

/* ── Note + CTA below steps ─────────────────────────────────── */
.steps-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 2rem;
}

.section-how .btn {
  margin-top: 0.5rem;
}

/* CTA bridge at bottom of Craft section, before Fit */
.craft-cta {
  text-align: center;
  padding-top: 3rem;
}

@media (max-width: 640px) {
  .step {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .step-number {
    font-size: 1.2rem;
  }
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 500px) {
  .step {
    grid-template-columns: 2.25rem 1fr;
    gap: 1.25rem;
  }

  .step-number {
    font-size: 1.4rem;
  }
}
