/* ============================================================
   Single product — boutique editorial layout
   Reference: Pink & Blue print catalogue, p.19 ("The Imperial
   Twin Drops"). Headline top-aligned, image vertically centred
   against the text column, justified body with centred last
   line, floating object + subtle mirror reflection.

   Tokens (--rd-*) come from theme.css.
   ============================================================ */

:root {
	--rd-hairline: rgba(9, 23, 52, 0.14);
	--rd-soft-line: rgba(9, 23, 52, 0.08);
	--rd-tint: #f5f5f3;
	--rd-pad: clamp(28px, 6vw, 110px);
}

.rosenberg-product {
	background: var(--rd-surface);
	color: var(--rd-ink);
	/* no overflow clip here — it would break position:sticky on the ribbon.
	   Full-bleed bands are real full-width sections (no 100vw breakout). */
}

/* ---------- HERO (boutique editorial — mirrors the approved HTML demo) ----------
   Stacked flow: eyebrow + title on top, contained piece centred, reference +
   CTA + hairline below, borderless vertical thumbnail rail on the left
   (a row below on mobile). Nothing overlaps the image. */
.rosenberg-product__hero {
	min-height: calc(100vh - 227px);
	position: relative;
	overflow: visible;
	background: var(--rd-surface);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(20px, 3vh, 44px);
	padding: clamp(28px, 4vh, 56px) var(--rd-pad) clamp(40px, 5vh, 70px);
}
.rosenberg-product__hero-head {
	flex: 0 0 auto;
	text-align: center;
	color: var(--rd-ink);
}
.rosenberg-product__eyebrow {
	font-family: var(--rd-font-nav);
	font-size: .72rem;
	letter-spacing: .4em;
	text-transform: uppercase;
	color: var(--rd-gold-hover, #a98a3c);
	margin: 0 0 18px;
}
/* Title typography mirrors the HTML demo (.hero h1):
   MADE Mirage, weight 300, clamp(1.7rem,3.5vw,3rem), tracking .02em, navy.
   max-width keeps long real product titles wrapping gracefully (the demo
   used short, single-line titles). */
.rosenberg-product__hero .rosenberg-product__title {
	font-family: var(--rd-font-nav);
	font-weight: 400;
	font-size: clamp(1.7rem, 3.5vw, 3rem);
	line-height: 1.06;
	letter-spacing: .02em;
	text-transform: none;
	color: var(--rd-ink);
	margin: 0 auto;
	max-width: min(92vw, 1200px);
}
.rosenberg-product__hero .rosenberg-product__breadcrumb {
	margin: 16px 0 0;
}
.rosenberg-product__hero-media {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
}
.rosenberg-product__hero-image {
	max-height: 48vh;
	max-width: min(55vw, 603px);
	width: auto;
	height: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
	will-change: transform, opacity;
}
.rosenberg-product__hero-media.is-zoomable .rosenberg-product__hero-image {
	cursor: zoom-in;
}
.rosenberg-product__hero-media.is-zooming .rosenberg-product__hero-image {
	cursor: zoom-out;
}
.rosenberg-product__hero-foot {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
}
.rosenberg-product__hero-ref {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-family: var(--rd-font-nav);
	color: var(--rd-ink);
}
.rosenberg-product__hero-ref-spec {
	font-size: .72rem;
	letter-spacing: .32em;
	text-transform: uppercase;
	opacity: .72;
}
.rosenberg-product__hero-ref-id {
	font-size: .62rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	opacity: .55;
}
.rosenberg-product__hero-cta {
	display: inline-block;
	padding: 12px 20px;
	border: 1px solid var(--rd-navy);
	color: var(--rd-navy);
	font-family: var(--rd-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	border-radius: 10px;
	background: #fff;
	transition: background .2s, color .2s, border-color .2s;
	white-space: nowrap;
}
.rosenberg-product__hero-cta:hover,
.rosenberg-product__hero-cta:focus-visible {
	background: var(--rd-gold);
	border-color: var(--rd-gold);
	color: #fff;
	outline: none;
}
.rosenberg-product__hero-bar {
	position: relative;
	width: 1px;
	height: 56px;
	cursor: pointer;
	background: linear-gradient(to bottom,
		color-mix(in srgb, var(--rd-gold) 12%, transparent),
		color-mix(in srgb, var(--rd-gold) 38%, transparent));
	overflow: visible;
}
.rosenberg-product__hero-bar::before {
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -16px;
	right: -16px;
}
.rosenberg-product__hero-bar:focus-visible {
	outline: 1px solid var(--rd-gold);
	outline-offset: 8px;
}
.rosenberg-product__hero-bar::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 5px;
	height: 5px;
	margin-left: -2.5px;
	border-radius: 50%;
	background: var(--rd-gold);
	box-shadow: 0 0 6px color-mix(in srgb, var(--rd-gold) 60%, transparent);
	animation: rosenberg-hero-scroll-dot 2s cubic-bezier(.65, 0, .35, 1) infinite;
}
@keyframes rosenberg-hero-scroll-dot {
	0%   { transform: translateY(28px); opacity: 0; }
	15%  { opacity: 1; }
	78%  { opacity: 1; }
	100% { transform: translateY(56px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.rosenberg-product__hero-bar::after { animation: none; opacity: .7; }
}
.rosenberg-product__hero-gallery {
	position: absolute;
	left: 4vw;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rosenberg-product__hero-thumb {
	width: 62px;
	height: 62px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: .4;
	overflow: hidden;
	transition: opacity .35s;
}
.rosenberg-product__hero-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.rosenberg-product__hero-thumb:hover { opacity: .7; }
.rosenberg-product__hero-thumb.is-active { opacity: 1; }
@media (max-width: 860px) {
	.rosenberg-product__hero { height: auto; min-height: 0; padding-top: clamp(28px, 4vh, 56px); }
	.rosenberg-product__hero-media { padding: 4vh 0; flex-direction: column; }
	.rosenberg-product__hero-image { max-width: 66vw; max-height: 45vh; order: -1; }
	.rosenberg-product__hero-gallery {
		position: static;
		transform: none;
		flex-direction: row;
		justify-content: center;
		gap: 14px;
		margin-top: 3vh;
	}
	.rosenberg-product__hero-thumb { width: 50px; height: 50px; }
}

/* ---------- Info column (right; image is order:-1) ---------- */
.rosenberg-product__info {
	max-width: 540px;
}
.rosenberg-product__title {
	font-family: var(--rd-font-nav);
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 40px);
	line-height: 1.08;
	letter-spacing: .01em;
	text-transform: uppercase;
	margin: 0 0 26px;
}

/* Breadcrumb */
.rosenberg-product__breadcrumb {
	font-size: 9px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--rd-muted);
	margin-bottom: 34px;
}
.rosenberg-product__breadcrumb-label { display: none; }
.rosenberg-product__breadcrumb a {
	text-decoration: none;
}
.rosenberg-product__breadcrumb a:hover { color: var(--rd-ink); }
.rosenberg-product__breadcrumb-sep { margin: 0 12px; opacity: .5; }
.rosenberg-product__breadcrumb--mobile { display: none; }
.rosenberg-product__hero-foot .rosenberg-product__breadcrumb {
	margin: 2px 0 0;
}

/* Lede (product_abbreviation) */
.rosenberg-product__subtitle {
	text-align: justify;
	text-align-last: left;
	hyphens: auto;
	margin: 0 0 6px;
	font-size: 17px;
	line-height: 1.95;
	color: var(--rd-ink);
}

/* Accordions / details */
.rosenberg-product__accordions {
	margin-top: 44px;
}
@media (min-width: 861px) {
	.rosenberg-product__accordions--details {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(28px, 4vw, 70px);
		align-items: start;
	}
	.rosenberg-product__accordions--details .rosenberg-product__accordion {
		border-top: 1px solid var(--rd-hairline);
		border-bottom: 0;
	}
}
.rosenberg-product__accordion {
	border-bottom: 1px solid var(--rd-hairline);
}
.rosenberg-product__accordion:first-child {
	border-top: 1px solid var(--rd-hairline);
}
.rosenberg-product__accordion-summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 0;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--rd-ink);
}
.rosenberg-product__accordion-summary::-webkit-details-marker { display: none; }
.rosenberg-product__accordion-summary::after {
	content: "+";
	float: right;
	color: var(--rd-gold);
	font-weight: 700;
	font-size: 1.35em;
	line-height: 1;
}
.rosenberg-product__accordion[open] .rosenberg-product__accordion-summary::after { content: "\2013"; }
.rosenberg-product__accordion-content {
	padding-bottom: 26px;
}
.rosenberg-product__accordion-content p {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.85;
	color: #44506a;
	max-width: none;
	text-align: justify;
	text-align-last: left;
	hyphens: auto;
}
.rosenberg-product__accordion-content a { color: var(--rd-gold); }

.rosenberg-product__details { margin: 0; }
.rosenberg-product__details-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 26px;
	padding: 18px 2px;
	border-bottom: 1px solid rgba(9, 23, 52, .08);
}
.rosenberg-product__details-row:last-child { border-bottom: 0; }
.rosenberg-product__details-label {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--rd-navy);
	white-space: nowrap;
}
.rosenberg-product__details-value {
	font-family: var(--rd-font);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .02em;
	color: var(--rd-ink);
	text-align: right;
}

/* "All Details" — full-width block below the editorial copy */
.rosenberg-product__details-block {
	border-top: 1px solid var(--rd-hairline);
	padding: clamp(28px, 4vw, 56px) var(--rd-pad);
}
.rosenberg-product__details-block-inner {
	max-width: 1400px;
	margin: 0 auto;
}
/* Spec panel — sits in the last editorial section, replacing the image */
.rosenberg-product__details-panel {
	align-self: start;
	border: 1px solid rgba(9, 23, 52, .08);
	padding: clamp(30px, 4vw, 64px);
	background: var(--rd-surface);
}

/* CTA — hairline link, not a shop button */
.rosenberg-product__cta {
	margin-top: 44px;
	text-align: right;
}
.rosenberg-product__button,
.rosenberg-product__button--primary {
	display: inline-block;
	font-size: 12px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--rd-ink);
	padding: 0 0 9px;
	border: 0;
	border-bottom: 1px solid var(--rd-ink);
	border-radius: 0;
	background: none;
	transition: color .25s, border-color .25s;
}
.rosenberg-product__button:hover,
.rosenberg-product__button--primary:hover {
	color: var(--rd-gold);
	border-color: var(--rd-gold);
}

/* ---------- Stage (right) — floating object + reflection ---------- */
.rosenberg-product__stage {
	order: -1; /* image column on the left, title/info on the right */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.rosenberg-product__gallery {
	position: relative;
	width: 100%;
	max-width: 880px;
}
.rosenberg-product__gallery-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.rosenberg-product__gallery-track::-webkit-scrollbar { display: none; }
.rosenberg-product__slide {
	flex: 0 0 100%;
	scroll-snap-align: center;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.rosenberg-product__image {
	width: 100%;
	max-height: 48vh;
	object-fit: contain;
	-webkit-box-reflect: below 1px linear-gradient(transparent 58%, rgba(0, 0, 0, .16));
}
.rosenberg-product__slide--video .rosenberg-product__image { -webkit-box-reflect: none; }

/* Certification badge — folded into the caption, hidden here */
.rosenberg-product__badge { display: none; }

/* Prev/next arrows — boutique relies on the thumbnail strip */
.rosenberg-product__gallery-nav { display: none; }

/* Video */
.rosenberg-product__video-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, .85);
	border-radius: 50%;
	background: rgba(9, 23, 52, .28);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s;
}
.rosenberg-product__video-play:hover { background: rgba(9, 23, 52, .5); }
.rosenberg-product__slide.is-playing .rosenberg-product__video-play { display: none; }
.rosenberg-product__video-el {
	width: 100%;
	max-height: 52vh;
	object-fit: contain;
}

/* Caption — centered, below the thumbnail strip */
.rosenberg-product__caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 7px;
	width: 100%;
	max-width: 880px;
	margin-top: 26px;
}
.rosenberg-product__caption-spec {
	font-size: 14px;
	letter-spacing: .26em;
	text-transform: uppercase;
}
.rosenberg-product__caption-sub {
	font-size: 11px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--rd-muted);
}
.rosenberg-product__caption-no {
	font-size: 11px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--rd-gold);
	margin-top: 3px;
}

/* Thumbnail strip (the dots carry an image) */
.rosenberg-product__gallery-dots {
	display: flex;
	justify-content: center;
	gap: 22px;
	width: 100%;
	max-width: 880px;
	margin-top: 20px;
}
.rosenberg-product__gallery-dot {
	width: 58px;
	height: 58px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	opacity: .42;
	transition: opacity .25s;
}
.rosenberg-product__gallery-dot:hover,
.rosenberg-product__gallery-dot.is-active { opacity: 1; }
.rosenberg-product__gallery-dot-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ---------- Editorial description ---------- */
.rosenberg-product__editorial {
	/* full-width: text-only bands span the viewport via width:100% (no 100vw
	   breakout, so position:sticky stays intact). Inner sections re-pad. */
	padding: clamp(60px, 10vw, 150px) 0;
}
/* When the editorial follows the lede, drop its top padding so the gap
   after the lede text matches the symmetric gap above it. */
.rosenberg-product__lede + .rosenberg-product__editorial {
	padding-top: 0;
}
/* When the closing CTA follows the editorial, drop the editorial's bottom
   padding so the button sits directly under the last editorial text. */
.rosenberg-product__editorial:has(+ .rosenberg-product__cta-band) {
	padding-bottom: 0;
}
.rosenberg-product__editorial-container {
	max-width: min(90vw, 1600px);
	margin: 0 auto;
}
.rosenberg-product__editorial-hero-title,
.rosenberg-product__editorial-hero-title h2 {
	font-family: var(--rd-font-nav);
	font-weight: 400;
	font-size: clamp(26px, 3.4vw, 46px);
	line-height: 1.14;
	text-transform: uppercase;
	letter-spacing: .02em;
	text-align: center;
	margin: 0 0 60px;
}
.rosenberg-product__editorial-hero-figure {
	margin: 0 auto clamp(60px, 8vw, 120px);
	max-width: 760px;
}
/* Lede relocated into the product hero (below the subtitle) */
.rosenberg-product__hero-lede {
	margin-top: 26px;
}
.rosenberg-product__editorial-image {
	width: 100%;
	object-fit: contain;
	-webkit-box-reflect: below 1px linear-gradient(transparent 62%, rgba(0, 0, 0, .14));
}
.rosenberg-product__editorial-lede-top p,
.rosenberg-product__editorial-rest-text p,
.rosenberg-product__editorial-section p {
	text-align: justify;
	text-align-last: left;
	hyphens: auto;
	margin: 0 0 28px;
	max-width: 62ch;
	line-height: 2;
	color: #2c3a52;
}
.rosenberg-product__editorial-lede-top p:first-child { text-align-last: auto; }
.rosenberg-product__editorial-section h2,
.rosenberg-product__editorial-rest-text h2 {
	font-family: var(--rd-font-nav);
	font-weight: 400;
	font-size: clamp(26px, 2.8vw, 44px);
	line-height: 1.12;
	letter-spacing: .015em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 clamp(24px, 2.5vw, 40px);
}
/* With-image (2-col) sections: H2 left-aligned (justified reads poorly) */
.rosenberg-product__editorial-section--with-image h2 {
	text-align: left;
}
/* Rest sections: one per H2+P block. Sections separated by the flex gap;
   each pairs with a gallery image (2-col) or runs full width (text only). */
.rosenberg-product__editorial-rest {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 4vw, 64px);
}
.rosenberg-product__editorial-section--with-image {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 110px);
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 var(--rd-pad);
}
.rosenberg-product__editorial-section--text-only { display: block; }
.rosenberg-product__editorial-section--text-only p { max-width: none; }
.rosenberg-product__editorial-section-figure { margin: 0; }
.rosenberg-product__editorial-lede-top p:first-child::first-letter {
	font-family: var(--rd-font-nav);
	font-size: 4em;
	line-height: .8;
	float: left;
	padding: 6px 14px 0 0;
	color: var(--rd-ink);
}

/* Editorial image: enters slightly oversized, settles into the column */
.rosenberg-product__editorial-image {
	transition: transform 1.15s cubic-bezier(.16, 1, .3, 1), opacity .9s ease;
}
/* Non-destructive: the image is always visible; "armed" only enlarges it
   slightly so it can settle into the column. A JS/IO failure degrades to a
   marginally larger (never hidden) image. */
.rosenberg-product__editorial-image.rd-armed {
	transform: scale(1.08);
}
.rosenberg-product__editorial-image.is-in {
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.rosenberg-product__editorial-image { transition: none; transform: none; opacity: 1; }
}

/* Section rhythm — image+text stays white; text-only = tinted full-bleed band
   with a soft gradient where grey meets white. */
.rosenberg-product__editorial-section--text-only {
	position: relative;
	width: 100%;
	padding: clamp(34px, 5vw, 68px) var(--rd-pad);
	background: var(--rd-tint);
}
.rosenberg-product__editorial-section--text-only > * {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.rosenberg-product__editorial-section--text-only::before,
.rosenberg-product__editorial-section--text-only::after,
.rosenberg-product__details-block::before,
.rosenberg-product__details-block::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 150px;
	pointer-events: none;
	z-index: 0;
}
.rosenberg-product__editorial-section--text-only::before,
.rosenberg-product__details-block::before {
	top: 0;
	background: linear-gradient(180deg, var(--rd-surface), var(--rd-tint));
}
.rosenberg-product__editorial-section--text-only::after,
.rosenberg-product__details-block::after {
	bottom: 0;
	background: linear-gradient(180deg, var(--rd-tint), var(--rd-surface));
}

/* Accordions block (text only) becomes a tinted full-bleed band */
.rosenberg-product__details-block {
	position: relative;
	border-top: 0;
	background: var(--rd-tint);
}
.rosenberg-product__details-block-inner {
	position: relative;
	z-index: 1;
}

/* Ribbon — sticky spec strip (mirrors the HTML demo .ribbon) */
.rosenberg-product__ribbon {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--rd-surface);
	border-top: 1px solid var(--rd-hairline);
	border-bottom: 1px solid var(--rd-hairline);
}
.rosenberg-product__ribbon ul {
	display: flex;
	list-style: none;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}
.rosenberg-product__ribbon li {
	flex: 1;
	text-align: center;
	padding: 20px 10px;
	border-left: 1px solid var(--rd-hairline);
}
.rosenberg-product__ribbon li:first-child { border-left: 0; }
.rosenberg-product__ribbon b {
	display: block;
	font-family: var(--rd-font);
	font-weight: 400;
	font-size: clamp(1rem, 1.5vw, 1.4rem);
	letter-spacing: .02em;
	color: var(--rd-ink);
}
.rosenberg-product__ribbon span {
	display: block;
	margin-top: 4px;
	font-family: var(--rd-font-nav);
	font-size: 10px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--rd-muted);
}
@media (max-width: 860px) {
	.rosenberg-product__ribbon ul { flex-wrap: wrap; }
	.rosenberg-product__ribbon li { flex: 1 0 50%; border-top: 1px solid var(--rd-hairline); }
	.rosenberg-product__ribbon li:nth-child(-n+2) { border-top: 0; }
}

/* Connective divider between editorial sections (mirrors the demo .rule) */
.rosenberg-product__rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	padding: clamp(6px, 1.2vw, 16px) var(--rd-pad);
}
.rosenberg-product__rule i {
	height: 1px;
	width: clamp(60px, 18vw, 240px);
	background: var(--rd-gold);
	opacity: .55;
}
.rosenberg-product__rule span {
	font-family: var(--rd-font-nav);
	font-size: 12px;
	letter-spacing: .42em;
	text-transform: uppercase;
	color: var(--rd-gold-hover, #a98a3c);
}

/* Roman-numeral kicker above each editorial body (mirrors the demo .idx) */
.rosenberg-product__editorial-kicker {
	display: block;
	font-family: var(--rd-font-nav);
	font-size: 11px;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--rd-gold-hover, #a98a3c);
	margin-bottom: 22px;
}

/* Alternate the image side on every other spread (demo .spread.reverse) */
.rosenberg-product__editorial-section--with-image.is-reverse { direction: rtl; }
.rosenberg-product__editorial-section--with-image.is-reverse > * { direction: ltr; }

/* "Specification" eyebrow above the closing spec sheet */
.rosenberg-product__details-eyebrow {
	display: block;
	font-family: var(--rd-font-nav);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--rd-gold-hover, #a98a3c);
	margin-bottom: 22px;
}

/* Lede — tinted full-bleed band with drop cap (mirrors the HTML demo) */
.rosenberg-product__lede {
	position: relative;
	background: var(--rd-tint);
	padding: clamp(70px, 13vh, 150px) var(--rd-pad);
}
.rosenberg-product__lede::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 150px;
	pointer-events: none;
	z-index: 0;
	bottom: 0;
	background: linear-gradient(180deg, var(--rd-tint), var(--rd-surface));
}
.rosenberg-product__lede-inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
/* matches the HTML demo .lede p exactly */
.rosenberg-product__lede-inner p {
	font-family: var(--rd-font);
	font-weight: 300;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.66;
	color: #26314b;
	margin: 0;
	text-align: justify;
	text-align-last: left;
	hyphens: auto;
}
.rosenberg-product__lede-inner p:first-of-type::first-letter {
	float: left;
	font-family: var(--rd-font);
	font-size: 5.4rem;
	line-height: .78;
	padding: 10px 20px 0 0;
	color: var(--rd-gold);
	font-weight: 400;
}

/* Scroll progress hairline (demo signature) */
.rosenberg-product__progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 120;
	pointer-events: none;
	background: transparent;
}
.rosenberg-product__progress span {
	display: block;
	height: 100%;
	width: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: var(--rd-gold-gradient, var(--rd-gold));
}

/* Closing CTA band — tinted full-bleed, gradient edges (demo .cta) */
.rosenberg-product__cta-band {
	position: relative;
	background: transparent;
	padding: clamp(24px, 5vh, 56px) var(--rd-pad) clamp(48px, 9vh, 110px);
	text-align: center;
}
.rosenberg-product__cta-band-inner { position: relative; z-index: 1; }
.rosenberg-product__cta-band p {
	font-family: var(--rd-font);
	font-weight: 300;
	font-size: clamp(1.4rem, 3vw, 2.4rem);
	line-height: 1.42;
	color: var(--rd-ink);
	max-width: 20ch;
	margin: 0 auto 44px;
}
.rosenberg-product__cta-band-link {
	display: inline-block;
	padding: 12px 20px;
	border: 1px solid var(--rd-navy);
	color: var(--rd-navy);
	font-family: var(--rd-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	border-radius: 10px;
	background: #fff;
	transition: background .2s, color .2s, border-color .2s;
	white-space: nowrap;
}
.rosenberg-product__cta-band-link:hover,
.rosenberg-product__cta-band-link:focus-visible {
	background: var(--rd-gold);
	border-color: var(--rd-gold);
	color: #fff;
	outline: none;
}
/* Inline variant: lives inside the editorial body column, under the text */
.rosenberg-product__cta-band-link--inline {
	margin-top: clamp(20px, 3vw, 36px);
}
@media (max-width: 540px) {
	.rosenberg-product__cta-band-link--inline {
		display: block;
		width: 100%;
		text-align: center;
		border-width: 0.5px;
	}
}

/* Rule divider draws in on scroll (demo behaviour) */
.rosenberg-product__rule i {
	width: 0;
	transition: width 1.1s cubic-bezier(.16, 1, .3, 1);
}
.rosenberg-product__rule.is-in i {
	width: clamp(60px, 18vw, 240px);
}
@media (prefers-reduced-motion: reduce) {
	.rosenberg-product__rule i { width: clamp(60px, 18vw, 240px); transition: none; }
}

/* ---------- Related ---------- */
.rosenberg-product__related:has(+ .rosenberg-product__details-block) {
	padding-bottom: clamp(28px, 4vw, 56px);
}
.rosenberg-product__related {
	border-top: 1px solid var(--rd-hairline);
	padding: clamp(60px, 9vw, 130px) var(--rd-pad);
	text-align: center;
}
.rosenberg-product__related-title {
	font-family: var(--rd-font-nav);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: .34em;
	text-transform: uppercase;
	margin: 0 0 70px;
}
.rosenberg-product__related-slider {
	position: relative;
	padding: 0 30px;
}
/* Related slider arrows (desktop + mobile) */
.rosenberg-product__related-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--rd-navy);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	appearance: none;
	-webkit-appearance: none;
	transition: opacity .2s ease, transform .2s ease;
}
.rosenberg-product__related-arrow > span { line-height: 1; }
.rosenberg-product__related-arrow--prev { left: 0; }
.rosenberg-product__related-arrow--next { right: 0; }
.rosenberg-product__related-arrow:disabled { opacity: .2; cursor: default; }
.rosenberg-product__related-arrow:focus-visible {
	outline: 1px solid var(--rd-gold);
	outline-offset: 4px;
}
.rosenberg-related-grid {
	max-width: none;
	margin: 0 auto;
	display: flex;
	gap: clamp(20px, 2.2vw, 36px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 8px;
}
.rosenberg-related-grid::-webkit-scrollbar { display: none; }
.rosenberg-related-card {
	flex: 0 0 calc((100% - (2 * clamp(20px, 2.2vw, 36px))) / 3);
	scroll-snap-align: start;
}
.rosenberg-related-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: inherit;
	text-decoration: none;
}
.rosenberg-related-card__figure {
	margin: 0 0 18px;
	width: 100%;
}
.rosenberg-related-card__figure img {
	width: 50%;
	margin: 0 auto;
	display: block;
	aspect-ratio: 1;
	object-fit: contain;
	transition: transform .4s ease;
}
@media (min-width: 541px) {
	.rosenberg-related-card__figure img { width: 35%; }
}
.rosenberg-related-card:hover .rosenberg-related-card__figure img { transform: scale(1.03); }
.rosenberg-related-card__title {
	font-family: var(--rd-font);
	font-weight: 300;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	line-height: 1.5;
	margin: 0;
	max-width: 22ch;
}
@media (min-width: 541px) {
	.rosenberg-related-card__title {
		max-width: 34ch;
		letter-spacing: .08em;
	}
}

/* ---------- Sticky CTA (mobile) ---------- */
.rosenberg-product__sticky-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.rosenberg-product__container {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.rosenberg-product__stage { order: -1; }
	.rosenberg-product__image,
	.rosenberg-product__video-el { max-height: 34vh; }
	.rosenberg-product__caption { margin-top: 16px; align-items: center; }
	.rosenberg-product__gallery-dots { margin-top: 14px; justify-content: center; }
	.rosenberg-product__info { max-width: none; }
	.rosenberg-product__title {
		text-align: center;
		font-size: clamp(24px, 7vw, 34px);
		margin-bottom: 18px;
	}
	.rosenberg-product__hero .rosenberg-product__title {
		text-align: center;
		font-size: clamp(20px, 5.4vw, 30px);
	}
	.rosenberg-product__subtitle,
	.rosenberg-product__editorial-lede-top p,
	.rosenberg-product__editorial-rest-text p,
	.rosenberg-product__editorial-section p {
		text-align: left;
		text-align-last: auto;
	}
	/* Lede: centred text + huge drop cap reads badly on narrow screens */
	.rosenberg-product__lede-inner,
	.rosenberg-product__lede-inner p {
		text-align: left;
	}
	.rosenberg-product__lede-inner p:first-of-type::first-letter {
		font-size: 3.4rem;
		padding: 6px 14px 0 0;
	}
	.rosenberg-product__breadcrumb { text-align: center; }
	.rosenberg-product__breadcrumb--desktop { display: none; }
	.rosenberg-product__breadcrumb--mobile { display: block; }
	.rosenberg-product__cta { text-align: center; }
	.rosenberg-product__editorial-section--with-image {
		grid-template-columns: 1fr;
	}
	.rosenberg-product__editorial-section--with-image h2 {
		text-align: center;
	}
	/* Details section: spec panel above the text on mobile */
	.rosenberg-product__editorial-section--details {
		margin-top: clamp(-48px, -6vw, -28px);
	}
	.rosenberg-product__editorial-section--details .rosenberg-product__details-panel {
		order: -1;
		margin-bottom: clamp(24px, 6vw, 44px);
	}
	.rosenberg-product__rule:has(+ .rosenberg-product__editorial-section--details) {
		padding-top: 0;
		padding-bottom: 0;
	}
	/* Drop the bottom margin of the last paragraph in the section preceding
	   the spec panel so the gap above doesn't compound. */
	.rosenberg-product__editorial-section:has(+ .rosenberg-product__rule + .rosenberg-product__editorial-section--details) .rosenberg-product__editorial-section-body > p:last-child {
		margin-bottom: 0;
	}
	.rosenberg-product__editorial-hero-figure {
		max-width: 420px;
	}
	.rosenberg-product__sticky-cta {
		display: flex;
		align-items: center;
		gap: 16px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 50;
		background: rgba(255, 255, 255, .94);
		backdrop-filter: blur(8px);
		border-top: 1px solid var(--rd-hairline);
		padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
	}
	.rosenberg-product__sticky-cta-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid color-mix(in srgb, var(--rd-navy) 35%, white 65%);
		border-radius: 10px;
		background: #fff;
		color: color-mix(in srgb, var(--rd-navy) 50%, white 50%);
		flex: 0 0 auto;
	}
	.rosenberg-product__sticky-cta-button {
		flex: 1;
		text-align: center;
		font-size: 12px;
		letter-spacing: .22em;
		text-transform: uppercase;
		color: var(--rd-navy);
		text-decoration: none;
		padding: 14px 0;
		border: 1px solid color-mix(in srgb, var(--rd-navy) 35%, white 65%);
		border-radius: 10px;
		background: #fff;
	}
}
@media (max-width: 540px) {
	/* Related: swipeable slider showing 2 items per view */
	.rosenberg-related-grid {
		gap: 16px;
	}
	.rosenberg-related-card { flex: 0 0 calc(50% - 8px); }
	.rosenberg-product__gallery-dots { gap: 16px; }
	.rosenberg-product__gallery-dot { width: 48px; height: 48px; }
}
