.df-hero {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 35rem;
	background: #111111;
	font-family: "ChangAnunitype", sans-serif;
	color: #fff;
}

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

.df-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.df-hero__media picture,
.df-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.df-hero__image {
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

.df-hero__overlay {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(17, 17, 17, 0.15) 0%,
		rgba(17, 17, 17, 0.25) 40%,
		rgba(17, 17, 17, 0.72) 100%
	);
	pointer-events: none;
}

.df-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 5rem 1.5rem 100px;
	text-align: left;
}

.df-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 52rem;
}

.df-hero__brand,
.df-hero__title,
.df-hero__rule,
.df-hero__subtitle,
.df-hero__perks,
.df-hero__btn,
.df-hero__bottom,
.df-hero__copy {
	opacity: 0;
	transform: translateY(1.75rem);
}

.df-hero.is-visible .df-hero__brand,
.df-hero.is-visible .df-hero__title,
.df-hero.is-visible .df-hero__rule,
.df-hero.is-visible .df-hero__subtitle,
.df-hero.is-visible .df-hero__perks,
.df-hero.is-visible .df-hero__btn,
.df-hero.is-visible .df-hero__bottom,
.df-hero.is-visible .df-hero__copy {
	opacity: 1;
	transform: translateY(0);
}

.df-hero.is-visible .df-hero__copy,
.df-hero.is-visible .df-hero__brand,
.df-hero.is-visible .df-hero__title {
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.df-hero.is-visible .df-hero__rule {
	transition: opacity 0.8s ease 0.12s, transform 0.8s ease 0.12s;
}

.df-hero.is-visible .df-hero__subtitle,
.df-hero.is-visible .df-hero__perks {
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.df-hero.is-visible .df-hero__btn {
	transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.df-hero__title {
	margin: 0;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: clamp(2.75rem, 4.5vw, 3.5rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: none;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.df-hero__rule {
	display: block;
	width: 5.25rem;
	height: 2px;
	margin: 1.25rem 0;
	background: #1174D0;
	flex-shrink: 0;
}

.df-hero__subtitle {
	margin: 0 0 1.75rem;
	max-width: 48rem;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-body, 1rem);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: none;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
	opacity: 0.95;
}

.df-hero.is-visible .df-hero__subtitle {
	opacity: 0.95;
}

.df-hero__btn {
	margin-top: 0;
	align-self: flex-start;
	background-color: #1174D0 !important;
	border: 2px solid #1174D0 !important;
	color: #fff !important;
	font-size: var(--df-fs-btn, 1.25rem);
	border-radius: 30px;
}

.df-hero__btn:hover,
.df-hero__btn:focus {
	background-color: transparent !important;
	border-color: #1174D0 !important;
	color: #1174D0 !important;
}

@media (max-width: 767px) {
	.df-hero {
		height: 100svh;
		min-height: 100svh;
		max-height: 100svh;
	}

	.df-hero__media,
	.df-hero__media picture,
	.df-hero__image {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.df-hero__image {
		object-fit: cover;
		object-position: center;
	}

	.df-hero__content {
		padding: 5rem 1rem 100px;
	}

	.df-hero__title {
		font-size: 2rem;
	}

	.df-hero__rule {
		margin: 1rem 0;
	}

	.df-hero__subtitle {
		margin-bottom: 1.5rem;
		font-size: 1rem;
	}

	.df-hero__btn {
		width: 100%;
		max-width: 20rem;
		padding: 0.75rem 1.5rem;
		font-size: 1.125rem;
		justify-content: center;
	}

	.df-hero__btn:hover,
	.df-hero__btn:focus {
		background-color: #1174D0 !important;
		border-color: #1174D0 !important;
		color: #fff !important;
	}
}
