/* Footer Styles */

.site-footer {
	margin-top: 130px;
	background: var(--ink, #161513);
	color: #fff;
	padding: 74px 0 28px;
	max-width: unset !important;
	width: 100% !important;
}

.site-footer .footer-shell {
	display: grid;
	grid-template-columns: minmax(280px, 1.15fr) minmax(560px, 1.85fr);
	gap: clamp(60px, 8vw, 150px);
	align-items: start;
	max-width: unset !important;
}

/* Footer Brand & Lead Section */
.footer-brand {
	width: 132px;
	display: block;
	text-decoration: none;
}

.footer-brand .footer-wordmark {
	display: block;
	width: 132px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer-lead h2 {
	max-width: 510px;
	margin-top: 38px;
	font: 300 clamp(34px, 3.5vw, 58px) / 1.04 var(--serif, 'Newsreader', serif);
	letter-spacing: -0.045em;
}

.footer-lead h2 em {
	font-style: italic;
	font-weight: 300;
	color: var(--blush, #DC9DA3);
}

.footer-lead p {
	max-width: 440px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 1.75;
}

/* Newsletter Form */
.footer-newsletter {
	max-width: 470px;
	margin-top: 36px;
}

.footer-newsletter label {
	display: block;
	margin-bottom: 11px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.footer-newsletter-row {
	display: grid;
	grid-template-columns: 1fr auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.footer-newsletter input {
	min-width: 0;
	border: 0;
	background: transparent;
	color: #fff;
	padding: 11px 0 13px;
	outline: 0;
	font: 300 16px / 1.3 var(--sans, 'Poppins', sans-serif);
}

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

.footer-newsletter button {
	border: 0;
	background: transparent;
	color: #fff;
	padding: 8px 0 8px 22px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus {
	color: #fff;
	background: transparent !important;
}

/* Footer Navigation */
.footer-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.footer-group h3 {
	color: rgba(255, 255, 255, 0.48);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.footer-group ul {
	list-style: none;
	margin-top: 22px;
	padding: 0;
}

.footer-group li + li {
	margin-top: 12px;
}

.footer-group a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-group a:hover {
	color: #fff;
}

/* Footer Bottom */
.site-footer .footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
	margin-top: 54px;
	padding: 28px clamp(22px, 5vw, 110px) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	max-width: unset !important;
}

.footer-bottom span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.48);
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.48);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
	color: rgba(255, 255, 255, 0.82);
}

/* Tablet — max-width 940px */
@media (max-width: 940px) {
	.site-footer .footer-shell {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.footer-lead h2 {
		margin-top: 30px;
		font-size: 39px;
	}

	.footer-nav {
		grid-template-columns: 1fr 1fr;
		gap: 42px 30px;
	}

	.site-footer .footer-bottom {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px clamp(22px, 5vw, 110px) 0;
	}

	.footer-bottom-links {
		flex-direction: column;
		gap: 10px;
	}
}

/* Mobile — max-width 560px */
@media (max-width: 560px) {
	.site-footer {
		margin-top: 80px;
		padding: 50px 0 20px;
	}

	.site-footer .footer-shell {
		gap: 40px;
	}

	.footer-lead h2 {
		font-size: 32px;
		margin-top: 20px;
	}

	.footer-lead p {
		margin-top: 15px;
		font-size: 12px;
	}

	.footer-newsletter {
		margin-top: 25px;
	}

	.footer-nav {
		grid-template-columns: 1fr 1fr;
		gap: 30px 20px;
	}

	.site-footer .footer-bottom {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 30px;
		padding: 20px clamp(22px, 5vw, 110px) 0;
	}

	.footer-bottom-links {
		flex-direction: column;
		gap: 8px;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.footer-newsletter button,
	.footer-group a,
	.footer-bottom-links a {
		transition-duration: 0.01ms !important;
	}
}
