.site-main--front {
	padding-block: 0;
}

.home-hero {
	padding-top: var(--header-offset);
	background: var(--white);
}

.home-hero__frame {
	--hero-inset: 1.15rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-height: 72vh;
	padding: 5.25rem var(--hero-inset) var(--hero-inset);
	overflow: hidden;
	border-radius: var(--r-lg);
	background-color: var(--rose);
	background-image: linear-gradient(155deg, var(--rose) 0%, var(--lavender) 48%, var(--gold-soft) 100%);
}

.home-hero__photo {
	position: absolute;
	inset: 0;
}

.home-hero__image,
.home-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__video {
	display: block;
	position: absolute;
	inset: 0;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(42, 37, 33, 0.12) 0%,
		rgba(42, 37, 33, 0.18) 42%,
		rgba(42, 37, 33, 0.58) 100%
	);
}

.home-hero__proof,
.home-hero__content,
.home-hero__social,
.home-hero__clip,
.home-hero__cats {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.home-hero__proof {
	margin-bottom: 0;
}

.home-hero__proof-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 22rem;
	padding: 0.45rem 0.75rem;
	border-radius: var(--r-pill);
	background: var(--white);
	color: var(--ink);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.home-hero__proof-dot {
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: var(--r-pill);
	background: var(--gold);
}

.home-hero__content {
	display: grid;
	gap: 0.85rem;
	max-width: 34rem;
	margin-top: auto;
	padding: 0;
}

.home-hero__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 8vw, 3.2rem);
	font-weight: 400;
	line-height: 1.12;
	overflow-wrap: break-word;
	color: var(--white);
}

.home-hero__title .accent,
.home-hero__title i,
.home-hero__title em {
	color: var(--gold);
	font-style: normal;
}

.home-hero__lead {
	max-width: 28rem;
	overflow-wrap: break-word;
	color: rgba(255, 255, 255, 0.84);
}

.home-hero__social {
	display: none;
}

.home-hero__clip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	width: 100%;
	max-width: 22rem;
	margin: 0;
	padding: 0.75rem;
	border-radius: var(--r-md);
	background: var(--white);
}

.home-hero__clip-copy {
	min-width: 0;
}

.home-hero__clip-kicker {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.home-hero__clip-name {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--ink);
	overflow-wrap: anywhere;
}

.home-hero__clip-media {
	position: relative;
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: var(--r-sm);
	background: var(--surface);
}

.home-hero__clip-media img,
.home-hero__clip-video,
.home-hero__clip-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__clip-video {
	display: block;
	object-position: center;
}

.home-hero__clip-placeholder {
	display: block;
	background: linear-gradient(160deg, var(--gold-soft), var(--lavender));
}

.home-hero__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	background: var(--ink-veil);
}

.home-hero__play svg {
	width: 22px;
	height: 22px;
}

.home-hero__cats {
	display: none;
}

@media (max-width: 767px) {
	.home-hero .container {
		padding-inline: 12px;
	}

	.home-hero__frame {
		--hero-inset: 1rem;
		min-height: 78vh;
	}

	.home-hero__lead {
		font-size: 0.9375rem;
		line-height: 1.45;
	}

	.home-ingredient {
		gap: 0.95rem;
		padding: 1.1rem 0;
	}

	.home-ingredient__media {
		flex-basis: 5.75rem;
		width: 5.75rem;
		height: 4.5rem;
	}

	.home-ingredient__copy h3 {
		font-size: 1.25rem;
	}

	.home-ingredient__copy p {
		font-size: 0.9375rem;
	}

	.home-usp__slogan br {
		display: none;
	}

	.home-faq__cta,
	.home-ingredients__cta {
		min-width: 0;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.home-hero__frame {
		--hero-inset: 1.5rem;
		min-height: 78vh;
	}

	.home-hero__clip {
		margin-left: auto;
	}
}

@media (min-width: 1024px) {
	.home-hero {
		padding-top: var(--header-offset);
		padding-bottom: 0;
	}

	.home-hero__frame {
		--hero-inset: 2.5rem;
		display: grid;
		grid-template-columns: minmax(0, 1fr) 17.5rem;
		grid-template-rows: minmax(0, 1fr) auto auto;
		align-content: stretch;
		column-gap: 2rem;
		row-gap: 1.15rem;
		min-height: min(86vh, 920px);
		padding: 6.75rem var(--hero-inset) var(--hero-inset);
		overflow: hidden;
		border-radius: var(--r-hero);
	}

	.home-hero__photo {
		border-radius: inherit;
		overflow: hidden;
	}

	.home-hero__overlay {
		background: linear-gradient(
			115deg,
			rgba(42, 37, 33, 0.08) 0%,
			rgba(42, 37, 33, 0.2) 48%,
			rgba(42, 37, 33, 0.55) 100%
		);
	}

	.home-hero__proof {
		grid-column: 1;
		grid-row: 1;
		align-self: start;
		margin-bottom: 0;
	}

	.home-hero__content {
		position: absolute;
		left: var(--hero-inset);
		right: calc(17.5rem + 2rem + var(--hero-inset));
		bottom: var(--hero-inset);
		z-index: 2;
		max-width: 48rem;
		margin-top: 0;
	}

	.home-hero__title {
		font-size: clamp(2.5rem, 3.5vw, 4rem);
	}

	.home-hero__title-start,
	.home-hero__title-end {
		display: block;
	}

	.home-hero__title-start,
	.home-hero__title-end {
		white-space: nowrap;
	}

	.home-hero__lead-start,
	.home-hero__lead-end {
		display: block;
	}

	.home-hero__social {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		grid-column: 2;
		grid-row: 1;
		align-self: center;
		justify-self: end;
	}

	.home-hero__social-label {
		font-size: 0.6875rem;
		font-weight: 500;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--white);
		writing-mode: vertical-rl;
		transform: rotate(180deg);
	}

	.home-hero__social ul {
		display: grid;
		gap: 0.65rem;
	}

	.home-hero__social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: var(--r-pill);
		background: var(--white);
		color: var(--ink);
	}

	.home-hero__social-link svg {
		width: 20px;
		height: 20px;
	}

	.home-hero__clip {
		grid-column: 2;
		grid-row: 2;
		width: 100%;
		max-width: none;
		margin: 0;
		justify-self: stretch;
		align-self: end;
	}

	.home-hero__cats {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: flex-end;
		gap: 0.5rem;
		grid-column: 2;
		grid-row: 3;
		align-self: end;
		width: 100%;
		margin: 0;
		padding: 0;
		overflow: visible;
		background: transparent;
	}

	.home-hero__cat {
		flex: 0 0 auto;
		display: inline-flex;
		align-items: center;
		min-height: 44px;
		padding: 0.55rem 1.05rem;
		border: 1px solid var(--line);
		border-radius: var(--r-pill);
		background: var(--white);
		color: var(--ink);
		font-size: 0.8125rem;
		font-weight: 500;
	}

	.home-hero__cat:hover {
		border-color: var(--gold-deep);
		color: var(--gold-deep);
	}
}

@media (min-width: 1280px) {
	.home-hero__title {
		font-size: clamp(2.75rem, 3.4vw, 3.9rem);
	}
}

@media (min-width: 1440px) {
	.home-hero__frame {
		--hero-inset: 3rem;
		grid-template-columns: minmax(0, 1fr) 18rem;
		padding-top: 7.25rem;
	}

	.home-hero__content {
		right: calc(18rem + 2rem + var(--hero-inset));
	}
}

.home-hero--simple {
	padding-top: var(--header-offset);
}

.home-hero--simple .home-hero__frame {
	justify-content: center;
	align-items: center;
	padding-top: var(--hero-inset);
	text-align: center;
}

.home-hero--simple .home-hero__proof,
.home-hero--simple .home-hero__content {
	width: 100%;
	max-width: 40rem;
	margin-inline: auto;
}

.home-hero--simple .home-hero__content {
	margin-top: 0;
	justify-items: center;
}

.home-hero--simple .home-hero__lead {
	max-width: 42rem;
}

.home-hero__series {
	display: grid;
	justify-items: center;
	gap: 0.7rem;
	width: 100%;
	margin-top: 0.15rem;
}

.home-hero__mechanisms {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__mechanisms li {
	padding: 0.3rem 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.94);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	line-height: 1.35;
	backdrop-filter: blur(8px);
}

.home-hero__protocol {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	gap: 0.35rem 0.7rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.86rem;
	line-height: 1.45;
}

.home-hero__protocol-label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.home-hero__protocol-flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	gap: 0.28rem 0.42rem;
}

.home-hero__protocol-arrow {
	color: var(--gold);
	opacity: 0.88;
}

.home-hero--simple .home-hero__social {
	display: none;
}

@media (min-width: 1024px) {
	.home-hero--simple .home-hero__frame {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem;
		padding: var(--hero-inset);
	}

	.home-hero--simple .home-hero__proof {
		grid-column: auto;
		grid-row: auto;
		align-self: center;
	}

	.home-hero--simple .home-hero__content {
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		max-width: 54rem;
		margin: 0 auto;
		text-align: center;
	}

	.home-hero--simple .home-hero__title {
		max-width: 54rem;
	}

	.home-hero--simple .home-hero__title-start,
	.home-hero--simple .home-hero__title-end,
	.home-hero--simple .home-hero__lead-start,
	.home-hero--simple .home-hero__lead-end {
		display: inline;
		white-space: normal;
	}
}

.home-section {
	padding-block: 4rem;
}

.home-section__header {
	display: grid;
	gap: 0.65rem;
	max-width: 38rem;
	margin-bottom: 1.75rem;
}

.home-section__header h2 {
	font-family: var(--font-display);
	font-weight: 500;
}

.home-section__header p {
	color: var(--ink-soft);
}

.home-bestsellers__header {
	max-width: 36rem;
	margin-inline: auto;
	text-align: center;
}

.home-bestsellers__more {
	display: flex;
	justify-content: center;
	margin: 2rem 0 0;
}

.home-series {
	--series-gap: 0.85rem;
	background: var(--white);
	padding-block: var(--series-gap) 2.5rem;
}

.home-series__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--series-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-series__card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	min-height: 0;
	border-radius: var(--r-md);
	background: var(--rose);
}

.home-series__media {
	position: absolute;
	inset: 0;
	transition: transform 0.4s ease;
}

.home-series__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-series__card:hover .home-series__media {
	transform: scale(1.04);
}

.home-series__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(42, 37, 33, 0.06) 24%, rgba(42, 37, 33, 0.58) 100%);
}

.home-series__name {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 4vw, 1.85rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--white);
	overflow-wrap: anywhere;
}

.home-cats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.home-cat {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	min-height: 0;
	border-radius: var(--r-md);
	border: 1px solid var(--line);
}

.home-cat__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 0.4s ease;
}

.home-cat.has-image .home-cat__media {
	background-image: var(--cat-image);
}

.home-cat__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-cat--rose .home-cat__media {
	background-color: var(--rose);
}

.home-cat--lavender .home-cat__media {
	background-color: var(--lavender);
}

.home-cat--gold .home-cat__media {
	background-color: var(--gold-soft);
}

.home-cat--cream .home-cat__media {
	background-color: var(--surface);
}

.home-cat:hover .home-cat__media {
	transform: scale(1.06);
}

.home-cat__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(42, 37, 33, 0.04) 20%, var(--ink-veil) 100%);
}

.home-cat__name {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1;
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.15;
	color: var(--white);
	overflow-wrap: anywhere;
}

.home-bestsellers:not(.is-filter-ready) .product-card:not([data-home-default]) {
	display: none;
}

.home-bestsellers .catalog-tabs {
	margin-bottom: 1.5rem;
	margin-inline: calc(var(--gutter) * -1);
	padding-inline: var(--gutter);
}

@media (min-width: 768px) {
	.home-bestsellers .catalog-tabs {
		justify-content: center;
		flex-wrap: wrap;
		overflow: visible;
		margin-inline: 0;
		padding-inline: 0;
	}

	.home-bestsellers .catalog-grid,
	.home-bestsellers ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.home-bestsellers .catalog-grid,
	.home-bestsellers ul.products,
	.home-bestsellers ul.products.columns-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.home-bestsellers__empty {
	color: var(--ink-soft);
}

.home-ingredients {
	background: var(--white);
}

.home-ingredients__layout {
	display: grid;
	gap: 2.25rem;
}

.home-ingredients__intro {
	display: grid;
	justify-items: start;
	align-content: start;
	gap: 1rem;
	max-width: 34rem;
}

.home-ingredients__badge {
	background: var(--gold-soft);
	color: var(--gold-deep);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-ingredients__intro h2 {
	font-family: var(--font-display);
	font-weight: 400;
	max-width: 11em;
}

.home-ingredients__intro p {
	color: var(--ink-soft);
}

.home-ingredients__cta {
	margin-top: 0.5rem;
	min-width: min(100%, 16rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-ingredients__list {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-ingredient {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.home-ingredient:first-child {
	border-top: 1px solid var(--line);
}

.home-ingredient__media {
	flex: 0 0 7.5rem;
	overflow: hidden;
	width: 7.5rem;
	height: 5.75rem;
	border-radius: 14px;
	background: var(--gold-soft);
}

.home-ingredient__media--lavender {
	background: var(--lavender);
}

.home-ingredient__media--gold {
	background: var(--gold-soft);
}

.home-ingredient__media--rose {
	background: var(--rose);
}

.home-ingredient__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-ingredient__copy {
	min-width: 0;
}

.home-ingredient__copy h3 {
	margin-bottom: 0.35rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
}

.home-ingredient__copy p {
	color: var(--ink-soft);
	font-size: 1.0625rem;
	line-height: 1.45;
}

.home-usp {
	background: var(--white);
}

.home-usp__panel {
	display: grid;
	gap: 1.5rem;
	padding: 1.75rem;
	border-radius: var(--r-lg);
	background: #F3F4F1;
}

.home-usp__slogan {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4.2vw, 2.85rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.home-usp__facts {
	display: grid;
	gap: 1.15rem;
	padding-block: 1.25rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.home-usp__fact dt {
	margin-bottom: 0.35rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lavender-deep);
}

.home-usp__fact dd {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--ink);
}

.home-usp__perks {
	display: grid;
	gap: 0.9rem;
}

.home-usp__perk {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--ink);
	font-size: 0.975rem;
	line-height: 1.35;
}

.home-usp__perk-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: var(--r-pill);
	background: var(--gold-soft);
	color: var(--gold-deep);
}

.home-usp__perk-icon svg {
	width: 16px;
	height: 16px;
}

@media (min-width: 768px) {
	.home-section {
		padding-block: 5rem;
	}

	.home-series {
		--series-gap: 1.15rem;
		padding-block: var(--series-gap) 3.5rem;
	}

	.home-series__card {
		aspect-ratio: 16 / 10;
		border-radius: var(--r-lg);
	}

	.home-series__name {
		left: 1.35rem;
		right: 1.35rem;
		bottom: 1.25rem;
		font-size: clamp(1.7rem, 2.5vw, 2.4rem);
	}

	.home-cats__grid {
		gap: 1.15rem;
	}

	.home-cat {
		aspect-ratio: 4 / 5;
	}

	.home-usp__panel {
		gap: 1.75rem;
		padding: 2.5rem;
	}

	.home-usp__facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		padding-block: 1.5rem;
	}

	.home-usp__fact {
		padding-right: 1.5rem;
	}

	.home-usp__fact + .home-usp__fact {
		padding-left: 1.5rem;
		border-left: 1px solid var(--line);
	}

	.home-usp__fact dd {
		font-size: 1.7rem;
	}

	.home-usp__perks {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.home-series {
		padding-block: var(--series-gap) 4rem;
	}

	.home-series__card {
		aspect-ratio: 16 / 9;
		border-radius: var(--r-hero);
	}

	.home-series__name {
		left: 1.75rem;
		right: 1.75rem;
		bottom: 1.5rem;
		font-size: clamp(2rem, 2.2vw, 2.75rem);
	}

	.home-cats__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.home-cat {
		aspect-ratio: 3 / 4;
	}

	.home-cat__name {
		left: 0.8rem;
		right: 0.8rem;
		bottom: 0.8rem;
		font-size: 1.15rem;
	}

	.home-ingredients__layout {
		grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
		align-items: start;
		gap: 5rem;
	}

	.home-ingredients__intro {
		position: sticky;
		top: calc(var(--header-offset) + var(--header-bar-height) + 1.25rem);
	}

	.admin-bar .home-ingredients__intro {
		top: calc(32px + var(--header-offset) + var(--header-bar-height) + 1.25rem);
	}

	.home-ingredient {
		gap: 1.6rem;
		padding: 1.65rem 0;
	}

	.home-ingredient__media {
		flex-basis: 10rem;
		width: 10rem;
		height: 7.5rem;
	}

	.home-ingredient__copy h3 {
		font-size: 1.85rem;
	}

	.home-ingredient__copy p {
		font-size: 1.125rem;
	}

	.home-usp__panel {
		gap: 2rem;
		padding: 3rem;
		border-radius: var(--r-hero);
	}

	.home-usp__fact {
		padding-right: 2rem;
	}

	.home-usp__fact + .home-usp__fact {
		padding-left: 2rem;
	}

	.home-usp__perk {
		font-size: 1.05rem;
	}
}

.home-reviews {
	--reviews-gap: 1rem;
	background: var(--white);
	overflow: hidden;
}

.home-reviews__header {
	display: grid;
	justify-items: center;
	gap: 0.85rem;
	max-width: 40rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.home-reviews__header h2 {
	font-family: var(--font-display);
	font-weight: 500;
}

.home-reviews__header p {
	color: var(--ink-soft);
}

.home-reviews__badge {
	background: var(--gold-soft);
	color: var(--gold-deep);
}

.home-reviews__marquee {
	position: relative;
	display: grid;
	gap: var(--reviews-gap);
	width: 100%;
	overflow: hidden;
}

.home-reviews__marquee::before,
.home-reviews__marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(4.5rem, 12vw);
	z-index: 2;
	pointer-events: none;
}

.home-reviews__marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.home-reviews__marquee::after {
	right: 0;
	background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

.home-reviews__row {
	overflow: hidden;
	isolation: isolate;
}

.home-reviews__track {
	display: flex;
	align-items: stretch;
	gap: var(--reviews-gap);
	width: max-content;
	will-change: transform;
	backface-visibility: hidden;
}

.home-reviews__set {
	display: flex;
	align-items: stretch;
	gap: var(--reviews-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-reviews__track.is-ready {
	animation: home-reviews-marquee 42s linear infinite;
}

.home-reviews__row--alt .home-reviews__track.is-ready {
	animation-duration: 52s;
	animation-direction: reverse;
}

@keyframes home-reviews-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-1 * var(--reviews-shift, 50%)), 0, 0);
	}
}

@media (hover: hover) and (pointer: fine) {
	.home-reviews__marquee:hover .home-reviews__track {
		animation-play-state: paused;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-reviews__track.is-ready {
		animation: none;
		transform: none;
	}

	.home-hero__video {
		display: none;
	}
}

.home-review {
	display: flex;
	flex-direction: column;
	flex: 0 0 min(78vw, 340px);
	width: min(78vw, 340px);
	min-height: 17.5rem;
	box-sizing: border-box;
	padding: 1.35rem 1.3rem 1.2rem;
	background: #F3F4F1;
	border: 0;
	border-radius: var(--r-lg);
}

.home-review__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-shrink: 0;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.home-review__stars {
	display: flex;
	gap: 0.12rem;
}

.home-review__star {
	width: 16px;
	height: 16px;
	color: var(--line);
}

.home-review__star.is-on {
	color: var(--gold);
}

.home-review__star svg {
	display: block;
	width: 16px;
	height: 16px;
}

.home-review__quote {
	flex-shrink: 0;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	color: var(--ink);
}

.home-review__text {
	flex: 1 1 auto;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	overflow: hidden;
	color: var(--ink);
	font-style: normal;
}

.home-review__person {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1.15rem;
}

.home-review__avatar {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: var(--r-pill);
	object-fit: cover;
	background: var(--gold-soft);
}

.home-review__avatar--gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gold-soft);
	color: var(--gold-deep);
	font-size: 0.875rem;
	font-weight: 600;
}

.home-review__avatar--lavender {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--lavender);
	color: var(--lavender-deep);
	font-size: 0.875rem;
	font-weight: 600;
}

.home-review__avatar--rose {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--rose);
	color: var(--rose-deep);
	font-size: 0.875rem;
	font-weight: 600;
}

.home-review__avatar--cream {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cream);
	color: var(--ink);
	border: 1px solid var(--line);
	font-size: 0.875rem;
	font-weight: 600;
}

.home-review__author {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.home-review__author strong {
	font-weight: 600;
	color: var(--ink);
}

.home-review__author span {
	font-size: 0.8125rem;
	color: var(--ink-soft);
}

.home-faq {
	background: var(--white);
}

.home-faq__layout {
	display: grid;
	gap: 2rem;
}

.home-faq__intro {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 1rem;
	max-width: 34rem;
	margin: 0 auto;
	text-align: center;
}

.home-faq__badge {
	background: var(--gold);
	color: var(--ink);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-faq__intro h2 {
	font-family: var(--font-display);
	font-weight: 400;
	max-width: 14em;
}

.home-faq__intro p {
	color: var(--ink-soft);
}

.home-faq__cta {
	margin-top: 0.5rem;
	min-width: min(100%, 16rem);
}

.home-faq__list {
	display: grid;
	gap: 0.75rem;
}

.home-faq__item {
	overflow: hidden;
	background: var(--cream);
	border-radius: var(--r-lg);
}

.home-faq__question {
	margin: 0;
}

.home-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	min-height: 64px;
	padding: 1.1rem 1.15rem;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-family: var(--font-ui);
	font-size: 0.975rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.home-faq__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: var(--r-pill);
	background: var(--white);
	color: var(--ink-soft);
	transition: background-color 0.25s ease, color 0.25s ease;
}

.home-faq__icon svg {
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
}

.home-faq__item.is-open .home-faq__icon {
	background: var(--gold);
	color: var(--ink);
}

.home-faq__item.is-open .home-faq__icon svg {
	transform: rotate(180deg);
}

.home-faq__panel {
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease;
}

.home-faq__answer {
	padding: 0 1.15rem 1.2rem;
	max-width: none;
}

.home-faq__answer p {
	color: var(--ink-soft);
}

@media (min-width: 768px) {
	.home-reviews {
		--reviews-gap: 1.15rem;
	}

	.home-reviews__header {
		margin-bottom: 2.5rem;
	}

	.home-review {
		flex-basis: 360px;
		width: 360px;
		min-height: 18.5rem;
	}
}

@media (min-width: 1024px) {
	.home-review {
		flex-basis: 380px;
		width: 380px;
		padding: 1.5rem 1.45rem 1.35rem;
	}

	.home-faq__layout {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		align-items: start;
		gap: 4.5rem;
	}

	.home-faq__intro {
		justify-items: start;
		margin: 0;
		text-align: left;
	}

	.home-faq__trigger {
		padding: 1.2rem 1.35rem;
		font-size: 1.05rem;
	}

	.home-faq__answer {
		padding: 0 1.35rem 1.35rem;
	}
}

.home-winter-offer {
	padding-block: 1.5rem;
	background: var(--white);
}

.home-winter-offer + .home-bestsellers {
	padding-top: 2.5rem;
}

.home-winter-offer__panel {
	display: grid;
	gap: 1rem;
	padding: 0.75rem;
	overflow: hidden;
	border-radius: var(--r-lg);
	background: #f3f4f1;
}

.home-winter-offer__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: calc(var(--r-lg) - 0.35rem);
	background: var(--gold-soft);
}

.home-winter-offer__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.home-winter-offer__media:hover img {
	transform: scale(1.03);
}

.home-winter-offer__copy {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
	padding: 0.35rem 0.35rem 0.5rem;
}

.home-winter-offer__intro {
	display: grid;
	justify-items: start;
	gap: 0.7rem;
}

.home-winter-offer__copy h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 5.5vw, 2.55rem);
	font-weight: 400;
	line-height: 1.12;
	color: var(--ink);
}

.home-winter-offer__intro p {
	margin: 0;
	max-width: 36rem;
	color: var(--ink-soft);
}

.home-winter-offer__moments {
	display: grid;
	gap: 0.65rem;
	width: 100%;
}

.home-winter-offer__moment {
	min-width: 0;
	padding: 0.85rem 0.95rem;
	border-radius: var(--r-md);
	background: var(--white);
}

.home-winter-offer__moment-label {
	margin: 0 0 0.7rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lavender-deep);
}

.home-winter-offer__items {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-winter-offer__item {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

a.home-winter-offer__item:hover .home-winter-offer__item-name {
	color: var(--gold-deep);
}

.home-winter-offer__thumb {
	display: block;
	overflow: hidden;
	width: 3rem;
	height: 3rem;
	border-radius: var(--r-sm);
	background: var(--gold-soft);
}

.home-winter-offer__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-winter-offer__item-copy {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.55rem 0.75rem;
	min-width: 0;
}

.home-winter-offer__item-name {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--ink);
}

.home-winter-offer__item-price {
	flex: 0 0 auto;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	color: var(--ink);
}

.home-winter-offer__item-price del,
.home-winter-offer__item-price ins {
	text-decoration: none;
}

.home-winter-offer__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	width: 100%;
	margin-top: 0.15rem;
}

.home-winter-offer__cta .btn {
	flex: 1 1 11rem;
}

.home-winter-offer__price {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ink);
}

.home-winter-offer__price del {
	margin-right: 0.4rem;
	color: var(--ink-soft);
	font-weight: 400;
}

.home-winter-offer__price ins {
	text-decoration: none;
}

.home-winter-offer__more {
	display: flex;
	justify-content: center;
	margin: 1.15rem 0 0;
}

@media (min-width: 768px) {
	.home-winter-offer {
		padding-block: 2rem;
	}

	.home-winter-offer + .home-bestsellers {
		padding-top: 3.5rem;
	}

	.home-winter-offer__panel {
		grid-template-columns: minmax(16.5rem, 0.82fr) minmax(0, 1.18fr);
		align-items: stretch;
		gap: 1.15rem;
		padding: 0.85rem;
	}

	.home-winter-offer__media {
		aspect-ratio: 1;
		height: auto;
		align-self: start;
	}

	.home-winter-offer__copy {
		justify-content: space-between;
		padding: 0.85rem 1rem 0.85rem 0.35rem;
		gap: 1.15rem;
	}

	.home-winter-offer__moments {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.home-winter-offer__cta .btn {
		flex: 0 0 auto;
		min-width: 11.5rem;
	}
}

@media (min-width: 1024px) {
	.home-winter-offer + .home-bestsellers {
		padding-top: 4rem;
	}

	.home-winter-offer__panel {
		width: 70%;
		margin-inline: auto;
		grid-template-columns: minmax(12.5rem, 0.78fr) minmax(0, 1.22fr);
		gap: 1.15rem;
		padding: 0.9rem;
		border-radius: var(--r-hero);
	}

	.home-winter-offer__media {
		border-radius: calc(var(--r-hero) - 0.55rem);
	}

	.home-winter-offer__copy {
		padding: 1.15rem 1.35rem 1.15rem 0.5rem;
	}

	.home-winter-offer__copy h2 {
		font-size: 2.25rem;
	}

	.home-winter-offer__intro p {
		font-size: 1.05rem;
	}

	.home-winter-offer__moment {
		padding: 1.05rem 1.15rem;
	}

	.home-winter-offer__item {
		grid-template-columns: 3.5rem minmax(0, 1fr);
	}

	.home-winter-offer__thumb {
		width: 3.5rem;
		height: 3.5rem;
	}

	.home-winter-offer__item-name {
		font-size: 1.15rem;
	}

	.home-winter-offer__item-price {
		font-size: 0.95rem;
	}

	.home-winter-offer__price {
		font-size: 1.35rem;
	}
}

@media (min-width: 1280px) {
	.home-winter-offer__panel {
		grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
	}
}

@media (min-width: 1920px) {
	.home-winter-offer__panel {
		grid-template-columns: minmax(12rem, 0.64fr) minmax(0, 1.36fr);
	}
}
