/* Home counters — matches site cream #f7f1db + orange #f47a20 */
.home-counters {
	position: relative;
	margin-top: -1px;
	background:
		radial-gradient(900px 220px at 10% 0%, rgba(244, 122, 32, 0.12), transparent 55%),
		radial-gradient(700px 200px at 95% 100%, rgba(244, 122, 32, 0.08), transparent 50%),
		linear-gradient(180deg, #faf6ec 0%, #f7f1db 55%, #f3ebd4 100%);
	color: #333;
	overflow: hidden;
	border-bottom: 1px solid rgba(244, 122, 32, 0.18);
}
.home-counters::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-18deg,
		transparent,
		transparent 14px,
		rgba(244, 122, 32, 0.03) 14px,
		rgba(244, 122, 32, 0.03) 15px
	);
	pointer-events: none;
}
.home-counters-inner {
	position: relative;
	padding: 2.25rem 0 2.5rem;
}
.home-counters-row {
	align-items: stretch;
}
.home-counter-item {
	text-align: center;
	padding: 1.1rem 0.75rem 0.85rem;
	position: relative;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
.home-counters.is-visible .home-counter-item {
	opacity: 1;
	transform: none;
}
.home-counters.is-visible .col-6:nth-child(1) .home-counter-item { transition-delay: 0.05s; }
.home-counters.is-visible .col-6:nth-child(2) .home-counter-item { transition-delay: 0.12s; }
.home-counters.is-visible .col-6:nth-child(3) .home-counter-item { transition-delay: 0.19s; }
.home-counters.is-visible .col-6:nth-child(4) .home-counter-item { transition-delay: 0.26s; }
@media (min-width: 768px) {
	.home-counter-item:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 0;
		top: 18%;
		height: 64%;
		width: 1px;
		background: linear-gradient(180deg, transparent, rgba(244, 122, 32, 0.45), transparent);
	}
}
.home-counter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.55rem;
	color: #f47a20;
	margin-bottom: 0.35rem;
	line-height: 1;
}
.home-counter-value {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.45rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #2c2418;
	margin-bottom: 0.35rem;
}
.home-counter-suffix {
	color: #f47a20;
	font-weight: 600;
	margin-left: 0.05em;
}
.home-counter-label {
	margin: 0;
	font-family: Poppins, sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b5e4e;
}
@media (max-width: 767.98px) {
	.home-counters-inner {
		padding: 1.75rem 0 1.9rem;
	}
	.home-counter-item {
		padding: 0.85rem 0.4rem;
	}
	.home-counters-row > .col-6:nth-child(1) .home-counter-item,
	.home-counters-row > .col-6:nth-child(2) .home-counter-item {
		border-bottom: 1px solid rgba(244, 122, 32, 0.2);
		margin-bottom: 0.35rem;
		padding-bottom: 1rem;
	}
}
.home-counters.no-anim .home-counter-item {
	opacity: 1;
	transform: none;
}
