.lu-footer {
	--lu-footer-forest: #021a10;
	--lu-footer-lime:   #B5EB79;
	--lu-footer-white:  #FFFFFF;
	--lu-footer-muted:  rgba(255, 255, 255, 0.68);
	--lu-footer-rule:   rgba(255, 255, 255, 0.14);

	background: var(--lu-footer-forest);
	color: var(--lu-footer-white);
	font-family: 'Instrument Sans', sans-serif;
}

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

.lu-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
	gap: 48px 64px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 64px 24px 56px;
}

/* ─── Brand ───────────────────────────────────────────────────────────────── */

.lu-footer__logo {
	display: inline-block;
	text-decoration: none;
}

.lu-footer__logo img {
	display: block;
	width: 180px;
	height: auto;
}

.lu-footer__blurb {
	max-width: 34ch;
	margin: 20px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--lu-footer-muted);
}

.lu-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 24px;
	padding: 10px 26px;
	background: var(--lu-footer-lime);
	border: 1px solid var(--lu-footer-lime);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--lu-footer-forest);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.lu-footer__cta:hover,
.lu-footer__cta:focus {
	background: transparent;
	color: var(--lu-footer-lime);
	text-decoration: none;
}

/* ─── Nav columns ─────────────────────────────────────────────────────────── */

.lu-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 32px;
}

.lu-footer__col-title {
	margin: 0 0 16px;
	padding: 0;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lu-footer-lime);
}

.lu-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lu-footer__col li + li {
	margin-top: 10px;
}

.lu-footer__col a {
	font-size: 15px;
	line-height: 1.5;
	color: var(--lu-footer-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.lu-footer__col a:hover,
.lu-footer__col a:focus {
	color: var(--lu-footer-white);
	text-decoration: none;
}

/* ─── BuddyBoss's bottom bar, below this footer ───────────────────────────── */

body.lugbn-public-footer .footer-bottom {
	background: #021a10;
	padding-top: 0!important;
}

body.lugbn-public-footer .footer-bottom .footer-bottom-left {
	opacity: .6;
}

body.lugbn-public-footer .footer-bottom,
body.lugbn-public-footer .footer-bottom .copyright,
body.lugbn-public-footer .footer-bottom a {
	color: rgba(255, 255, 255, 0.68);
}

body.lugbn-public-footer .footer-bottom a:hover,
body.lugbn-public-footer .footer-bottom a:focus {
	color: #fff;
}

body.lugbn-public-footer .footer-bottom .footer-menu i {
	display: none;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
	.lu-footer__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
		padding: 48px 20px 44px;
	}

	.lu-footer__blurb {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.lu-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}
}
