.site-footer {
	margin-top: 88px;
	padding-top: 28px;
	border-top: 1px solid var(--woodghar-border);
	background:
		linear-gradient(180deg, rgba(247, 243, 235, 0.55), rgba(255, 253, 249, 0)),
		var(--woodghar-background);
}

.site-footer__newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
	align-items: end;
	gap: 28px;
	padding: 36px;
	border: 1px solid var(--woodghar-border);
	border-radius: var(--woodghar-radius);
	background: var(--woodghar-primary);
	color: var(--woodghar-white);
	box-shadow: var(--woodghar-shadow);
}

.site-footer__newsletter p {
	margin-bottom: 8px;
	color: var(--woodghar-secondary);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.site-footer__newsletter h2 {
	margin-bottom: 0;
	max-width: 680px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: 0;
}

.footer-newsletter {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.footer-newsletter input {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.1);
	color: var(--woodghar-white);
}

.footer-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.78);
}

.footer-newsletter button {
	min-height: 46px;
	padding-inline: 18px;
	border: 0;
	border-radius: var(--woodghar-radius);
	background: var(--woodghar-secondary);
	color: var(--woodghar-ink);
	font-weight: 800;
}

.footer-newsletter span {
	grid-column: 1 / -1;
	min-height: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 42px;
	padding-block: 54px;
}

.site-footer__brand p {
	max-width: 360px;
	margin: 16px 0 0;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	color: var(--woodghar-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0;
}

.site-footer__logo__image {
	width: auto;
	max-width: 230px;
	max-height: 92px;
	object-fit: contain;
	background: transparent;
}

.site-footer h3 {
	margin-bottom: 16px;
	color: var(--woodghar-ink);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.footer-menu {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a,
.site-footer__contact a {
	color: var(--woodghar-muted);
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a:hover,
.site-footer__contact a:hover {
	color: var(--woodghar-primary);
}

.site-footer__contact {
	display: grid;
	align-content: start;
	gap: 10px;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--woodghar-border);
	border-radius: 999px;
	background: var(--woodghar-white);
	color: var(--woodghar-ink);
}

.site-footer__social a:hover {
	background: var(--woodghar-secondary);
	border-color: var(--woodghar-secondary);
	color: var(--woodghar-ink);
	transform: translateY(-2px);
}

.site-footer__social a[aria-label="TikTok"] {
	color: #111111;
}

.site-footer__social a[aria-label="TikTok"] .woodghar-icon {
	fill: currentColor;
	stroke: none;
	filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.site-footer__social a[aria-label="TikTok"]:hover {
	background: #111111;
	border-color: #111111;
	color: #ffffff;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0 34px;
	border-top: 1px solid var(--woodghar-border);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 14px;
}

.site-footer__payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.site-footer__payments span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid var(--woodghar-border);
	border-radius: 999px;
	background: var(--woodghar-white);
	color: var(--woodghar-muted);
	font-size: 12px;
	font-weight: 700;
}

.site-footer__payments .woodghar-icon {
	width: 17px;
	height: 17px;
	color: var(--woodghar-primary);
}

@media (max-width: 900px) {
	.site-footer__newsletter,
	.site-footer__inner,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		display: grid;
		align-items: start;
	}

	.site-footer__payments {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.site-footer {
		margin-top: 58px;
	}

	.site-footer__newsletter {
		padding: 24px;
	}

	.site-footer__newsletter h2 {
		font-size: 27px;
	}

	.footer-newsletter {
		grid-template-columns: 1fr;
	}

	.site-footer__logo__image {
		max-width: 190px;
		max-height: 78px;
	}
}
