.home-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--site-header-height, 0px));
	min-height: calc(100dvh - var(--site-header-height, 0px));
	overflow: hidden;
	color: #ffffff;
}

.home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-hero__bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(0, 0, 0, 0.55) 50%,
		rgba(0, 0, 0, 0.65) 100%
	);
}

.home-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 6rem;
	padding-bottom: 5rem;
}

.home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
}

.home-hero__col {
	min-width: 0;
}

.home-hero__static {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-link-hover) 100%);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-hero__static--has-thumb {
	background: none;
}

.home-hero__static-thumb {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-hero__static-thumb picture,
.home-hero__static-thumb-img {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero__static-thumb picture img,
.home-hero__static-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__static-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.home-hero__static-play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	width: 100%;
	padding: 2rem;
	border: 0;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.home-hero__static-play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	font-size: 1.35rem;
}

.home-hero__static-play-label {
	max-width: 16rem;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: var(--font-weight-normal);
	line-height: 1.35;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: none;
}

.home-hero__video-modal {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.home-hero__video-modal.is-open {
	display: flex;
}

.home-hero__video-modal[hidden] {
	display: none;
}

body.home-hero-video-modal-open {
	overflow: hidden;
}

.home-hero__video-modal-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background-color: rgba(0, 0, 0, 0.92);
	cursor: pointer;
}

.home-hero__video-modal-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 72rem);
	max-height: calc(100dvh - 2rem);
}

.home-hero__video-modal-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	font-size: 1.1rem;
	cursor: pointer;
	transition: var(--transition-color), border-color 0.3s ease;
}

.home-hero__video-modal-close:hover {
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.65);
}

.home-hero__video-modal-player {
	display: block;
	width: 100%;
	max-height: calc(100dvh - 2rem);
	background-color: #000000;
}

.home-hero__slider {
	position: relative;
	display: flex;
	flex-direction: column;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.home-hero__slider:active {
	cursor: grabbing;
}

.home-hero__slider a,
.home-hero__slider button {
	user-select: auto;
	-webkit-user-select: auto;
}

.home-hero__slides {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.home-hero__slide {
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-height: 100%;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.home-hero__slide.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.home-hero__slide-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: var(--font-weight-normal);
	line-height: 1.25;
	letter-spacing: 0.5px;
	text-transform: none;
	color: #ffffff;
}

.home-hero__slide-body {
	flex: 1 1 auto;
	min-height: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.home-hero__slide-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 14rem;
	object-fit: cover;
}

.home-hero__slide-text > :first-child {
	margin-top: 0;
}

.home-hero__slide-text > :last-child {
	margin-bottom: 0;
}

.home-hero__slide-bullets ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__slide-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    font-family: 'oswald';
    font-size: 18px;
}

.home-hero__slide-bullets li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.45rem;
	height: 0.45rem;
	background-color: #ffffff;
	transform: rotate(45deg);
}

.home-hero__slide-bullets li:last-child {
	margin-bottom: 0;
}

.home-hero__controls {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 2rem;
	min-height: 1.5rem;
}

.home-hero__more-links {
	display: grid;
	flex-shrink: 0;
	grid-template-columns: minmax(0, 1fr);
	margin-left: auto;
}

.home-hero__more-link {
	grid-area: 1 / 1;
	display: block;
	line-height: 0;
	text-decoration: none;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.home-hero__more-link.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.home-hero__more-link:hover {
	opacity: 0.85;
}

.home-hero__more-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
}

.home-hero__dots {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.65rem;
}

.home-hero__dot {
	width: 0.65rem;
	height: 0.65rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-hero__dot.is-active {
	background-color: #ffffff;
	transform: scale(1.15);
}

.home-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	z-index: 3;
	display: block;
	width: 58px;
	height: 58px;
	text-decoration: none;
	transform: translateX(-50%);
	transition: opacity 0.3s ease;
}

.home-hero__scroll:hover {
	opacity: 0.85;
}

.home-hero__scroll-icon {
	display: block;
	width: 58px;
	height: auto;
}

@media (max-width: 991px) {
	.home-hero__container {
		padding-top: 5rem;
		padding-bottom: 4.5rem;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.home-hero__col--media {
		width: 100%;
		max-width: 40rem;
		margin-inline: auto;
	}

	.home-hero__static {
		aspect-ratio: 16 / 10;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.home-hero {
		min-height: auto;
		align-items: stretch;
	}

	.home-hero__scroll {
		display: none;
	}

	.home-hero__col--slider {
		display: none;
	}

	.home-hero__container {
		padding-top: 2rem;
		padding-bottom: 3.5rem;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.home-hero__col--media {
		max-width: 100%;
	}

	.home-hero__static {
		aspect-ratio: 16 / 10;
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
	}

	.home-hero__static--has-thumb {
		background: none;
	}

	.home-hero__static-play {
		padding: 1.5rem 1rem;
	}

	.home-hero__static-play-icon {
		width: 3.75rem;
		height: 3.75rem;
		font-size: 1.1rem;
		border-color: #ffffff;
		color: var(--color-secondary);
		background-color: #ffffff;
	}

	.home-hero__static-play-label {
		font-size: 1rem;
		text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
	}

	.home-hero__slide-title {
		font-size: 1.375rem;
	}
}
