/*
 * Homepage Stats Bar — solid gold strip between "Expert-Led Care" and
 * "Shop by Treatment Area". Mirrors the reference's bg-primary-container
 * band in website_reference/homepage_6.html: 4 count-up stats, 2 cols on
 * mobile, 4 on desktop.
 *
 * @package log-core
 */

.hp-stats-bar {
	background: var(--gold-500);
	padding: 40px 0;
}

.hp-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.hp-stat-num {
	font-family: var(--display);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ink-900);
	margin: 0;
}

.hp-stat-label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: rgba(10, 10, 10, .6);
	margin: 4px 0 0;
}

@media (max-width: 767px) {
	.hp-stats-bar {
		padding: 32px 0;
	}

	.hp-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.hp-stat-num {
		font-size: 24px;
	}
}
