/*!
 * Canonical footer stylesheet.
 *
 * Footer selectors should live here instead of style.css so future edits have
 * one predictable ownership path.
 */

#colophon.site-footer,
.site-footer#colophon {
	width: 100%;
	background: linear-gradient(180deg, #b61f1f 0%, #aa1d1d 38%, #a01919 100%);
	color: #ffffff;
	text-align: left;
}

#colophon .footer-inner.inner-content {
	box-sizing: border-box;
	max-width: 1320px;
	margin: 0 auto;
	padding: 30px 30px 18px;
}

#colophon .footer-top--compact {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#colophon .footer-brand--compact .footer-logo img {
	display: block;
	max-width: 204px;
	height: auto;
}

#colophon .footer-tagline {
	margin: 14px 0 0;
	max-width: 18ch;
	color: rgba(255, 255, 255, 0.94);
	font-size: 16px;
	line-height: 1.28;
}

#colophon .footer-social {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

#colophon .footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#colophon .footer-social-link img {
	width: 48px;
	height: 48px;
	border-radius: 999px;
}

#colophon .footer-columns--compact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
}

#colophon .footer-col {
	min-width: 0;
}

#colophon .footer-title {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
}

#colophon .footer-kicker {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

#colophon .footer-navigation,
#colophon .footer-menu {
	margin: 0;
}

#colophon .footer-menu {
	list-style: none;
	padding: 0;
}

#colophon .footer-menu li {
	margin: 0 0 7px;
	line-height: 1.3;
}

#colophon .footer-menu a,
#colophon .loc-phone {
	color: rgba(255, 255, 255, 0.94);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

#colophon .footer-menu a {
	display: inline-block;
	font-size: 16px;
	line-height: 1.25;
}

#colophon .footer-menu a:hover,
#colophon .loc-phone:hover,
#colophon .footer-badge:hover {
	opacity: 0.78;
}

#colophon .footer-locations {
	padding-top: 26px;
}

#colophon .footer-locations-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

#colophon .footer-location-card {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 18px 22px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#colophon .footer-location-card .loc-name {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

#colophon .footer-location-card .loc-addr {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.3;
}

#colophon .footer-location-card .loc-addr a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

#colophon .footer-location-card .loc-addr a:hover,
#colophon .footer-location-card .loc-addr a:focus-visible {
	color: #ffffff;
}

#colophon .footer-location-card .loc-phone {
	display: inline-block;
	margin-top: 2px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
}

#colophon .footer-bottom {
	display: grid;
	justify-items: center;
	gap: 14px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

#colophon .footer-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 0;
}

#colophon .footer-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#colophon .footer-badge img {
	display: block;
	width: auto;
	height: 58px;
	max-width: 124px;
}

#colophon .footer-copyright {
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
}

#colophon hr {
	display: none;
}

@media (max-width: 1100px) {
	#colophon .footer-inner.inner-content {
		padding: 24px 24px 16px;
	}

	#colophon .footer-top--compact {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	#colophon .footer-columns--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	#colophon .footer-locations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#colophon .footer-badge img {
		height: 52px;
		max-width: 110px;
	}
}

@media (max-width: 767px) {
	#colophon .footer-inner.inner-content {
		padding: 22px 20px 14px;
	}

	#colophon .footer-brand--compact {
		display: grid;
		justify-items: center;
		text-align: center;
	}

	#colophon .footer-brand--compact .footer-logo {
		display: inline-flex;
		justify-content: center;
	}

	#colophon .footer-brand--compact .footer-logo img {
		margin: 0 auto;
	}

	#colophon .footer-tagline {
		max-width: none;
		width: 100%;
		padding: 0 4px;
		text-align: center;
	}

	#colophon .footer-social {
		justify-content: center;
	}

	#colophon .footer-columns--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		align-items: start;
	}

	#colophon .footer-col--company {
		grid-column: 1;
		grid-row: 1;
	}

	#colophon .footer-col--contact {
		grid-column: 2;
		grid-row: 1;
	}

	#colophon .footer-col--services {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	#colophon .footer-locations {
		padding-top: 18px;
	}

	#colophon .footer-locations-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	#colophon .footer-bottom {
		justify-items: start;
	}

	#colophon .footer-copyright {
		text-align: left;
	}

	#colophon .footer-badge img {
		height: 46px;
		max-width: 98px;
	}
}
