.mv-site-footer {
	position: relative;
	overflow: hidden;
	padding: var(--space-6xl) 0;
	background:
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.024) 0,
			rgba(255, 255, 255, 0.024) 1px,
			transparent 1px,
			transparent 8rem
		),
		var(--gradient-footer);
	color: var(--color-white);
}

.mv-site-footer--shell {
	width: min(calc(100% - 2.5rem), var(--content-footer-width));
	margin: 0 auto;
}

.mv-site-footer--legacy-intro {
	display: grid;
	justify-items: center;
	gap: var(--space-2xl);
	margin-bottom: var(--space-5xl);
	text-align: center;
}

.mv-site-footer--primary-nav {
	width: 100%;
}

.mv-site-footer--primary-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem clamp(1.4rem, 2.5vw, 2.8rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-site-footer--primary-link {
	color: var(--link-dark-color);
	font-size: clamp(1.2rem, 1.45vw, 1.55rem);
	font-weight: var(--font-weight-black);
	line-height: 1.08;
	letter-spacing: var(--tracking-black);
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: var(--link-underline-offset);
	text-wrap: balance;
	transition:
		color 180ms ease,
		text-decoration-color 180ms ease,
		box-shadow 180ms ease;
}

.mv-site-footer--brand-mark {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: min(100%, 16rem);
	text-decoration: none;
}

.mv-site-footer--brand-mark img {
	display: block;
	width: 100%;
	height: auto;
}

.mv-site-footer--brand-copy {
	margin: 0;
	max-width: 60rem;
	font-size: clamp(1.05rem, 1.35vw, 1.35rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
}

.mv-site-footer--brand-copy a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration-line: underline;
	text-decoration-color: rgba(233, 161, 120, 0.42);
	text-decoration-thickness: 0.08em;
	text-underline-offset: var(--link-underline-offset);
	transition:
		color 180ms ease,
		text-decoration-color 180ms ease,
		box-shadow 180ms ease;
}

.mv-site-footer--header {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-4xl);
	text-align: center;
}

.mv-site-footer--title {
	display: inline-block;
	margin: 0;
	max-width: 56rem;
	font-size: clamp(1.2rem, 1.45vw, 1.55rem);
	font-weight: var(--font-weight-black);
	line-height: 1.08;
	letter-spacing: var(--tracking-black);
	color: var(--color-white);
	text-wrap: balance;
}

.mv-site-footer--title::after {
	content: none;
}

.mv-site-footer--groups {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-2xl);
	padding-bottom: var(--space-4xl);
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mv-site-footer--group {
	min-width: 0;
}

.mv-site-footer--group-title {
	margin: 0 0 var(--space-lg);
	font-size: var(--text-lg);
	font-weight: var(--font-weight-semibold);
	color: var(--color-brand-peach);
}

.mv-site-footer--links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-site-footer--links li + li {
	margin-top: var(--space-sm);
}

.mv-site-footer--links li {
	display: flex;
}

.mv-site-footer--links a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--link-dark-color);
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: var(--link-underline-offset);
	transition:
		color 180ms ease,
		text-decoration-color 180ms ease,
		box-shadow 180ms ease;
}

.mv-site-footer--links a::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	flex: 0 0 0.55rem;
	border-radius: var(--radius-full);
	background: var(--color-brand-apricot);
	box-shadow: 0 0 0 0.2rem rgba(241, 137, 119, 0.14);
	transition:
		background-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.mv-site-footer--links a:hover::before,
.mv-site-footer--links a:focus-visible::before {
	background: var(--color-brand-peach);
	box-shadow: 0 0 0 0.24rem rgba(233, 161, 120, 0.22);
	transform: scale(1.08);
}

.mv-site-footer--links a:hover,
.mv-site-footer--links a:focus-visible,
.mv-site-footer--primary-link:hover,
.mv-site-footer--primary-link:focus-visible,
.mv-site-footer--legal-links a:hover,
.mv-site-footer--legal-links a:focus-visible,
	.mv-site-footer--disclaimer a:hover,
	.mv-site-footer--disclaimer a:focus-visible,
.mv-site-footer--brand-copy a:hover,
.mv-site-footer--brand-copy a:focus-visible,
.mv-site-footer--credit a:hover,
.mv-site-footer--credit a:focus-visible {
	color: var(--link-dark-hover-color);
	text-decoration-color: var(--link-dark-underline);
}

.mv-site-footer--links a:focus-visible,
.mv-site-footer--primary-link:focus-visible,
.mv-site-footer--legal-links a:focus-visible,
	.mv-site-footer--disclaimer a:focus-visible,
.mv-site-footer--brand-copy a:focus-visible,
.mv-site-footer--credit a:focus-visible {
	box-shadow: 0 0 0 0.22rem var(--link-dark-focus-ring);
}

.mv-site-footer--meta {
	display: grid;
	gap: var(--space-xl);
	padding-top: var(--space-4xl);
}

.mv-site-footer--legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-site-footer--legal-links a,
.mv-site-footer--disclaimer a,
.mv-site-footer--credit a {
	color: var(--link-dark-color);
	transition:
		color 180ms ease,
		text-decoration-color 180ms ease,
		box-shadow 180ms ease;
}

.mv-site-footer--legal-links a {
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: var(--link-underline-offset);
}

.mv-site-footer--disclaimer a,
.mv-site-footer--credit a {
	color: rgba(255, 255, 255, 0.86);
	text-decoration-line: underline;
	text-decoration-color: rgba(233, 161, 120, 0.42);
	text-underline-offset: var(--link-underline-offset);
}

.mv-site-footer--disclaimer,
.mv-site-footer--credit {
	margin: 0;
	max-width: 68rem;
	justify-self: center;
	text-align: center;
	font-size: var(--text-lg);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1100px) {
	.mv-site-footer--groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.mv-site-footer {
		padding: var(--space-5xl) 0;
	}

	.mv-site-footer--legacy-intro {
		margin-bottom: var(--space-4xl);
	}

	.mv-site-footer--groups {
		grid-template-columns: 1fr;
	}

	.mv-site-footer--header {
		margin-bottom: var(--space-3xl);
	}
}

@media (max-width: 680px) {
	.mv-site-footer--shell {
		width: min(calc(100% - 1.5rem), var(--content-footer-width));
	}

	.mv-site-footer--legacy-intro {
		justify-items: stretch;
		text-align: left;
	}

	.mv-site-footer--primary-links {
		justify-content: flex-start;
		gap: 0.7rem 1rem;
	}

	.mv-site-footer--primary-link {
		font-size: clamp(1rem, 3.8vw, 1.1rem);
		line-height: 1.16;
	}

	.mv-site-footer--brand-mark {
		max-width: min(100%, 12rem);
	}

	.mv-site-footer--brand-copy {
		max-width: none;
	}

	.mv-site-footer--title {
		font-size: clamp(1.05rem, 4.2vw, 1.2rem);
		line-height: 1.2;
		text-align: left;
	}

	.mv-site-footer--header {
		justify-content: flex-start;
		text-align: left;
	}

	.mv-site-footer--legal-links {
		justify-content: flex-start;
	}

	.mv-site-footer--disclaimer,
	.mv-site-footer--credit {
		justify-self: stretch;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce), (max-width: 767px) {
	.mv-site-footer--primary-link,
	.mv-site-footer--links a,
	.mv-site-footer--legal-links a,
	.mv-site-footer--brand-copy a,
	.mv-site-footer--credit a {
		transition: none;
	}
}