/* ==========================================================================
   Global Footer Styling (Programmatically Injected)
   ========================================================================== */
.jarrell-footer {
	background-color: #121112;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 80px 0 40px 0;
	width: 100%;
	box-sizing: border-box;
	color: #ffffff;
}

.jarrell-footer__inner {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.jarrell-footer__main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 1480px;
	margin-bottom: 60px;
}

.jarrell-footer__left {
	display: flex;
	flex-direction: column;
	width: 35%;
}

.jarrell-footer__logo {
	display: flex;
	text-decoration: none;
}

.jarrell-footer__logo .logo-text {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 0.15em;
	line-height: 1.2;
}

.jarrell-footer__logo .logo-subtext {
	font-family: var(--font-sans);
	font-size: 9px;
	font-weight: 500;
	color: var(--text-secondary);
	letter-spacing: 0.42em;
	line-height: 1;
	margin-top: 5px;
}

.jarrell-footer__right {
	display: flex;
	width: 60%;
	justify-content: flex-end;
}

.jarrell-footer__nav-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	width: 100%;
	max-width: 800px;
}

.jarrell-footer__nav-col {
	display: flex;
	flex-direction: column;
}

/* Navigation links styling */
.jarrell-footer__nav-col a {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	transition: var(--transition-smooth);
	margin-bottom: 16px;
}

.jarrell-footer__nav-col a:last-child {
	margin-bottom: 0;
}

.jarrell-footer__nav-col a:hover {
	color: var(--accent-gold);
}

/* WordPress Menu list resetting */
.jarrell-footer__nav-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.jarrell-footer__nav-col ul li {
	padding: 0;
	margin: 0;
}

.jarrell-footer__nav-col ul li a {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	transition: var(--transition-smooth);
}

.jarrell-footer__nav-col ul li a:hover {
	color: var(--accent-gold);
}

.jarrell-footer__divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 0 25px 0;
	width: 100%;
}

.jarrell-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	color: var(--text-secondary);
	letter-spacing: 0.05em;
}

.jarrell-footer__bottom-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.jarrell-footer__bottom-left span,
.jarrell-footer__bottom-left a {
	color: var(--text-secondary);
	text-decoration: none;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.05em;
}

.jarrell-footer__bottom-left a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.jarrell-footer__bottom-right {
	color: var(--text-secondary);
	font-size: 11px;
	letter-spacing: 0.05em;
}

.footer-bullet {
	opacity: 0.5;
}

/* Monogram Styles */
.footer-monogram {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto 20px auto;
}

.footer-monogram span {
	font-family: var(--font-serif);
	font-size: 48px;
	color: #ffffff;
	position: absolute;
	line-height: 1;
}

.footer-monogram .monogram-j {
	top: 0;
	left: 8px;
	z-index: 2;
}

.footer-monogram .monogram-e {
	bottom: 0;
	right: 8px;
	z-index: 1;
	opacity: 0.45;
}

/* ==========================================================================
   Responsive Viewports
   ========================================================================== */
@media (max-width: 1420px) {
	.jarrell-footer__inner {
		padding: 0 40px;
	}
}

@media (max-width: 1024px) {
	.jarrell-footer__inner {
		padding: 0 40px;
	}

	.jarrell-footer__nav-cols {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-footer {
		padding: 60px 0 30px 0;
	}

	.jarrell-footer__inner {
		padding: 0 20px;
	}

	.jarrell-footer__main {
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
		gap: 40px;
		margin-bottom: 40px;
	}

	.jarrell-footer__left {
		width: 100%;
		align-items: center;
	}

	.jarrell-footer__logo.mobile-only {
		align-items: center;
	}

	.jarrell-footer__logo .logo-text {
		font-size: 26px;
	}

	.jarrell-footer__logo .logo-subtext {
		font-size: 8px;
		letter-spacing: 0.35em;
		margin-top: 4px;
	}

	.jarrell-footer__right {
		width: 100%;
		justify-content: center;
	}

	.jarrell-footer__nav-cols {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.jarrell-footer__nav-col ul {
		gap: 14px;
	}

	.jarrell-footer__divider {
		margin-bottom: 20px;
	}

	/* Bottom Bar Side-by-Side Mobile Layout */
	.jarrell-footer__bottom {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: start;
		font-size: 10px;
	}

	.jarrell-footer__bottom-left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 6px;
	}

	.jarrell-footer__bottom-left span,
	.jarrell-footer__bottom-left a {
		font-size: 10px;
		line-height: 1.4;
	}

	.jarrell-footer__bottom-right {
		text-align: right;
		font-size: 10px;
		line-height: 1.4;
	}

	.jarrell-footer__bottom-right span {
		display: block;
		font-size: 10px;
	}

	.footer-bullet {
		display: none !important;
		/* Hide separator bullets on mobile stack */
	}
}