.site-footer {
	padding: 2.5rem 0;
	color: #fff;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2.5rem;
}

/* Brand column: logo, phone, social links */
.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	max-width: 20rem;
}

.site-footer__logo img {
	width: 100%;
	max-width: 16.5rem;
	height: auto;
}

.site-footer__phone a {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	text-decoration: none;
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__social a {
	display: block;
	color: var(--wp--preset--color--primary);
}

.site-footer__social svg {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	fill: currentColor;
}

/* Buttons + nav links */
.site-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	flex: 1 1 30rem;
}

.site-footer__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-footer__button {
	flex: 1 1 12rem;
	text-align: center;
	background-color: var(--wp--preset--color--primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.25rem;
	padding: 0.9rem 1.5rem;
	transition: var(--global-transition);
}

.site-footer__button:hover,
.site-footer__button:focus {
	background-color: var(--wp--preset--color--primary-light);
}

.site-footer__columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.site-footer__links {
	flex: 1 1 12rem;
	list-style: disc;
	margin: 0;
	padding-left: 1.2em;
}

.site-footer__links a {
	display: inline-block;
	padding: 0.25rem 0;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
	color: var(--wp--preset--color--primary-light);
}

.site-footer__copyright {
	margin-top: 2.5rem;
	text-align: center;
	font-size: 1rem;
	color: #fff;
}

.site-footer__copyright a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 767px) {
	.site-footer__inner {
		flex-direction: column;
	}

	.site-footer__brand {
		max-width: none;
		align-items: center;
		text-align: center;
	}
}
