.home2-section--footer {
	position: relative;
	background:
		radial-gradient(ellipse 80% 60% at 20% 10%, rgba(138, 91, 58, 0.18), transparent 60%),
		radial-gradient(ellipse 70% 50% at 80% 90%, rgba(58, 98, 120, 0.22), transparent 65%),
		linear-gradient(180deg, #0f0b07 0%, #18140f 50%, #0a0807 100%);
	color: #f2ede6;
	padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vh, 4rem);
	justify-content: space-between;
	overflow: hidden;
	isolation: isolate;
}

.home2-footer__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.home2-footer__glow {
	position: absolute;
	width: 60vmax;
	height: 60vmax;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
	mix-blend-mode: screen;
}

.home2-footer__glow--a {
	top: -20vmax;
	left: -20vmax;
	background: radial-gradient(circle, rgba(197, 139, 92, 0.55), transparent 70%);
	animation: home2FooterDriftA 22s ease-in-out infinite alternate;
}

.home2-footer__glow--b {
	bottom: -25vmax;
	right: -20vmax;
	background: radial-gradient(circle, rgba(76, 124, 146, 0.55), transparent 70%);
	animation: home2FooterDriftB 28s ease-in-out infinite alternate;
}

@keyframes home2FooterDriftA {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(6vmax, 4vmax) scale(1.1); }
}

@keyframes home2FooterDriftB {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(-5vmax, -3vmax) scale(1.15); }
}

.home2-footer__ripples {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 18vh;
	display: block;
}

.home2-footer__inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 5vh, 3.5rem);
	position: relative;
	z-index: 1;
}

.home2-footer__lede {
	text-align: center;
}

.home2-footer__eyebrow {
	color: rgba(242, 237, 230, 0.55);
	margin: 0;
}

.home2-footer__signoff {
	color: #f2ede6;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.home2-footer__subtitle {
	color: rgba(242, 237, 230, 0.75);
	max-width: 42rem;
	margin-inline: auto;
}

/* ---------- Link grid ---------- */
.home2-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	padding-top: clamp(1rem, 3vh, 2rem);
	border-top: 1px solid rgba(242, 237, 230, 0.12);
}

@media (max-width: 900px) {
	.home2-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.home2-footer__grid {
		grid-template-columns: 1fr;
	}
}

.home2-footer__col {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.home2-footer__col-title {
	font-family: var(--wp--preset--font-family--display, Georgia, serif);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(197, 139, 92, 0.9);
	margin: 0;
}

.home2-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.home2-footer__links a {
	color: rgba(242, 237, 230, 0.88);
	text-decoration: none;
	font-size: var(--wp--preset--font-size--body);
	letter-spacing: 0.01em;
	position: relative;
	display: inline-block;
	padding-bottom: 1px;
	transition: color 0.25s ease, transform 0.25s ease;
}

.home2-footer__links a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: rgba(197, 139, 92, 0.8);
	transition: right 0.35s cubic-bezier(.2,.8,.2,1);
}

.home2-footer__links a:hover,
.home2-footer__links a:focus-visible {
	color: #fff;
	transform: translateX(3px);
	outline: none;
}

.home2-footer__links a:hover::after,
.home2-footer__links a:focus-visible::after {
	right: 30%;
}

/* ---------- Newsletter mini-form ---------- */
.home2-footer__note {
	color: rgba(242, 237, 230, 0.7);
	font-size: var(--wp--preset--font-size--caption);
	line-height: 1.55;
	font-style: italic;
	margin: 0 0 0.25rem;
}

/* The form itself is rendered by wwh/newsletter-signup (plugin) and styled
 * via blocks/newsletter-signup/style.css — the old hand-rolled .home2-footer__form
 * / __field / __submit ruleset was removed 2026-05-13 once the block became the
 * canonical signup surface. .home2-footer__note above stays — it styles the
 * intro paragraph that sits above the form in parts/footer.html. */

/* ---------- Band: wheelmark + socials ---------- */
.home2-footer__band {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	padding: clamp(1.25rem, 3vh, 2rem) 0;
	flex-wrap: wrap;
}

.home2-footer__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: rgba(197, 139, 92, 0.95);
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.home2-footer__mark svg {
	width: 38px;
	height: 38px;
	transition: transform 18s linear;
}

.home2-footer__mark:hover,
.home2-footer__mark:focus-visible {
	color: rgba(218, 165, 115, 1);
	outline: none;
}

.home2-footer__mark:hover svg,
.home2-footer__mark:focus-visible svg {
	transform: rotate(360deg);
}


.home2-footer__socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0.6rem;
}

.home2-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: rgba(242, 237, 230, 0.75);
	border: 1px solid rgba(242, 237, 230, 0.18);
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home2-footer__socials a:hover,
.home2-footer__socials a:focus-visible {
	color: #18140f;
	background: rgba(197, 139, 92, 0.95);
	border-color: rgba(197, 139, 92, 1);
	transform: translateY(-2px);
	outline: none;
}

/* ---------- Acknowledgement ---------- */
.home2-footer__acknowledgement {
	text-align: center;
	max-width: 52rem;
	margin: 0 auto;
}

.home2-footer__acknowledgement p {
	color: rgba(242, 237, 230, 0.55);
	font-size: var(--wp--preset--font-size--caption);
	line-height: 1.65;
	font-style: italic;
	margin: 0;
}

/* ---------- Meta row ---------- */
.home2-footer__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	color: rgba(242, 237, 230, 0.45);
	font-size: var(--wp--preset--font-size--caption);
	letter-spacing: 0.04em;
}

.home2-footer__copy {
	margin: 0;
}

.home2-footer__legal {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.home2-footer__legal a {
	color: rgba(242, 237, 230, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}

.home2-footer__legal a:hover,
.home2-footer__legal a:focus-visible {
	color: #f2ede6;
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.home2-footer__glow--a,
	.home2-footer__glow--b {
		animation: none !important;
	}
	.home2-footer__mark svg {
		transition: none !important;
	}
}
