/* Quadro Extreme — подвал сайта (контакты, навигация, документы, юр-данные) */

.site-footer {
	background: #070707;
	border-top: 1px solid rgba(107, 255, 42, 0.12);
	padding: 56px 48px 28px;
}
.site-footer__cols {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.4fr;
	gap: 40px;
	max-width: 1240px;
	margin: 0 auto;
}
.site-footer__logo img {
	height: 48px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	margin-bottom: 14px;
}
.site-footer__slogan {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--green);
	margin-bottom: 16px;
}
.site-footer__contacts {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.site-footer__contacts li,
.site-footer__contacts a {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color: #b6b6b6;
	text-decoration: none;
	transition: color 0.2s;
}
.site-footer__contacts a:hover {
	color: var(--green);
}

.site-footer__title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 16px;
}
.site-footer__nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.site-footer__nav a {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color: #b6b6b6;
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
}
.site-footer__nav a:hover {
	color: var(--green);
	padding-left: 4px;
}

.site-footer__bottom {
	max-width: 1240px;
	margin: 40px auto 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.site-footer__legal {
	font-family: "Montserrat", sans-serif;
	font-size: 12.5px;
	color: #777;
	line-height: 1.6;
}
.site-footer__copy {
	font-family: "Montserrat", sans-serif;
	font-size: 12.5px;
	color: #888;
}

@media (max-width: 800px) {
	.site-footer {
		padding: 40px 20px 24px;
	}
	.site-footer__cols {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
