.roj-story-home {
	background: #020202;
	color: #fffaf5;
}

.roj-story-scenes {
	--roj-story-scroll-height: 275svh;
	position: relative;
	min-height: 300vh;
	min-height: var(--roj-story-scroll-height);
	background: #020202;
	overflow: visible;
}

.roj-story-stage {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100svh;
	background: #020202;
	overflow: hidden;
	isolation: isolate;
}

.roj-story-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.72) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.86));
	pointer-events: none;
}

.roj-story-scene {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(1.25rem, 3vw, 3.75rem);
	padding: clamp(6rem, 10vw, 8rem) max(1.5rem, calc((100vw - 82.5rem) / 2)) clamp(3rem, 6vw, 5rem);
	opacity: var(--roj-scene-opacity, 0);
	pointer-events: none;
	transform: translate3d(0, calc(var(--roj-scene-y, 34px)), 0);
	transition: opacity 120ms linear;
	will-change: opacity, transform;
}

.roj-story-scene.is-active {
	--roj-scene-opacity: 1;
	--roj-scene-y: 0px;
	--roj-text-opacity: 1;
	--roj-text-x: 0px;
	--roj-text-y: 0px;
	--roj-text-scale: 1;
	--roj-image-opacity: 1;
	--roj-image-x: 0px;
	--roj-image-y: 0px;
	--roj-image-scale: 1.015;
	--roj-glow-opacity: 0.78;
	pointer-events: auto;
}

.roj-story-scene__content {
	position: relative;
	z-index: 3;
	max-width: 35rem;
	opacity: var(--roj-text-opacity, 0);
	transform:
		translate3d(calc(var(--roj-text-x, -38px)), calc(var(--roj-text-y, 20px)), 0)
		scale(var(--roj-text-scale, 0.985));
	will-change: opacity, transform;
}

.roj-story-scene__number {
	margin: 0 0 1.15rem;
	color: #ff385c;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	line-height: 1;
	text-transform: uppercase;
}

.roj-story-scene h1,
.roj-story-scene h2 {
	margin: 0;
	color: #fffaf5;
	font-size: clamp(4.2rem, 8.4vw, 8.7rem);
	letter-spacing: 0;
	line-height: 0.88;
	text-wrap: balance;
}

.roj-story-scene__content > p:not(.roj-story-scene__number) {
	max-width: 31rem;
	margin: 2rem 0 0;
	color: rgba(255, 250, 245, 0.72);
	font-size: clamp(1.02rem, 1.25vw, 1.22rem);
	font-weight: 500;
	line-height: 1.76;
}

.roj-story-scene__link {
	min-height: 3.25rem;
	margin-top: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0.0625rem solid rgba(255, 250, 245, 0.24);
	border-radius: 999rem;
	padding: 0.75rem 1.35rem;
	background: rgba(255, 250, 245, 0.08);
	color: #fffaf5;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
	backdrop-filter: blur(16px);
}

.roj-story-scene__media {
	position: relative;
	z-index: 2;
	width: min(100%, 52rem);
	margin-left: 0;
	opacity: var(--roj-image-opacity, 0);
	transform:
		translate3d(calc(var(--roj-image-x, 54px)), calc(var(--roj-image-y, 0px)), 0)
		scale(var(--roj-image-scale, 0.94));
	will-change: opacity, transform;
}

.roj-story-scene__media::after {
	content: "";
	position: absolute;
	inset: 10% 6% -9%;
	z-index: -1;
	background: rgba(178, 0, 34, 0.26);
	filter: blur(4.5rem);
	opacity: var(--roj-glow-opacity, 0);
}

.roj-story-scene__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 0.75rem;
	box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.58);
}

.roj-ingredients-section,
.roj-story-product-anchor {
	position: relative;
	z-index: 4;
	background: #020202;
	color: #fffaf5;
}

.roj-ingredients-section {
	padding-block: clamp(5rem, 10vw, 9rem);
	border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.roj-ingredients-section__intro {
	max-width: 42rem;
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.roj-ingredients-section__intro h2 {
	margin: 0;
	font-size: clamp(2.8rem, 6vw, 6.4rem);
	line-height: 0.94;
	letter-spacing: 0;
}

.roj-ingredients-section__intro p:not(.roj-eyebrow) {
	max-width: 36rem;
	margin: 1.5rem 0 0;
	color: rgba(255, 250, 245, 0.68);
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	line-height: 1.75;
}

.roj-ingredients-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.875rem;
}

.roj-ingredient-card {
	min-height: 18rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border: 0.0625rem solid rgba(255, 255, 255, 0.11);
	border-radius: 0.75rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	background:
		linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
		radial-gradient(circle at 50% 0%, rgba(178, 0, 34, 0.18), transparent 48%),
		#070606;
}

.roj-ingredient-card span {
	color: #ff385c;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.roj-ingredient-card h3 {
	margin: 1rem 0 0.65rem;
	font-size: clamp(1.65rem, 3vw, 2.65rem);
	letter-spacing: 0;
}

.roj-ingredient-card p {
	margin: 0;
	color: rgba(255, 250, 245, 0.64);
	line-height: 1.62;
}

.roj-story-product-anchor {
	padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.roj-story-product-anchor .roj-featured-product {
	background: #020202;
	padding-block: 0;
}

.roj-js .roj-story-product-anchor .roj-depth-card,
.roj-js .roj-3d-enabled .roj-story-product-anchor .roj-depth-card {
	opacity: 1;
	transform: none;
}

.roj-js .roj-3d-enabled .roj-story-product-anchor .roj-depth-card::after {
	display: none;
}

.roj-story-product-anchor .roj-featured-product__grid,
.roj-story-product-anchor .roj-featured-product__empty {
	border: 0.0625rem solid rgba(255, 255, 255, 0.11);
	border-radius: 0.875rem;
	padding: clamp(1rem, 3vw, 2rem);
	background: #070606;
}

@media (max-width: 900px) {
	.roj-story-scenes {
		--roj-story-scroll-height: 220svh;
		min-height: var(--roj-story-scroll-height);
	}

	.roj-story-stage::before {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.82) 100%),
			linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 42%, rgba(0, 0, 0, 0.7));
	}

	.roj-story-scene {
		grid-template-columns: 1fr;
		align-content: center;
		justify-items: center;
		gap: 0.9rem;
		padding: calc(var(--roj-header-height) + 0.15rem) 1.05rem 1.2rem;
		text-align: center;
	}

	.roj-story-scene__media {
		order: 1;
		width: min(100%, 39rem);
		margin: 0;
		transform:
			translate3d(0, calc(var(--roj-image-y, -8px)), 0)
			scale(var(--roj-image-scale, 0.94));
	}

	.roj-story-scene__content {
		order: 2;
		max-width: 34rem;
		transform:
			translate3d(0, calc(var(--roj-text-y, 28px)), 0)
			scale(var(--roj-text-scale, 0.985));
	}

	.roj-story-scene__number {
		margin-bottom: 0.8rem;
	}

	.roj-story-scene h1,
	.roj-story-scene h2 {
		font-size: clamp(3rem, 14vw, 5.4rem);
	}

	.roj-story-scene__content > p:not(.roj-story-scene__number) {
		margin: 0.8rem auto 0;
		font-size: 1rem;
		line-height: 1.55;
	}

	.roj-ingredients-section {
		padding-block: 4.5rem;
	}

	.roj-ingredients-section__intro {
		text-align: center;
	}

	.roj-ingredients-section__intro p:not(.roj-eyebrow),
	.roj-ingredients-section .roj-eyebrow {
		margin-inline: auto;
		justify-content: center;
	}

	.roj-ingredients-grid {
		grid-template-columns: 1fr;
	}

	.roj-ingredient-card {
		min-height: 13rem;
	}

	.roj-story-product-anchor {
		padding-block: 1.75rem 4rem;
	}
}

@media (max-width: 520px) {
	.roj-story-scene {
		gap: 0.75rem;
		padding-top: calc(var(--roj-header-height) + 0.1rem);
		padding-inline: 1rem;
	}

	.roj-story-scene__content {
		max-width: 22rem;
	}

	.roj-story-scene h1,
	.roj-story-scene h2 {
		font-size: clamp(2.65rem, 12vw, 4.5rem);
	}

	.roj-story-scene__link {
		min-height: 3rem;
		margin-top: 1.1rem;
	}

	.roj-story-scene__media img {
		border-radius: 0.55rem;
	}

	.roj-story-scene__link {
		width: 100%;
	}
}
