/* ─── Site Footer ─────────────────────────────────────────────────────────── */

.site-footer {
	background: #0a0a0a;
	border-top: 1px solid #18181b;
	color: #52525b;
	margin-top: auto;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 3.5rem 0rem;
}

/* ─── Brand ───────────────────────────────────────────────────────────────── */

.site-footer__name {
	display: inline-block;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: lowercase;
	color: #fafafa;
	text-decoration: none;
	margin-bottom: 0.625rem;
}

.site-footer__tagline {
	margin: 0;
	font-size: 0.8125rem;
	color: #3f3f46;
	line-height: 1.6;
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.site-footer__menu a {
	color: #52525b;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.15s;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	color: #e4e4e7;
}

/* ─── CTA column ──────────────────────────────────────────────────────────── */

.site-footer__cta p {
	margin: 0 0 0.875rem;
	font-size: 0.875rem;
	color: #3f3f46;
	line-height: 1.6;
}

.site-footer__cta-link {
	display: inline-block;
	padding: 0.4375rem 1rem;
	background: #ef4444;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	transition: background 0.15s;
}

.site-footer__cta-link:hover,
.site-footer__cta-link:focus-visible {
	background: #dc2626;
}

/* ─── Bottom bar ──────────────────────────────────────────────────────────── */

.site-footer__bar {
	border-top: 1px solid #18181b;
	padding: 1.25rem 2rem;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-footer__copy {
	margin: 0;
	font-size: 0.75rem;
	color: #52525b;
	letter-spacing: 0.01em;
}

.site-footer__copy a {
	color: inherit;
	text-decoration: none;
}

.site-footer__copy a:hover {
	color: #71717a;
}

/* ─── Footer legal nav ────────────────────────────────────────────────────── */

.site-footer__legal-nav { margin: 0; }

.site-footer__legal-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.site-footer__legal-menu a {
	font-size: 0.75rem;
	color: #52525b;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 0.15s;
}

.site-footer__legal-menu a:hover { color: #71717a; }

/* Active page link (WordPress adds .current-menu-item) */
.site-footer__legal-menu .current-menu-item a { color: #71717a; }

/* ─── Back to top ─────────────────────────────────────────────────────────── */

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	background: #18181b;
	color: #e4e4e7;
	border: 1px solid #27272a;
	border-radius: 50%;
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s, border-color 0.15s;
	z-index: 90;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: #ef4444;
	border-color: #ef4444;
	color: #fff;
}

/* ─── Mobile ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2.5rem 1.5rem;
	}

	.site-footer__bar {
		padding: 1.25rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}

