/**
 * Brand footer chrome on theme pages (shop, product, blog, cart, …).
 *
 * Mirrors the footer styles from home.css but scoped to `.nm-site-footer`
 * so it never collides with the Razzi `#site-footer` wrapper that holds the
 * homepage-style newsletter. Relies on the CSS custom properties injected by
 * nmhp_global_header_head() on theme pages (fallbacks included).
 */

.nm-site-footer {
	padding: 7rem 2.3vw 2rem;
	background: var(--nm-ink, #111510);
	color: var(--nm-rice, #f3eee4);
}

.nm-site-footer .footer-mark {
	font-family: var(--font-display, Didot, "Bodoni 72", "Playfair Display", "Bodoni MT", "Times New Roman", serif);
	font-size: clamp(5rem, 12vw, 12rem);
	line-height: .72;
	letter-spacing: -.06em;
}

.nm-site-footer .footer-mark em {
	color: var(--nm-red, #b9251e);
	font-weight: 400;
}

.nm-site-footer .footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	max-width: 45rem;
	margin: 8rem 0 6rem auto;
}

.nm-site-footer .footer-links div {
	display: flex;
	flex-direction: column;
	gap: .8rem;
	font-size: .7rem;
}

.nm-site-footer .footer-links strong {
	margin-bottom: .5rem;
	font-size: .55rem;
	letter-spacing: .13em;
	opacity: .5;
}

.nm-site-footer a {
	color: inherit;
	text-decoration: none;
}

.nm-site-footer a:hover {
	opacity: .7;
}

.nm-site-footer .footer-disclaimer {
	max-width: 45rem;
	margin: 0 0 3rem auto;
	font-size: .6rem;
	line-height: 1.55;
	opacity: .55;
}

.nm-site-footer .footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(243, 238, 228, .25);
	font-size: .5rem;
	letter-spacing: .1em;
}

@media (max-width: 820px) {
	.nm-site-footer {
		overflow: hidden;
	}

	.nm-site-footer .footer-mark {
		font-size: 19vw;
	}

	.nm-site-footer .footer-links {
		grid-template-columns: 1fr 1fr;
		margin: 5rem 0;
	}

	.nm-site-footer .footer-bottom {
		flex-direction: column;
		gap: 1rem;
	}
}
