/**
 * MaxHeildsala Hero Slider
 */

.maxhero {
	--maxhero-bg: #0B1420;
	--maxhero-coffee: #4B2E1D;
	--maxhero-accent: #D4A15A;
	--maxhero-cream: #F6F2EC;
	--maxhero-text: #E7E5E1;
	--maxhero-white: #ffffff;
	--maxhero-line: rgba(212, 161, 90, 0.28);
	--maxhero-muted: rgba(231, 229, 225, 0.82);
	--maxhero-bg-image-opacity: 1;
	--maxhero-overlay-opacity: 0.46;
	--maxhero-header-height: 0px;
	--maxhero-speed: 550ms;
	--maxhero-arrow-top: 50%;
	--maxhero-arrow-offset: 54px;
	--maxhero-content-max-width: 1760px;
	--maxhero-side-padding: clamp(72px, 6vw, 112px);

	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 28%, rgba(212, 161, 90, 0.16), transparent 34%),
		linear-gradient(135deg, var(--maxhero-bg) 0%, #07111d 56%, #020812 100%);
	color: var(--maxhero-text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maxhero--full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.maxhero--arrows-top {
	--maxhero-arrow-top: 38%;
}

.maxhero--arrows-middle {
	--maxhero-arrow-top: 50%;
}

.maxhero--arrows-bottom {
	--maxhero-arrow-top: 62%;
}

.maxhero--under-transparent-header .maxhero__inner {
	padding-top: calc(clamp(70px, 8vw, 132px) + var(--maxhero-header-height, 0px));
}

/* Transparent header mode, enabled by the widget with JS body/header classes. */
body.maxhero-has-transparent-header .maxhero-transparent-header-target,
body.maxhero-has-transparent-header .elementor-location-header.maxhero-transparent-header-target,
body.maxhero-has-transparent-header .site-header.maxhero-transparent-header-target {
	position: absolute !important;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
	background: transparent !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

body.admin-bar.maxhero-has-transparent-header .maxhero-transparent-header-target {
	top: 32px;
}

body.maxhero-has-transparent-header .maxhero-transparent-header-target > .elementor-element,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .elementor-section,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .e-con,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .elementor-container {
	background: transparent !important;
	border-bottom-color: transparent !important;
	box-shadow: none !important;
}

body.maxhero-has-transparent-header .maxhero-transparent-header-target a,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .elementor-heading-title,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .elementor-icon,
body.maxhero-has-transparent-header .maxhero-transparent-header-target .elementor-button {
	color: var(--maxhero-cream, #F6F2EC);
}

@media (max-width: 782px) {
	body.admin-bar.maxhero-has-transparent-header .maxhero-transparent-header-target {
		top: 46px;
	}
}

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

.maxhero::before,
.maxhero::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: "";
	pointer-events: none;
}

.maxhero::before {
	top: -26%;
	right: -10%;
	width: min(62vw, 860px);
	height: min(62vw, 860px);
	background: radial-gradient(circle, rgba(212, 161, 90, 0.18), rgba(212, 161, 90, 0.05) 32%, transparent 66%);
	filter: blur(8px);
}

.maxhero::after {
	display: none;
}

.maxhero__viewport {
	position: relative;
	overflow: hidden;
}

.maxhero__track {
	position: relative;
}

.maxhero__slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	isolation: isolate;
	visibility: hidden;
	min-height: 680px;
	opacity: 0;
	transform: translateX(28px);
	transition:
		opacity var(--maxhero-speed) ease,
		transform var(--maxhero-speed) ease,
		visibility var(--maxhero-speed) ease;
	pointer-events: none;
}

.maxhero__slide.is-active {
	position: relative;
	z-index: 2;
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.maxhero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: var(--maxhero-bg-image-opacity);
	filter: saturate(1.08) contrast(1.08);
	transform: scale(1.01);
	pointer-events: none;
}

.maxhero__background::after {
	position: absolute;
	inset: 0;
	display: block;
	background:
		linear-gradient(90deg,
			rgba(2, 8, 18, 0.78) 0%,
			rgba(2, 8, 18, var(--maxhero-overlay-opacity)) 48%,
			rgba(2, 8, 18, 0.26) 100%
		);
	content: "";
	pointer-events: none;
}


.maxhero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
	gap: clamp(28px, 5vw, 84px);
	align-items: center;
	width: 100%;
	max-width: var(--maxhero-content-max-width);
	min-height: inherit;
	margin: 0 auto;
	padding: clamp(70px, 8vw, 132px) var(--maxhero-side-padding) clamp(42px, 6vw, 84px);
}

.maxhero__content {
	position: relative;
	z-index: 3;
	max-width: 700px;
}

.maxhero__eyebrow {
	margin-bottom: clamp(14px, 2vw, 24px);
	color: var(--maxhero-accent);
	font-size: clamp(12px, 1.2vw, 15px);
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.maxhero__title {
	margin: 0;
	color: var(--maxhero-cream);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(42px, 5.4vw, 78px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.maxhero__title-main,
.maxhero__title-accent {
	display: block;
}

.maxhero__title-accent {
	margin-top: 0.06em;
	color: var(--maxhero-accent);
}

.maxhero__description {
	max-width: 620px;
	margin-top: clamp(18px, 2vw, 26px);
	color: var(--maxhero-muted);
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.65;
}

.maxhero__description p {
	margin: 0;
}

.maxhero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: clamp(26px, 3vw, 40px);
}

.maxhero__button {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.maxhero__button:hover,
.maxhero__button:focus {
	transform: translateY(-2px);
	text-decoration: none;
}

.maxhero__button:focus-visible,
.maxhero__arrow:focus-visible,
.maxhero__dot:focus-visible {
	outline: 3px solid rgba(212, 161, 90, 0.58);
	outline-offset: 4px;
}

.maxhero__button--primary {
	background: linear-gradient(135deg, #efbd75 0%, var(--maxhero-accent) 42%, #b97831 100%);
	color: #07111d;
	box-shadow: 0 18px 44px rgba(212, 161, 90, 0.26);
}

.maxhero__button--primary:hover,
.maxhero__button--primary:focus {
	color: #07111d;
	box-shadow: 0 24px 54px rgba(212, 161, 90, 0.34);
}

.maxhero__button--secondary {
	border-color: rgba(212, 161, 90, 0.56);
	background: rgba(11, 20, 32, 0.42);
	color: var(--maxhero-cream);
}

.maxhero__button--secondary:hover,
.maxhero__button--secondary:focus {
	border-color: var(--maxhero-accent);
	background: rgba(212, 161, 90, 0.1);
	color: var(--maxhero-cream);
}

.maxhero__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 24px;
	line-height: 1;
	transform: translateY(-1px);
}

.maxhero__media {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	min-height: clamp(360px, 44vw, 620px);
}

.maxhero__media-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(95%, 720px);
	aspect-ratio: 1.25 / 1;
	border-radius: 999px;
	background:
		radial-gradient(circle at 48% 52%, rgba(212, 161, 90, 0.18), transparent 34%),
		radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.10), transparent 24%);
	filter: blur(12px);
	transform: translate(-50%, -50%);
}

.maxhero__splash {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.maxhero__splash--one {
	right: 6%;
	bottom: 14%;
	width: clamp(190px, 22vw, 360px);
	height: clamp(70px, 8vw, 118px);
	background: radial-gradient(ellipse, rgba(212, 161, 90, 0.38), transparent 68%);
	filter: blur(7px);
	transform: rotate(-11deg);
}

.maxhero__splash--two {
	top: 16%;
	left: 6%;
	width: clamp(90px, 11vw, 180px);
	height: clamp(90px, 11vw, 180px);
	border: 1px solid rgba(212, 161, 90, 0.18);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 62%);
	filter: blur(1px);
}

.maxhero__image {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 720px);
	max-height: 620px;
	object-fit: contain;
	filter:
		drop-shadow(0 30px 42px rgba(0, 0, 0, 0.42))
		drop-shadow(0 8px 22px rgba(212, 161, 90, 0.16));
	transform: translateZ(0);
}

.maxhero__badge {
	position: absolute;
	top: clamp(18px, 3vw, 48px);
	right: clamp(0px, 2vw, 36px);
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: clamp(94px, 9vw, 132px);
	height: clamp(94px, 9vw, 132px);
	padding: 12px;
	border: 2px solid rgba(11, 20, 32, 0.76);
	border-radius: 50%;
	background: linear-gradient(145deg, #f1bd73, var(--maxhero-accent));
	color: #07111d;
	text-align: center;
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.maxhero__badge::before {
	position: absolute;
	inset: 7px;
	border: 1px dashed rgba(11, 20, 32, 0.55);
	border-radius: 50%;
	content: "";
}

.maxhero__badge-icon,
.maxhero__badge-text,
.maxhero__badge-subtext {
	position: relative;
	z-index: 1;
}

.maxhero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
	color: currentColor;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1;
}

.maxhero__badge-text {
	font-size: clamp(10px, 1vw, 13px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.maxhero__badge-subtext {
	margin-top: 2px;
	font-size: clamp(9px, 0.82vw, 11px);
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.maxhero__nav {
	position: absolute;
	inset: 0;
	z-index: 5;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	transform: none !important;
	pointer-events: none;
}

.maxhero__arrow {
	position: absolute;
	top: var(--maxhero-arrow-top);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(212, 161, 90, 0.42);
	border-radius: 50%;
	background: rgba(11, 20, 32, 0.58);
	color: var(--maxhero-cream);
	font: inherit;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(14px);
	transform: translateY(-50%);
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
	pointer-events: auto;
}

.maxhero__arrow:hover {
	border-color: var(--maxhero-accent);
	background: rgba(212, 161, 90, 0.14);
	color: var(--maxhero-accent);
	transform: translateY(calc(-50% - 2px));
}

/* Keep arrow layer full width even when Elementor custom CSS applies inner width controls. */
.maxhero .maxhero__nav {
	width: 100% !important;
	max-width: none !important;
	right: 0 !important;
	left: 0 !important;
}


.maxhero__arrow--prev {
	left: calc(var(--maxhero-side-padding) + var(--maxhero-arrow-offset));
}

.maxhero__arrow--next {
	right: calc(var(--maxhero-side-padding) + var(--maxhero-arrow-offset));
}

.maxhero__dots {
	position: absolute;
	right: 0;
	bottom: clamp(96px, 8vw, 132px);
	left: 0;
	z-index: 6;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: var(--maxhero-content-max-width);
	margin: 0 auto;
	padding-right: var(--maxhero-side-padding);
	padding-left: var(--maxhero-side-padding);
	pointer-events: none;
}

.maxhero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(212, 161, 90, 0.6);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition:
		width 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease;
	pointer-events: auto;
}

.maxhero__dot.is-active {
	width: 32px;
	background: var(--maxhero-accent);
	border-color: var(--maxhero-accent);
}

.maxhero__features {
	position: relative;
	z-index: 7;
	border-top: 1px solid rgba(212, 161, 90, 0.16);
	background: linear-gradient(180deg, rgba(2, 8, 18, 0.1), rgba(2, 8, 18, 0.32));
	backdrop-filter: blur(10px);
}

.maxhero__features-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	max-width: var(--maxhero-content-max-width);
	margin: 0 auto;
	padding-right: var(--maxhero-side-padding);
	padding-left: var(--maxhero-side-padding);
}

.maxhero__feature {
	display: flex;
	gap: 16px;
	align-items: center;
	min-height: 112px;
	padding: 22px clamp(16px, 3vw, 42px);
	border-right: 1px solid rgba(212, 161, 90, 0.16);
}

.maxhero__feature:first-child {
	border-left: 1px solid rgba(212, 161, 90, 0.16);
}

.maxhero__feature-icon {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 1px solid var(--maxhero-accent);
	border-radius: 50%;
	background: rgba(11, 20, 32, 0.42);
	color: var(--maxhero-accent);
	font-size: 22px;
	line-height: 1;
	overflow: hidden;
}

.maxhero .maxhero__feature-icon,
.maxhero .maxhero__badge-icon {
	color: var(--maxhero-accent) !important;
}

.maxhero__feature-icon i,
.maxhero__feature-icon svg,
.maxhero__badge-icon i,
.maxhero__badge-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	color: currentColor !important;
	fill: currentColor !important;
	stroke: currentColor !important;
	line-height: 1;
}

.maxhero__feature-icon svg {
	width: 22px !important;
	height: 22px !important;
}

.maxhero__badge-icon svg {
	width: 1em !important;
	height: 1em !important;
}

.maxhero__feature-icon *,
.maxhero__badge-icon *,
.maxhero__feature-icon path,
.maxhero__badge-icon path {
	color: currentColor !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

.maxhero__feature-copy {
	display: grid;
	gap: 4px;
}

.maxhero__feature-copy strong {
	color: var(--maxhero-cream);
	font-size: clamp(14px, 1vw, 16px);
	font-weight: 800;
	line-height: 1.25;
}

.maxhero__feature-copy small {
	color: var(--maxhero-muted);
	font-size: clamp(13px, 0.92vw, 15px);
	line-height: 1.3;
}

@media (max-width: 1180px) {
	.maxhero {
		--maxhero-side-padding: clamp(36px, 5vw, 72px);
	}

	.maxhero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
		gap: 34px;
	}

	.maxhero__arrow {
		width: 42px;
		height: 42px;
		font-size: 30px;
	}


	.maxhero__features-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maxhero__feature:nth-child(odd) {
		border-left: 1px solid rgba(212, 161, 90, 0.16);
	}

	.maxhero__feature {
		border-bottom: 1px solid rgba(212, 161, 90, 0.12);
	}
}

@media (max-width: 1024px) {
	.maxhero__arrow {
		display: none;
	}
}

@media (max-width: 767px) {
	.maxhero {
		background:
			radial-gradient(circle at 74% 22%, rgba(212, 161, 90, 0.14), transparent 34%),
			linear-gradient(180deg, var(--maxhero-bg) 0%, #06101b 66%, #020812 100%);
	}

	.maxhero__slide {
		min-height: 760px;
		transform: translateX(18px);
	}

	.maxhero--under-transparent-header .maxhero__inner {
		padding-top: calc(42px + var(--maxhero-header-height, 0px));
	}

	.maxhero {
		--maxhero-side-padding: clamp(18px, 5vw, 28px);
	}

	.maxhero__inner {
		display: flex;
		flex-direction: column;
		gap: 24px;
		justify-content: center;
		width: 100%;
		max-width: 640px;
		padding: 42px var(--maxhero-side-padding) 74px;
		text-align: center;
	}

	.maxhero__content {
		max-width: 100%;
	}

	.maxhero__eyebrow {
		margin-bottom: 12px;
		font-size: 11px;
	}

	.maxhero__title {
		font-size: clamp(39px, 12vw, 52px);
		line-height: 1.02;
	}

	.maxhero__description {
		max-width: 100%;
		margin-top: 16px;
		font-size: 15.5px;
		line-height: 1.55;
	}

	.maxhero__actions {
		justify-content: center;
		margin-top: 22px;
	}

	.maxhero__button {
		width: min(100%, 272px);
		min-height: 52px;
		padding: 15px 22px;
	}

	.maxhero__media {
		order: -1;
		width: 100%;
		min-height: 292px;
	}

	.maxhero__image {
		width: min(100%, 430px);
		max-height: 330px;
	}

	.maxhero__badge {
		top: 4px;
		right: 0;
		width: 88px;
		height: 88px;
		padding: 10px;
	}

	.maxhero__badge-icon {
		font-size: 17px;
	}

	.maxhero__badge-text {
		font-size: 9px;
	}

	.maxhero__badge-subtext {
		font-size: 8px;
	}

	.maxhero__arrow {
		display: none;
	}

	.maxhero__dots {
		bottom: 24px;
	}

	.maxhero__features-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(100% - 24px, 640px);
	}

	.maxhero__feature {
		flex-direction: column;
		gap: 9px;
		justify-content: flex-start;
		min-height: auto;
		padding: 18px 10px;
		text-align: center;
	}

	.maxhero__feature:first-child,
	.maxhero__feature:nth-child(odd) {
		border-left: 0;
	}

	.maxhero__feature:nth-child(odd) {
		border-right: 1px solid rgba(212, 161, 90, 0.16);
	}

	.maxhero__feature-icon {
		width: 46px;
		height: 46px;
		font-size: 18px;
	}

	.maxhero__feature-icon svg {
		width: 18px !important;
		height: 18px !important;
	}

	.maxhero__feature-copy strong {
		font-size: 13px;
	}

	.maxhero__feature-copy small {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.maxhero {
		--maxhero-side-padding: 16px;
	}

	.maxhero__inner {
		width: 100%;
		max-width: 420px;
		padding-top: 34px;
	}

	.maxhero--under-transparent-header .maxhero__inner {
		padding-top: calc(34px + var(--maxhero-header-height, 0px));
	}

	.maxhero__title {
		font-size: clamp(34px, 12vw, 46px);
	}

	.maxhero__media {
		min-height: 250px;
	}

	.maxhero__image {
		max-height: 280px;
	}

	.maxhero__features-inner {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 420px;
	}

	.maxhero__feature,
	.maxhero__feature:nth-child(odd) {
		border-right: 0;
	}

	.maxhero__feature {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 16px 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.maxhero__slide,
	.maxhero__button,
	.maxhero__arrow,
	.maxhero__dot {
		transition: none !important;
	}

	.maxhero__button:hover,
	.maxhero__button:focus,
	.maxhero__arrow:hover {
		transform: none;
	}
}
