.site-footer {
	margin-top: 0;
	background:
		linear-gradient(135deg, #03110d 0%, #071713 42%, #0f172a 100%);
	color: var(--color-white);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
	width: min(100% - 48px, 1200px);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(230px, 1.28fr) repeat(4, minmax(118px, 1fr));
	align-items: start;
	column-gap: 44px;
	row-gap: 24px;
	padding: 42px 0 28px;
}

.site-footer__column {
	position: relative;
}

.site-footer__column::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	margin-bottom: 16px;
	background: var(--color-accent);
}

.footer-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 112px;
	margin-bottom: 14px;
	object-fit: contain;
}

.footer-logo--placeholder {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	box-shadow: 0 10px 22px rgba(34, 197, 94, 0.16);
}

.site-footer__brand h2 {
	margin: 0 0 12px;
	color: var(--color-white);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.site-footer__brand h2 span {
	display: block;
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.6;
}

.site-footer__brand p {
	max-width: 260px;
	font-size: 13px;
	line-height: 1.65;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.footer-social a {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	transition: background-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
	transform: translateY(-1px);
	background: rgba(34, 197, 94, 0.22);
}

.site-footer__column h3 {
	margin: 0 0 14px;
	color: var(--color-white);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.site-footer__nav,
.site-footer__contact {
	display: grid;
	gap: 9px;
}

.site-footer__nav a,
.site-footer__contact a {
	width: fit-content;
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.45;
	transition: color 180ms ease;
}

.site-footer__contact p {
	max-width: 220px;
}

.site-footer__nav--contact {
	margin-bottom: 6px;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__bottom a:hover {
	color: #bbf7d0;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 600px) {
	.site-footer .container {
		width: min(100% - 28px, 1200px);
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 36px 0 20px;
	}

	.footer-logo {
		max-width: 104px;
	}

	.footer-logo--placeholder {
		width: 34px;
		height: 34px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		padding: 14px 0 18px;
	}

	.site-footer__bottom nav {
		justify-content: flex-start;
	}
}
