/* ==========================================================================
   Jarrell Hero Widget
   ========================================================================== */
/* ==========================================================================
   Jarrell Hero Widget
   ========================================================================== */
.jarrell-hero {
	position: relative;
	height: 80vh;
	height: 80svh;
	/* Dynamic viewport height for mobile browsers */
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	background-color: #000;
	width: 100%;
	padding-bottom: 90px;
	box-sizing: border-box;
}

.jarrell-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 1;
}

.jarrell-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(18, 17, 18, 0.4);
	z-index: 2;
}

.jarrell-hero__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 1000px;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.jarrell-hero__subtitle {
	font-family: var(--font-sans);
	font-size: clamp(10px, 1.2vw, 13px);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	display: block;
}

.jarrell-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 5.2vw, 68px);
	font-weight: 300;
	line-height: 1.2;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.jarrell-hero__buttons {
	display: none !important;
	/* Hidden on desktop by default */
}

/* Mute Toggle Button */
.jarrell-hero__mute-toggle {
	position: absolute;
	bottom: 60px;
	left: 60px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 4;
	transition: var(--transition-smooth);
	padding: 0;
	outline: none;
}

.jarrell-hero__mute-toggle:hover {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.1);
}

.jarrell-hero__mute-toggle svg {
	width: 20px;
	height: 20px;
}

/* Visibility based on mute classes */
.jarrell-hero__mute-toggle.is-muted .sound-wave-1,
.jarrell-hero__mute-toggle.is-muted .sound-wave-2 {
	display: none;
}

.jarrell-hero__mute-toggle.is-unmuted .mute-line,
.jarrell-hero__mute-toggle.is-unmuted .mute-line-2 {
	display: none;
}

@media (max-width: 1024px) {
	.jarrell-hero__mute-toggle {
		left: 40px;
		bottom: 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-hero {
		padding-bottom: 70px;
		height: 100vh;
		height: 100svh;
	}

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

	.jarrell-hero__subtitle {
		margin-bottom: 8px;
		letter-spacing: 0.12em;
	}

	.jarrell-hero__mute-toggle {
		left: 20px;
		bottom: 30px;
		width: 38px;
		height: 38px;
	}

	.jarrell-hero__mute-toggle svg {
		width: 18px;
		height: 18px;
	}

	.jarrell-hero__buttons {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-top: 25px;
		width: 100%;
	}

	.jarrell-hero__buttons .jarrell-btn {
		width: 100%;
		max-width: 290px;
		text-align: center;
		padding: 12px 20px;
		font-size: 12px;
		font-family: var(--font-sans);
		font-weight: 500;
		letter-spacing: 0.15em;
		text-transform: uppercase;
		text-decoration: none;
		box-sizing: border-box;
		border-radius: 0;
		transition: var(--transition-smooth);
	}

	/* Primary Button: Outline (white border, transparent bg, white text) */
	.jarrell-hero__buttons .jarrell-btn-primary {
		background: transparent !important;
		color: #ffffff !important;
		border: 1px solid #ffffff !important;
	}

	.jarrell-hero__buttons .jarrell-btn-primary:hover {
		background: rgba(255, 255, 255, 0.1) !important;
		border-color: #ffffff !important;
		color: #ffffff !important;
		transform: none !important;
	}

	/* Secondary Button: Plain text (no border, transparent bg, white text) */
	.jarrell-hero__buttons .jarrell-btn-secondary {
		background: transparent !important;
		color: #ffffff !important;
		border: none !important;
	}

	.jarrell-hero__buttons .jarrell-btn-secondary:hover {
		color: rgba(255, 255, 255, 0.7) !important;
		background: transparent !important;
		transform: none !important;
	}
}

/* ==========================================================================
   Jarrell Services Widget
   ========================================================================== */
.jarrell-services {
	padding: 100px 0;
	background-color: #f7f5f0;
	width: 100%;
	text-align: center;
}

.jarrell-services__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-services__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #666666;
	margin-bottom: 12px;
}

.jarrell-services__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #121112;
	margin-top: 0;
	margin-bottom: 50px;
}

.jarrell-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.jarrell-services__card {
	position: relative;
	aspect-ratio: 1/1;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-decoration: none;
}

.jarrell-services__card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-gold);
}

.jarrell-services__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.jarrell-services__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: var(--transition-smooth);
}

.jarrell-services__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.jarrell-services__placeholder {
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

.jarrell-services__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.jarrell-services__video--visible {
	opacity: 1;
}

.jarrell-services__card:hover .jarrell-services__video {
	opacity: 1;
}

.jarrell-services__card:hover .jarrell-services__img {
	transform: scale(1.05);
}

.jarrell-services__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 70%);
	z-index: 2;
	transition: background 0.4s ease;
}

.jarrell-services__card:hover .jarrell-services__overlay {
	background: rgba(0, 0, 0, 0.75);
}

.jarrell-services__content {
	position: relative;
	z-index: 3;
	padding: 30px 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.jarrell-services__card-title {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ffffff;
	margin: 0;
	transition: color 0.3s ease;
}

.jarrell-services__card:hover .jarrell-services__card-title {
	color: var(--accent-gold);
}

.jarrell-services__hover-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.4s ease, max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), margin-top 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.jarrell-services__card:hover .jarrell-services__hover-content {
	opacity: 1;
	max-height: 200px;
	margin-top: 15px;
}

.jarrell-services__card-subtitle {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 8px 0;
	text-transform: none;
	letter-spacing: 0.05em;
}

.jarrell-services__card-desc {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 15px 0;
	max-width: 220px;
	text-transform: none;
}

.jarrell-services__explore {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
}

.jarrell-services__card:hover .jarrell-services__explore {
	color: var(--accent-gold);
}

@media (max-width: 991px) {
	.jarrell-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.jarrell-services__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Jarrell Trusted Widget (Brands Slider)
   ========================================================================== */
.jarrell-trusted {
	padding: 80px 0;
	background-color: #f7f5f0;
	border: none;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.jarrell-trusted__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-trusted__label {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3.5vw, 26px);
	font-weight: 400;
	color: #121112;
	margin-bottom: 40px;
	text-transform: none;
	letter-spacing: normal;
}

.jarrell-trusted__slider {
	overflow: hidden;
	width: 100%;
}

/* Fallback when Swiper JS is not initialized */
.jarrell-trusted__slider:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	height: auto;
}

.jarrell-trusted__slider:not(.swiper-initialized) .swiper-slide {
	width: auto !important;
	flex: 0 0 auto;
	margin: 0;
}

.jarrell-trusted__slider .swiper-wrapper {
	transition-timing-function: linear !important;
}

.jarrell-trusted__slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.jarrell-trusted__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.jarrell-trusted__logo {
	height: 36px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
	padding: 2px;
	box-sizing: border-box;
	filter: grayscale(100%) brightness(0.2);
	opacity: 0.75;
	transition: var(--transition-smooth);
}

.jarrell-trusted__item:hover .jarrell-trusted__logo {
	opacity: 1;
	filter: grayscale(100%) brightness(0);
}

.jarrell-trusted__text {
	font-family: var(--font-serif);
	font-size: 20px;
	font-style: italic;
	color: #121112;
	opacity: 0.6;
	transition: var(--transition-smooth);
}

.jarrell-trusted__item:hover .jarrell-trusted__text {
	opacity: 1;
}

@media (max-width: 767px) {
	.jarrell-trusted {
		padding: 50px 0;
	}

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

	.jarrell-trusted__label {
		margin-bottom: 25px;
	}

	.jarrell-trusted__slider .swiper-slide {
		height: 45px;
	}

	.jarrell-trusted__logo {
		max-height: 24px;
	}
}

/* ==========================================================================
   Jarrell Artists Widget
   ========================================================================== */
.jarrell-artists {
	padding: 100px 0;
	background-color: #f7f5f0;
	width: 100%;
	overflow: hidden;
}

.jarrell-artists__inner {
	width: 100%;
	box-sizing: border-box;
}

.jarrell-artists__header-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	width: 100%;
}

.jarrell-artists__header {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 50px;
}

.jarrell-artists__title {
	font-family: var(--font-serif);
	font-size: clamp(36px, 5vw, 54px);
	font-weight: 400;
	color: #121112;
	margin: 0;
}

.jarrell-artists__header-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 30px;
}

.jarrell-artists__filters-wrapper {
	width: 100%;
	min-width: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 8px;
	margin-bottom: -8px;
}

.jarrell-artists__filters-wrapper::-webkit-scrollbar {
	display: none;
}

.jarrell-artists__filters {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	gap: 12px;
}

.jarrell-artists__filter-btn {
	background: transparent;
	border: 1px solid rgba(18, 17, 18, 0.2);
	color: #121112;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 22px;
	cursor: pointer;
	transition: var(--transition-smooth);
	box-sizing: border-box;
	white-space: nowrap;
}

.jarrell-artists__filter-btn:hover {
	background-color: #121112;
	color: #ffffff;
	border-color: #121112;
}

.jarrell-artists__filter-btn.active {
	background-color: #121112;
	color: #ffffff;
	border-color: #121112;
}

/* Remove original active pseudo element */
.jarrell-artists__filter-btn.active::after {
	display: none;
}

/* View All Link Button Style */
.jarrell-artists__view-all-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 26px;
	border: 1px solid #121112;
	background: transparent;
	color: #121112;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.jarrell-artists__view-all-link:hover {
	background-color: #121112;
	color: #ffffff;
}

.jarrell-artists__slider {
	overflow: hidden;
	position: relative;
	padding-bottom: 40px;
}

.jarrell-artists__slide {
	height: auto;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.jarrell-artists__slide.hidden {
	opacity: 0;
	transform: scale(0.9);
	pointer-events: none;
	width: 0 !important;
	margin-right: 0 !important;
	padding: 0 !important;
	overflow: hidden;
}

.jarrell-artists__card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.jarrell-artists__card {
	position: relative;
	background-color: #000;
	border: none;
	overflow: hidden;
	transition: var(--transition-smooth);
}

.jarrell-artists__card:hover {
	transform: translateY(-8px);
}

.jarrell-artists__media {
	position: relative;
	aspect-ratio: 3/4;
	/* Vertical ratio */
	overflow: hidden;
	background-color: #000;
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.jarrell-artists__card:hover .jarrell-artists__media {
	filter: grayscale(0%);
}

.jarrell-no-grayscale .jarrell-artists__media {
	filter: grayscale(0%);
}

.jarrell-artists__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-artists__card:hover .jarrell-artists__img {
	transform: scale(1.08);
}

.jarrell-artists__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

.jarrell-artists__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.jarrell-artists__card:hover .jarrell-artists__video {
	opacity: 1;
}

.jarrell-artists__info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px 24px 24px 24px;
	box-sizing: border-box;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
	z-index: 2;
	transition: transform 0.4s ease;
}

.jarrell-artists__card:hover .jarrell-artists__info {
	transform: translateY(-2px);
}

.jarrell-artists__meta-type {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0 0 6px 0;
}

.jarrell-artists__name {
	font-size: clamp(20px, 2.5vw, 24px);
	margin: 0 0 6px 0;
	font-family: var(--font-serif);
	font-weight: 400;
	color: #ffffff;
	line-height: 1.2;
}

.jarrell-artists__meta-details {
	font-family: var(--font-sans);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	letter-spacing: 0.02em;
}

.jarrell-artists__footer {
	margin-top: 40px;
	text-align: center;
}

.jarrell-artists__slider .swiper-button-next,
.jarrell-artists__slider .swiper-button-prev {
	color: #121112;
	background-color: #ffffff;
	border: 1px solid rgba(18, 17, 18, 0.1);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.jarrell-artists__slider .swiper-button-next::after,
.jarrell-artists__slider .swiper-button-prev::after {
	font-size: 16px;
}

.jarrell-artists__slider .swiper-button-next:hover,
.jarrell-artists__slider .swiper-button-prev:hover {
	background-color: #121112;
	border-color: #121112;
	color: #ffffff;
}

/* Visibility utilities */
.desktop-only {
	display: inline-flex !important;
}

.mobile-only {
	display: none !important;
}

@media (max-width: 1023px) {
	.jarrell-artists {
		padding: 60px 0;
	}

	.jarrell-artists__header-container {
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.desktop-only {
		display: none !important;
	}

	.mobile-only {
		display: block !important;
	}

	.jarrell-artists__header-container {
		padding: 0 20px;
	}

	.jarrell-artists__header {
		gap: 20px;
		margin-bottom: 30px;
		align-items: center;
		text-align: center;
	}

	.jarrell-artists__header-bottom {
		overflow: hidden;
		width: 100%;
	}

	.jarrell-artists__filters-wrapper {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* Hide scrollbar for Firefox */
		padding-bottom: 8px;
		margin-bottom: -8px;
	}

	.jarrell-artists__filters-wrapper::-webkit-scrollbar {
		display: none;
	}

	.jarrell-artists__filters {
		width: max-content;
		flex-wrap: nowrap;
		gap: 8px;
		padding-right: 20px;
	}

	.jarrell-artists__filter-btn {
		padding: 8px 16px;
		font-size: 12px;
		white-space: nowrap;
	}

	.jarrell-artists__slider {
		padding-bottom: 20px;
	}

	.jarrell-artists__slider .swiper-button-next,
	.jarrell-artists__slider .swiper-button-prev {
		display: none !important;
	}

	.jarrell-artists__footer.mobile-only {
		display: flex !important;
		justify-content: center;
		margin-top: 30px;
	}

	.jarrell-artists__footer.mobile-only .jarrell-artists__view-all-link {
		width: 100%;
		max-width: 320px;
	}
}

/* ==========================================================================
   Jarrell Premium Services Widget
   ========================================================================== */
.jarrell-premium {
	display: flex;
	width: 100%;
	min-height: 650px;
	background-color: var(--bg-secondary);
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	box-sizing: border-box;
}

.jarrell-premium__side {
	flex: 1;
	background-size: cover;
	background-position: center;
	position: relative;
}

.jarrell-premium__side-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.jarrell-premium__side.is-left .jarrell-premium__side-overlay {
	background: linear-gradient(to right, rgba(31, 29, 30, 0.4) 0%, rgba(31, 29, 30, 0) 30%, rgba(31, 29, 30, 0) 70%, rgba(31, 29, 30, 1) 100%);
}

.jarrell-premium__side.is-right .jarrell-premium__side-overlay {
	background: linear-gradient(to left, rgba(31, 29, 30, 0.4) 0%, rgba(31, 29, 30, 0) 30%, rgba(31, 29, 30, 0) 70%, rgba(31, 29, 30, 1) 100%);
}

.jarrell-premium__center {
	width: 45%;
	min-width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 80px 50px;
	background-color: var(--bg-secondary);
	box-sizing: border-box;
	z-index: 2;
}

.jarrell-premium__center-inner {
	max-width: 460px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.jarrell-premium__pre-title {
	font-family: var(--font-sans);
	font-size: 11px;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.25em;
	margin-bottom: 20px;
}

.jarrell-premium__title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 4vw, 42px);
	font-weight: 300;
	color: var(--text-primary);
	line-height: 1.25;
	margin: 0 0 15px 0;
}

.jarrell-premium__desc {
	font-family: var(--font-sans);
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

.jarrell-premium__divider {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin: 40px 0;
}

.jarrell-premium__sec2-title {
	font-family: var(--font-sans);
	font-size: 11px;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
}

.jarrell-premium__sec2-desc {
	font-family: var(--font-sans);
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0 0 20px 0;
}

.jarrell-premium__enquire {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	border-bottom: 1px solid var(--accent-gold);
	padding-bottom: 3px;
	transition: var(--transition-smooth);
}

.jarrell-premium__enquire:hover {
	color: var(--text-primary);
	border-color: var(--text-primary);
}

.jarrell-premium__sec3-desc {
	font-family: var(--font-sans);
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0 0 30px 0;
}

.jarrell-premium__btn {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 16px 36px;
	transition: var(--transition-smooth);
}

.jarrell-premium__btn:hover {
	border-color: var(--text-primary);
	background-color: var(--text-primary);
	color: var(--bg-primary);
}

@media (max-width: 991px) {
	.jarrell-premium {
		min-height: auto;
	}

	.jarrell-premium__side {
		display: none;
	}

	.jarrell-premium__center {
		width: 100%;
		min-width: unset;
		padding: 80px 20px;
	}
}

/* ==========================================================================
   Jarrell Bottom CTA Widget
   ========================================================================== */
.jarrell-cta {
	padding: 120px 0;
	background: linear-gradient(to bottom, rgba(18, 17, 18, 0.95), rgba(18, 17, 18, 0.95)),
		url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=1440') no-repeat center center;
	background-size: cover;
	text-align: center;
	width: 100%;
}

.jarrell-cta__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.jarrell-cta__title {
	font-size: clamp(36px, 6vw, 56px);
	margin-bottom: 20px;
}

.jarrell-cta__desc {
	font-size: clamp(16px, 3vw, 18px);
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* ==========================================================================
   Jarrell Inner Hero Widget
   ========================================================================== */
.jarrell-inner-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	max-height: 800px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	padding-bottom: 120px;
}

.jarrell-inner-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	filter: grayscale(100%);
	z-index: 1;
}

.jarrell-inner-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(18, 17, 18, 0.4) 0%, rgba(18, 17, 18, 0.6) 100%);
	z-index: 2;
}

.jarrell-inner-hero__inner {
	position: relative;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	z-index: 3;
	display: flex;
	justify-content: center;
}

.jarrell-inner-hero__content {
	max-width: 800px;
	text-align: center;
}

.jarrell-inner-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(40px, 6vw, 68px);
	color: #ffffff;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.15;
}

.jarrell-inner-hero__subtitle {
	font-family: var(--font-sans);
	font-size: clamp(15px, 2.5vw, 18px);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.02em;
	font-weight: 300;
}

/* Absolute positioned Breadcrumbs */
.jarrell-inner-hero__breadcrumbs {
	position: absolute;
	top: 80px;
	/* Offset below transparent header */
	left: 60px;
	/* Aligns vertically with header left-alignment */
	z-index: 4;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 6px;
}

.jarrell-inner-hero__breadcrumbs a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.jarrell-inner-hero__breadcrumbs a:hover {
	color: #ffffff;
}

.jarrell-inner-hero__breadcrumbs span {
	color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-separator {
	opacity: 0.5;
}

/* ==========================================================================
   Responsive Inner Hero Viewports
   ========================================================================== */
@media (max-width: 1024px) {
	.jarrell-inner-hero {
		height: 60vh;
		min-height: 450px;
		padding-bottom: 80px;
	}

	.jarrell-inner-hero__inner {
		padding: 0 40px;
	}

	.jarrell-inner-hero__breadcrumbs {
		left: 40px;
		top: 75px;
	}
}

@media (max-width: 768px) {
	.jarrell-inner-hero {
		height: 50vh;
		min-height: 380px;
		padding-bottom: 60px;
	}

	.jarrell-inner-hero__inner {
		padding: 0 20px;
	}

	.jarrell-inner-hero__breadcrumbs {
		left: 20px;
		top: 60px;
		font-size: 9px;
		letter-spacing: 0.1em;
	}

	.jarrell-inner-hero__title {
		margin-bottom: 12px;
	}
}

/* ==========================================================================
   Jarrell Mosaic Grid Widget
   ========================================================================== */
.jarrell-mosaic-section {
	background-color: #f7f5f0;
	padding: 100px 0;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.jarrell-mosaic-container {
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.jarrell-mosaic-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 30px;
	width: 100%;
}

.jarrell-mosaic__item {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.jarrell-mosaic__image-tall {
	grid-row: span 2;
}

.jarrell-mosaic__media {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000;
}

.jarrell-mosaic__media img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-mosaic__item:hover .jarrell-mosaic__media img {
	filter: grayscale(0%);
	transform: scale(1.06);
}

.jarrell-mosaic__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

/* Credit text styled on bottom left of tall image */
.jarrell-mosaic__credit {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.7;
	pointer-events: none;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Text Block Styling */
.jarrell-mosaic__text-block {
	display: flex;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}

.jarrell-mosaic__text-block--mobile {
	display: none;
}

.jarrell-mosaic__text-inner {
	max-width: 100%;
}

.jarrell-mosaic__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 15px;
	line-height: 1.3;
}

.jarrell-mosaic__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 400;
	color: #121112;
	line-height: 1.3;
	margin: 0;
}

/* Force 3/2 aspect ratio for horizontal images to form clean layout on desktop */
.jarrell-mosaic__image-c-top,
.jarrell-mosaic__image-c-bottom,
.jarrell-mosaic__image-r-bottom {
	aspect-ratio: 3/2;
}

/* ==========================================================================
   Responsive Mosaic Viewports
   ========================================================================== */
@media (max-width: 1024px) {
	.jarrell-mosaic-section {
		padding: 60px 0;
	}

	.jarrell-mosaic-container {
		padding: 0;
	}

	.jarrell-mosaic-grid {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.jarrell-mosaic-container {
		padding: 0;
	}

	.jarrell-mosaic-grid {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		scroll-behavior: smooth !important;
		-webkit-overflow-scrolling: touch !important;
		gap: 20px !important;
		padding: 0 20px 20px 20px !important;
		margin: 0 -20px !important;
		width: calc(100% + 40px) !important;
		box-sizing: border-box !important;
		scrollbar-width: none !important;
	}

	.jarrell-mosaic-grid::-webkit-scrollbar {
		display: none !important;
	}

	.jarrell-mosaic__text-block--desktop {
		display: none !important;
	}

	.jarrell-mosaic__text-block--mobile {
		display: block !important;
		padding: 10px 20px !important;
		margin-bottom: 20px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.jarrell-mosaic__image-tall,
	.jarrell-mosaic__image-c-top,
	.jarrell-mosaic__image-c-bottom,
	.jarrell-mosaic__image-r-bottom {
		flex: 0 0 80% !important;
		width: 80% !important;
		scroll-snap-align: start !important;
		aspect-ratio: 3/4 !important;
		height: auto !important;
	}

	.jarrell-mosaic__image-tall .jarrell-mosaic__media,
	.jarrell-mosaic__image-c-top .jarrell-mosaic__media,
	.jarrell-mosaic__image-c-bottom .jarrell-mosaic__media,
	.jarrell-mosaic__image-r-bottom .jarrell-mosaic__media {
		aspect-ratio: 3/4 !important;
		height: 100% !important;
		width: 100% !important;
	}

	.jarrell-mosaic__credit {
		bottom: 15px;
		left: 15px;
		font-size: 9px;
	}

	.jarrell-mosaic__media img {
		filter: grayscale(0%) !important;
	}
}

/* ==========================================================================
   Jarrell Artists Directory Widget
   ========================================================================== */
.jarrell-directory-section {
	padding: 100px 0;
	background-color: #f7f5f0;
	width: 100%;
	overflow: hidden;
}

.jarrell-directory-container {
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.jarrell-directory__filters-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 50px;
}

.jarrell-directory__filter-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.jarrell-directory__filter-label {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #666666;
	text-align: left;
	display: block;
}

@media (max-width: 768px) {
	.jarrell-directory__filter-label {
		text-align: center;
	}
}

.jarrell-directory__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jarrell-directory__filter-btn {
	background: transparent;
	border: 1px solid rgba(18, 17, 18, 0.2);
	color: #121112;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 22px;
	cursor: pointer;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.jarrell-directory__filter-btn:hover,
.jarrell-directory__filter-btn.active {
	background-color: #121112;
	color: #ffffff;
	border-color: #121112;
}

.jarrell-directory__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.jarrell-directory__card-wrapper {
	width: 100%;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.jarrell-directory__card-wrapper.hidden,
.jarrell-directory__card-wrapper.limit-hidden {
	display: none !important;
}

.jarrell-directory__footer {
	margin-top: 60px;
	text-align: center;
}

.jarrell-directory__view-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border: 1px solid #121112;
	background: transparent;
	color: #121112;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	cursor: pointer;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.jarrell-directory__view-more-btn:hover {
	background-color: #121112;
	color: #ffffff;
}

/* Responsive Directory styling */
@media (max-width: 1024px) {
	.jarrell-directory-section {
		padding: 60px 0;
	}

	.jarrell-directory-container {
		padding: 0;
	}

	.jarrell-directory__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.jarrell-directory-container {
		padding: 0;
	}

	.jarrell-directory__grid {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		scroll-behavior: smooth !important;
		-webkit-overflow-scrolling: touch !important;
		gap: 20px !important;
		padding: 0 20px 20px 20px !important;
		margin: 0 -20px !important;
		width: calc(100% + 40px) !important;
		box-sizing: border-box !important;
		scrollbar-width: none !important;
	}

	.jarrell-directory__grid::-webkit-scrollbar {
		display: none !important;
	}

	.jarrell-directory__card-wrapper {
		flex: 0 0 80% !important;
		width: 80% !important;
		scroll-snap-align: start !important;
	}

	.jarrell-directory__filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 8px;
		margin-bottom: -8px;
		width: 100%;
	}

	.jarrell-directory__filters::-webkit-scrollbar {
		display: none;
	}

	.jarrell-directory__filter-btn {
		white-space: nowrap;
		padding: 8px 16px;
		font-size: 12px;
	}

	.jarrell-directory__filters-container {
		gap: 20px;
		margin-bottom: 30px;
	}

	.jarrell-directory__footer {
		margin-top: 40px;
	}

	.jarrell-directory__view-more-btn {
		width: 100%;
		max-width: 320px;
	}
}

/* ==========================================================================
   Jarrell How We Work Widget
   ========================================================================== */
.jarrell-how-we-work {
	padding: 100px 0;
	background-color: #f7f5f0;
	width: 100%;
}

.jarrell-how-we-work__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	display: flex;
	gap: 80px;
	align-items: center;
}

.jarrell-how-we-work__image-col {
	flex: 1;
	max-width: 50%;
	display: flex;
	justify-content: center;
}

.jarrell-how-we-work__img {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 3/4;
	object-fit: cover !important;
	transition: filter 0.5s ease;
}



.jarrell-how-we-work__placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

.jarrell-how-we-work__content-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.jarrell-how-we-work__pre-title {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #666666;
	margin-bottom: 20px;
}

.jarrell-how-we-work__divider-top {
	width: 100%;
	height: 1px;
	background-color: rgba(18, 17, 18, 0.08);
	margin-bottom: 40px;
}

.jarrell-how-we-work__steps {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.jarrell-how-we-work__step {
	display: flex;
	flex-direction: column;
}

.jarrell-how-we-work__step-num {
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 300;
	color: #dfdbd3;
	margin: 0 0 10px 0;
	line-height: 1;
}

.jarrell-how-we-work__step-title {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	color: #121112;
	margin: 0 0 12px 0;
	text-transform: none;
	letter-spacing: 0.02em;
}

.jarrell-how-we-work__step-desc {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: #555555;
	margin: 0;
}

.jarrell-how-we-work__divider-step {
	width: 100%;
	height: 1px;
	background-color: rgba(18, 17, 18, 0.08);
	margin: 10px 0;
}

.jarrell-how-we-work__footer {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
}

.jarrell-how-we-work__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	border: 1px solid #121112;
	background: transparent;
	color: #121112;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.jarrell-how-we-work__btn:hover {
	background-color: #121112;
	color: #ffffff;
}

/* Responsive How We Work styling */
@media (max-width: 991px) {
	.jarrell-how-we-work__container {
		flex-direction: column;
		gap: 50px;
	}

	.jarrell-how-we-work__image-col {
		max-width: 100%;
		width: 100%;
	}

	.jarrell-how-we-work__content-col {
		width: 100%;
	}

	.jarrell-how-we-work__footer {
		justify-content: center;
	}

	.jarrell-how-we-work__btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 768px) {
	.jarrell-how-we-work {
		padding: 60px 0;
	}

	.jarrell-how-we-work__container {
		padding: 0 20px;
	}

	.jarrell-how-we-work__step-num {
		font-size: 40px;
	}
}

/* ==========================================================================
   Jarrell Banner Call to Action Widget
   ========================================================================== */
.jarrell-banner-cta {
	padding: 120px 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	width: 100%;
}

.jarrell-banner-cta__container {
	max-width: 1510px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-banner-cta__box {
	background: rgba(18, 17, 18, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 50px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	box-sizing: border-box;
	position: relative;
}

.jarrell-banner-cta__box::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	pointer-events: none;
}

.jarrell-banner-cta__content {
	flex: 1;
}

.jarrell-banner-cta__title {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3.5vw, 34px);
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.25;
}

.jarrell-banner-cta__desc {
	font-family: var(--font-sans);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.5;
}

.jarrell-banner-cta__action {
	flex-shrink: 0;
}

.jarrell-banner-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	border: none;
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: var(--transition-smooth);
	cursor: pointer;
	box-sizing: border-box;
}

.jarrell-banner-cta__btn:hover {
	background-color: #121112 !important;
	color: #ffffff;
}

/* Responsive Banner CTA styling */
@media (max-width: 991px) {
	.jarrell-banner-cta {
		padding: 80px 0;
	}

	.jarrell-banner-cta__container {
		padding: 0 40px;
	}

	.jarrell-banner-cta__box {
		padding: 40px;
		gap: 30px;
	}
}

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

	.jarrell-banner-cta__container {
		padding: 0 20px;
	}

	.jarrell-banner-cta__box {
		flex-direction: column;
		text-align: center;
		padding: 40px 25px;
		gap: 25px;
	}

	.jarrell-banner-cta__box::after {
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.jarrell-banner-cta__action {
		width: 100%;
	}

	.jarrell-banner-cta__btn {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
}

/* Ensure the main container spans 100% full screen width on artist pages */
body.single-artists .site-main {
	max-width: 100% !important;
	width: 100% !important;
}
/* Artist Profile Hero Override */
.jarrell-hero.artist-single-hero {
	height: 70vh;
	height: 70svh;
}

@media (max-width: 768px) {
	.jarrell-hero.artist-single-hero {
		height: 70vh;
		height: 70svh;
	}
}

.jarrell-artist-profile-details {
	background-color: #f7f5f0;
	color: #121112;
	padding: 100px 0;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-artist-profile-details__container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	gap: 80px;
	align-items: flex-start;
	box-sizing: border-box;
}

.jarrell-artist-profile-details__image-col {
	flex: 0 0 55%;
	max-width: 800px;
	width: 100%;
	position: sticky;
	top: 120px;
}

.jarrell-artist-profile-details__img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.jarrell-artist-profile-details__img:hover {
	filter: grayscale(0%);
}

.jarrell-artist-profile-details__placeholder {
	width: 100%;
	aspect-ratio: 3 / 2;
	background-color: rgba(18, 17, 18, 0.05);
	border: 1px solid rgba(18, 17, 18, 0.1);
}

.jarrell-artist-profile-details__content-col {
	flex: 1;
	min-width: 0;
}

.jarrell-artist-profile-details__meta {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	color: rgba(18, 17, 18, 0.6);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 16px;
}

.jarrell-artist-profile-details__title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 300;
	color: #121112;
	line-height: 1.15;
	margin: 0 0 30px 0;
	letter-spacing: -0.01em;
}

.jarrell-artist-profile-details__bio {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.7;
	color: rgba(18, 17, 18, 0.85);
	margin-bottom: 45px;
}

.jarrell-artist-profile-details__bio p {
	margin: 0 0 1.5em 0;
}

.jarrell-artist-profile-details__bio p:last-child {
	margin-bottom: 0;
}

.jarrell-artist-profile-details__info-group {
	margin-bottom: 35px;
}

.jarrell-artist-profile-details__info-group:last-of-type {
	margin-bottom: 45px;
}

.jarrell-artist-profile-details__info-label {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	color: #121112;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	display: block;
}

.jarrell-artist-profile-details__info-text {
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(18, 17, 18, 0.8);
	margin: 0;
}

.jarrell-artist-profile-details__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
}

.jarrell-artist-profile-details__tag {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	color: #121112;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 8px 16px;
	border: 1px solid rgba(18, 17, 18, 0.12);
	background-color: transparent;
	transition: var(--transition-smooth);
	display: inline-block;
	line-height: 1;
}

.jarrell-artist-profile-details__tag:hover {
	border-color: #121112;
	background-color: #121112;
	color: #ffffff;
}

.jarrell-artist-profile-details__actions-container {
	margin-top: 20px;
}

.jarrell-artist-profile-details__actions {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.jarrell-artist-profile-details__btn-repertoire {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border: 1px solid #121112;
	color: #121112;
	background-color: transparent;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: var(--transition-smooth);
	cursor: pointer;
	box-sizing: border-box;
	line-height: 1.2;
}

.jarrell-artist-profile-details__btn-repertoire:hover {
	background-color: #121112;
	color: #ffffff;
}

.jarrell-artist-profile-details__enquire-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.jarrell-artist-profile-details__btn-enquire {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	border: 1px solid #6b664d;
	color: #ffffff;
	background-color: #6b664d;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: var(--transition-smooth);
	cursor: pointer;
	box-sizing: border-box;
	line-height: 1.2;
}

.jarrell-artist-profile-details__btn-enquire:hover {
	background-color: #55513d;
	border-color: #55513d;
	color: #ffffff;
}

.jarrell-artist-profile-details__enquire-note {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	color: rgba(18, 17, 18, 0.5);
	margin-top: 4px;
	letter-spacing: 0.05em;
}

/* Responsive Artist Profile Details */
@media (max-width: 991px) {
	.jarrell-artist-profile-details {
		padding: 80px 0;
	}

	.jarrell-artist-profile-details__container {
		flex-direction: column;
		gap: 50px;
		padding: 0 40px;
	}

	.jarrell-artist-profile-details__image-col {
		flex: none;
		max-width: 100%;
		position: static;
	}



	.jarrell-artist-profile-details__img {
		aspect-ratio: 16 / 10;
		max-height: 500px;
		object-position: center;
	}
}

@media (max-width: 768px) {
	.jarrell-artist-profile-details {
		padding: 60px 0;
	}

	.jarrell-artist-profile-details__container {
		padding: 0 20px;
		gap: 40px;
	}

	.jarrell-artist-profile-details__title {
		margin-bottom: 25px;
	}

	.jarrell-artist-profile-details__bio {
		margin-bottom: 35px;
	}

	.jarrell-artist-profile-details__info-group {
		margin-bottom: 30px;
	}

	.jarrell-artist-profile-details__info-group:last-of-type {
		margin-bottom: 35px;
	}

	.jarrell-artist-profile-details__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
	}

	.jarrell-artist-profile-details__btn-repertoire,
	.jarrell-artist-profile-details__btn-enquire {
		width: 100%;
		padding: 15px 24px;
	}

	.jarrell-artist-profile-details__enquire-wrapper {
		width: 100%;
		align-items: center;
	}

	.jarrell-artist-profile-details__enquire-note {
		text-align: center;
	}
}

/* ==========================================================================
   Jarrell Artist Profile Media Component
   ========================================================================== */
.jarrell-artist-profile-media {
	background-color: #f7f5f0;
	color: #121112;
	padding: 60px 0 100px 0;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-artist-profile-media__container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.jarrell-artist-profile-media__heading {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	color: #121112;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 40px 0;
	display: block;
}

.jarrell-artist-profile-media__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.jarrell-artist-profile-media__item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background-color: #000;
	box-sizing: border-box;
	cursor: pointer;
}

/* Image Item layout */
.jarrell-artist-profile-media__img-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.jarrell-artist-profile-media__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-artist-profile-media__item:hover .jarrell-artist-profile-media__img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* Audio & Video item wrappers */
.jarrell-artist-profile-media__audio-wrapper,
.jarrell-artist-profile-media__video-wrapper {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	transition: filter 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-artist-profile-media__item:hover .jarrell-artist-profile-media__audio-wrapper,
.jarrell-artist-profile-media__item:hover .jarrell-artist-profile-media__video-wrapper {
	filter: grayscale(0%);
}

/* Skeleton shimmer while Vimeo thumbnail is loading via JS */
.jarrell-artist-profile-media__video-wrapper.is-loading-thumb {
	background-color: #1a1a1a;
	background-image: linear-gradient(
		90deg,
		#1a1a1a 0%,
		#2a2a2a 40%,
		#1a1a1a 80%
	);
	background-size: 200% 100%;
	animation: thumb-shimmer 1.6s ease-in-out infinite;
}

@keyframes thumb-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}


.jarrell-artist-profile-media__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(18, 17, 18, 0.5);
	transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 1;
}

.jarrell-artist-profile-media__item:hover .jarrell-artist-profile-media__overlay {
	background-color: rgba(18, 17, 18, 0.35);
}

/* Badges for top-right */
.jarrell-artist-profile-media__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	z-index: 2;
	line-height: 1;
}

/* Tags for bottom-left */
.jarrell-artist-profile-media__tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: #b5a482;
	color: #121112;
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 600;
	padding: 6px 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	z-index: 2;
	line-height: 1;
}

/* Play button for video items */
.jarrell-artist-profile-media__play-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	outline: none;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	padding: 0;
}

.jarrell-artist-profile-media__play-btn svg {
	width: 24px;
	height: 24px;
	margin-left: 2px;
}

.jarrell-artist-profile-media__item:hover .jarrell-artist-profile-media__play-btn {
	background-color: #ffffff;
	color: #121112;
	border-color: #ffffff;
	transform: scale(1.08);
}

/* Waveform for audio items */
.jarrell-artist-profile-media__audio-icon {
	z-index: 2;
	position: relative;
}

.waveform-anim {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	height: 36px;
	width: 54px;
}

.waveform-anim .bar {
	width: 3px;
	background-color: var(--accent-gold);
	border-radius: 2px;
	transition: height 0.3s ease;
}

.waveform-anim .bar:nth-child(1) {
	height: 12px;
}

.waveform-anim .bar:nth-child(2) {
	height: 22px;
}

.waveform-anim .bar:nth-child(3) {
	height: 14px;
}

.waveform-anim .bar:nth-child(4) {
	height: 32px;
}

.waveform-anim .bar:nth-child(5) {
	height: 18px;
}

.waveform-anim .bar:nth-child(6) {
	height: 26px;
}

.waveform-anim .bar:nth-child(7) {
	height: 10px;
}

/* Bounce animation when playing */
.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar {
	animation: bounce 1s ease-in-out infinite alternate;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(1) {
	animation-delay: 0.1s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(2) {
	animation-delay: 0.35s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(3) {
	animation-delay: 0.15s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(4) {
	animation-delay: 0.5s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(5) {
	animation-delay: 0.25s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(6) {
	animation-delay: 0.4s;
}

.jarrell-artist-profile-media__item.is-playing .waveform-anim .bar:nth-child(7) {
	animation-delay: 0.2s;
}

@keyframes bounce {
	0% {
		transform: scaleY(0.3);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(1.1);
		transform-origin: bottom;
	}
}

/* Lightbox Modal */
.jarrell-media-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 17, 18, 0.95);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-media-lightbox.is-active {
	opacity: 1;
	pointer-events: auto;
}

.jarrell-media-lightbox__close {
	position: absolute;
	top: 40px;
	right: 40px;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 44px;
	cursor: pointer;
	line-height: 1;
	transition: var(--transition-smooth);
	outline: none;
	padding: 0;
}

.jarrell-media-lightbox__close:hover {
	color: var(--accent-gold);
	transform: rotate(90deg);
}

.jarrell-media-lightbox__content {
	width: 90%;
	max-width: 1000px;
	aspect-ratio: 16 / 9;
	position: relative;
	transform: scale(0.95);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-media-lightbox.is-active .jarrell-media-lightbox__content {
	transform: scale(1);
}

.jarrell-media-lightbox__video-container {
	width: 100%;
	height: 100%;
	background-color: #000000;
}

.jarrell-media-lightbox__video-container video,
.jarrell-media-lightbox__video-container iframe {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: none;
	display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.jarrell-artist-profile-media {
		padding: 60px 0 80px 0;
	}

	.jarrell-artist-profile-media__container {
		padding: 0 40px;
	}

	.jarrell-artist-profile-media__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 575px) {
	.jarrell-artist-profile-media {
		padding: 50px 0 60px 0;
	}

	.jarrell-artist-profile-media__container {
		padding: 0 20px;
	}

	.jarrell-artist-profile-media__grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 15px;
		scrollbar-width: none;
	}
	
	.jarrell-artist-profile-media__grid::-webkit-scrollbar {
		display: none;
	}
	
	.jarrell-artist-profile-media__item {
		flex: 0 0 85%;
		scroll-snap-align: center;
	}

	.jarrell-media-lightbox__close {
		top: 20px;
		right: 20px;
		font-size: 36px;
	}
}

/* ==========================================================================
   Jarrell Artist Profile Related Section (Add to Your Experience)
   ========================================================================== */
.jarrell-artist-profile-related {
	background-color: #f7f5f0;
	color: #121112;
	padding: 80px 0 120px 0;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-artist-profile-related__container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.jarrell-artist-profile-related__title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 300;
	color: #121112;
	margin: 0 0 50px 0;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.jarrell-artist-profile-related .jarrell-artists__slider {
	margin-top: 0;
}

@media (max-width: 991px) {
	.jarrell-artist-profile-related {
		padding: 60px 0 80px 0;
	}

	.jarrell-artist-profile-related__container {
		padding: 0 40px;
	}

	.jarrell-artist-profile-related__title {
		margin-bottom: 35px;
	}
}

@media (max-width: 768px) {
	.jarrell-artist-profile-related__container {
		padding: 0 20px;
	}
}

/* ==========================================================================
   Jarrell Repertoire Modal Component
   ========================================================================== */
.jarrell-repertoire-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-repertoire-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.jarrell-repertoire-modal__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 17, 18, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1;
}

.jarrell-repertoire-modal__dialog {
	position: relative;
	z-index: 2;
	width: 90vw;
	max-width: 1200px;
	height: 85vh;
	max-height: 900px;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	border-radius: 0;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	transform: translateY(20px);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	overflow: hidden;
}

.jarrell-repertoire-modal.is-active .jarrell-repertoire-modal__dialog {
	transform: translateY(0);
}

/* Header Section (Dark) */
.jarrell-repertoire-modal__header {
	background-color: #1f1d1e;
	color: #ffffff;
	padding: 30px 40px 25px 40px;
	flex-shrink: 0;
}

.jarrell-repertoire-modal__header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.jarrell-repertoire-modal__artist-meta {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #c5a059;
	text-transform: uppercase;
}

.jarrell-repertoire-modal__close-btn {
	background: transparent;
	border: none;
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	cursor: pointer;
	padding: 5px 0;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

.jarrell-repertoire-modal__close-btn:hover {
	color: #c5a059;
}

.jarrell-repertoire-modal__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 300;
	line-height: 1.2;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 6px 0;
}

.jarrell-repertoire-modal__subtitle {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin: 0;
}

/* Filter Bar Section (White) */
.jarrell-repertoire-modal__filters-bar {
	background-color: #ffffff;
	padding: 20px 40px;
	border-bottom: 1px solid rgba(18, 17, 18, 0.08);
	flex-shrink: 0;
}

.jarrell-repertoire-modal__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.jarrell-repertoire-modal__filter-btn {
	background-color: transparent;
	border: 1px solid rgba(18, 17, 18, 0.15);
	color: #121112;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 8px 18px;
	cursor: pointer;
	border-radius: 0;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.jarrell-repertoire-modal__filter-btn:hover,
.jarrell-repertoire-modal__filter-btn.active {
	background-color: #121112;
	color: #ffffff;
	border-color: #121112;
}

/* Body Section (Scrollable Grid) */
.jarrell-repertoire-modal__body {
	flex: 1;
	overflow-y: auto;
	padding: 40px;
	background-color: #ffffff;
	-webkit-overflow-scrolling: touch;
}

.jarrell-repertoire-modal__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: start;
}

.jarrell-repertoire-modal__column {
	transition: opacity 0.3s ease;
}

.jarrell-repertoire-modal__column.hidden {
	display: none;
}

.jarrell-repertoire-modal__genre-heading {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: #c5a059;
	text-transform: uppercase;
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	border-bottom: 2px solid #c5a059;
}

.jarrell-repertoire-modal__song-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.jarrell-repertoire-modal__song-item {
	padding: 14px 0;
	border-bottom: 1px solid rgba(18, 17, 18, 0.08);
}

.jarrell-repertoire-modal__song-item:last-child {
	border-bottom: none;
}

.jarrell-repertoire-modal__song-title {
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: #121112;
	margin: 0 0 4px 0;
	letter-spacing: 0.01em;
}

.jarrell-repertoire-modal__song-artist {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	color: rgba(18, 17, 18, 0.5);
	margin: 0;
	letter-spacing: 0.05em;
}

/* Footer Section (Sticky White) */
.jarrell-repertoire-modal__footer {
	background-color: #ffffff;
	border-top: 1px solid rgba(18, 17, 18, 0.08);
	padding: 25px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.jarrell-repertoire-modal__counter {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: rgba(18, 17, 18, 0.5);
	text-transform: none;
}

.jarrell-repertoire-modal__counter .visible-count {
	font-weight: 600;
	color: #121112;
}

.jarrell-repertoire-modal__enquire-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #6b664d;
	border: 1px solid #6b664d;
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 14px 28px;
	text-decoration: none;
	transition: var(--transition-smooth);
	cursor: pointer;
	border-radius: 0;
	box-sizing: border-box;
}

.jarrell-repertoire-modal__enquire-btn:hover {
	background-color: #55513d;
	border-color: #55513d;
	color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.jarrell-repertoire-modal__dialog {
		width: 95vw;
		height: 90vh;
	}

	.jarrell-repertoire-modal__columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.jarrell-repertoire-modal__header,
	.jarrell-repertoire-modal__filters-bar,
	.jarrell-repertoire-modal__body,
	.jarrell-repertoire-modal__footer {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 768px) {

	/* Full screen on mobile */
	.jarrell-repertoire-modal__dialog {
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		border: none;
	}

	.jarrell-repertoire-modal__columns {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.jarrell-repertoire-modal__header {
		padding-top: 40px;
		/* Leave space for notch/status bar if needed */
	}

	.jarrell-repertoire-modal__header,
	.jarrell-repertoire-modal__filters-bar,
	.jarrell-repertoire-modal__body,
	.jarrell-repertoire-modal__footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.jarrell-repertoire-modal__footer {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.jarrell-repertoire-modal__enquire-btn {
		width: 100%;
		padding: 15px 20px;
	}
}

/* ==========================================================================
   Jarrell Page Hero Widget (Bottom Left & Color Background)
   ========================================================================== */
.jarrell-page-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	max-height: 800px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	box-sizing: border-box;
	overflow: hidden;
	padding-bottom: 120px;
}

.jarrell-page-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

.jarrell-page-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.jarrell-page-hero__inner {
	position: relative;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	z-index: 3;
}

.jarrell-page-hero__content {
	max-width: 800px;
	text-align: left;
}

.jarrell-page-hero__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: clamp(11px, 1.2vw, 13px);
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.jarrell-page-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(40px, 6vw, 68px);
	color: #ffffff;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.15;
}

.jarrell-page-hero__divider {
	border: none;
	border-bottom: 2px solid #ffffff;
	width: 150px;
	margin: 0;
	opacity: 0.85;
}

@media (max-width: 1024px) {
	.jarrell-page-hero {
		height: 65vh;
		min-height: 500px;
		padding-bottom: 90px;
	}

	.jarrell-page-hero__inner {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-page-hero {
		height: 60vh;
		min-height: 450px;
		padding-bottom: 70px;
	}

	.jarrell-page-hero__inner {
		padding: 0 20px;
	}

	.jarrell-page-hero__title {
		margin-bottom: 15px;
	}

	.jarrell-page-hero__divider {
		width: 100px;
	}
}

/* ==========================================================================
   Jarrell Quad Image Split Widget
   ========================================================================== */
.jarrell-quad-split {
	padding: 100px 0;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.jarrell-quad-split__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 80px;
}

.jarrell-quad-split__grid-col {
	flex: 1.1;
	width: 100%;
}

.jarrell-quad-split__content-col {
	flex: 0.9;
	width: 100%;
}

.jarrell-quad-split__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	width: 100%;
}

.jarrell-quad-split__grid-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #000000;
}

.jarrell-quad-split__grid-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jarrell-quad-split__grid-item:hover img {
	transform: scale(1.05);
}

.jarrell-quad-split__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

.jarrell-quad-split__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	max-width: 540px;
}

.jarrell-quad-split__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: #666666;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.jarrell-quad-split__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.8vw, 42px);
	font-weight: 400;
	line-height: 1.25;
	color: #121112;
	margin-top: 0;
	margin-bottom: 25px;
	letter-spacing: -0.01em;
}

.jarrell-quad-split__desc {
	font-family: var(--font-sans);
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.7;
	color: rgba(18, 17, 18, 0.65);
	margin: 0;
	font-weight: 300;
}

/* Responsiveness */
@media (max-width: 991px) {
	.jarrell-quad-split {
		padding: 80px 0;
	}

	.jarrell-quad-split__container {
		flex-direction: column;
		gap: 50px;
		padding: 0 40px;
	}

	.jarrell-quad-split__content-col {
		order: -1;
		/* Stack text above images */
		max-width: 650px;
		margin: 0 auto;
	}

	.jarrell-quad-split__grid-col {
		max-width: 600px;
		margin: 0 auto;
	}
}

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

	.jarrell-quad-split__container {
		padding: 0 20px;
		gap: 40px;
	}

	.jarrell-quad-split__grid {
		gap: 10px;
	}

	.jarrell-quad-split__title {
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   Jarrell Stats Hero Widget
   ========================================================================== */
.jarrell-stats-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	padding-top: 120px;
	padding-bottom: 80px;
}

.jarrell-stats-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

.jarrell-stats-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.jarrell-stats-hero__inner {
	position: relative;
	max-width: 1440px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.jarrell-stats-hero__content {
	max-width: 900px;
	text-align: center;
	margin-top: auto;
	margin-bottom: auto;
	padding: 20px 0;
}

.jarrell-stats-hero__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: clamp(11px, 1.2vw, 13px);
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.jarrell-stats-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(34px, 5vw, 62px);
	color: #ffffff;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.15;
	letter-spacing: 0.01em;
}

.jarrell-stats-hero__desc {
	font-family: var(--font-sans);
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto;
	max-width: 720px;
	font-weight: 300;
}

.jarrell-stats-hero__stats-row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
	margin-top: auto;
	padding-top: 40px;
	box-sizing: border-box;
}

.jarrell-stats-hero__stat-item {
	flex: 1;
	text-align: center;
	padding: 0 15px;
}

.jarrell-stats-hero__stat-number {
	display: block;
	font-family: var(--font-serif);
	font-size: clamp(38px, 4.5vw, 54px);
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 8px;
}

.jarrell-stats-hero__stat-label {
	display: block;
	font-family: var(--font-sans);
	font-size: clamp(9px, 1.1vw, 11px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	line-height: 1.4;
}

/* Responsiveness for Stats Hero */
@media (max-width: 991px) {
	.jarrell-stats-hero__inner {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-stats-hero {
		height: auto;
		min-height: 100vh;
		padding-top: 120px;
		padding-bottom: 60px;
	}

	.jarrell-stats-hero__inner {
		padding: 0 20px;
		justify-content: center;
		gap: 60px;
	}

	.jarrell-stats-hero__content {
		margin-top: 0;
		margin-bottom: 0;
	}

	.jarrell-stats-hero__stats-row {
		flex-direction: column;
		gap: 35px;
		margin-top: 0;
		padding-top: 0;
	}

	.jarrell-stats-hero__stat-item {
		padding: 0;
	}

	.jarrell-stats-hero__stat-number {
		margin-bottom: 4px;
	}
}

/* ==========================================================================
   Jarrell Split Image Text Widget (Edge-to-Edge)
   ========================================================================== */
section.jarrell-split-row {
	display: flex !important;
	width: 100%;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	align-items: stretch !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

section.jarrell-split-row.jarrell-split-row--reverse {
	flex-direction: row-reverse !important;
}

section.jarrell-split-row .jarrell-split-row__image-col {
	width: 50% !important;
	max-width: 50% !important;
	flex: 0 0 50% !important;
	position: relative !important;
	min-height: 550px !important;
	overflow: hidden !important;
}

section.jarrell-split-row .jarrell-split-row__image-col img.jarrell-split-row__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

section.jarrell-split-row .jarrell-split-row__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

section.jarrell-split-row .jarrell-split-row__text-col {
	width: 50% !important;
	max-width: 50% !important;
	flex: 0 0 50% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 5%;
	box-sizing: border-box;
}

section.jarrell-split-row .jarrell-split-row__content {
	max-width: 520px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

section.jarrell-split-row .jarrell-split-row__pre-title {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: #666666;
	text-transform: uppercase;
	margin-bottom: 15px;
}

section.jarrell-split-row .jarrell-split-row__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.8vw, 42px);
	font-weight: 400;
	line-height: 1.25;
	color: #121112;
	margin-top: 0;
	margin-bottom: 25px;
	letter-spacing: -0.01em;
}

section.jarrell-split-row .jarrell-split-row__desc {
	font-family: var(--font-sans);
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.7;
	color: rgba(18, 17, 18, 0.65);
	font-weight: 300;
}

section.jarrell-split-row .jarrell-split-row__desc p {
	margin-top: 0;
	margin-bottom: 18px;
}

section.jarrell-split-row .jarrell-split-row__desc p:last-child {
	margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {

	section.jarrell-split-row,
	section.jarrell-split-row.jarrell-split-row--reverse {
		flex-direction: column-reverse !important;
		width: 100%;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	section.jarrell-split-row .jarrell-split-row__image-col {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		min-height: 400px !important;
	}

	section.jarrell-split-row .jarrell-split-row__text-col {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		padding: 60px 40px !important;
	}

	section.jarrell-split-row .jarrell-split-row__content {
		max-width: 100% !important;
	}
}

@media (max-width: 768px) {
	section.jarrell-split-row .jarrell-split-row__text-col {
		padding: 50px 20px !important;
	}
}

/* ==========================================================================
   Elementor Container & Section Reset Overrides (Edge-to-Edge)
   ========================================================================== */

/* 1. Legacy Sections, Columns and Widgets */
.elementor-section:has(.jarrell-split-row),
.elementor-section:has(.jarrell-page-hero),
.elementor-section:has(.jarrell-stats-hero),
.elementor-section:has(.jarrell-team),
.elementor-section:has(.jarrell-trusted),
.elementor-section:has(.jarrell-instagrid),
.elementor-section:has(.jarrell-testimonials),
.elementor-section:has(.jarrell-contact) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-section:has(.jarrell-split-row) .elementor-container,
.elementor-section:has(.jarrell-page-hero) .elementor-container,
.elementor-section:has(.jarrell-stats-hero) .elementor-container,
.elementor-section:has(.jarrell-team) .elementor-container,
.elementor-section:has(.jarrell-trusted) .elementor-container,
.elementor-section:has(.jarrell-instagrid) .elementor-container,
.elementor-section:has(.jarrell-testimonials) .elementor-container,
.elementor-section:has(.jarrell-contact) .elementor-container {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-split-row),
.elementor-column:has(.jarrell-page-hero),
.elementor-column:has(.jarrell-stats-hero),
.elementor-column:has(.jarrell-team),
.elementor-column:has(.jarrell-trusted),
.elementor-column:has(.jarrell-instagrid),
.elementor-column:has(.jarrell-testimonials),
.elementor-column:has(.jarrell-contact) {
	padding: 0 !important;
	margin: 0 !important;
	height: 100% !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-split-row) .elementor-widget-wrap,
.elementor-column:has(.jarrell-page-hero) .elementor-widget-wrap,
.elementor-column:has(.jarrell-stats-hero) .elementor-widget-wrap,
.elementor-column:has(.jarrell-team) .elementor-widget-wrap,
.elementor-column:has(.jarrell-trusted) .elementor-widget-wrap,
.elementor-column:has(.jarrell-instagrid) .elementor-widget-wrap,
.elementor-column:has(.jarrell-testimonials) .elementor-widget-wrap,
.elementor-column:has(.jarrell-contact) .elementor-widget-wrap {
	padding: 0 !important;
	margin: 0 !important;
	height: 100% !important;
	overflow: visible !important;
}

.elementor-widget:has(.jarrell-split-row),
.elementor-widget:has(.jarrell-page-hero),
.elementor-widget:has(.jarrell-stats-hero),
.elementor-widget:has(.jarrell-team),
.elementor-widget:has(.jarrell-trusted),
.elementor-widget:has(.jarrell-instagrid),
.elementor-widget:has(.jarrell-testimonials),
.elementor-widget:has(.jarrell-contact),
.elementor-widget-container:has(.jarrell-split-row),
.elementor-widget-container:has(.jarrell-page-hero),
.elementor-widget-container:has(.jarrell-stats-hero),
.elementor-widget-container:has(.jarrell-team),
.elementor-widget-container:has(.jarrell-trusted),
.elementor-widget-container:has(.jarrell-instagrid),
.elementor-widget-container:has(.jarrell-testimonials),
.elementor-widget-container:has(.jarrell-contact) {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	overflow: visible !important;
}

/* 2. New Flexbox Containers (.e-con, .e-container) */
.e-con:has(.jarrell-split-row),
.e-con:has(.jarrell-page-hero),
.e-con:has(.jarrell-stats-hero),
.e-con:has(.jarrell-team),
.e-con:has(.jarrell-trusted),
.e-con:has(.jarrell-instagrid),
.e-con:has(.jarrell-testimonials),
.e-con:has(.jarrell-contact),
.e-container:has(.jarrell-split-row),
.e-container:has(.jarrell-page-hero),
.e-container:has(.jarrell-stats-hero),
.e-container:has(.jarrell-team),
.e-container:has(.jarrell-trusted),
.e-container:has(.jarrell-instagrid),
.e-container:has(.jarrell-testimonials),
.e-container:has(.jarrell-contact) {
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	overflow: visible !important;
}

/* ==========================================================================
   Jarrell Team Widget
   ========================================================================== */
.jarrell-team {
	background-color: #f7f5f0;
	padding: 100px 0px;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-team__inner {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
}

.jarrell-team__title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	color: #121112;
	margin-top: 0;
	margin-bottom: 50px;
	text-transform: none;
	text-align: left;
}

.jarrell-team__desc {
	font-family: 'Public Sans', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
	max-width: 600px;
	margin-top: -30px;
	margin-bottom: 60px;
	font-weight: 300;
}

.jarrell-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	width: 100%;
}

.jarrell-team__card {
	display: flex;
	flex-direction: column;
	background: transparent;
	border-radius: 0 !important;
	overflow: hidden;
}

.jarrell-team__image-wrapper {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	position: relative;
	background-color: #e6e4de;
}

.jarrell-team__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.jarrell-team--grayscale .jarrell-team__img {
	filter: grayscale(100%);
}

.jarrell-team__card:hover .jarrell-team__img {
	transform: scale(1.03);
}

.jarrell-team--grayscale .jarrell-team__card:hover .jarrell-team__img {
	filter: grayscale(0%);
}

.jarrell-team__meta {
	padding-top: 15px;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.jarrell-team__role {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #8e8a71;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
	line-height: 1.2;
}

.jarrell-team__name {
	font-family: 'Gilda Display', serif;
	font-size: 24px;
	font-weight: 400;
	color: #121112;
	margin: 0;
	line-height: 1.2;
}

/* ==========================================================================
   Jarrell Behind the Scenes Grid Widget
   ========================================================================== */
.jarrell-instagrid {
	background-color: #f7f5f0;
	padding: 80px 0;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

.jarrell-instagrid__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-instagrid__header {
	text-align: center;
	padding: 0 0 40px 0;
}

.jarrell-instagrid__title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 400;
	color: #121112;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.jarrell-instagrid__handle-wrap {
	display: inline-block;
}

.jarrell-instagrid__handle {
	font-family: 'Public Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #8e8a71;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: color 0.3s ease;
}

.jarrell-instagrid__handle:hover {
	color: #121112;
}

.jarrell-instagrid__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	width: 100%;
	padding: 0;
	margin: 0;
}

.jarrell-instagrid__card {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #1f1d1e;
	cursor: pointer;
	border-radius: 0 !important;
}

.jarrell-instagrid__media-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.jarrell-instagrid__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	filter: grayscale(100%);
	transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	border-radius: 0 !important;
}

.jarrell-instagrid__card:hover .jarrell-instagrid__img {
	filter: grayscale(0%);
	transform: scale(1.04);
}

.jarrell-instagrid__play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: background 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.jarrell-instagrid__card:hover .jarrell-instagrid__play-btn {
	background: rgba(255, 255, 255, 0.9);
	color: #121112;
	transform: translate(-50%, -50%) scale(1.1);
}

.jarrell-instagrid__play-btn svg {
	width: 20px;
	height: 20px;
}

/* Text Card overrides */
.jarrell-instagrid__text-content {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.jarrell-instagrid__text-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 17, 18, 0.65);
	transition: background-color 0.3s ease;
}

.jarrell-instagrid__card:hover .jarrell-instagrid__text-overlay {
	background-color: rgba(18, 17, 18, 0.78);
}

.jarrell-instagrid__text-inner {
	position: relative;
	z-index: 2;
	padding: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-instagrid__card-title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(16px, 2.2vw, 22px);
	line-height: 1.3;
	color: #ffffff;
	margin: 0 0 10px 0;
	font-weight: 400;
}

.jarrell-instagrid__card-subtitle {
	font-family: 'Public Sans', sans-serif;
	font-size: clamp(11px, 1.2vw, 13px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 15px 0;
	font-weight: 300;
}

.jarrell-instagrid__card-brand {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: #8e8a71;
	font-weight: 500;
	margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.jarrell-team {
		padding: 80px 40px;
	}

	.jarrell-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.jarrell-instagrid {
		padding: 60px 0;
	}

	.jarrell-instagrid__inner {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-team {
		padding: 60px 20px;
	}

	.jarrell-team__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.jarrell-instagrid {
		padding: 40px 0;
	}

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

	.jarrell-instagrid__grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 4px;
	}

	.jarrell-instagrid__text-inner {
		padding: 12px;
	}

	.jarrell-instagrid__card-title {
		font-size: 13px !important;
		line-height: 1.2;
		margin-bottom: 5px;
	}

	.jarrell-instagrid__card-subtitle {
		font-size: 9px !important;
		line-height: 1.3;
		margin-bottom: 8px;
	}

	.jarrell-instagrid__card-brand {
		font-size: 8px;
		margin-top: 5px;
	}
}

/* ==========================================================================
   Jarrell Testimonials Widget
   ========================================================================== */
.jarrell-testimonials {
	background-color: #f7f5f0;
	padding: 100px 0;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

.jarrell-testimonials__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-testimonials__header {
	text-align: center;
	margin-bottom: 50px;
}

.jarrell-testimonials__pre-title {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #8e8a71;
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 15px;
}

.jarrell-testimonials__title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(28px, 4.2vw, 46px);
	font-weight: 400;
	color: #121112;
	margin: 0 auto 30px auto;
	max-width: 900px;
	line-height: 1.25;
}

.jarrell-testimonials__rating-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(18, 17, 18, 0.08);
	padding-top: 25px;
	max-width: 600px;
	margin: 0 auto;
}

.jarrell-testimonials__rating-stars {
	color: #8e8a71;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 1;
}

.jarrell-testimonials__rating-score {
	font-family: 'Gilda Display', serif;
	font-size: 24px;
	font-weight: 400;
	color: #121112;
	line-height: 1;
}

.jarrell-testimonials__rating-text {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.6);
	letter-spacing: 0.05em;
}

.jarrell-testimonials__slider-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
}

.jarrell-testimonials__slider {
	width: 100%;
	overflow: hidden;
}

.jarrell-testimonials__slide {
	height: auto;
}

/* Vertical divider between slides on desktop */
.jarrell-testimonials__slide:not(:last-child) {
	border-right: 1px solid rgba(18, 17, 18, 0.08);
}

.jarrell-testimonials__card {
	padding: 20px 40px 20px 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}

.jarrell-testimonials__card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.jarrell-testimonials__avatar-wrap {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.jarrell-testimonials__avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jarrell-testimonials__avatar-placeholder {
	width: 100%;
	height: 100%;
	background-color: #e6e4de;
	color: #121112;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 18px;
}

.jarrell-testimonials__meta {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.jarrell-testimonials__client-name {
	font-family: 'Public Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #121112;
	margin: 0 0 2px 0;
}

.jarrell-testimonials__client-date {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.5);
}

.jarrell-testimonials__card-stars {
	color: #8e8a71;
	font-size: 12px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	text-align: left;
}

.jarrell-testimonials__card-title {
	font-family: 'Public Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #121112;
	margin: 0 0 12px 0;
	line-height: 1.4;
	text-align: left;
}

.jarrell-testimonials__card-content {
	font-family: 'Public Sans', sans-serif;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.75);
	margin: 0 0 20px 0;
	text-align: left;
}

.jarrell-testimonials__card-link {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #121112;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-underline-offset: 4px;
	margin-top: auto;
	display: inline-block;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
	width: fit-content;
}

.jarrell-testimonials__card-link:hover {
	color: #8e8a71;
}

/* Slider Controls (Arrows + Pagination) */
.jarrell-testimonials__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.jarrell-testimonials__prev,
.jarrell-testimonials__next {
	background: transparent;
	border: 1px solid rgba(18, 17, 18, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #121112;
	transition: background 0.3s ease, border-color 0.3s ease;
	border-radius: 0 !important;
	padding: 0;
}

.jarrell-testimonials__prev:hover,
.jarrell-testimonials__next:hover {
	border-color: #121112;
	background-color: rgba(18, 17, 18, 0.03);
}

.jarrell-testimonials__prev svg,
.jarrell-testimonials__next svg {
	width: 16px;
	height: 16px;
}

.jarrell-testimonials__pagination {
	position: static !important;
	width: auto !important;
	display: flex;
	gap: 8px;
	align-items: center;
}

.jarrell-testimonials__pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: rgba(18, 17, 18, 0.2) !important;
	opacity: 1 !important;
	border-radius: 50% !important;
	margin: 0 !important;
	transition: background 0.3s ease;
}

.jarrell-testimonials__pagination .swiper-pagination-bullet-active {
	background: #121112 !important;
}

/* Bottom Link */
.jarrell-testimonials__bottom-link-wrap {
	text-align: center;
	margin-top: 30px;
}

.jarrell-testimonials__bottom-link {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #8e8a71;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
	cursor: pointer;
	display: inline-block;
}

.jarrell-testimonials__bottom-link:hover {
	color: #121112;
}

/* Testimonials Responsive Adjustments */
@media (max-width: 991px) {
	.jarrell-testimonials {
		padding: 80px 0;
	}

	.jarrell-testimonials__inner {
		padding: 0 40px;
	}

	.jarrell-testimonials__card {
		padding: 20px 20px 20px 5px;
	}
}

@media (max-width: 768px) {
	.jarrell-testimonials {
		padding: 60px 20px;
	}

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

	.jarrell-testimonials__slide:not(:last-child) {
		border-right: none;
	}

	.jarrell-testimonials__card {
		padding: 10px 0;
	}
}

/* ==========================================================================
   Jarrell Contact Form Widget (Multi-Step Form)
   ========================================================================== */
.jarrell-contact {
	background-color: #f7f5f0 !important;
	padding: 0 !important;
	width: 100% !important;
	display: flex !important;
	align-items: stretch !important;
	box-sizing: border-box !important;
	min-height: 800px !important;
}

.jarrell-contact__image-col {
	width: 50% !important;
	max-width: 50% !important;
	flex: 0 0 50% !important;
	position: relative !important;
	overflow: hidden !important;
	display: flex !important;
}

.jarrell-contact__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

.jarrell-contact__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1f1d1e 0%, #2f2d2e 100%);
}

.jarrell-contact__form-col {
	width: 50% !important;
	max-width: 50% !important;
	flex: 0 0 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 100px 5% !important;
	box-sizing: border-box !important;
}

.jarrell-contact__inner {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	box-sizing: border-box;
}

.jarrell-contact__header {
	text-align: center;
	margin-bottom: 50px;
}

.jarrell-contact__title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 400;
	color: #121112;
	margin: 0 0 20px 0;
	line-height: 1.15;
}

.jarrell-contact__subtitle {
	font-family: 'Public Sans', sans-serif;
	font-size: clamp(13px, 1.5vw, 16px);
	font-weight: 300;
	color: rgba(18, 17, 18, 0.7);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Form Container */
.jarrell-contact__form {
	max-width: 700px;
	margin: 0 auto;
}

/* Progress Indicator */
.jarrell-contact__progress {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 60px auto;
	max-width: 500px;
	position: relative;
}

.jarrell-contact__progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	flex: 1;
}

.jarrell-contact__progress-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(18, 17, 18, 0.15);
	background-color: #f7f5f0;
	color: rgba(18, 17, 18, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Public Sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 10px;
	transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.jarrell-contact__progress-label {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: rgba(18, 17, 18, 0.4);
	text-transform: capitalize;
	letter-spacing: 0.02em;
	transition: color 0.4s ease, font-weight 0.4s ease;
}

.jarrell-contact__progress-line {
	height: 1px;
	background: rgba(18, 17, 18, 0.1);
	flex-grow: 1;
	margin-bottom: 24px;
	/* Align vertical center with circles */
	position: relative;
	z-index: 1;
	margin-left: -20px;
	margin-right: -20px;
}

/* Progress active/completed states */
.jarrell-contact__progress-step.active .jarrell-contact__progress-circle {
	border-color: #1c1a1c !important;
	background-color: transparent !important;
	color: #1c1a1c !important;
}

.jarrell-contact__progress-step.active .jarrell-contact__progress-label {
	color: #1c1a1c !important;
	font-weight: 600 !important;
}

.jarrell-contact__progress-step.completed .jarrell-contact__progress-circle {
	border-color: #9c977c !important;
	background-color: #9c977c !important;
	color: #ffffff !important;
}

.jarrell-contact__progress-step.completed .jarrell-contact__progress-label {
	color: rgba(18, 17, 18, 0.4) !important;
	font-weight: 400 !important;
}

/* Form Steps Layout */
.jarrell-contact__step {
	display: none;
	animation: fadeInStep 0.4s ease forwards;
}

.jarrell-contact__step.active {
	display: block;
}

@keyframes fadeInStep {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Input Fields & Groups */
.jarrell-contact__form-group {
	margin-bottom: 35px;
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: left;
}

.jarrell-contact__field-label {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #121112;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.jarrell-contact__field-sublabel {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.5);
	margin-top: -4px;
	margin-bottom: 12px;
	display: block;
}

.jarrell-contact__input,
.jarrell-contact__textarea {
	width: 100% !important;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-bottom: 1px solid rgba(18, 17, 18, 0.15) !important;
	padding: 10px 0 !important;
	font-family: 'Gilda Display', serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #121112 !important;
	outline: none !important;
	transition: border-bottom-color 0.3s ease !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}

.jarrell-contact__textarea {
	resize: none !important;
	font-size: 16px !important;
}

.jarrell-contact__input::placeholder,
.jarrell-contact__textarea::placeholder {
	color: rgba(18, 17, 18, 0.35) !important;
	font-family: 'Public Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 300 !important;
}

.jarrell-contact__input:focus,
.jarrell-contact__textarea:focus {
	border-bottom-color: #121112 !important;
}

.jarrell-contact__input.has-error {
	border-bottom-color: #b02a37 !important;
}

.jarrell-contact__error-message {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	color: #b02a37 !important;
	margin-top: 5px !important;
	display: block !important;
}

.jarrell-contact__form-row,
.jarrell-contact__row-group {
	display: flex !important;
	gap: 40px !important;
	width: 100% !important;
}

.jarrell-contact__form-row .jarrell-contact__form-group,
.jarrell-contact__row-group .jarrell-contact__form-group {
	flex: 1 !important;
}

.jarrell-contact__form-group--empty {
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
}

/* Investment Options */
.jarrell-contact__investment-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 5px;
}

.jarrell-contact__investment-btn {
	background: transparent !important;
	background-color: transparent !important;
	border: 1px solid rgba(18, 17, 18, 0.2) !important;
	color: #121112 !important;
	padding: 14px 10px !important;
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	cursor: pointer !important;
	text-align: center !important;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
	border-radius: 0 !important;
}

.jarrell-contact__investment-btn:hover {
	border-color: #1c1a1c !important;
}

.jarrell-contact__investment-btn.active {
	background-color: #1c1a1c !important;
	background: #1c1a1c !important;
	border-color: #1c1a1c !important;
	color: #ffffff !important;
}

/* Footer Steps Buttons */
.jarrell-contact__step-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
}

@media (max-width: 991px) {
	.jarrell-contact {
		flex-direction: column !important;
		min-height: auto;
	}

	.jarrell-contact__image-col {
		display: none !important;
	}

	.jarrell-contact__form-col {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
		padding: 60px 40px !important;
	}
}

@media (max-width: 768px) {
	.jarrell-contact__form-col {
		padding: 50px 20px !important;
	}

	.jarrell-contact__form-row,
	.jarrell-contact__row-group {
		flex-direction: column !important;
		gap: 0 !important;
	}
}

.jarrell-contact__btn {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 15px 35px !important;
	border: 1px solid #1c1a1c !important;
	background: transparent !important;
	background-color: transparent !important;
	color: #1c1a1c !important;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
	border-radius: 0 !important;
	display: flex !important;
	align-items: center !important;
}

.jarrell-contact__btn:hover {
	background-color: #1c1a1c !important;
	background: #1c1a1c !important;
	color: #ffffff !important;
	border-color: #1c1a1c !important;
}

.jarrell-contact__btn.disabled,
.jarrell-contact__btn[disabled] {
	opacity: 0.3 !important;
	cursor: not-allowed !important;
	border-color: rgba(18, 17, 18, 0.2) !important;
}

.jarrell-contact__btn.disabled:hover {
	background: transparent !important;
	background-color: transparent !important;
	color: #121112 !important;
}

.jarrell-contact__btn--submit {
	border-color: #1c1a1c !important;
	background-color: transparent !important;
}

.jarrell-contact__step-counter {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.5);
}

/* Status & Message boxes */
.jarrell-contact__status-box {
	font-family: 'Public Sans', sans-serif;
	font-size: 13px;
	padding: 15px;
	margin-bottom: 25px;
	text-align: center;
	display: none;
}

.jarrell-contact__status-box.is-loading {
	display: block;
	background-color: rgba(18, 17, 18, 0.03);
	color: #121112;
	border: 1px dashed rgba(18, 17, 18, 0.2);
}

.jarrell-contact__status-box.is-success {
	display: block;
	background-color: #e2f0d9;
	color: #385623;
	border: 1px solid #c5e0b4;
}

.jarrell-contact__status-box.is-error {
	display: block;
	background-color: #fce4d6;
	color: #c65911;
	border: 1px solid #f8cbad;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.jarrell-contact {
		padding: 80px 0;
	}

	.jarrell-contact__inner {
		padding: 0 40px;
	}

	.jarrell-contact__investment-options {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

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

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

	.jarrell-contact__form-row,
	.jarrell-contact__row-group {
		flex-direction: column !important;
		gap: 0 !important;
	}

	.jarrell-contact__form-group--empty {
		display: none !important;
	}

	.jarrell-contact__progress {
		margin-bottom: 40px;
	}

	.jarrell-contact__progress-label {
		display: none;
		/* Hide text label on mobile to save space */
	}

	.jarrell-contact__progress-line {
		margin-bottom: 20px;
	}

	.jarrell-contact__btn {
		padding: 12px 20px !important;
		font-size: 10px !important;
	}
}

@media (max-width: 480px) {
	.jarrell-contact__investment-options {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}


/* ==========================================================================
   Jarrell Journal / Blog Page Styles
   ========================================================================== */

.jarrell-journal-container {
	background-color: #f7f5f0;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

/* Journal Hero Banner */
.jarrell-journal-hero {
	position: relative;
	height: 80vh;
	width: 100%;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.jarrell-journal-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%);
	z-index: 1;
}

.jarrell-journal-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(18, 17, 18, 0.15), rgba(18, 17, 18, 0.85));
	z-index: 2;
}

.jarrell-journal-hero__content {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 60px 80px 60px;
	box-sizing: border-box;
	text-align: left;
}

.jarrell-journal-hero__pre-title {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: block;
}

.jarrell-journal-hero__title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 20px 0;
	line-height: 1.15;
	max-width: 900px;
}

.jarrell-journal-hero__description {
	font-family: 'Public Sans', sans-serif;
	font-size: clamp(14px, 1.8vw, 18px);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 0 35px 0;
	line-height: 1.6;
}

.jarrell-journal-hero__btn {
	font-family: 'Public Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 15px 35px;
	border: 1px solid #ffffff;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-radius: 0 !important;
}

.jarrell-journal-hero__btn:hover {
	background-color: #ffffff;
	color: #121112;
}

/* Journal Content Grid & Filters */
.jarrell-journal-content {
	background-color: #f7f5f0;
	padding: 80px 0;
	width: 100%;
}

.jarrell-journal-content__inner {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-journal__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 60px;
	border-bottom: 1px solid rgba(18, 17, 18, 0.08);
	padding-bottom: 30px;
}

.jarrell-journal__filter-btn {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 8px 16px;
	border: 1px solid rgba(18, 17, 18, 0.15);
	background: transparent;
	color: rgba(18, 17, 18, 0.6);
	text-decoration: none;
	border-radius: 0 !important;
	transition: all 0.3s ease;
}

.jarrell-journal__filter-btn:hover {
	border-color: #121112;
	color: #121112;
}

.jarrell-journal__filter-btn.active {
	background-color: #121112;
	border-color: #121112;
	color: #ffffff;
}

.jarrell-journal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
	margin-bottom: 60px;
	width: 100%;
}

.jarrell-journal__card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(18, 17, 18, 0.05);
	padding: 0;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.jarrell-journal__card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3/2;
	overflow: hidden;
	background: #121112;
}

.jarrell-journal__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

.jarrell-journal__card:hover .jarrell-journal__card-img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.jarrell-journal__card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: left;
}

.jarrell-journal__card-category {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: #c5a059;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}

.jarrell-journal__card-title {
	font-family: 'Gilda Display', serif;
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 15px 0;
}

.jarrell-journal__card-title a {
	color: #121112;
	text-decoration: none;
	transition: color 0.3s ease;
}

.jarrell-journal__card-title a:hover {
	color: #c5a059;
}

.jarrell-journal__card-excerpt {
	font-family: 'Public Sans', sans-serif;
	font-size: 13px;
	font-weight: 300;
	color: rgba(18, 17, 18, 0.7);
	line-height: 1.6;
	margin: 0 0 20px 0;
	flex-grow: 1;
}

.jarrell-journal__card-meta {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 400;
	color: rgba(18, 17, 18, 0.4);
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.jarrell-journal__card-btn {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 12px 25px;
	border: 1px solid #121112;
	background: transparent;
	color: #121112;
	text-decoration: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	transition: all 0.3s ease;
	border-radius: 0 !important;
}

.jarrell-journal__card-btn:hover {
	background-color: #121112;
	color: #ffffff;
}

/* Pagination Styling */
.jarrell-journal__pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(18, 17, 18, 0.08);
	padding-top: 40px;
	margin-top: 30px;
	width: 100%;
}

.jarrell-journal__page-btn {
	font-family: 'Public Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 12px 25px;
	border: 1px solid #121112;
	background: transparent;
	color: #121112;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 0 !important;
	display: inline-flex;
	align-items: center;
}

.jarrell-journal__page-btn:hover:not(.disabled) {
	background-color: #121112;
	color: #ffffff;
}

.jarrell-journal__page-btn.disabled {
	opacity: 0.35;
	cursor: not-allowed;
	border-color: rgba(18, 17, 18, 0.15) !important;
	color: rgba(18, 17, 18, 0.4) !important;
}

.jarrell-journal__page-numbers {
	display: flex;
	gap: 8px;
}

.jarrell-journal__page-num {
	font-family: 'Public Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(18, 17, 18, 0.5);
	text-decoration: none;
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 0 !important;
	border-bottom: 2px solid transparent;
}

.jarrell-journal__page-num:hover {
	color: #121112;
	font-weight: 600;
}

.jarrell-journal__page-num.active {
	color: #121112;
	font-weight: 600;
	border-bottom-color: #121112;
}

/* Journal Responsive Adjustments */
@media (max-width: 991px) {
	.jarrell-journal-hero__content {
		padding: 0 40px 60px 40px;
	}

	.jarrell-journal-content {
		padding: 60px 0;
	}

	.jarrell-journal-content__inner {
		padding: 0 40px;
	}

	.jarrell-journal__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}
}

@media (max-width: 768px) {
	.jarrell-journal-hero {
		height: 70vh;
	}

	.jarrell-journal-hero__content {
		padding: 0 20px 40px 20px;
	}

	.jarrell-journal-content__inner {
		padding: 0 20px;
	}

	.jarrell-journal__filters {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 15px;
		margin-bottom: 40px;
		scrollbar-width: none;
		/* Firefox */
	}

	.jarrell-journal__filters::-webkit-scrollbar {
		display: none;
		/* Safari/Chrome */
	}

	.jarrell-journal__filter-btn {
		flex: 0 0 auto;
	}

	.jarrell-journal__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.jarrell-journal__pagination {
		padding-top: 30px;
	}

	.jarrell-journal__page-btn {
		padding: 10px 18px;
		font-size: 9px;
	}
}

/* ==========================================================================
   Jarrell Single Post Detail Page Styles
   ========================================================================== */

/* Hero Metadata */
.jarrell-single-hero .jarrell-journal-hero__meta {
	margin-top: 15px;
}

/* Main Layout Grid */
.jarrell-single-post-inner {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	display: flex;
	gap: 50px;
}

.jarrell-single-post-main {
	flex: 2;
	max-width: 750px;
	text-align: left;
}

.jarrell-single-post-sidebar {
	flex: 1;
	min-width: 300px;
	max-width: 350px;
	text-align: left;
}

/* Content Area Resets & Typography */
.jarrell-single-post-content p {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 15px !important;
	font-weight: 300 !important;
	line-height: 1.7 !important;
	color: rgba(18, 17, 18, 0.85) !important;
	margin-bottom: 30px !important;
}

.jarrell-single-post-content h1,
.jarrell-single-post-content h2,
.jarrell-single-post-content h3,
.jarrell-single-post-content h4,
.jarrell-single-post-content h5 {
	font-family: 'Gilda Display', serif !important;
	font-weight: 400 !important;
	color: #121112 !important;
	margin: 40px 0 20px 0 !important;
	letter-spacing: 0.02em !important;
	line-height: 1.3 !important;
}

.jarrell-single-post-content h2 {
	font-size: clamp(26px, 3.2vw, 36px) !important;
}

.jarrell-single-post-content h3 {
	font-size: clamp(22px, 2.8vw, 28px) !important;
}

.jarrell-single-post-content blockquote {
	margin: 45px 0 !important;
	padding: 35px 40px !important;
	border: none !important;
	border-top: 1px solid rgba(18, 17, 18, 0.1) !important;
	border-bottom: 1px solid rgba(18, 17, 18, 0.1) !important;
	background: transparent !important;
	text-align: center !important;
	border-radius: 0 !important;
}

.jarrell-single-post-content blockquote p {
	font-family: 'Gilda Display', serif !important;
	font-size: clamp(20px, 2.5vw, 24px) !important;
	font-style: italic !important;
	line-height: 1.5 !important;
	color: #121112 !important;
	margin-bottom: 15px !important;
}

.jarrell-single-post-content blockquote cite {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: rgba(18, 17, 18, 0.6) !important;
	font-style: normal !important;
	display: block !important;
}

.jarrell-single-post-content ul,
.jarrell-single-post-content ol {
	list-style: none !important;
	padding-left: 0 !important;
	margin-bottom: 35px !important;
}

.jarrell-single-post-content li {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 15px !important;
	font-weight: 300 !important;
	line-height: 1.7 !important;
	color: rgba(18, 17, 18, 0.85) !important;
	position: relative !important;
	padding-left: 20px !important;
	margin-bottom: 12px !important;
}

.jarrell-single-post-content li::before {
	content: "—" !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	color: rgba(18, 17, 18, 0.4) !important;
}

/* Post Images & Captions */
.jarrell-single-post-content figure {
	margin: 45px 0 !important;
	width: 100% !important;
}

.jarrell-single-post-content img {
	width: 100% !important;
	height: auto !important;
	object-fit: cover !important;
	filter: grayscale(100%) !important;
	transition: filter 0.6s ease !important;
}

.jarrell-single-post-content figure:hover img,
.jarrell-single-post-content .wp-block-columns img:hover {
	filter: grayscale(0%) !important;
}

.jarrell-single-post-content figcaption {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	color: rgba(18, 17, 18, 0.4) !important;
	text-align: center !important;
	margin-top: 12px !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
}

/* Gutenberg Columns Grid override */
.jarrell-single-post-content .wp-block-columns {
	display: flex !important;
	gap: 20px !important;
	margin: 45px 0 !important;
}

.jarrell-single-post-content .wp-block-columns img {
	filter: grayscale(100%) !important;
	transition: filter 0.6s ease !important;
}

/* Share Article Block */
.jarrell-single-share {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 15px !important;
	margin-top: 50px !important;
	padding-top: 30px !important;
	border-top: 1px solid rgba(18, 17, 18, 0.08) !important;
}

.jarrell-single-share__label {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: 0.12em !important;
	color: rgba(18, 17, 18, 0.5) !important;
	text-transform: uppercase !important;
}

.jarrell-single-share__link {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	color: #121112 !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	transition: color 0.3s ease !important;
}

.jarrell-single-share__link:hover {
	color: var(--accent-gold) !important;
}

.jarrell-single-share__divider {
	color: rgba(18, 17, 18, 0.15) !important;
	font-size: 10px !important;
}

/* Post Tags */
.jarrell-single-tags {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin-top: 30px !important;
	margin-bottom: 50px !important;
}

.jarrell-single-tags a {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	color: rgba(18, 17, 18, 0.6) !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	padding: 6px 12px !important;
	border: 1px solid rgba(18, 17, 18, 0.12) !important;
	transition: all 0.3s ease !important;
	border-radius: 0 !important;
}

.jarrell-single-tags a:hover {
	background-color: #121112 !important;
	border-color: #121112 !important;
	color: #ffffff !important;
}

/* Sidebar Sections */
.jarrell-single-sidebar__section {
	margin-bottom: 50px !important;
	border-top: 1px solid rgba(18, 17, 18, 0.08) !important;
	padding-top: 35px !important;
}

.jarrell-single-sidebar__section:first-child {
	border-top: none !important;
	padding-top: 0 !important;
}

.jarrell-single-sidebar__title {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 0.15em !important;
	color: #c5a059 !important;
	text-transform: uppercase !important;
	margin-bottom: 20px !important;
	display: block !important;
}

/* Sidebar Author Info */
.jarrell-single-sidebar__author-name {
	font-family: 'Gilda Display', serif !important;
	font-size: 26px !important;
	font-weight: 400 !important;
	color: #121112 !important;
	margin: 0 0 5px 0 !important;
	line-height: 1.2 !important;
}

.jarrell-single-sidebar__author-role {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	color: rgba(18, 17, 18, 0.5) !important;
	margin-bottom: 15px !important;
	display: block !important;
}

.jarrell-single-sidebar__author-desc {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 300 !important;
	color: rgba(18, 17, 18, 0.7) !important;
	line-height: 1.65 !important;
	margin: 0 !important;
}

/* Sidebar Recent Posts list */
.jarrell-single-sidebar__posts {
	display: flex !important;
	flex-direction: column !important;
	gap: 25px !important;
}

.jarrell-single-sidebar__post {
	display: flex !important;
	gap: 15px !important;
	align-items: center !important;
}

.jarrell-single-sidebar__post-media {
	width: 70px !important;
	height: 70px !important;
	flex-shrink: 0 !important;
	overflow: hidden !important;
	background: #121112 !important;
}

.jarrell-single-sidebar__post-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	filter: grayscale(100%) !important;
	transition: filter 0.3s ease !important;
}

.jarrell-single-sidebar__post:hover .jarrell-single-sidebar__post-img {
	filter: grayscale(0%) !important;
}

.jarrell-single-sidebar__post-category {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	letter-spacing: 0.1em !important;
	color: #c5a059 !important;
	text-transform: uppercase !important;
	margin-bottom: 4px !important;
	display: block !important;
}

.jarrell-single-sidebar__post-title {
	font-family: 'Gilda Display', serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.3 !important;
	margin: 0 !important;
}

.jarrell-single-sidebar__post-title a {
	color: #121112 !important;
	text-decoration: none !important;
	transition: color 0.3s ease !important;
}

.jarrell-single-sidebar__post-title a:hover {
	color: #c5a059 !important;
}

/* Bottom Solid Dark CTA Box */
.jarrell-single-cta-box {
	background-color: #1c1a1c !important;
	padding: 50px 60px !important;
	box-sizing: border-box !important;
	text-align: left !important;
	margin-top: 50px !important;
	margin-bottom: 20px !important;
	width: 100% !important;
}

.jarrell-single-cta-box .jarrell-single-cta__pre-title {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	color: rgba(255, 255, 255, 0.7) !important;
	text-transform: uppercase !important;
	margin-bottom: 12px !important;
	display: block !important;
}

.jarrell-single-cta-box .jarrell-single-cta__title {
	font-family: 'Gilda Display', serif !important;
	font-size: clamp(24px, 3.2vw, 36px) !important;
	font-weight: 400 !important;
	color: #ffffff !important;
	margin: 0 0 12px 0 !important;
	line-height: 1.25 !important;
}

.jarrell-single-cta-box .jarrell-single-cta__desc {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin: 0 0 25px 0 !important;
	line-height: 1.5 !important;
}

.jarrell-single-cta-box .jarrell-single-cta__btn {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 15px 35px !important;
	border: 1px solid #ffffff !important;
	background: transparent !important;
	color: #ffffff !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	transition: all 0.3s ease !important;
	border-radius: 0 !important;
}

.jarrell-single-cta-box .jarrell-single-cta__btn:hover {
	background-color: #ffffff !important;
	color: #121112 !important;
	border-color: #ffffff !important;
}

/* Single Post Responsive Adaptations */
@media (max-width: 991px) {
	.jarrell-single-post-inner {
		flex-direction: column !important;
		padding: 0 40px !important;
		gap: 50px !important;
	}

	.jarrell-single-post-main {
		max-width: 100% !important;
	}

	.jarrell-single-post-sidebar {
		max-width: 100% !important;
		width: 100% !important;
		border-top: 1px solid rgba(18, 17, 18, 0.08) !important;
		padding-top: 50px !important;
	}
}

@media (max-width: 768px) {
	.jarrell-single-post-inner {
		padding: 0 20px !important;
		gap: 40px !important;
	}

	.jarrell-single-cta-box {
		padding: 40px 30px !important;
	}
}

/* ==========================================================================
   Jarrell Services Page Widgets Styles (Hero & Split)
   ========================================================================== */

/* 1. Services Hero Widget */
.jarrell-services-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	max-height: 800px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	box-sizing: border-box;
	overflow: hidden;
	padding-bottom: 120px;
}

.jarrell-services-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

.jarrell-services-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.jarrell-services-hero__inner {
	position: relative;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
	z-index: 3;
}

.jarrell-services-hero__content {
	max-width: 800px;
	text-align: left;
}

.jarrell-services-hero__pre-title {
	display: block;
	font-family: 'Public Sans', sans-serif !important;
	font-size: clamp(11px, 1.2vw, 13px) !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	margin-bottom: 15px !important;
}

.jarrell-services-hero__title {
	font-family: 'Gilda Display', serif !important;
	font-size: clamp(40px, 6vw, 68px) !important;
	color: #ffffff !important;
	font-weight: 400 !important;
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	line-height: 1.15 !important;
}

.jarrell-services-hero__subtitle {
	font-family: 'Public Sans', sans-serif !important;
	font-size: clamp(14px, 1.5vw, 17px) !important;
	font-weight: 300 !important;
	color: rgba(255, 255, 255, 0.8) !important;
	margin: 0 !important;
	line-height: 1.6 !important;
	max-width: 650px !important;
}

/* 2. Services Split Image-Text Widget */
.jarrell-services-split {
	display: flex;
	width: 100%;
	min-height: 650px;
	box-sizing: border-box;
}

.jarrell-services-split--reverse {
	flex-direction: row-reverse;
}

.jarrell-services-split__image-col {
	flex: 1;
	width: 50%;
	position: relative;
	overflow: hidden;
}

.jarrell-services-split__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

.jarrell-services-split__placeholder {
	width: 100%;
	height: 100%;
	background-color: #e0e0e0;
}

.jarrell-services-split__text-col {
	flex: 1;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 80px 0%;
	margin-left: 4rem;
	box-sizing: border-box;
}

.jarrell-services-split__content {
	max-width: 550px;
	text-align: left;
}

.jarrell-services-split__title {
	font-family: 'Gilda Display', serif !important;
	font-size: clamp(28px, 4vw, 42px) !important;
	font-weight: 400 !important;
	color: #121112 !important;
	margin-top: 0 !important;
	margin-bottom: 25px !important;
	line-height: 1.2 !important;
}

.jarrell-services-split__desc {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 15px !important;
	font-weight: 300 !important;
	line-height: 1.7 !important;
	color: rgba(18, 17, 18, 0.7) !important;
	margin-bottom: 35px !important;
}

.jarrell-services-split__desc p {
	margin-bottom: 20px !important;
}

.jarrell-services-split__desc p:last-child {
	margin-bottom: 0 !important;
}

.jarrell-services-split__action {
	margin-top: 30px !important;
}

.jarrell-services-split__btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 15px 32px !important;
	background-color: #6b664d !important;
	color: #ffffff !important;
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	cursor: pointer !important;
	border-radius: 0 !important;
}

.jarrell-services-split__btn:hover {
	background-color: #121112 !important;
	color: #ffffff !important;
}

/* 3. Responsive Styling for Services Widgets */
@media (max-width: 991px) {
	.jarrell-services-hero {
		padding-bottom: 80px;
	}

	.jarrell-services-hero {
		justify-content: center;
	}

	.jarrell-services-hero__inner {
		padding: 0 40px;
	}

	.jarrell-services-hero__content {
		text-align: center;
	}

	.jarrell-services-split {
		flex-direction: column-reverse;
		height: auto;
		min-height: auto;
	}

	.jarrell-services-split--reverse {
		flex-direction: column-reverse;
	}

	.jarrell-services-split__image-col,
	.jarrell-services-split__text-col {
		width: 100%;
		flex: none;
	}

	.jarrell-services-split__image-col {
		height: 450px;
	}

	.jarrell-services-split__text-col {
		padding: 60px 40px;
		margin-left: 0;
		justify-content: center;
	}

	.jarrell-services-split__content {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.jarrell-services-hero {
		padding-bottom: 60px;
		height: 70vh;
		min-height: 500px;
		justify-content: center;
	}

	.jarrell-services-hero__inner {
		padding: 0 20px;
	}

	.jarrell-services-hero__content {
		text-align: center;
	}

	.jarrell-services-split {
		display: flex !important;
		flex-direction: column-reverse !important;
	}

	.jarrell-services-split--reverse {
		flex-direction: column-reverse !important;
	}

	.jarrell-services-split__image-col {
		height: 350px;
	}

	.jarrell-services-split--hide-img-mobile .jarrell-services-split__image-col {
		display: none !important;
	}

	.jarrell-services-split__text-col {
		padding: 50px 20px;
		margin-left: 0;
		justify-content: center;
	}

	.jarrell-services-split__btn {
		width: 100%;
		box-sizing: border-box;
	}
}

/* 4. Elementor Full-width Container Overrides */
.elementor-section:has(.jarrell-services-hero),
.elementor-section:has(.jarrell-services-split) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-section:has(.jarrell-services-hero) .elementor-container,
.elementor-section:has(.jarrell-services-split) .elementor-container {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-services-hero),
.elementor-column:has(.jarrell-services-split) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-services-hero) .elementor-widget-wrap,
.elementor-column:has(.jarrell-services-split) .elementor-widget-wrap {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-widget:has(.jarrell-services-hero),
.elementor-widget:has(.jarrell-services-split),
.elementor-widget-container:has(.jarrell-services-hero),
.elementor-widget-container:has(.jarrell-services-split) {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	overflow: visible !important;
}

.e-con:has(.jarrell-services-hero),
.e-con:has(.jarrell-services-split),
.e-container:has(.jarrell-services-hero),
.e-container:has(.jarrell-services-split) {
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* ==========================================================================
   Jarrell Interactive Map Widget Styles
   ========================================================================== */
.jarrell-interactive-map-wrapper {
	padding: 100px 0;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-interactive-map__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-interactive-map__header {
	text-align: center;
	margin-bottom: 50px;
}

.jarrell-interactive-map__pre-title {
	display: block;
	font-family: 'Public Sans', sans-serif !important;
	font-size: clamp(10px, 1.1vw, 12px) !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	color: #6b664d !important;
	text-transform: uppercase !important;
	margin-bottom: 12px !important;
}

.jarrell-interactive-map__title {
	font-family: 'Gilda Display', serif !important;
	font-size: clamp(32px, 4.5vw, 52px) !important;
	font-weight: 400 !important;
	color: #121112 !important;
	margin: 0 !important;
	line-height: 1.2 !important;
}

/* Map Interactive Area */
.jarrell-interactive-map {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-interactive-map__image {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
}

.jarrell-interactive-map__image-placeholder {
	width: 100%;
	height: 550px;
	background-color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jarrell-interactive-map__image-placeholder::after {
	content: 'Select Map Image in Elementor Settings';
	font-family: 'Public Sans', sans-serif;
	color: #666;
}

/* Hotspots Dots */
.jarrell-map-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: #a29d82;
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transform: translate(-50%, -50%);
	z-index: 10;
	transition: all 0.3s ease;
	outline: none;
}

.jarrell-map-dot__halo {
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border-radius: 50%;
	background-color: rgba(162, 157, 130, 0.2);
	transition: all 0.3s ease;
	pointer-events: none;
}

.jarrell-map-dot:hover {
	background-color: #1c1a1c;
}

.jarrell-map-dot:hover .jarrell-map-dot__halo {
	background-color: rgba(28, 26, 28, 0.15);
	transform: scale(1.5);
}

.jarrell-map-dot.active {
	background-color: #1c1a1c;
	z-index: 12;
}

.jarrell-map-dot.active .jarrell-map-dot__halo {
	background-color: rgba(28, 26, 28, 0.15);
	transform: scale(1.8);
	animation: jarrell-pulse 2s infinite ease-in-out;
}

@keyframes jarrell-pulse {
	0% {
		transform: scale(1.3);
		opacity: 1;
	}

	50% {
		transform: scale(2.0);
		opacity: 0.4;
	}

	100% {
		transform: scale(1.3);
		opacity: 1;
	}
}

/* Bottom Left Detail Popup */
.jarrell-map-popup {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 380px;
	background-color: #f7f5f0;
	border: 3px solid rgba(18, 17, 18, 0.3);
	box-shadow: 0 10px 30px rgba(18, 17, 18, 0.15);
	z-index: 20;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.jarrell-map-popup.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.jarrell-map-popup__inner {
	display: flex;
	height: 160px;
	width: 100%;
}

.jarrell-map-popup__img-wrapper {
	width: 120px;
	height: 100%;
	flex-shrink: 0;
	background-color: #1c1a1c;
	overflow: hidden;
}

.jarrell-map-popup__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.jarrell-map-popup__content {
	flex: 1;
	padding: 22px 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	text-align: left;
	box-sizing: border-box;
}

.jarrell-map-popup__subtitle {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	letter-spacing: 0.12em !important;
	color: rgba(18, 17, 18, 0.4) !important;
	text-transform: uppercase !important;
	margin-bottom: 6px !important;
	display: block !important;
}

.jarrell-map-popup__title {
	font-family: 'Gilda Display', serif !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	color: #121112 !important;
	margin: 0 0 6px 0 !important;
	line-height: 1.25 !important;
}

.jarrell-map-popup__desc {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 12px !important;
	font-weight: 300 !important;
	color: rgba(18, 17, 18, 0.6) !important;
	margin: 0 !important;
	line-height: 1.4 !important;
}

.jarrell-map-popup__counter {
	position: absolute;
	right: 20px;
	bottom: 15px;
	font-family: 'Public Sans', sans-serif !important;
	font-size: 9px !important;
	font-weight: 400 !important;
	color: rgba(18, 17, 18, 0.3) !important;
}

/* Responsive adjustments for Map */
@media (max-width: 991px) {
	.jarrell-interactive-map__container {
		padding: 0 30px;
	}

	.jarrell-map-popup {
		width: 320px;
	}

	.jarrell-map-popup__inner {
		height: 140px;
	}

	.jarrell-map-popup__img-wrapper {
		width: 100px;
	}

	.jarrell-map-popup__content {
		padding: 15px 20px;
	}
}

@media (max-width: 768px) {
	.jarrell-interactive-map__container {
		padding: 0 15px;
	}

	.jarrell-interactive-map {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.jarrell-map-popup {
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		box-shadow: none;
		border: 2px solid rgba(18, 17, 18, 0.2);
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.jarrell-map-popup__inner {
		height: 120px;
	}
}

/* Elementor Full-width Overrides for Interactive Map */
.elementor-section:has(.jarrell-interactive-map-wrapper) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-section:has(.jarrell-interactive-map-wrapper) .elementor-container {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-interactive-map-wrapper) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-interactive-map-wrapper) .elementor-widget-wrap {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-widget:has(.jarrell-interactive-map-wrapper),
.elementor-widget-container:has(.jarrell-interactive-map-wrapper) {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	overflow: visible !important;
}

.e-con:has(.jarrell-interactive-map-wrapper),
.e-container:has(.jarrell-interactive-map-wrapper) {
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* ==========================================================================
   Jarrell Recent Events Widget Styles
   ========================================================================== */
.jarrell-recent-events {
	padding: 80px 0;
	width: 100%;
	box-sizing: border-box;
	background-color: transparent;
}

.jarrell-recent-events__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.jarrell-recent-events__title {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.15em !important;
	color: rgba(18, 17, 18, 0.7) !important;
	text-transform: uppercase !important;
	margin-top: 0 !important;
	margin-bottom: 40px !important;
	text-align: left !important;
}

.jarrell-recent-events__grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Rows */
.jarrell-recent-events__row-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.jarrell-recent-events__row-bottom {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Event Cards */
.jarrell-recent-event-card {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	width: 100%;
	box-sizing: border-box;
}

.jarrell-recent-event-card--large {
	height: 480px;
}

.jarrell-recent-event-card--small {
	height: 320px;
}

.jarrell-recent-event-card__img-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background-color: #121112;
}

.jarrell-recent-event-card__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	filter: grayscale(100%) !important;
	transition: all 0.7s ease !important;
}

.jarrell-recent-event-card:hover .jarrell-recent-event-card__img {
	filter: grayscale(0%) !important;
	transform: scale(1.05) !important;
}

.jarrell-recent-event-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(18, 17, 18, 0) 50%, rgba(18, 17, 18, 0.8) 100%);
	z-index: 2;
}

.jarrell-recent-event-card__content {
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	z-index: 3;
	text-align: left;
}

.jarrell-recent-event-card--small .jarrell-recent-event-card__content {
	left: 20px;
	bottom: 20px;
	right: 20px;
}

.jarrell-recent-event-card__pre-title {
	display: block;
	font-family: 'Public Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: 0.12em !important;
	color: rgba(255, 255, 255, 0.7) !important;
	text-transform: uppercase !important;
	margin-bottom: 8px !important;
}

.jarrell-recent-event-card__title {
	font-family: 'Gilda Display', serif !important;
	font-weight: 400 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.25 !important;
}

.jarrell-recent-event-card--large .jarrell-recent-event-card__title {
	font-size: clamp(24px, 2.5vw, 32px) !important;
}

.jarrell-recent-event-card--small .jarrell-recent-event-card__title {
	font-size: clamp(18px, 1.8vw, 22px) !important;
}

.jarrell-recent-event-card__desc {
	font-family: 'Public Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 300 !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin: 8px 0 0 0 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
}

/* Responsiveness */
@media (max-width: 1024px) {
	.jarrell-recent-events__container {
		padding: 0 40px;
	}

	.jarrell-recent-events__row-bottom {
		grid-template-columns: 1fr 1fr;
	}

	.jarrell-recent-event-card--large {
		height: 380px;
	}

	.jarrell-recent-event-card--small {
		height: 280px;
	}
}

@media (max-width: 768px) {
	.jarrell-recent-events {
		padding: 50px 0;
	}

	.jarrell-recent-events__container {
		padding: 0 20px;
	}

	.jarrell-recent-events__grid {
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 10px;
		scrollbar-width: none;
		/* Firefox */
	}

	.jarrell-recent-events__grid::-webkit-scrollbar {
		display: none;
		/* Chrome/Safari */
	}

	.jarrell-recent-events__row-top,
	.jarrell-recent-events__row-bottom {
		display: contents;
	}

	.jarrell-recent-event-card {
		flex: 0 0 85%;
		scroll-snap-align: start;
	}

	.jarrell-recent-event-card--large,
	.jarrell-recent-event-card--small {
		height: 350px;
	}

	.jarrell-recent-events__title {
		margin-bottom: 25px !important;
	}
}

/* Elementor Full-width Overrides for Recent Events */
.elementor-section:has(.jarrell-recent-events) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-section:has(.jarrell-recent-events) .elementor-container {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-recent-events) {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-column:has(.jarrell-recent-events) .elementor-widget-wrap {
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor-widget:has(.jarrell-recent-events),
.elementor-widget-container:has(.jarrell-recent-events) {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	overflow: visible !important;
}

.e-con:has(.jarrell-recent-events),
.e-container:has(.jarrell-recent-events) {
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Delegate max-width and horizontal padding of widgets to Elementor sections */
.elementor-widget [class^="jarrell-"][class*="__inner"] {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ==========================================================================
   Artists Page Overrides (Figma Match)
   ========================================================================== */

/* Hero Overrides */
.jarrell-page-hero__title {
	font-weight: 300 !important;
	font-style: italic; /* Just in case playfair display uses italic for that thin look */
}

/* Quad Split Image Gap */
.jarrell-quad-split__grid {
	gap: 2px !important;
}

/* Directory Filters */
.jarrell-directory-section .jarrell-directory__filter-label {
	margin-bottom: 5px;
	display: inline-block;
}
.jarrell-directory-section .jarrell-directory__filters-container {
	gap: 20px;
}
.jarrell-directory-section .jarrell-directory__filter-btn {
	border-color: rgba(18, 17, 18, 0.3) !important;
	background: transparent !important;
	color: #121112 !important;
}
.jarrell-directory-section .jarrell-directory__filter-btn:hover,
.jarrell-directory-section .jarrell-directory__filter-btn.active {
	background: #121112 !important;
	color: #ffffff !important;
	border-color: #121112 !important;
}

/* Artist Cards Tags & Layout */
.jarrell-artists__meta-genres {
	font-size: 11px !important;
	letter-spacing: 0.05em !important;
	color: rgba(255, 255, 255, 0.8) !important;
	text-transform: uppercase !important;
	margin-top: 4px !important;
}

.jarrell-artists__meta-type {
	margin-bottom: 8px !important;
}

.jarrell-artists__info {
	padding: 30px 20px 20px 20px !important;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%) !important;
}

/* CTA Banner Buttons & Fonts */
.jarrell-banner-cta .jarrell-cta__title {
	font-family: var(--font-serif) !important;
	font-weight: 300 !important;
}

.jarrell-banner-cta__btn {
	background-color: #7E755B !important;
	color: #ffffff !important;
	border: none !important;
}
.jarrell-banner-cta__btn:hover {
	background-color: #6a624d !important;
}

/* Page Max Width Override */
.elementor-widget .jarrell-page-hero__inner.jarrell-page-hero__inner,
.elementor-widget .jarrell-quad-split__container.jarrell-quad-split__container,
.elementor-widget .jarrell-banner-cta__container.jarrell-banner-cta__container,
.elementor-widget .jarrell-artists__header-container.jarrell-artists__header-container {
	max-width: 1480px !important;
	margin: 0 auto !important;
	padding-left: 40px !important;
	padding-right: 40px !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Center Hero Text on Mobile */
@media (max-width: 768px) {
	.jarrell-page-hero__content {
		text-align: center !important;
		margin: 0 auto !important;
	}
	.jarrell-page-hero__divider {
		margin: 0 auto !important;
	}
}