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

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

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

.ks-hero .ksh-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
}
.ks-hero .ksh-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.ks-hero .ksh-img {
	position: absolute;
	inset: 0;
	background-color: #1a1712;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.ks-hero .ksh-slide.is-active .ksh-img { animation: kshZoom 7s ease forwards; }
@keyframes kshZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.ks-hero .ksh-img-mobiel { display: none; }
.ks-hero .ksh-img-desktop { display: block; }

.ks-hero .ksh-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%);
}

/* ---------------- CONTENT ---------------- */
.ks-hero .ksh-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;
	--align: left;
}
/* center / right uitlijning */
.ks-hero .ksh-content[style*="center"] { align-items: center; max-width: 820px; margin: 0 auto; }
.ks-hero .ksh-content[style*="right"]  { align-items: flex-end; margin-left: auto; }

/* reveal-animatie */
.ks-hero .ksh-rev { opacity: 0; transform: translateY(22px); }
.ks-hero .ksh-slide.is-active .ksh-rev { animation: kshRev .7s ease forwards; }
.ks-hero .ksh-slide.is-active .ksh-reviews    { animation-delay: .1s; }
.ks-hero .ksh-slide.is-active .ksh-label      { animation-delay: .22s; }
.ks-hero .ksh-slide.is-active .ksh-head       { animation-delay: .36s; }
.ks-hero .ksh-slide.is-active .ksh-text       { animation-delay: .5s; }
.ks-hero .ksh-slide.is-active .ksh-button-wrap{ animation-delay: .62s; }
.ks-hero .ksh-slide.is-active .ksh-bottom     { animation-delay: .74s; }
@keyframes kshRev { to { opacity: 1; transform: translateY(0); } }

/* ---------------- REVIEWS ---------------- */
.ks-hero .ksh-reviews {
	--green: #00B67A;
	--empty: rgba(255,255,255,.28);
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.ks-hero .ksh-content[style*="center"] .ksh-reviews { justify-content: center; }
.ks-hero .ksh-content[style*="right"]  .ksh-reviews { justify-content: flex-end; }
.ks-hero .ksh-stars { --star: 20px; display: inline-flex; gap: 3px; line-height: 0; }
.ks-hero .ksh-star {
	position: relative;
	width: var(--star);
	height: var(--star);
	background: var(--empty);
	border-radius: 0;
	display: inline-block;
	overflow: hidden;
}
.ks-hero .ksh-star::before {
	content: "";
	position: absolute;
	inset: 0;
	width: var(--fill, 100%);
	background: var(--green);
}
.ks-hero .ksh-star svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	fill: #fff;
	padding: 13%;
}
.ks-hero .ksh-reviews-text {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .3px;
	color: rgba(255,255,255,.92);
}

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

/* ---------------- HEADING ----------------
   Geen vaste grootte meer: typografie-control bepaalt font/grootte.
   Onderstaande zijn alleen 'defaults' als je niets instelt.        */
.ks-hero .ksh-head {
	font-family: 'Barlow Condensed', sans-serif;
	margin: 0;
	font-size: 72px;
	line-height: .92;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
}
.ks-hero .ksh-head-accent { color: var(--gold-soft); }

/* ---------------- SUBTEKST ---------------- */
.ks-hero .ksh-text {
	margin: 20px 0 0;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,.82);
	max-width: 430px;
}
.ks-hero .ksh-content[style*="center"] .ksh-text { margin-left: auto; margin-right: auto; }
.ks-hero .ksh-content[style*="right"]  .ksh-text { margin-left: auto; }

/* ---------------- KNOP ---------------- */
.ks-hero .ksh-button-wrap { margin-top: 28px; }
.ks-hero .ksh-button {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	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: 0 solid transparent;
	border-radius: 2px;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.ks-hero .ksh-button:hover { transform: translateY(-2px); }
.ks-hero .ksh-btn-arrow { transition: transform .25s ease; }
.ks-hero .ksh-button:hover .ksh-btn-arrow { transform: translateX(3px); }

/* ---------------- ONDERREGEL ---------------- */
.ks-hero .ksh-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);
}
.ks-hero .ksh-content[style*="center"] .ksh-bottom { justify-content: center; }
.ks-hero .ksh-content[style*="right"]  .ksh-bottom { justify-content: flex-end; }

/* ---------------- PIJLEN ---------------- */
.ks-hero .ksh-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
	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;
}
.ks-hero .ksh-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.ks-hero .ksh-prev { left: 24px; }
.ks-hero .ksh-next { right: 24px; }

/* ---------------- DOTS / VOORTGANG ---------------- */
.ks-hero .ksh-dots {
	position: absolute;
	left: 8.5%;
	bottom: 30px;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 14px;
}
.ks-hero .ksh-dot {
	position: relative;
	height: 3px;
	width: 50px;
	border: none;
	padding: 0;
	background: rgba(255,255,255,.22);
	cursor: pointer;
	overflow: hidden;
	border-radius: 2px;
}
.ks-hero .ksh-fill {
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--gold);
	border-radius: 2px;
}
.ks-hero .ksh-fill.run { animation: kshProg linear forwards; }
@keyframes kshProg { from { width: 0; } to { width: 100%; } }

/* ---------------- TABLET ---------------- */
@media (max-width: 1024px) {
	.ks-hero .ksh-content { padding: 0 6% 0 7%; }
}

/* ---------------- MOBIEL ---------------- */
@media (max-width: 749px) {
	.ks-hero .ksh-img-desktop { display: none; }
	.ks-hero .ksh-img-mobiel { display: block; }
	.ks-hero .ksh-track { height: 580px; }

	.ks-hero .ksh-content {
		padding: 0 24px 110px;
		justify-content: flex-end;
		max-width: 100%;
	}
	.ks-hero .ksh-label { letter-spacing: 2px; }
	.ks-hero .ksh-text { margin-top: 14px; max-width: 100%; }
	.ks-hero .ksh-bottom { font-size: 10px; margin-top: 20px; flex-wrap: wrap; }

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

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