/* How It Works page */

/* Timeline */
/* `ol.` prefix so this beats base.css's `ol[class] { margin: 0 }` reset */
ol.timeline { position: relative; max-width: 640px; margin-inline: auto; margin-top: var(--sp-12); }
.timeline::before {
  content: "";
  position: absolute;
  left: 23px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--cream-200);
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-12);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--cream-50);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  z-index: 1;
}
.timeline__item h3 { margin-bottom: var(--sp-2); }
.timeline__item p { color: var(--ink-700); }

/* Steps — same "sticker card" treatment as the homepage's feature cards:
   bold ink outline + a solid offset shadow block behind. */
.steps__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-top: var(--sp-12);
}
.step-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: #FFFFFF;
  border: 2px solid var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: 8px 8px 0 0 var(--accent-yellow);
  transition: transform var(--dur-medium) var(--ease-cinematic), box-shadow var(--dur-medium) var(--ease-cinematic);
}
.step-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 0 var(--accent-yellow); }
.step-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--accent-yellow-ink);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .step-card { flex-direction: column; }
}

/* Area map motif */
.area-section { text-align: center; }
.area-map { max-width: 420px; margin: var(--sp-8) auto 0; }
.area-map circle.pin { transform-origin: center; }
