.nvh-widget-shell,
.nvh-widget-shell * {
	box-sizing: border-box;
}

.nvh-widget-shell {
	width: 100%;
	overflow: hidden;
}

.nvh-widget-shell--fullbleed {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}

.nvh-hero {
	isolation: isolate;
	position: relative;
	display: grid;
	width: 100%;
	min-height: 0;
	aspect-ratio: 1759 / 894;
	place-items: center;
	overflow: hidden;
	background: #46442f;
	color: #fffaf1;
}

.nvh-hero__visual {
	position: absolute;
	z-index: -2;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(50, 25, 20, .06), rgba(25, 28, 18, .08)),
		var(--nvh-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.nvh-hero__visual::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(21, 21, 14, .08) 0 20%, rgba(21, 21, 14, 0) 55%),
		linear-gradient(180deg, rgba(16, 14, 10, .05), rgba(16, 14, 10, .18));
	content: '';
}

.nvh-hero__content {
	position: relative;
	z-index: 1;
	width: min(42vw, 700px);
	max-width: 700px;
	padding: 24px 20px 32px;
	text-align: center;
	text-shadow: 0 2px 24px rgba(19, 17, 11, .3);
}

.nvh-hero__title {
	margin: 0;
	padding: 0;
}

.nvh-hero__logo {
	display: block;
	width: min(23vw, 410px);
	max-width: 410px;
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 3px 16px rgba(21, 18, 12, .18));
}

.nvh-hero__tagline {
	margin: clamp(18px, 1.8vw, 30px) 0 8px;
	font-family: Montserrat, Arial, sans-serif;
	font-size: clamp(11px, 1.1vw, 18px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .27em;
	text-transform: uppercase;
}

.nvh-hero__categories {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	font-family: Montserrat, Arial, sans-serif;
	font-size: clamp(10px, .9vw, 14px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.nvh-hero__categories i {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
}

.nvh-hero__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: clamp(25px, 2.6vw, 42px);
}

.nvh-hero__button {
	display: inline-flex;
	min-width: clamp(150px, 12vw, 202px);
	min-height: clamp(52px, 4vw, 67px);
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .86);
	border-radius: 3px;
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: clamp(11px, .85vw, 14px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: .08em;
	text-decoration: none;
	text-shadow: none;
	text-transform: uppercase;
	transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.nvh-hero__button--women {
	background: #b77370;
}

.nvh-hero__button--men {
	background: #5f6242;
}

.nvh-hero__button:hover,
.nvh-hero__button:focus {
	border-color: #fff;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 18, 13, .22);
	color: #353527;
	transform: translateY(-3px);
}

.nvh-hero__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

@media (max-width: 900px) {
	.nvh-hero__content {
		width: min(52vw, 520px);
	}

	.nvh-hero__button {
		min-width: 145px;
	}
}

@media (max-width: 767px) {
	.nvh-hero {
		width: 100%;
		height: auto;
		min-height: 0;
		aspect-ratio: 1759 / 894;
		place-items: center;
	}

	.nvh-hero__content {
		width: 52vw;
		padding: 2vw 1.5vw 2.4vw;
	}

	.nvh-hero__logo {
		width: 23vw;
	}

	.nvh-hero__tagline {
		margin: 1.5vw 0 .45vw;
		font-size: clamp(4.5px, 1.1vw, 8px);
		letter-spacing: .22em;
	}

	.nvh-hero__categories {
		gap: 1vw;
		font-size: clamp(4px, .9vw, 7px);
		letter-spacing: .14em;
	}

	.nvh-hero__categories i {
		width: 2px;
		height: 2px;
	}

	.nvh-hero__actions {
		gap: 1vw;
		margin-top: 2vw;
	}

	.nvh-hero__button {
		width: 20vw;
		min-width: 0;
		min-height: clamp(24px, 4vw, 31px);
		padding: 0 .8vw;
		border-radius: 2px;
		font-size: clamp(5.5px, .85vw, 7px);
	}
}

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

