/* ─────────────────────────────────────────
   How I Work
   ───────────────────────────────────────── */

.hiw {
  background: var(--white);
  padding-block: clamp(64px, 10vw, 120px);
  padding-inline: clamp(24px, 6vw, 80px);
}

.hiw__container {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0 80px;
  align-items: start;
}

/* ── Left ── */
.hiw__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hiw__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shadow-dark);
  flex-shrink: 0;
}

.hiw__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--shadow-dark);
}

.hiw__accent {
  color: var(--platinum-2);
  font-weight: 700;
}

/* ── Right — Steps ── */
.hiw__steps {
  list-style: none;
}

.hiw__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  align-items: start;
  padding-block: 36px;
  border-bottom: 1px solid var(--platinum-2);
}

.hiw__step:first-child {
  padding-top: 0;
}

.hiw__step:last-child {
  border-bottom: none;
}

.hiw__step-num {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--shadow-dark);
  line-height: 1;
  padding-top: 3px;
}

.hiw__step-title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--shadow-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw__step-text {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 300;
  color: #888;
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .hiw__container {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }

  .hiw__step {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
    padding-block: 28px;
  }
}
