/* Sticky header */
.sp-nav {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Mobile sticky call bar */
.sp-sticky-call {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #2D2D2D;
	padding: 0.75rem 1rem;
	text-align: center;
}
.sp-sticky-call a {
	display: block;
	background: #B5622A;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	letter-spacing: 0.02em;
}
@media (max-width: 768px) {
	.sp-sticky-call { display: block; }
	body { padding-bottom: 70px; }
}
