.site-footer {
	background: var(--site-color-footer-bg);
}

.site-footer__inner {
	padding: clamp(3rem, 4.5vw, 4rem) clamp(1.25rem, 2vw, 1.5rem);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(2rem, 2.8vw, 2.5rem);
}

.site-footer__column {
	min-width: 0;
}

.site-footer__column--brand {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-footer__brand-image {
	width: auto;
	height: 3rem;
	max-width: min(18rem, 100%);
	object-fit: contain;
}

.woocommerce-page .site-footer__brand-image {
	height: 3rem;
}

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

.site-footer__brand-title {
	font-family: var(--site-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.44;
	letter-spacing: 0.024em;
	color: var(--site-color-text);
}

.site-footer__brand-title span {
	color: #f67014;
}

.site-footer__brand-region {
	font-size: 0.75rem;
	line-height: 1.3333;
	color: var(--site-color-accent);
}

.site-footer__description {
	max-width: 17.375rem;
	margin: 0;
	font-size: var(--site-font-size-14);
	line-height: 1.625;
	color: var(--site-color-text-80);
}

.site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding-top: 0.075rem;
}

.site-footer__social {
	display: inline-flex;
	width: 2.25rem;
	height: 2.25rem;
}

.site-footer__social img {
	width: 100%;
	height: 100%;
}

.woocommerce-page .site-footer__social img {
	height: 100%;
}

.site-footer__heading {
	margin: 0 0 1.25rem;
	font-family: var(--site-font-heading);
	font-size: var(--site-font-size-h4);
	font-weight: 700;
	line-height: 1.5;
	color: var(--site-color-text);
}

.site-footer__list,
.site-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list-item {
	padding: 0.15625rem 0 0.09375rem;
}

.site-footer__link,
.site-footer__contact-text,
.site-footer__contact-link,
.site-footer__legal-link,
.site-footer__copyright {
	font-size: var(--site-font-size-14);
	line-height: 1.4286;
	color: var(--site-color-text-80);
}

.site-footer__link,
.site-footer__contact-link,
.site-footer__legal-link {
	transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__contact-link:hover,
.site-footer__legal-link:hover {
	color: var(--site-color-accent);
}

.site-footer__contacts {
	gap: 1rem;
}

.site-footer__contact {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.site-footer__contact-icon {
	width: 1rem;
	height: 1rem;
	margin-top: 0.125rem;
	flex: 0 0 1rem;
}

.woocommerce-page .site-footer__contact-icon {
	height: 1rem;
}

.site-footer__contact-copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.site-footer__contact-link--phone {
	font-family: var(--site-font-heading);
	font-weight: 700;
	color: var(--site-color-text);
}

.site-footer__contact-note {
	font-size: 0.75rem;
	line-height: 1.3333;
	color: var(--site-color-text-40);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 3rem;
	padding-top: 2.0625rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copyright,
.site-footer__legal-link {
	color: var(--site-color-text-50);
}

.site-footer__legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

@media (max-width: 1199px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 2.5rem;
	}
}

@media (max-width: 767px) {
	.site-footer__inner {
		padding-right: 0;
		padding-left: 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 2.5rem;
		padding-top: 1.5rem;
	}

	.site-footer__legal {
		gap: 1rem;
		flex-direction: column;
		align-items: flex-start;
	}
}
