.nordic-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72vh;
	overflow: hidden;
	text-align: center;
	color: #FAF8F5;
}

.nordic-hero__slides {
	position: absolute;
	inset: 0;
}

.nordic-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.8s ease;
}

.nordic-hero__slide.is-active {
	opacity: 1;
}

.nordic-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(32, 36, 40, 0.55) 0%, rgba(32, 36, 40, 0.35) 45%, rgba(32, 36, 40, 0.65) 100%);
}

.nordic-hero__content {
	position: relative;
	z-index: 1;
	max-width: 46rem;
	padding: 0 1.5rem;
}

.nordic-hero__eyebrow {
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	color: #C9A96E;
}

.nordic-hero__heading {
	margin: 0 0 1rem;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 400;
	line-height: 1.1;
	color: #FAF8F5;
}

.nordic-hero__subheading {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-weight: 300;
	color: #FAF8F5;
}

@media (prefers-reduced-motion: reduce) {
	.nordic-hero__slide {
		transition: none;
	}
}
