.nomad-rotta {
	--nomad-rotta-gutter: 6vw;
	--nomad-overlay-left: rgba(17, 19, 18, 0.8);
	--nomad-overlay-middle: rgba(17, 19, 18, 0.32);
	--nomad-overlay-right: rgba(17, 19, 18, 0.07);
	position: relative;
	height: 190vh;
	background: #d9d3c5;
	isolation: isolate;
}

.nomad-rotta,
.nomad-rotta * {
	box-sizing: border-box;
}

.nomad-rotta--full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.nomad-rotta__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.nomad-rotta__map {
	position: absolute;
	inset: -12%;
	background-color: #6f7268;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1.15) translate3d(0, 0, 0);
	transform-origin: center center;
	will-change: transform;
}

.nomad-rotta__vignette {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--nomad-overlay-left),
		var(--nomad-overlay-middle) 52%,
		var(--nomad-overlay-right)
	);
	pointer-events: none;
}

.nomad-rotta__index,
.nomad-rotta__copy,
.nomad-rotta__data {
	position: absolute;
	z-index: 2;
	color: #fff;
}

.nomad-rotta__index {
	top: 10vh;
	left: var(--nomad-rotta-gutter);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.65rem;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.nomad-rotta__copy {
	left: var(--nomad-rotta-gutter);
	right: var(--nomad-rotta-gutter);
	max-width: 60rem;
}

.nomad-rotta__kicker {
	margin: 0 0 1.25rem;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.68rem;
	line-height: 1.2;
	letter-spacing: 0.21em;
	text-transform: uppercase;
	color: #e7b8a8;
}

.nomad-rotta__title {
	margin: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(3.7rem, 7.6vw, 8.2rem);
	font-weight: 400;
	line-height: 0.87;
	letter-spacing: -0.055em;
	color: #fff;
}

.nomad-rotta__accent {
	display: block;
	font-style: italic;
	font-weight: 400;
	color: #e7b8a8;
}

.nomad-rotta__body {
	max-width: 31rem;
	margin-top: 2.5rem;
	font-family: "Times New Roman", Times, serif;
	font-size: 1.45rem;
	line-height: 1.45;
	color: #fff;
}

.nomad-rotta__body > :first-child {
	margin-top: 0;
}

.nomad-rotta__body > :last-child {
	margin-bottom: 0;
}

.nomad-rotta__data {
	left: var(--nomad-rotta-gutter);
	right: var(--nomad-rotta-gutter);
	bottom: 6vh;
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.42);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.6rem;
	line-height: 1.2;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.nomad-rotta {
		--nomad-rotta-gutter: 1.2rem;
		height: 165vh;
	}

	.nomad-rotta__title {
		font-size: clamp(3.3rem, 14vw, 6rem);
	}

	.nomad-rotta__body {
		max-width: min(31rem, 100%);
		font-size: 1.2rem;
	}

	.nomad-rotta__data span:nth-child(2) {
		display: none;
	}
}

@media (max-width: 480px) {
	.nomad-rotta__index {
		top: 8vh;
	}

	.nomad-rotta__copy {
		top: 50%;
		transform: translateY(-50%);
	}

	.nomad-rotta__data {
		bottom: 4vh;
		gap: 0.8rem;
		font-size: 0.52rem;
		letter-spacing: 0.12em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nomad-rotta__map {
		will-change: auto;
	}
}

