.zhv-hero {
	position: relative;
	width: 100%;
	min-height: var(--zhv-desktop-height, 550px);
	background: #0f1728;
	color: #fff;
	overflow: hidden;
}

.zhv-hero__media,
.zhv-hero__content,
.zhv-hero__overlay {
	position: absolute;
	inset: 0;
}

.zhv-hero__video,
.zhv-hero__fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zhv-hero__fallback {
	z-index: 0;
}

.zhv-hero__fallback--mobile {
	display: none;
}

.zhv-hero__video {
	z-index: 1;
}

.zhv-hero__video--mobile {
	display: none;
}

.zhv-hero__overlay {
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(10, 15, 28, calc(var(--zhv-overlay-opacity, 0.28) * 0.85)) 0%, rgba(10, 15, 28, var(--zhv-overlay-opacity, 0.28)) 100%);
}

.zhv-hero__content {
	z-index: 3;
	padding: clamp(32px, 5vw, 72px) 24px;
}

.zhv-hero__container {
	width: min(calc(100% - 48px), 1320px);
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zhv-hero__inner {
	width: min(100%, var(--zhv-content-max, 1040px));
}

.zhv-hero--align-left .zhv-hero__container {
	justify-content: flex-start;
	text-align: left;
}

.zhv-hero--align-center .zhv-hero__container {
	justify-content: center;
	text-align: center;
}

.zhv-hero--align-right .zhv-hero__container {
	justify-content: flex-end;
	text-align: right;
}

.zhv-hero__breadcrumbs {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--zhv-body-font, Arial, Helvetica, sans-serif);
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.5;
}

.zhv-hero__breadcrumbs a,
.zhv-hero__breadcrumbs span {
	color: inherit;
	text-decoration: none;
}

.zhv-hero__crumb-sep {
	opacity: 0.78;
	margin: 0 0.25rem;
}

.zhv-hero__eyebrow {
	margin: 0 0 20px;
	color: rgba(240, 249, 231, 0.95);
	font-family: var(--zhv-body-font, Arial, Helvetica, sans-serif);
	font-size: var(--zhv-eyebrow-size, 18px);
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.zhv-hero__headline {
	margin: 0;
	color: #fff;
	font-family: var(--zhv-headline-font, "Archivo", Arial, Helvetica, sans-serif);
	font-size: clamp(2.75rem, 6vw, var(--zhv-headline-size, 90px));
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.zhv-hero__copy {
	max-width: 760px;
	margin: 28px auto 0;
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--zhv-body-font, Arial, Helvetica, sans-serif);
	font-size: clamp(1.05rem, 2vw, var(--zhv-copy-size, 26px));
	line-height: 1.6;
}

.zhv-hero--align-left .zhv-hero__copy {
	margin-left: 0;
	margin-right: auto;
}

.zhv-hero--align-right .zhv-hero__copy {
	margin-left: auto;
	margin-right: 0;
}

.zhv-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	margin-top: 34px;
	padding: 16px 26px;
	border-radius: 14px;
	background: var(--zhv-button-bg, #b0213a);
	color: var(--zhv-button-color, #fff);
	font-family: var(--zhv-button-font, Arial, Helvetica, sans-serif);
	font-size: var(--zhv-button-size, 17px);
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.zhv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
	justify-content: center;
}

.zhv-hero__actions .zhv-hero__button {
	margin-top: 0;
}

.zhv-hero--align-left .zhv-hero__actions {
	justify-content: flex-start;
}

.zhv-hero--align-right .zhv-hero__actions {
	justify-content: flex-end;
}

.zhv-hero__button--secondary {
	background: var(--zhv-button-secondary-bg, rgba(255, 255, 255, 0.98));
	color: var(--zhv-button-secondary-color, #a32035);
}

.zhv-hero__button:hover,
.zhv-hero__button:focus {
	background: var(--zhv-button-hover-bg, #c72c47);
	color: var(--zhv-button-hover-color, #fff);
	transform: translateY(-1px);
}

.zhv-hero__button--secondary:hover,
.zhv-hero__button--secondary:focus {
	background: var(--zhv-button-secondary-hover-bg, #fff);
	color: var(--zhv-button-secondary-hover-color, #00224b);
}

@media (max-width: 781px) {
	.zhv-hero {
		min-height: var(--zhv-mobile-height, 540px);
	}

	.zhv-hero__fallback--desktop {
		display: none;
	}

	.zhv-hero__fallback--mobile {
		display: block;
	}

	.zhv-hero__video--desktop {
		display: none;
	}

	.zhv-hero__video--mobile {
		display: block;
	}

	.zhv-hero__content {
		padding: 44px 18px 34px;
	}

	.zhv-hero__container {
		width: min(calc(100% - 36px), 1320px);
		align-items: flex-end;
	}

	.zhv-hero__headline {
		font-size: clamp(2.3rem, 10vw, var(--zhv-mobile-headline-size, 56px));
	}

	.zhv-hero__eyebrow {
		margin-bottom: 16px;
		font-size: var(--zhv-mobile-eyebrow-size, 14px);
	}

	.zhv-hero__copy {
		margin-top: 18px;
		font-size: var(--zhv-mobile-copy-size, 17px);
		line-height: 1.55;
	}

	.zhv-hero__actions {
		flex-direction: column;
		align-items: center;
		margin-top: 24px;
	}

	.zhv-hero__button {
		width: 100%;
		max-width: 280px;
		font-size: var(--zhv-mobile-button-size, 17px);
	}

	.zhv-hero--align-right .zhv-hero__container,
	.zhv-hero--align-left .zhv-hero__container {
		justify-content: center;
		text-align: center;
	}

	.zhv-hero--align-left .zhv-hero__copy,
	.zhv-hero--align-right .zhv-hero__copy {
		margin-left: auto;
		margin-right: auto;
	}
}
