.he-site-footer {
	background-color: var(--he-color-heading);
	color: rgba(255, 255, 255, 0.82);
}

.he-site-footer__container {
	max-width: 80rem;
	margin-right: auto;
	margin-left: auto;
	padding: var(--he-space-64) var(--he-space-16) var(--he-space-32);
}

.he-site-footer__columns {
	display: grid;
	gap: var(--he-space-40);
}

.he-site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	gap: var(--he-space-8);
}

.he-site-footer__brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--he-space-40);
	height: var(--he-space-40);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--he-color-amber-mid), var(--he-color-amber-dark));
	color: var(--he-color-background);
	font-size: 1.125rem;
	font-weight: 700;
}

.he-site-footer__brand-text {
	display: flex;
	flex-direction: column;
}

.he-site-footer__brand-name {
	color: var(--he-color-background);
	font-family: var(--he-font-heading);
	font-size: var(--he-type-logo-wordmark-size);
	line-height: var(--he-type-logo-wordmark-line-height);
}

.he-site-footer__brand-tagline {
	font-size: var(--he-type-logo-tagline-size);
	letter-spacing: var(--he-type-logo-tagline-letter-spacing);
	text-transform: uppercase;
}

.he-site-footer__summary {
	max-width: 20rem;
	margin-top: var(--he-space-20);
	font-size: var(--he-type-body-small-size);
	line-height: var(--he-type-body-line-height);
}

.he-site-footer__socials {
	display: flex;
	gap: var(--he-space-16);
	margin-top: var(--he-space-24);
}

.he-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--he-space-40);
	height: var(--he-space-40);
	border-radius: 999px;
	background-color: var(--he-color-footer-chip);
	color: var(--he-color-background);
}

.he-site-footer__social-link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.he-site-footer__column,
.he-site-footer__brand {
	min-width: 0;
}

.he-site-footer__heading {
	margin-bottom: var(--he-space-20);
	color: var(--he-color-background);
}

.he-site-footer__menu,
.he-site-footer__contact-list,
.he-site-footer__legal-links {
	display: flex;
	flex-direction: column;
	gap: var(--he-space-12);
}

.he-site-footer__menu a,
.he-site-footer__legal-links a {
	color: inherit;
}

.he-site-footer__contact-label {
	display: block;
	margin-bottom: var(--he-space-4);
	color: rgba(255, 255, 255, 0.65);
	font-size: var(--he-type-caption-size);
	letter-spacing: var(--he-type-caption-letter-spacing);
	text-transform: uppercase;
}

.he-site-footer__contact-value {
	font-size: var(--he-type-body-small-size);
	line-height: var(--he-type-body-line-height);
}

.he-site-footer__legal {
	display: flex;
	flex-direction: column;
	gap: var(--he-space-16);
	margin-top: var(--he-space-48);
	padding-top: var(--he-space-24);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.he-site-footer__copyright {
	font-size: var(--he-type-body-small-size);
	line-height: var(--he-type-body-small-line-height);
}

@media (min-width: 640px) {
	.he-site-footer__container {
		padding-right: var(--he-space-24);
		padding-left: var(--he-space-24);
	}

	.he-site-footer__legal-links {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (min-width: 768px) {
	.he-site-footer__columns {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
	}

	.he-site-footer__legal {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.he-site-footer__container {
		padding-right: var(--he-space-32);
		padding-left: var(--he-space-32);
	}
}
