.site-core-home-hero {
	position: relative;
	width: 100%;
	color: #ffffff;
}

.site-core-home-hero__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #1a1a1a;
}

.site-core-home-hero__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.site-core-home-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 560ms ease;
}

.site-core-home-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.site-core-home-hero__media,
.site-core-home-hero__picture {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.site-core-home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.site-core-home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgb(0 0 0 / var(--site-core-home-hero-overlay-opacity, 0.35));
	pointer-events: none;
}

.site-core-home-hero__content {
	position: absolute;
	inset: 0;
	left: 50%;
	width: min(calc(100% - 2rem), 90rem);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1rem, 3vw, 2.5rem);
	text-align: center;
	color: #ffffff;
	opacity: 0;
	transform: translate(-50%, 18px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.site-core-home-hero__slide.is-active .site-core-home-hero__content {
	opacity: 1;
	transform: translate(-50%, 0);
}

h1.site-core-home-hero__title,
h2.site-core-home-hero__title {
	max-width: 32ch;
	margin: 0;
	font-size: 62px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
	color: #ffffff;
}

div.site-core-home-hero__text {
	max-width: 72ch;
	font-size: 1.125rem;
	line-height: 1.45;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
	color: #ffffff;
}

a.site-core-home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.8rem;
	min-width: 160px;
	background: var(--e-global-color-primary, #825113);
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 2px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

a.site-core-home-hero__button:hover,
a.site-core-home-hero__button:focus-visible {
	background: var(--e-global-color-secondary, #C8923D);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.site-core-home-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.18);
	color: #ffffff;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transform: translateY(-50%);
	transition: background-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.site-core-home-hero__arrow:hover,
.site-core-home-hero__arrow:focus-visible {
	background: rgb(255 255 255 / 0.28);
	transform: translateY(-50%) scale(1.04);
}

.site-core-home-hero__arrow-icon {
	display: block;
	width: 22px;
	height: 22px;
	color: #ffffff;
}

.site-core-home-hero__arrow--prev {
	left: 1rem;
}

.site-core-home-hero__arrow--next {
	right: 1rem;
}

.site-core-home-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: rgb(0 0 0 / 0.18);
	transform: translateX(-50%);
	backdrop-filter: blur(8px);
}

.site-core-home-hero__dot {
	width: 0.72rem;
	height: 0.72rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.45);
	cursor: pointer;
	transition: transform 220ms ease, background-color 220ms ease;
}

.site-core-home-hero__dot.is-active {
	background: #ffffff;
	transform: scale(1.15);
}

.site-core-home-hero__dot:hover,
.site-core-home-hero__dot:focus-visible {
	background: #ffffff;
}

a.site-core-home-hero__button:hover,
a.site-core-home-hero__button:focus,
a.site-core-home-hero__button:focus-visible,
a.site-core-home-hero__button:active {
	background: var(--e-global-color-secondary, #C8923D) !important;
	background-color: var(--e-global-color-secondary, #C8923D) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

.site-core-home-hero__arrow:hover,
.site-core-home-hero__arrow:focus,
.site-core-home-hero__arrow:focus-visible,
.site-core-home-hero__arrow:active {
	background: rgb(255 255 255 / 0.28) !important;
	background-color: rgb(255 255 255 / 0.28) !important;
	color: #ffffff !important;
}

.site-core-home-hero__dot:hover,
.site-core-home-hero__dot:focus,
.site-core-home-hero__dot:focus-visible,
.site-core-home-hero__dot:active {
	background: #ffffff !important;
	background-color: #ffffff !important;
}

@media (max-width: 767px) {
	.site-core-home-hero__viewport {
		aspect-ratio: 4 / 5;
	}

	.site-core-home-hero__viewport .site-core-home-hero__slide > .site-core-home-hero__media,
	.site-core-home-hero__viewport .site-core-home-hero__slide > .site-core-home-hero__media > .site-core-home-hero__picture,
	.site-core-home-hero__viewport .site-core-home-hero__slide > .site-core-home-hero__media > .site-core-home-hero__picture > img.site-core-home-hero__image {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.site-core-home-hero__viewport .site-core-home-hero__slide > .site-core-home-hero__media > .site-core-home-hero__picture {
		display: block;
	}

	.site-core-home-hero__viewport .site-core-home-hero__slide > .site-core-home-hero__media > .site-core-home-hero__picture > img.site-core-home-hero__image {
		object-fit: cover;
		object-position: center;
		max-width: none;
	}

	.site-core-home-hero__content {
		width: min(calc(100% - 1rem), 100%);
	}

	h1.site-core-home-hero__title,
	h2.site-core-home-hero__title {
		max-width: 16ch;
		font-size: clamp(2.1rem, 8vw, 2.9rem);
		line-height: 1.04;
	}

	div.site-core-home-hero__text {
		max-width: 34rem;
		font-size: 1rem;
	}

	.site-core-home-hero__arrow {
		width: 40px;
		height: 40px;
	}

	.site-core-home-hero__arrow--prev {
		left: 0.6rem;
	}

	.site-core-home-hero__arrow--next {
		right: 0.6rem;
	}

	.site-core-home-hero__dots {
		bottom: 0.9rem;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.site-core-home-hero__content {
		width: min(calc(100% - 1.5rem), 84rem);
	}

	h1.site-core-home-hero__title,
	h2.site-core-home-hero__title {
		font-size: clamp(2.9rem, 4.8vw, 3.5rem);
		line-height: 1.04;
	}

	div.site-core-home-hero__text {
		max-width: 66ch;
		font-size: 1.05rem;
	}
}

@media (min-width: 1025px) {
	h1.site-core-home-hero__title,
	h2.site-core-home-hero__title {
		font-size: 56px;
		line-height: 1.02;
	}

	div.site-core-home-hero__text {
		font-size: 18px;
	}
}
