.hero {
	--hero-background-y: 0px;
	--hero-vehicle-x: 0px;
	--hero-vehicle-y: 0px;
	--hero-copy-y: 0px;
	position: relative;
	background: #fff;
	overflow: hidden;
	isolation: isolate;
}
.hero__stage {
	position: relative;
	z-index: 0;
	width: 100%;
	overflow: hidden;
	background: #fff;
}
.hero__background {
	position: relative;
	z-index: 0;
	width: 100%;
	background: #fff;
	transform: translate3d(0, var(--hero-background-y), 0) scale(1.14);
	transform-origin: 50% 50%;
	will-change: transform;
}
.hero__background img {
	width: 100%;
	height: auto;
}
.hero__vehicle-parallax {
	position: absolute;
	z-index: 1;
	inset: 0;
	transform: translate3d(var(--hero-vehicle-x), var(--hero-vehicle-y), 0);
	will-change: transform;
	pointer-events: none;
}
.hero__vehicle-arrival {
	position: absolute;
	inset: 0;
	opacity: 1;
	visibility: visible;
	transform-origin: 74% 75%;
}
.hero__vehicle-image {
	position: absolute;
	z-index: 2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.hero.is-motion-ready:not(.is-in-view) .hero__vehicle-arrival {
	opacity: 0;
	transform: translate3d(46px, -2px, 0) scale(0.982);
}
.hero.is-in-view .hero__vehicle-arrival {
	animation: hero-vehicle-arrival 1.18s cubic-bezier(0.2, 0.82, 0.25, 1) both;
}
.hero__inner {
	position: absolute;
	z-index: 3;
	inset: 0;
	display: flex;
	align-items: center;
	transform: translate3d(0, var(--hero-copy-y), 0);
}
.hero__copy {
	position: relative;
	z-index: 2;
	padding: 40px 0 40px 5%;
}
.hero__eyebrow {
	margin: 0 0 8px;
	color: var(--color-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
}
.hero h1 {
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(34px, 3.4vw, 55px);
	line-height: 1.35;
	letter-spacing: 0.03em;
}
.hero h1 span {
	color: var(--color-orange);
}
.hero__copy > p:last-child {
	margin: 14px 0 0;
	color: var(--color-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
}
body.has-hero-header .hero__inner {
	width: 100%;
	padding: var(--hero-copy-top) var(--hero-content-x) 0;
	align-items: flex-start;
}
body.has-hero-header .hero__copy {
	width: var(--hero-logo-width);
	max-width: none;
	padding: 0;
	text-align: center;
}
body.has-hero-header .hero__eyebrow {
	display: none;
}
body.has-hero-header .hero h1 {
	font-size: clamp(10px, 1.5vw, 22px);
	line-height: 1.55;
	letter-spacing: 0.06em;
}
body.has-hero-header .hero__copy > p:last-child {
	margin-top: 0.45vw;
	font-size: clamp(6px, 1vw, 10px);
}

@keyframes hero-vehicle-arrival {
	0% {
		opacity: 0;
		transform: translate3d(46px, -2px, 0) scale(0.982);
	}
	58% {
		opacity: 1;
		transform: translate3d(-5px, 0, 0) scale(1.002) rotate(0.08deg);
	}
	70% {
		transform: translate3d(-3px, 2px, 0) rotate(-0.42deg);
	}
	82% {
		transform: translate3d(2px, -1px, 0) rotate(0.14deg);
	}
	91% {
		transform: translate3d(-1px, 0, 0) rotate(-0.05deg);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1) rotate(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__background,
	.hero__vehicle-parallax,
	.hero__vehicle-arrival,
	.hero__inner {
		animation: none !important;
		transform: none !important;
	}
}

.hero + .content-layout {
	position: relative;
	padding-top: 64px;
	background: #fff;
}
.recommended-section {
	padding: 22px 0 64px;
	background: #fff;
}
.recommended-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.recommended-widget {
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--color-line);
	text-align: center;
}
.recommended-widget:only-child {
	grid-column: 1 / -1;
}
.recommended-widget__title {
	margin: 0 0 15px;
	font-size: 15px;
}
.recommended-widget img {
	margin-inline: auto;
}
.recommended-widget a {
	color: var(--color-orange);
	font-weight: 700;
}
