/* Shared site footer */
.site-footer {
	background: #000;
}

.site-footer-inner {
	max-width: 72rem; /* max-w-6xl — same as sections/header */
	margin-inline: auto;
	padding: 2.5rem 1rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.site-footer-inner {
		grid-template-columns: 3.4fr 1fr 1fr 1fr;
		gap: 2rem 2rem;
		align-items: start;
	}
}

.footer-brand-title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
}

.footer-brand-copy {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.7);
}

.footer-brand-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.footer-brand-list p {
	margin: 0;
}

.footer-col-title {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
	color: #fff;
}

.footer-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.25rem;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff !important;
	background: #c80000;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.15s ease;
}

.footer-contact-btn:hover {
	background: #a30000;
	color: #fff !important;
}

.footer-copy {
	text-align: center;
	font-size: 0.75rem;
	color: #c80000;
	padding-bottom: 1.5rem;
}

html[data-theme="light"] .site-footer {
	background: #fff;
}

html[data-theme="light"] .footer-brand-title,
html[data-theme="light"] .footer-col-title {
	color: #000;
}

html[data-theme="light"] .footer-brand-copy,
html[data-theme="light"] .footer-brand-list,
html[data-theme="light"] .footer-links {
	color: rgba(0, 0, 0, 0.65);
}

html[data-theme="light"] .footer-contact-btn,
html[data-theme="light"] .footer-contact-btn:hover {
	color: #ffffff !important;
	background: #c80000;
}

html[data-theme="light"] .footer-contact-btn:hover {
	background: #a30000;
}
