.df-hero {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 560px;
	background: #131313;
	font-family: "Montserrat", 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__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

.df-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(19, 19, 19, 0.48);
}

.df-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	max-width: 920px;
	padding: 100px 24px 100px;
	text-align: center;
}

.df-hero__brand,
.df-hero__title,
.df-hero__subtitle,
.df-hero__perks,
.df-hero__btn,
.df-hero__bottom {
	opacity: 0;
	transform: translateY(28px);
}

.df-hero.is-visible .df-hero__brand,
.df-hero.is-visible .df-hero__title,
.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 {
	opacity: 1;
	transform: translateY(0);
}

.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__subtitle {
	transition: opacity 0.8s ease 0.18s, transform 0.8s ease 0.18s;
}

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

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

.df-hero__title {
	margin: 0;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: var(--df-title-size, 50px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.df-hero__subtitle {
	margin: 20px 0 0;
	max-width: 720px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(14px, 1.8vw, 18px);
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.df-hero__btn {
	margin-top: auto;
	padding: 12px 48px;
}

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

	.df-hero__content {
		padding: 100px 16px 100px;
	}

	.df-hero__subtitle {
		margin-top: 16px;
		letter-spacing: 0.04em;
	}

	.df-hero__btn {
		width: 100%;
		max-width: 320px;
		padding: 12px 24px;
	}
}
