.mf-steps {
	padding: 84px 5vw;
	background: var(--mf-cream);
}

.mf-steps__head {
	text-align: center;
	margin-bottom: 48px;
}

.mf-steps__eyebrow {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--accent, #b06a3a);
	font-weight: 700;
	margin-bottom: 12px;
}

.mf-steps__heading {
	margin: 0;
	font: 400 38px/1.1 'Spectral', serif;
	color: var(--mf-ink);
}

.mf-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	max-width: 1200px;
	margin: 0 auto;
}

.mf-steps__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mf-steps__number {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--accent, #b06a3a);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font: 600 22px 'Spectral', serif;
}

.mf-steps__title {
	font-weight: 800;
	font-size: 17px;
	color: var(--mf-ink);
}

.mf-steps__desc {
	font-size: 14px;
	line-height: 1.65;
	color: #6b5a46;
}

@media (max-width: 860px) {
	.mf-steps__grid {
		grid-template-columns: 1fr 1fr;
	}
}
