/* Replace the theme copyright strip with one consistent brand footer. */
#colophon.site-footer {
	display: none !important;
}

.ah-global-footer {
	background: #0e0f0d;
	box-sizing: border-box;
	clear: both;
	color: #f8f5ef;
	margin: 0;
	padding: 76px 0 32px;
	width: 100%;
}

.ah-global-footer *,
.ah-global-footer *::before,
.ah-global-footer *::after {
	box-sizing: border-box;
}

.ah-global-footer .ah-footer-shell {
	margin: 0 auto;
	max-width: 1180px;
	width: calc(100% - 64px);
}

.ah-global-footer .ah-footer-grid {
	display: grid;
	gap: 54px;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	padding-bottom: 66px;
}

.ah-global-footer .ah-footer-logo {
	color: #f8f5ef;
	display: inline-block;
	font-family: var(--global-heading-font-family, Georgia, serif) !important;
	font-size: 38px;
	line-height: 1;
	margin-bottom: 20px;
	text-decoration: none;
}

.ah-global-footer .ah-footer-brand p,
.ah-global-footer .ah-footer-contact p {
	color: rgba(248, 245, 239, .56);
	font-size: 12px;
	line-height: 1.7;
	margin: 0;
	max-width: 300px;
}

.ah-global-footer h2 {
	color: rgba(248, 245, 239, .5);
	font-family: var(--global-body-font-family, Arial, sans-serif) !important;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.3;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.ah-global-footer nav a,
.ah-global-footer .ah-footer-contact a {
	color: #f8f5ef;
	display: block;
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 12px;
	text-decoration: none;
}

.ah-global-footer nav a:hover,
.ah-global-footer .ah-footer-contact a:hover,
.ah-global-footer nav a:focus-visible,
.ah-global-footer .ah-footer-contact a:focus-visible {
	color: #c9b28d;
	outline: none;
}

.ah-global-footer .ah-footer-company {
	align-items: flex-end;
	border-top: 1px solid rgba(248, 245, 239, .16);
	display: flex;
	gap: 40px;
	justify-content: space-between;
	padding-top: 28px;
}

.ah-global-footer .ah-footer-company p {
	color: rgba(248, 245, 239, .5);
	font-size: 9px;
	letter-spacing: .035em;
	line-height: 1.65;
	margin: 0;
}

.ah-global-footer .ah-footer-company strong {
	color: rgba(248, 245, 239, .74);
	font-weight: 600;
}

@media (max-width: 1024px) {
	.ah-global-footer .ah-footer-shell {
		width: calc(100% - 40px);
	}
}

@media (max-width: 767px) {
	.ah-global-footer {
		padding: 54px 0 26px;
	}

	.ah-global-footer .ah-footer-shell {
		width: calc(100% - 32px);
	}

	.ah-global-footer .ah-footer-grid {
		gap: 36px 28px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-bottom: 46px;
	}

	.ah-global-footer .ah-footer-brand,
	.ah-global-footer .ah-footer-contact {
		grid-column: span 2;
	}

	.ah-global-footer .ah-footer-company {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
}

