.site-footer {
	--footer-bg: #0a0a0a;
	--footer-white: #f4f3ef;
	--footer-muted: #b0b0b4;
	--footer-copy: #a5a5a5;
	--footer-input-border: #5b5a54;
	--footer-input-bg: #191919;
	--footer-placeholder: #77777c;
	--footer-purple: #cb6bf3;
	background: var(--footer-bg);
	color: var(--footer-white);
	padding: 48px 0 32px;
}

.site-footer .container {
	max-width: 1400px;
}

.site-footer__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.site-footer__brand {
	margin: 0;
}

.site-footer__brand img {
	display: block;
	height: 34px;
	width: auto;
}

.site-footer__social {
	align-items: center;
	display: flex;
	gap: 12px;
}

.site-footer__social a {
	align-items: center;
	background: rgba(244, 243, 239, 0.08);
	border-radius: 50%;
	color: var(--footer-white);
	display: flex;
	height: 32px;
	justify-content: center;
	transition: background-color 180ms ease;
	width: 32px;
}

.site-footer__social a:hover {
	background: #612cb5;
	color: var(--footer-white);
}

.site-footer__cols {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.site-footer__lines {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__lines a {
	color: var(--footer-white);
	font-size: 15px;
	text-decoration: none;
	transition: color 180ms ease;
}

.site-footer__lines a:hover {
	color: var(--footer-purple);
}

.site-footer__divider {
	border: none;
	border-top: 1px solid rgba(244, 243, 239, 0.15);
	margin: 0;
	width: 100%;
}

.site-footer__legal nav,
.site-footer__nav nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__legal .menu,
.site-footer__nav .menu {
	display: flex;
	flex-direction: column;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__legal .menu li,
.site-footer__nav .menu li {
	list-style: none;
	margin: 0;
}

.site-footer__legal a,
.site-footer__nav a {
	color: var(--footer-copy);
	font-size: 14px;
	text-decoration: none;
	transition: color 180ms ease;
}

.site-footer__nav a {
	color: var(--footer-white);
	font-size: 15px;
}

.site-footer__legal a:hover,
.site-footer__nav a:hover {
	color: var(--footer-purple);
}

.site-footer__copyright {
	color: var(--footer-purple);
	font-size: 13px;
	margin: 0;
}

.site-footer__newsletter h3 {
	color: var(--footer-purple);
	font-family: "Inter Tight", sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
}

.site-footer__newsletter p {
	color: var(--footer-muted);
	font-size: 15px;
	line-height: 1.5;
	margin: 14px 0 0;
}

.site-footer__newsletter form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.site-footer__newsletter input {
	background: var(--footer-input-bg);
	border: 1px solid var(--footer-input-border);
	border-radius: 32px;
	color: var(--footer-white);
	font-family: "Inter Tight", sans-serif;
	font-size: 15px;
	height: 52px;
	padding: 0 20px;
	width: 100%;
}

.site-footer__newsletter input::placeholder {
	color: var(--footer-placeholder);
}

.site-footer__newsletter button {
	background: var(--footer-purple);
	border: 1px solid var(--footer-purple);
	border-radius: 100px;
	color: var(--footer-bg);
	cursor: pointer;
	font-family: "Inter Tight", sans-serif;
	font-size: 16px;
	height: 52px;
	padding: 0 24px;
	transition: background-color 180ms ease, border-color 180ms ease;
	width: 100%;
}

.site-footer__newsletter button:hover {
	background: #dc9af8;
	border-color: #dc9af8;
}

@media screen and (min-width: 1024px) {
	.site-footer {
		padding: 72px 0;
	}

	.site-footer__top {
		align-items: flex-start;
		margin-bottom: 60px;
	}

	.site-footer__social {
		gap: 14px;
	}

	.site-footer__cols {
		align-items: flex-start;
		flex-direction: row;
		gap: 157px;
	}

	.site-footer__contact {
		flex-shrink: 0;
		gap: 59px;
		width: 374px;
	}

	.site-footer__lines {
		font-size: 16px;
		gap: 18px;
	}

	.site-footer__legal nav,
	.site-footer__legal .menu {
		gap: 18px;
	}

	.site-footer__legal a {
		color: inherit;
		font-size: 16px;
	}

	.site-footer__nav nav,
	.site-footer__nav .menu {
		gap: 20px;
	}

	.site-footer__nav a {
		font-size: 16px;
	}

	.site-footer__copyright {
		font-size: 14px;
	}

	.site-footer__newsletter {
		flex: 1;
	}

	.site-footer__newsletter h3 {
		font-size: 40px;
	}

	.site-footer__newsletter p {
		font-size: 20px;
		margin-top: 20px;
		max-width: 560px;
	}

	.site-footer__newsletter form {
		flex-direction: row;
		gap: 12px;
		margin-top: 32px;
		max-width: 560px;
	}

	.site-footer__newsletter input {
		flex: 1;
		font-size: 15.5px;
		height: 56px;
		width: auto;
	}

	.site-footer__newsletter button {
		font-size: 17px;
		height: 56px;
		white-space: nowrap;
		width: auto;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.site-footer {
		padding: 56px 0;
	}

	.site-footer__contact {
		width: 300px;
	}

	.site-footer__cols {
		gap: 60px;
	}
}

@media screen and (max-width: 1024px) {
	.site-footer__newsletter h3 {
		font-size: 24px;
	}
}
