/* WallArt2D responsive brand, support, and legal footer. */
.bhfb-footer { display:none!important; }

.wa-site-footer,
.wa-site-footer * { box-sizing:border-box; }

.wa-site-footer {
	--wa-footer-ink:#f7f5ef;
	--wa-footer-muted:rgba(247,245,239,.72);
	--wa-footer-line:rgba(255,255,255,.15);
	position:relative;
	clear:both;
	overflow:hidden;
	color:var(--wa-footer-ink);
	background:
		radial-gradient(ellipse at 90% 0%,rgba(86,110,61,.36),transparent 34rem),
		linear-gradient(125deg,#082f45 0%,#0c4767 62%,#123f45 125%);
	font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

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

.wa-site-footer a:focus-visible {
	outline:2px solid #fe9920;
	outline-offset:5px;
	border-radius:3px;
}

.wa-site-footer__inner {
	width:min(1240px,calc(100% - 64px));
	margin-inline:auto;
}

.wa-site-footer__intro {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:32px;
	padding:54px 0 42px;
	border-bottom:1px solid var(--wa-footer-line);
}

.wa-site-footer__eyebrow {
	margin:0 0 10px;
	color:#ffc078;
	font-size:11px;
	font-weight:750;
	letter-spacing:.15em;
	text-transform:uppercase;
}

.wa-site-footer__intro h2 {
	margin:0;
	color:var(--wa-footer-ink);
	font-family:Georgia,"Times New Roman",serif;
	font-size:clamp(30px,3.4vw,44px);
	font-weight:400;
	letter-spacing:-.025em;
	line-height:1.12;
}

.wa-site-footer__intro > div > p:last-child {
	max-width:560px;
	margin:12px 0 0;
	color:var(--wa-footer-muted);
	font-size:14px;
	line-height:1.7;
}

.wa-site-footer .wa-site-footer__cta {
	display:inline-flex;
	flex:0 0 auto;
	align-items:center;
	justify-content:center;
	gap:18px;
	min-height:50px;
	padding:0 20px;
	border:1px solid rgba(255,255,255,.26);
	border-radius:7px;
	color:#fff;
	font-size:13px;
	font-weight:700;
	transition:background .2s ease,border-color .2s ease,transform .2s ease;
}

.wa-site-footer .wa-site-footer__cta:hover {
	transform:translateY(-2px);
	border-color:#fe9920;
	background:#fa7921;
}

.wa-site-footer__columns {
	display:grid;
	grid-template-columns:1.45fr repeat(3,minmax(0,1fr));
	gap:clamp(28px,5vw,68px);
	padding:42px 0 38px;
}

.wa-site-footer__wordmark {
	display:inline-block;
	margin-bottom:14px;
	color:#fff!important;
	font-family:Georgia,"Times New Roman",serif;
	font-size:29px;
	letter-spacing:-.03em;
}

.wa-site-footer__brand > p {
	max-width:280px;
	margin:0 0 16px;
	color:var(--wa-footer-muted);
	font-size:13px;
	line-height:1.75;
}

.wa-site-footer .wa-site-footer__email {
	color:#ffc078;
	font-size:13px;
	font-weight:650;
}

.wa-site-footer__nav h3 {
	margin:4px 0 17px;
	color:#fff;
	font-family:inherit;
	font-size:12px;
	font-weight:750;
	letter-spacing:.07em;
	text-transform:uppercase;
}

.wa-site-footer__nav ul {
	display:grid;
	gap:11px;
	margin:0;
	padding:0;
	list-style:none;
}

.wa-site-footer__nav li { margin:0; padding:0; }

.wa-site-footer__nav a {
	color:var(--wa-footer-muted);
	font-size:13px;
	line-height:1.5;
	transition:color .18s ease;
}

.wa-site-footer__nav a:hover,
.wa-site-footer__bottom a:hover { color:#ffc078; }

.wa-site-footer__assurances {
	display:flex;
	flex-wrap:wrap;
	gap:12px 30px;
	padding:17px 0;
	border-top:1px solid var(--wa-footer-line);
	border-bottom:1px solid var(--wa-footer-line);
}

.wa-site-footer__assurances span {
	display:inline-flex;
	align-items:center;
	gap:8px;
	color:var(--wa-footer-muted);
	font-size:11px;
	font-weight:600;
}

.wa-site-footer__assurances i {
	display:inline-grid;
	width:19px;
	height:19px;
	place-items:center;
	border:1px solid rgba(255,192,120,.52);
	border-radius:50%;
	color:#ffc078;
	font-size:11px;
	font-style:normal;
}

.wa-site-footer__bottom {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	padding:18px 0 22px;
}

.wa-site-footer__bottom p,
.wa-site-footer__bottom a {
	margin:0;
	color:rgba(247,245,239,.58);
	font-size:11px;
}

.wa-site-footer__bottom a { white-space:nowrap; }
.wa-site-footer__bottom a span { padding-left:5px; color:#ffc078; }

@media (max-width:820px) {
	.wa-site-footer__inner { width:min(100% - 48px,680px); }
	.wa-site-footer__columns { grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px 44px; }
	.wa-site-footer__brand { grid-column:1/-1; }
	.wa-site-footer__brand > p { max-width:420px; }
}

@media (max-width:540px) {
	.wa-site-footer__inner { width:calc(100% - 40px); }
	.wa-site-footer__intro { align-items:flex-start; flex-direction:column; gap:20px; padding:42px 0 30px; }
	.wa-site-footer__intro h2 { font-size:34px; }
	.wa-site-footer .wa-site-footer__cta { min-height:48px; }
	.wa-site-footer__columns { gap:30px 18px; padding:31px 0; }
	.wa-site-footer__brand { grid-column:1/-1; }
	.wa-site-footer__wordmark { font-size:27px; }
	.wa-site-footer__nav h3 { font-size:11px; }
	.wa-site-footer__nav a { font-size:12px; }
	.wa-site-footer__assurances { display:grid; grid-template-columns:1fr; gap:11px; }
	.wa-site-footer__bottom { align-items:flex-start; flex-direction:column; gap:10px; padding-bottom:24px; }
}

@media (prefers-reduced-motion:reduce) {
	.wa-site-footer *,
	.wa-site-footer *::before,
	.wa-site-footer *::after { transition:none!important; }
}
