/* =========================================
   LFF - Footer
   ========================================= */

.lff-site-footer {
	margin-top: 0;
	background: #176b38;
	color: #ffffff;
}

.lff-footer-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}


/* =========================================
   Main Footer
   ========================================= */

.lff-footer-main {
	padding: 48px 0 38px;
}

.lff-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 42px;
}


/* =========================================
   Brand / Logo
   ========================================= */

.lff-footer-brand {
	min-width: 0;
}

.lff-footer-logo {
	display: inline-flex;
	align-items: center;
	width: auto;
	max-width: 100%;
	text-decoration: none;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
}

.lff-footer-logo__image {
	display: block;

	width: auto;
	height: auto;

	max-width: 190px;
	max-height: 52px;

	object-fit: contain;

	background: transparent;
	border: 0;
	border-radius: 0;

	padding: 0;
	margin: 0;
}

.lff-footer-logo__text {
	display: inline-block;

	margin: 0;
	padding: 0;

	font-size: 25px;
	font-weight: 700;
	line-height: 1;

	color: #ffffff;

	background: transparent;
	border: 0;
}

.lff-footer-tagline {
	margin: 14px 0 7px;

	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;

	color: #ffffff;
}

.lff-footer-description {
	max-width: 330px;

	margin: 0;

	font-size: 13px;
	line-height: 1.65;

	color: rgba(255, 255, 255, 0.78);
}


/* =========================================
   Footer Columns
   ========================================= */

.lff-footer-column {
	min-width: 0;
}

.lff-footer-column h3 {
	margin: 3px 0 15px;

	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.03em;

	color: #ffffff;
}

.lff-footer-links {
	margin: 0;
	padding: 0;

	list-style: none;
}

.lff-footer-links li {
	margin: 0;
	padding: 0;
}

.lff-footer-links a {
	display: inline-block;

	padding: 4px 0;

	font-size: 13px;
	line-height: 1.45;

	color: rgba(255, 255, 255, 0.78);

	text-decoration: none;

	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.lff-footer-links a:hover {
	color: #ffffff;
	transform: translateX(2px);
}


/* =========================================
   WordPress Menu Reset
   ========================================= */

.lff-footer-column .menu {
	margin: 0;
	padding: 0;

	list-style: none;
}

.lff-footer-column .menu li {
	margin: 0;
	padding: 0;
}

.lff-footer-column .menu a {
	display: inline-block;

	padding: 4px 0;

	font-size: 13px;
	line-height: 1.45;

	color: rgba(255, 255, 255, 0.78);

	text-decoration: none;

	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.lff-footer-column .menu a:hover {
	color: #ffffff;
	transform: translateX(2px);
}


/* =========================================
   Footer Bottom
   ========================================= */

.lff-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lff-footer-bottom-inner {
	position: relative;

	min-height: 64px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 14px 0;
}


/* Copyright - Always Center */

.lff-footer-bottom p {
	margin: 0;

	font-size: 12px;
	line-height: 1.5;

	text-align: center;

	color: rgba(255, 255, 255, 0.72);
}


/* Bottom Links */

.lff-footer-bottom-links {
	position: absolute;
	right: 0;

	display: flex;
	align-items: center;

	gap: 16px;
}

.lff-footer-bottom-links a {
	font-size: 12px;
	line-height: 1.5;

	color: rgba(255, 255, 255, 0.72);

	text-decoration: none;

	transition: color 0.2s ease;
}

.lff-footer-bottom-links a:hover {
	color: #ffffff;
}


/* =========================================
   Tablet
   ========================================= */

@media (max-width: 850px) {

	.lff-footer-main {
		padding: 38px 0 30px;
	}

	.lff-footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 30px;
	}

	.lff-footer-brand {
		grid-column: 1 / -1;
	}

	.lff-footer-description {
		max-width: 500px;
	}

	.lff-footer-bottom-inner {
		padding-right: 0;
		padding-left: 0;
	}

}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 600px) {

	.lff-footer-container {
		width: min(100% - 24px, 1180px);
	}

	.lff-footer-main {
		padding: 32px 0 24px;
	}

	.lff-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 25px 18px;
	}

	.lff-footer-brand {
		grid-column: 1 / -1;
	}


	/* Mobile Logo */

	.lff-footer-logo__image {
		max-width: 165px;
		max-height: 44px;
	}

	.lff-footer-logo__text {
		font-size: 22px;
	}


	/* Brand Text */

	.lff-footer-tagline {
		margin-top: 11px;

		font-size: 15px;
		line-height: 1.35;
	}

	.lff-footer-description {
		max-width: 100%;

		font-size: 12px;
		line-height: 1.55;

		color: rgba(255, 255, 255, 0.76);
	}


	/* Columns */

	.lff-footer-column h3 {
		margin-bottom: 9px;

		font-size: 12px;
	}

	.lff-footer-links a,
	.lff-footer-column .menu a {
		padding: 3px 0;

		font-size: 12px;
		line-height: 1.4;
	}


	/* Bottom */

	.lff-footer-bottom-inner {
		min-height: auto;

		display: flex;
		flex-direction: column;

		align-items: center;
		justify-content: center;

		gap: 8px;

		padding: 14px 0;
	}


	/* Copyright stays centered */

	.lff-footer-bottom p {
		width: 100%;

		margin: 0;

		font-size: 11px;
		line-height: 1.5;

		text-align: center;

		color: rgba(255, 255, 255, 0.70);
	}


	/* Links become normal flow on mobile */

	.lff-footer-bottom-links {
		position: static;

		display: flex;
		align-items: center;
		justify-content: center;

		flex-wrap: wrap;

		gap: 6px 13px;

		width: 100%;
	}

	.lff-footer-bottom-links a {
		font-size: 11px;
		color: rgba(255, 255, 255, 0.70);
	}

}


/* =========================================
   Small Mobile
   ========================================= */

@media (max-width: 380px) {

	.lff-footer-main {
		padding-top: 28px;
	}

	.lff-footer-grid {
		gap: 22px 14px;
	}

	.lff-footer-logo__image {
		max-width: 150px;
		max-height: 40px;
	}

	.lff-footer-tagline {
		font-size: 14px;
	}

	.lff-footer-description {
		font-size: 11px;
	}

	.lff-footer-links a,
	.lff-footer-column .menu a {
		font-size: 11px;
	}

}