.ae-globalFooter {
	--ae-footer-ink: #111;
	--ae-footer-muted: #545454;
	--ae-footer-soft: #8a8a8a;
	--ae-footer-line: rgba(17, 17, 17, 0.12);
	--ae-footer-oat: #f5f2ec;
	position: relative;
	overflow: hidden;
	padding: 88px 0 32px;
	background: var(--ae-footer-oat);
	color: var(--ae-footer-ink);
	font-family: var(--ae-font-ui);
	-webkit-font-smoothing: antialiased;
}

.ae-globalFooter *,
.ae-globalFooter *::before,
.ae-globalFooter *::after {
	box-sizing: border-box;
}

.ae-globalFooter a {
	color: inherit;
	text-decoration: none;
}

.ae-globalFooter__inner {
	position: relative;
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 80px;
}

/* Footer watermark — was a styled text wordmark with `font-size: 220px;
   white-space: nowrap; overflow: hidden`, which clipped on the right at any
   viewport narrower than the rendered text width (#98). Replaced with the
   canonical SVG logo asset, scaled to fit the footer container width with the
   same faded treatment. The dead `font-variation-settings: "opsz" 120, "SOFT" 40`
   from the Fraunces era is removed per the 2026-04-29 typography policy. */
.ae-globalFooter__wordmark {
	overflow: hidden;
	margin: 0 0 -60px;
	pointer-events: none;
	user-select: none;
	line-height: 0;
	text-align: center;
}

.ae-globalFooter__wordmarkImg {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	opacity: 0.07;
}

.ae-globalFooter__columns {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr 1.3fr;
	gap: 64px;
	align-items: start;
	padding-bottom: 48px;
}

.ae-globalFooter__column,
.ae-globalFooter__newsletter {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ae-globalFooter__column h2,
.ae-globalFooter__newsletter h2 {
	display: block;
	margin: 0 0 20px;
	color: var(--ae-footer-ink);
	font-family: var(--ae-font-ui);
	font-size: 11px;
	font-weight: 500;
	font-variation-settings: normal;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: uppercase;
}

.ae-globalFooter__column a {
	color: var(--ae-footer-muted);
	font-family: var(--ae-font-ui);
	font-size: 13px;
	line-height: 1.45;
}

.ae-globalFooter__column a + a {
	margin-top: 12px;
}

.ae-globalFooter__column a:hover,
.ae-globalFooter__column a:focus-visible {
	color: var(--ae-footer-ink);
}

.ae-globalFooter__newsletter p {
	max-width: 38ch;
	margin: 0 0 20px;
	color: var(--ae-footer-muted);
	font-size: 13px;
	line-height: 1.6;
}

.ae-globalFooter__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	width: 100%;
	max-width: 380px;
	border-bottom: 1px solid var(--ae-footer-ink);
}

.ae-globalFooter__form input,
.ae-globalFooter__form button {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--ae-font-ui);
}

.ae-globalFooter__form input {
	min-width: 0;
	padding: 10px 0;
	color: var(--ae-footer-ink);
	font-size: 13px;
	line-height: 1.4;
	outline: none;
}

.ae-globalFooter__form input::placeholder {
	color: var(--ae-footer-soft);
	opacity: 1;
}

.ae-globalFooter__form button {
	padding: 10px 0 10px 20px;
	color: var(--ae-footer-ink);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: uppercase;
	cursor: pointer;
}

.ae-globalFooter__bottom {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	padding-top: 32px;
	border-top: 1px solid var(--ae-footer-line);
	color: var(--ae-footer-soft);
	font-size: 12px;
}

.ae-globalFooter__bottom p {
	margin: 0;
	line-height: 1.6;
}

.ae-globalFooter__bottom p:nth-child(2) {
	max-width: 56ch;
	text-align: center;
	justify-self: center;
}

.ae-globalFooter__socials {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
}

.ae-globalFooter__socials a {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: var(--ae-footer-muted);
}

.ae-globalFooter__socials a:hover,
.ae-globalFooter__socials a:focus-visible {
	color: var(--ae-footer-ink);
}

.ae-globalFooter__socials svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 1100px) {
	.ae-globalFooter__columns {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.ae-globalFooter__wordmark {
		font-size: 140px;
	}
}

@media (max-width: 680px) {
	.ae-globalFooter {
		padding-top: 64px;
	}

	.ae-globalFooter__inner {
		padding: 0 24px;
	}

	.ae-globalFooter__wordmark {
		margin-bottom: -24px;
		font-size: 84px;
	}

	.ae-globalFooter__columns {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ae-globalFooter__bottom {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
	}

	.ae-globalFooter__bottom p:nth-child(2) {
		justify-self: stretch;
	}

	.ae-globalFooter__socials {
		justify-content: center;
	}
}

@media (max-width: 420px) {
	.ae-globalFooter__form {
		grid-template-columns: 1fr;
		padding-bottom: 10px;
	}

	.ae-globalFooter__form button {
		justify-self: start;
		padding-left: 0;
	}
}
