/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
	padding: 5rem 0 2rem;
	color: #fff;
	background: var(--wf-dark);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.25fr);
	gap: 3rem;
	align-items: start;
}

.site-footer__brand {
	max-width: 22rem;
}

.site-footer__logo {
	margin-bottom: 1.25rem;
}

.site-footer__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-footer__logo .custom-logo {
	display: block;
	width: auto;
	height: 4rem;
	max-width: 9rem;
	object-fit: contain;
}

.site-footer__name {
	display: inline-block;
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	text-decoration: none;
}

.site-footer__tagline {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.7;
}

.site-footer__navigation {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
}
.site-footer__nav-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
}

.site-footer__nav-group .site-footer__label {
	margin: 0 0 0.5rem;
}

.site-footer__navigation a,
.site-footer__contact a {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 600;
	text-decoration: none;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.site-footer__navigation a:hover,
.site-footer__navigation a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
	color: var(--wf-pink);
}

.site-footer__navigation a:hover {
	transform: translateX(0.2rem);
}

.site-footer__label {
	margin: 0 0 0.75rem;
	color: var(--wf-yellow);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer__bottom {
	margin-top: 3.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	text-align: center;
}

@media (max-width: 800px) {
	.site-footer {
		padding-top: 4rem;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 2.25rem;
		text-align: center;
	}

	.site-footer__brand {
		margin-inline: auto;
	}

	.site-footer__logo .custom-logo-link {
		justify-content: center;
	}

	.site-footer__navigation {
		align-items: center;
	}

	.site-footer__bottom {
		margin-top: 2.75rem;
	}

    .site-footer__social-label {
    margin-top: 2rem;
    }
	
	.site-footer__nav-group {
	align-items: center;
	}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-footer__label {
	margin: 0 0 0.65rem;
	color: var(--wf-yellow);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer__contact a {
	display: inline-flex;
	align-items: center;
	line-height: 1.4;
}

.site-footer__social-label {
	margin-top: 1.75rem;
}
}