.bravo-hero,
.bravo-hero * { box-sizing: border-box; }

.bravo-hero {
	--gold: #B88A3B;
	--gold-soft: #d6ab63;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #0e0c09;
	font-family: 'Inter', sans-serif;
}

.bravo-hero .bh-track {
	position: relative;
	width: 100%;
	height: 560px;
}

.bravo-hero .bh-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
}

.bravo-hero .bh-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.bravo-hero .bh-img {
	position: absolute;
	inset: 0;
	background-color: #1a1712;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.bravo-hero .bh-slide.is-active .bh-img {
	animation: bhZoom 7s ease forwards;
}

@keyframes bhZoom {
	from { transform: scale(1.08); }
	to   { transform: scale(1); }
}

.bravo-hero .bh-img-mobiel { display: none; }
.bravo-hero .bh-img-desktop { display: block; }

.bravo-hero .bh-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,8,5,.84) 0%, rgba(10,8,5,.5) 46%, rgba(10,8,5,0) 76%);
}

.bravo-hero .bh-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 7% 0 8.5%;
	max-width: 660px;
}

.bravo-hero .bh-rev {
	opacity: 0;
	transform: translateY(22px);
}

.bravo-hero .bh-slide.is-active .bh-rev {
	animation: bhRev .7s ease forwards;
}

.bravo-hero .bh-slide.is-active .bh-label  { animation-delay: .15s; }
.bravo-hero .bh-slide.is-active .bh-head   { animation-delay: .3s; }
.bravo-hero .bh-slide.is-active .bh-text   { animation-delay: .45s; }
.bravo-hero .bh-slide.is-active .bh-bottom { animation-delay: .7s; }

@keyframes bhRev {
	to { opacity: 1; transform: translateY(0); }
}

.bravo-hero .bh-label {
	font-size: 12px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--gold-soft);
}

.bravo-hero .bh-head {
	font-family: 'Barlow Condensed', sans-serif;
	margin: 0;
	font-size: var(--head-size, 72px);
	line-height: .92;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
}

.bravo-hero .bh-head-accent { color: var(--gold-soft); }

.bravo-hero .bh-text {
	margin: 20px 0 0;
	font-size: var(--text-size, 16px);
	line-height: 1.6;
	color: rgba(255,255,255,.82);
	max-width: 430px;
}

.bravo-hero .bh-button {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-top: 28px;
	padding: 15px 32px;
	background: var(--gold);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}

.bravo-hero .bh-button:hover {
	transform: translateY(-2px);
	background: #14110c;
	color: #fff;
}

.bravo-hero.bh-hover-light .bh-button:hover {
	background: #fff;
	color: #14110c;
}

.bravo-hero .bh-bottom {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 26px;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(255,255,255,.75);
}

.bravo-hero .bh-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(184,138,59,.5);
	background: rgba(20,17,12,.45);
	color: var(--gold-soft);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.bravo-hero .bh-arrow:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

.bravo-hero .bh-prev { left: 24px; }
.bravo-hero .bh-next { right: 24px; }

.bravo-hero .bh-dots {
	position: absolute;
	left: 8.5%;
	bottom: 30px;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 14px;
}

.bravo-hero .bh-dot {
	position: relative;
	height: 3px;
	width: 50px;
	border: none;
	padding: 0;
	background: rgba(255,255,255,.22);
	cursor: pointer;
	overflow: hidden;
	border-radius: 2px;
}

.bravo-hero .bh-fill {
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--gold);
	border-radius: 2px;
}

.bravo-hero .bh-fill.run {
	animation: bhProg linear forwards;
}

@keyframes bhProg {
	from { width: 0; }
	to   { width: 100%; }
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
	.bravo-hero .bh-head { font-size: 60px; }
	.bravo-hero .bh-content { padding: 0 6% 0 7%; }
}

/* ---------- MOBIEL ---------- */
@media (max-width: 749px) {
	.bravo-hero .bh-img-desktop { display: none; }
	.bravo-hero .bh-img-mobiel { display: block; }

	.bravo-hero .bh-track { height: 580px; }

	.bravo-hero .bh-content {
		padding: 0 24px 110px;
		justify-content: flex-end;
		max-width: 100%;
	}

	.bravo-hero .bh-head { font-size: var(--head-size-m, 46px); line-height: .94; }
	.bravo-hero .bh-label { font-size: 11px; letter-spacing: 2px; }
	.bravo-hero .bh-text { font-size: var(--text-size-m, 14px); margin-top: 14px; max-width: 100%; }
	.bravo-hero .bh-bottom { font-size: 10px; margin-top: 20px; flex-wrap: wrap; }

	.bravo-hero .bh-arrow {
		top: auto;
		bottom: 34px;
		transform: none;
		width: 38px;
		height: 38px;
	}
	.bravo-hero .bh-prev { left: auto; right: 70px; }
	.bravo-hero .bh-next { right: 24px; left: auto; }
	.bravo-hero .bh-arrow svg { width: 16px; height: 16px; }

	.bravo-hero .bh-dots { left: 24px; bottom: 44px; gap: 10px; }
	.bravo-hero .bh-dot { width: 34px; }
}

@media (max-width: 380px) {
	.bravo-hero .bh-head { font-size: 40px; }
}
