/*
 * Site footer — dark navy, brand column + link columns + legal bar.
 */
.site-footer {
	background: var(--pos-navy);
	color: #d4dbe7;
}
.site-footer a {
	color: #dce5f3;
	text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus-visible { color: #fff; }

.site-footer__top {
	padding: 3.5rem 0 2.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 2rem;
}

.site-footer__brand {
	display: inline-block;
	margin-bottom: 1rem;
	line-height: 0;
}
.site-footer__brand img {
	width: auto;
	max-height: 30px;
}
.site-footer__brand span {
	color: #fff;
	font-size: 2rem;
	font-weight: var(--fw-bold);
	letter-spacing: -0.02em;
	line-height: 1;
}
.site-footer__blurb {
	color: #98a6be;
	font-size: 1.125rem;
	line-height: 1.45;
	margin-bottom: 1.4rem;
	max-width: 24rem;
}

.site-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.site-footer__col-title {
	color: #fff;
	font-size: 1.25rem;
	font-weight: var(--fw-semibold);
	margin-bottom: 1rem;
}
.site-footer__links,
.footer-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer__links li + li,
.footer-nav-menu li + li { margin-top: 0.65rem; }
.site-footer__links a,
.footer-nav-menu a {
	color: #c9d2e0;
	font-size: 1.04rem;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.4rem 0;
}
.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	flex-wrap: wrap;
}
.site-footer__copyright {
	color: #a2afc2;
	font-size: 1rem;
	margin: 0;
}
.site-footer__policies {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer__policies a {
	color: #d3dced;
	font-size: 1rem;
}
.site-footer__legal {
	margin: 0;
	padding-bottom: 1.4rem;
	max-width: 90ch;
	font-size: 0.8rem;
	line-height: 1.7;
	color: #a2afc2;
	opacity: 0.75;
}

@media (max-width: 991px) {
	.site-footer__top {
		grid-template-columns: 1fr;
		padding: 2.6rem 0 1.8rem;
	}
	.site-footer__links a,
	.footer-nav-menu a,
	.site-footer__copyright,
	.site-footer__policies a { font-size: 0.95rem; }
	.site-footer__blurb { font-size: 1rem; }
	.site-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.site-footer__policies { gap: 0.8rem 1.2rem; }
}
@media (max-width: 560px) {
	.site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}
