@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/montserrat-v25-latin_latin-ext-300.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/montserrat-v25-latin_latin-ext-600.woff2") format("woff2");
}

:root {
	--brown: rgb(70, 35, 15);
	--orange: rgb(233, 88, 14);
	--cyan: rgb(23, 163, 186);
	--pink: rgb(255, 170, 201);
	--teal: rgb(0, 196, 137);
	--blue: rgb(80, 109, 186);
	--purple: rgb(154, 86, 161);
	--green: rgb(0, 196, 137);
	--coral: rgb(213, 71, 53);
	--yellow: rgb(236, 228, 38);
	--red: rgb(213, 71, 53);
	--beige: rgb(207, 179, 168);
	--ink: #2a2e4a;
	--dark: #2a2e4a;
	--body: #46230f;
	--muted: #46230f;
	--line: rgba(70, 35, 15, .18);
	--line-2: rgba(70, 35, 15, .09);
	--cream: #f6f1ed;
	--paper: #fff;
	--white: #fff;
	--soft-cyan: #eaf7f7;
	--shadow: 0 14px 35px rgba(70, 35, 15, .07);
	--font: Gotham, Montserrat, sans-serif;
	--font-text: Gotham, Montserrat, sans-serif;
	--wrap: 1200px;
	--gut: 20px;
	--r: 0px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 86px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--body);
	font-family: var(--font-text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	overflow-x: clip;
}

img,
video,
iframe {
	display: block;
	max-width: 100%;
}

img,
video {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

a:hover {
	color: var(--orange);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--brown);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.08;
	text-wrap: balance;
}

h1 {
	font-size: 2.55rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.12rem;
}

p,
ul,
ol,
dl,
blockquote {
	margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
	margin-bottom: 0;
}

p,
li,
.product-card p,
.post-card p,
.value-card p,
.guide-card p,
.mini-list li {
	font-weight: 400;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	transform: translateY(-160%);
	background: var(--paper);
	border: 1px solid var(--brown);
	padding: .65rem 1rem;
	font-weight: 600;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-main {
	min-height: 60vh;
	overflow: clip;
}

.section {
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin-inline: auto;
	padding-block: 4.5rem;
}

.section--cream {
	background: var(--cream);
	box-shadow: 0 0 0 100vmax var(--cream);
	clip-path: inset(0 -100vmax);
}

.section__header {
	max-width: 760px;
	margin-bottom: 2rem;
}

.section__header h2 {
	margin-top: .45rem;
}

.section__header--split {
	display: grid;
	gap: 1rem;
	max-width: none;
}

.section__header--split > p {
	max-width: 470px;
	color: var(--muted);
}

.eyebrow,
.kicker {
	margin-bottom: .45rem;
	color: var(--orange);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.brand-lines {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	width: 100%;
	height: 8px;
	overflow: hidden;
}

.brand-lines--short {
	max-width: 180px;
	margin-top: 1.6rem;
	border-radius: 999px;
}

.brand-line--brown {
	background: var(--brown);
}

.brand-line--blue {
	background: var(--cyan);
}

.brand-line--pink {
	background: var(--pink);
}

.brand-line--orange {
	background: var(--orange);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: var(--r);
	padding: .75rem 2.4rem;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--paper);
}

.btn-primary,
.btn--primary {
	background: var(--orange);
	color: var(--paper);
}

.btn-primary:hover,
.btn--primary:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--paper);
}

.btn-secondary,
.btn--ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--brown);
}

.btn-secondary:hover,
.btn--ghost:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--paper);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 1.5rem;
}

.tlink,
.text-link,
.section-link {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	color: var(--brown);
	font-size: .78rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.tag,
.card-kicker {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: .38rem .7rem;
	color: var(--body);
	font-size: .65rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.pcard__tags {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
}

.tag--new {
	border-color: var(--orange);
	background: var(--orange);
	color: var(--paper);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .95);
	border-bottom: 1px solid var(--line-2);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	min-height: 72px;
	margin-inline: auto;
}

.site-logo {
	position: relative;
	z-index: 110;
	display: block;
	grid-column: 2;
	justify-self: center;
	padding: 10px;
}

.site-logo a,
.custom-logo-link {
	display: block;
}

.site-logo img,
.custom-logo-link img {
	width: 60px;
	max-height: 42px;
	height: auto;
	object-fit: contain;
}

.menu-toggle {
	position: relative;
	z-index: 110;
	display: grid;
	grid-column: 3;
	justify-self: end;
	gap: 4px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper);
	padding: 12px;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--brown);
}

.primary-navigation {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: none;
	min-height: 100dvh;
	overflow-y: auto;
	background: var(--paper);
	border-bottom: 0;
	padding: 104px max(var(--gut), calc((100% - var(--wrap)) / 2)) 2rem;
}

.primary-navigation.is-open {
	display: block;
}

.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-primary {
	display: grid;
	gap: .45rem;
	width: 100%;
}

.menu-primary a {
	display: block;
	padding: .95rem 0;
	font-size: 1.35rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.menu-primary li:last-child a {
	display: inline-flex;
	border: 0;
	border-radius: 999px;
	padding: .75rem 1rem;
	font-size: .9rem;
}

.home-hero {
	position: relative;
	display: grid;
	min-height: calc(100svh - 72px);
	background: var(--cream);
	overflow: hidden;
}

.home-hero__media {
	position: relative;
	height: 44vh;
	min-height: 310px;
	overflow: hidden;
}

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

.home-hero__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 40%;
	background: linear-gradient(to bottom, transparent, var(--cream));
	content: "";
}

.home-hero__dot {
	position: absolute;
	z-index: 2;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

.home-hero__dot--orange {
	top: 16%;
	left: 8%;
	background: var(--orange);
}

.home-hero__dot--cyan {
	top: 30%;
	right: 9%;
	background: var(--cyan);
}

.home-hero__dot--pink {
	right: 25%;
	bottom: 12%;
	background: var(--pink);
}

.home-hero__content {
	position: relative;
	z-index: 4;
	width: min(calc(100% - (2 * var(--gut))), 660px);
	margin-inline: auto;
	padding: 1.5rem 0 3rem;
}

.home-hero__content > p:not(.eyebrow) {
	max-width: 560px;
	margin-top: 1rem;
	color: var(--muted);
}

.home-hero__products {
	width: min(100%, 520px);
	margin: 2rem 0 0;
	pointer-events: none;
}

.home-hero__products img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgb(42 46 74 / 13%));
}

.home-hero__media--packshot,
.home-hero__media--lifestyle {
	display: grid;
	place-items: center;
	background: var(--soft-cyan);
}

.home-hero__media--lifestyle > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__media--packshot > img {
	width: min(88%, 720px);
	height: auto;
	max-height: 90%;
	object-fit: contain;
}

.brand-intro__copy {
	max-width: 680px;
}

.brand-intro__lede {
	max-width: 600px;
	margin: 1.2rem 0 2rem;
	color: var(--muted);
}

.value-grid,
.guide-grid,
.benefit-grid {
	display: grid;
	gap: 1rem;
}

.value-card {
	border-top: 1px solid var(--line);
	padding: 1.2rem 0;
}

.value-card span,
.guide-card > span,
.benefit-card > span {
	display: block;
	margin-bottom: 1rem;
	color: var(--orange);
	font-size: .72rem;
	font-weight: 600;
}

.value-card p,
.guide-card p {
	margin-top: .65rem;
	color: var(--body);
	font-size: .9rem;
	font-weight: 400;
	line-height: 1.65;
}

.product-grid,
.post-grid {
	display: grid;
	gap: 1.25rem;
}

.product-card,
.post-card {
	position: relative;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--paper);
	overflow: hidden;
	transition: border-color .2s ease, transform .2s ease;
}

.product-card:hover,
.post-card:hover {
	border-color: var(--product-accent, var(--category-color, var(--orange)));
	transform: translateY(-3px);
}

.pcard__bar {
	height: 4px;
	background: var(--product-accent, var(--orange));
}

.product-card__media,
.post-card__media {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.product-card__media {
	aspect-ratio: 1 / 1;
	background: var(--product-card-bg, var(--soft-cyan));
}

.product-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1rem;
	transition: transform .25s ease;
}

.product-card:hover .product-card__image {
	transform: scale(1.025);
}

.product-card__body,
.post-card__body {
	padding: 1.25rem;
}

.product-card h3,
.post-card h3 {
	margin: .8rem 0 .65rem;
}

.product-card h3 a,
.post-card h3 a {
	text-decoration: none;
}

.product-card p,
.post-card p {
	color: var(--body);
	font-size: .88rem;
	font-weight: 400;
	line-height: 1.65;
}

.mini-list,
.check-list,
.benefit-pills {
	padding: 0;
	list-style: none;
}

.mini-list {
	display: grid;
	gap: .35rem;
	margin: .9rem 0 1rem;
}

.mini-list li {
	position: relative;
	padding-left: .85rem;
	color: var(--body);
	font-size: .78rem;
	font-weight: 400;
	line-height: 1.55;
}

.mini-list li::before {
	position: absolute;
	top: .66em;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--product-accent, var(--orange));
	content: "";
}

.post-card__media {
	aspect-ratio: 4 / 3;
	background: var(--cream);
}

.post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	color: var(--muted);
	font-size: .68rem;
	text-transform: uppercase;
}

.bcard__cat {
	color: var(--category-color, var(--orange));
	font-weight: 600;
	text-decoration: none;
}

.guide-card,
.benefit-card {
	border: 1px solid var(--line);
	border-top: 4px solid var(--card-accent, var(--orange));
	border-radius: var(--r);
	background: var(--paper);
	padding: 1.3rem;
}

.guide-card--orange {
	--card-accent: var(--orange);
}

.guide-card--cyan {
	--card-accent: var(--cyan);
}

.guide-card--purple {
	--card-accent: var(--purple);
}

.guide-card--teal {
	--card-accent: var(--teal);
}

.guide-card .tlink {
	margin-top: 1rem;
}

.need-guide__grid {
	display: grid;
	gap: 1rem;
}

.need-guide__grid article {
	border-left: 4px solid var(--orange);
	background: var(--cream);
	padding: 1.35rem;
}

.need-guide-card {
	display: grid;
	grid-template-columns: minmax(72px, .32fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	min-width: 0;
	border-left: 4px solid var(--card-accent, var(--orange));
	background: var(--cream);
	padding: 1.1rem;
	color: inherit;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}

.need-guide-card:hover,
.need-guide-card:focus-visible {
	background: var(--paper);
	color: inherit;
	transform: translateY(-2px);
}

.need-guide-card--orange {
	--card-accent: var(--orange);
}

.need-guide-card--pink {
	--card-accent: var(--pink);
}

.need-guide-card--cyan {
	--card-accent: var(--cyan);
}

.need-guide-card--purple {
	--card-accent: var(--purple);
}

.need-guide-card__media {
	display: grid;
	aspect-ratio: 1 / 1;
	min-width: 0;
	place-items: center;
	background: rgb(255 255 255 / 72%);
}

.need-guide-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: .45rem;
}

.need-guide-card h3 {
	font-size: 1rem;
}

.need-guide__grid p {
	margin-top: .65rem;
	font-size: .9rem;
}

.format-compare.tempo-moments .tempo-moments__grid {
	grid-template-columns: minmax(0, 1fr);
	max-width: 780px;
}

.tempo-moments__card {
	border-top-color: var(--orange);
	background: var(--cream);
	padding-inline: 1.35rem;
}

.gummies-story {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.gummies-story__media {
	overflow: hidden;
}

.gummies-story__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.gummies-story__copy p:not(.eyebrow) {
	margin-top: 1rem;
}

.gummies-preview__link {
	margin-top: 1.5rem;
}

.gummies-preview .mini-list {
	display: none;
}

.product-filter-copy {
	max-width: 760px;
	margin-bottom: 2rem;
}

.product-filter-copy p {
	margin-top: .75rem;
	color: var(--muted);
}

.blog-product-paths .guide-card {
	color: inherit;
	text-decoration: none;
}

.media-feature {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.media-feature__frame {
	border-radius: var(--r);
	overflow: hidden;
	background: var(--brown);
}

.media-feature__frame video,
.media-feature__frame img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.media-feature__copy p:last-child {
	margin-top: 1rem;
	color: var(--muted);
}

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

.store-tile {
	display: grid;
	min-width: 0;
	min-height: 150px;
	aspect-ratio: 1 / 1;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--paper);
	padding: 1.35rem;
	transition: border-color .2s ease, transform .2s ease;
}

.store-tile:hover {
	border-color: var(--cyan);
	transform: translateY(-2px);
}

.store-tile a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	text-decoration: none;
}

.store-tile img {
	max-width: 150px;
	max-height: 110px;
	object-fit: contain;
}

.store-logo--text {
	font-size: .78rem;
	font-weight: 600;
	text-align: center;
}

.store-modal-is-open,
.product-lightbox-is-open {
	overflow: hidden;
}

.store-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: grid;
	place-items: center;
	padding: var(--gut);
}

.store-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(42, 46, 74, .72);
}

.store-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 760px);
	max-height: calc(100dvh - (2 * var(--gut)));
	overflow-y: auto;
	background: var(--paper);
	padding: 2rem;
	box-shadow: var(--shadow);
}

.store-modal__dialog > p:not(.eyebrow) {
	max-width: 580px;
	margin: 1rem 0 1.5rem;
	color: var(--muted);
}

.store-modal__close {
	position: absolute;
	top: .7rem;
	right: .7rem;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper);
	color: var(--brown);
	font-size: 1.5rem;
	line-height: 1;
}

.store-modal__grid {
	display: grid;
	gap: .75rem;
	margin-bottom: 1.5rem;
}

.store-modal__shop {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: .4rem 1rem;
	align-items: center;
	border: 1px solid var(--line);
	padding: .9rem;
	text-decoration: none;
}

.store-modal__logo {
	display: grid;
	grid-row: span 2;
	min-height: 62px;
	place-items: center;
}

.store-modal__logo img {
	max-width: 100px;
	max-height: 62px;
	object-fit: contain;
}

.store-modal__shop > span:not(.store-modal__logo) {
	font-weight: 600;
}

.store-modal__shop strong {
	color: var(--orange);
	font-size: .68rem;
	text-transform: uppercase;
}

.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 700;
	display: grid;
	place-items: center;
	padding: var(--gut);
}

.product-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgb(42 46 74 / 88%);
}

.product-lightbox__image {
	position: relative;
	z-index: 1;
	width: min(100%, 1180px);
	max-height: calc(100dvh - (2 * var(--gut)));
	object-fit: contain;
	background: transparent;
}

.product-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 45%);
	background: rgb(255 255 255 / 12%);
	color: var(--paper);
	font-size: 2rem;
	line-height: 1;
}

.product-sticky-buy {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 90;
	border-top: 1px solid var(--line);
	background: var(--paper);
	box-shadow: 0 -14px 34px rgb(42 46 74 / 12%);
	opacity: 0;
	pointer-events: none;
	transform: translateY(110%);
	transition: opacity .2s ease, transform .2s ease;
}

.product-sticky-buy.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.product-sticky-buy__inner {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	gap: .85rem;
	align-items: center;
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin-inline: auto;
	padding-block: .6rem;
}

.product-sticky-buy__image {
	display: grid;
	width: 54px;
	aspect-ratio: 1 / 1;
	place-items: center;
	border: 1px solid var(--line);
	background: transparent;
	overflow: hidden;
}

.product-sticky-buy__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: .2rem;
}

.product-sticky-buy__title {
	min-width: 0;
	overflow: hidden;
	color: var(--dark);
	font-size: .95rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-sticky-buy__button {
	margin: 0;
}

.final-cta {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 430px;
	padding: 5rem var(--gut);
	background: var(--brown);
	color: var(--paper);
	text-align: center;
	overflow: hidden;
}

.final-cta h2 {
	position: relative;
	color: var(--paper);
}

.final-cta p {
	position: relative;
	max-width: 560px;
	margin: 1rem auto 1.5rem;
	color: rgba(255, 255, 255, .75);
}

.final-cta .btn {
	position: relative;
}

.final-cta__ghost {
	border-color: rgba(255, 255, 255, .35);
	color: var(--paper);
}

.final-cta--compact {
	min-height: 360px;
}

.site-footer {
	background: var(--paper);
}

.site-footer__top {
	display: grid;
	gap: 2.5rem;
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin-inline: auto;
	padding-block: 3.5rem;
}

.site-footer__brand > img {
	width: 82px;
	margin-bottom: 1rem;
}

.site-footer__brand > p {
	max-width: 380px;
	color: var(--muted);
}

.site-footer__social {
	display: flex;
	gap: .65rem;
	margin-top: 1.25rem;
}

.site-footer__social a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
}

.site-footer__social img {
	width: 14px;
	height: 14px;
}

.site-footer__nav h2 {
	margin-bottom: .8rem;
	font-size: .78rem;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: .45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a {
	color: var(--muted);
	font-size: .85rem;
	text-decoration: none;
}

.archive-hero {
	position: relative;
	display: grid;
	gap: 2rem;
	align-items: center;
	min-height: 500px;
	padding: 4rem max(var(--gut), calc((100% - var(--wrap)) / 2));
	background: var(--cream);
	overflow: hidden;
}

.archive-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.archive-hero__copy > p:not(.eyebrow) {
	max-width: 560px;
	margin-top: 1rem;
	color: var(--muted);
}

.archive-hero__visual {
	display: grid;
	place-items: center;
	min-width: 0;
}

.archive-hero__visual img {
	width: 100%;
	max-height: 330px;
	object-fit: contain;
}

.archive-hero__visual--lifestyle {
	border-radius: var(--r);
	overflow: hidden;
}

.archive-hero__visual--lifestyle img {
	height: 300px;
	max-height: none;
	object-fit: cover;
}

.archive-hero > .brand-lines {
	position: absolute;
	bottom: 2rem;
	left: max(var(--gut), calc((100% - var(--wrap)) / 2));
}

.archive-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}

.filter-nav {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.filter-nav a,
.filter-nav button {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--paper);
	color: var(--brown);
	padding: .45rem .8rem;
	font-size: .7rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.filter-nav a.is-active,
.filter-nav a:hover,
.filter-nav button.is-active,
.filter-nav button:hover {
	background: var(--brown);
	border-color: var(--brown);
	color: var(--paper);
}

.archive-count {
	margin: 0;
	color: var(--muted);
	font-size: .75rem;
}

.pagination-wrap {
	margin-top: 2.5rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.page-numbers {
	display: grid;
	min-width: 40px;
	min-height: 40px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding-inline: .7rem;
	font-size: .75rem;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--brown);
	color: var(--paper);
}

.empty-state {
	border: 1px dashed var(--line);
	border-radius: var(--r);
	padding: 2rem;
	color: var(--muted);
	text-align: center;
}

.product-filter-empty {
	margin-top: 1.25rem;
}

.category-landing__intro {
	max-width: 760px;
	margin-bottom: 2.5rem;
}

.category-landing__intro h2 {
	margin-bottom: 1rem;
}

.category-landing__intro p:last-child {
	color: var(--body);
	font-weight: 400;
}

.category-landing__education {
	display: grid;
	gap: 1.5rem;
	align-items: end;
}

.category-landing__education > p {
	max-width: 600px;
	color: var(--body);
	font-weight: 400;
}

.featured-story__card {
	display: grid;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
}

.featured-story__media {
	min-width: 0;
	background: var(--cream);
	overflow: hidden;
}

.featured-story__image {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
}

.featured-story__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 2rem;
}

.featured-story__copy time {
	margin-top: .75rem;
	color: var(--muted);
	font-size: .7rem;
	text-transform: uppercase;
}

.featured-story__copy h2 {
	margin: .8rem 0 1rem;
}

.featured-story__copy h2 a {
	text-decoration: none;
}

.featured-story__copy p {
	color: var(--muted);
}

.featured-story__copy .tlink {
	margin-top: 1.25rem;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin: 1.2rem auto;
	color: var(--muted);
	font-size: .68rem;
}

.breadcrumb a {
	text-decoration: none;
}

.product-hero {
	display: grid;
	gap: 2rem;
	align-items: center;
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin-inline: auto;
	padding-block: 2rem 4.5rem;
}

.product-hero__media {
	display: grid;
	min-height: 360px;
	place-items: center;
	border-radius: var(--r);
	background: var(--soft-cyan);
	overflow: hidden;
}

.product-hero__image {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
	padding: 1.5rem;
}

.product-hero__copy h1 {
	margin: 1rem 0;
}

.product-hero__headline {
	margin-bottom: 1rem;
	color: var(--product-accent);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.3;
}

.product-claim {
	display: inline-block;
	margin: 0 0 1rem;
	border-bottom: 3px solid var(--product-accent);
	font-weight: 600;
}

.product-hero__lede {
	max-width: 560px;
	color: var(--muted);
}

.product-hero__copy .btn {
	margin-top: 1.3rem;
}

.benefit-pills {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	margin: 1rem 0 0;
}

.benefit-pills li {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: .4rem .7rem;
	font-size: .68rem;
}

.benefit-card {
	border-top-color: var(--product-accent);
}

.benefit-card p {
	margin: 0;
	font-size: .88rem;
}

.product-info__grid {
	display: grid;
	gap: 1rem;
}

.info-panel {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--paper);
	padding: 1.4rem;
}

.info-panel h3 {
	margin-bottom: 1rem;
}

.info-panel p,
.check-list {
	color: var(--muted);
	font-size: .88rem;
}

.detail-list {
	display: grid;
	gap: .75rem;
	margin: 0;
}

.detail-list div {
	display: grid;
	gap: .2rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--line-2);
}

.detail-list dt {
	color: var(--muted);
	font-size: .68rem;
	text-transform: uppercase;
}

.detail-list dd {
	margin: 0;
	font-weight: 600;
}

.check-list {
	display: grid;
	gap: .5rem;
	margin: 0;
}

.check-list li {
	position: relative;
	padding-left: 1.1rem;
}

.check-list li::before {
	position: absolute;
	top: .65em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--product-accent, var(--orange));
	content: "";
}

.product-content {
	max-width: 760px;
	margin-top: 2rem;
}

.lifestyle-product-block {
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin: 0 auto 4rem;
	border-radius: var(--r);
	overflow: hidden;
}

.lifestyle-product-block__image {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
}

.product-faq-wrap {
	display: grid;
	gap: 2rem;
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	position: relative;
	padding: 1.2rem 2rem 1.2rem 0;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 1.15rem;
	right: .2rem;
	content: "+";
	font-size: 1.2rem;
}

.faq-list details[open] summary::after {
	content: "-";
}

.faq-list details p {
	max-width: 720px;
	padding-bottom: 1.2rem;
	color: var(--muted);
}

.faq-list details[open] p {
	animation: faqReveal .22s ease;
}

@keyframes faqReveal {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.single-hero {
	display: grid;
	gap: 2rem;
	align-items: center;
	padding: 4.8rem max(var(--gut), calc((100% - var(--wrap)) / 2));
	background: var(--cream);
}

.single-hero__copy {
	max-width: 700px;
}

.single-hero__copy h1 {
	margin: 1rem 0;
	font-size: clamp(2.1rem, 3vw, 3rem);
	line-height: .98;
}

.single-hero__copy p {
	max-width: 620px;
	color: var(--muted);
	font-size: 1.03rem;
	line-height: 1.75;
}

.single-hero__copy time {
	display: block;
	margin-top: 1.25rem;
	color: var(--muted);
	font-size: .72rem;
	text-transform: uppercase;
}

.single-hero__image {
	border-radius: var(--r);
	overflow: hidden;
	background: var(--paper);
}

.single-hero__media {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.entry-shell {
	width: min(calc(100% - (2 * var(--gut))), 780px);
	margin-inline: auto;
	padding-block: 4rem;
}

.entry-content {
	color: var(--body);
	font-size: 1rem;
	line-height: 1.85;
}

.entry-content > * + * {
	margin-top: 1.2rem;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
	line-height: 1.18;
}

.single-post-page .entry-content h2 {
	font-size: 1.85rem;
}

.entry-content a {
	color: var(--orange);
}

.entry-content img,
.entry-content figure,
.entry-content table {
	max-width: 100%;
}

.entry-content blockquote {
	margin-inline: 0;
	border-left: 4px solid var(--orange);
	background: var(--cream);
	padding: 1rem 1.2rem;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: .85rem;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line);
	padding: .6rem;
	text-align: left;
}

.post-nav {
	width: min(calc(100% - (2 * var(--gut))), 780px);
	margin: 0 auto 4rem;
}

.post-nav .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-nav a {
	display: grid;
	height: 100%;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 1rem;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
}

.post-nav a span {
	color: var(--muted);
	font-size: .65rem;
	text-transform: uppercase;
}

.article-product-cta {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.article-product-cta > div {
	max-width: 620px;
}

.article-product-cta > div > p:not(.eyebrow) {
	margin-top: 1rem;
	color: var(--muted);
}

.article-product-cta .btn {
	margin-top: 1.3rem;
}

.article-product-cta img {
	width: 100%;
	max-height: 320px;
	object-fit: contain;
}

.page-template .archive-hero,
.archive-page > .archive-hero:not(.archive-hero--blog) {
	min-height: 360px;
}

.visual-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 220px;
	place-items: center;
	background: var(--cream);
	color: var(--muted);
	padding: 1.5rem;
	text-align: center;
}

.visual-placeholder__shape {
	display: block;
	width: 68px;
	height: 120px;
	margin: 0 auto 1rem;
	border: 2px solid currentColor;
	border-radius: 18px;
}

.visual-placeholder__label {
	display: block;
	font-weight: 600;
}

.visual-placeholder__details {
	display: block;
	margin-top: .3rem;
	font-size: .72rem;
}

.upl-product-landing {
	overflow: clip;
}

.upl-product-section {
	width: min(calc(100% - (2 * var(--gut))), var(--wrap));
	margin-inline: auto;
	padding-block: 4.5rem;
}

.upl-product-section--cream {
	background: var(--cream);
	box-shadow: 0 0 0 100vmax var(--cream);
	clip-path: inset(0 -100vmax);
}

.upl-product-section--brown {
	background: var(--brown);
	box-shadow: 0 0 0 100vmax var(--brown);
	clip-path: inset(0 -100vmax);
	color: var(--paper);
}

.upl-section-heading {
	max-width: 760px;
	margin-bottom: 2rem;
}

.upl-section-heading h2 + p {
	margin-top: 1rem;
}

.upl-product-hero {
	padding-top: 1rem;
}

.upl-product-hero__grid,
.upl-benefit-split,
.upl-quality__grid,
.upl-brand-story {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.upl-product-hero__media {
	position: relative;
	display: grid;
	grid-template-columns: minmax(86px, 142px) minmax(0, 1fr);
	grid-template-rows: clamp(420px, 48vw, 500px) auto;
	gap: .55rem;
	align-items: stretch;
	min-height: 0;
	background: transparent;
	overflow: visible;
}

.upl-product-hero__icon-rail {
	display: grid;
	gap: .45rem;
	grid-row: 1;
}

.upl-product-hero__icon-card {
	display: grid;
	place-items: center;
	align-content: center;
	gap: .65rem;
	min-height: 104px;
	background: var(--product-accent, var(--orange));
	color: var(--white);
	font-weight: 400;
	padding: .9rem .6rem;
	text-align: center;
}

.upl-product-hero__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 0;
	background: transparent;
	color: var(--white);
}

.upl-product-hero__icon-media,
.upl-inline-svg-icon {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: inherit;
}

.upl-product-hero__icon img,
.upl-product-hero__icon-media img {
	width: 100%;
	height: 100%;
	max-width: 50px;
	max-height: 50px;
	object-fit: contain;
}

.upl-product-hero__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: var(--white);
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.upl-product-hero__icon-card span:last-child {
	max-width: 100%;
	margin-top: 10px;
	font-size: .78rem;
	font-weight: 400;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.upl-product-hero__stage {
	position: relative;
	display: grid;
	min-width: 0;
	height: clamp(420px, 48vw, 500px);
	min-height: 0;
	place-items: center;
	background: transparent;
	overflow: hidden;
}

.upl-product-hero__media--white .upl-product-hero__stage {
	background: var(--paper);
}

.upl-product-hero__media--accent .upl-product-hero__stage {
	background: var(--product-accent, var(--orange));
}

.upl-product-hero__media--accent-soft .upl-product-hero__stage {
	background: var(--product-card-bg, rgb(23 163 186 / 12%));
}

.upl-product-hero__media--cream .upl-product-hero__stage {
	background: var(--cream);
}

.upl-product-hero__lightbox-open {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: zoom-in;
}

.upl-product-hero__lightbox-open:focus-visible {
	outline: 3px solid var(--product-accent, var(--orange));
	outline-offset: -3px;
}

.upl-product-hero__image {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	padding: 0;
}

.upl-product-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	width: 44px;
	height: 54px;
	place-items: center;
	border: 0;
	background: rgb(255 255 255 / 86%);
	color: var(--dark);
	cursor: pointer;
	transform: translateY(-50%);
}

.upl-product-hero__nav:focus-visible {
	outline: 3px solid var(--product-accent);
	outline-offset: 2px;
}

.upl-product-hero__nav span {
	font-size: 2rem;
	line-height: 1;
}

.upl-product-hero__nav--prev {
	left: 0;
}

.upl-product-hero__nav--next {
	right: 0;
}

.upl-product-hero__secondary {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: min(26%, 140px);
	border: 1px solid var(--line);
	background: var(--paper);
	padding: .5rem;
}

.upl-product-hero__secondary-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.upl-product-hero__thumbs {
	display: grid;
	grid-column: 2;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: .55rem;
}

.upl-product-hero__thumb {
	display: grid;
	min-width: 0;
	aspect-ratio: 1 / 1;
	place-items: center;
	border: 1px solid var(--line);
	background: transparent;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
}

.upl-product-hero__thumb[aria-current="true"] {
	border-color: var(--product-accent);
}

.upl-product-hero__thumb-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.upl-product-hero__trust {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1fr);
	gap: .9rem;
	align-items: center;
	margin-top: .45rem;
	border: 1px solid var(--line);
	background: var(--paper);
	padding: 1rem;
}

.upl-product-hero__trust h2 {
	margin: 0 0 .2rem;
	font-size: .98rem;
	line-height: 1.2;
}

.upl-product-hero__trust p {
	margin: 0;
	color: var(--muted);
	font-size: .86rem;
	line-height: 1.5;
}

.upl-product-hero__content h1 {
	margin-bottom: 1rem;
}

.upl-product-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-bottom: 1rem;
}

.upl-product-hero__chips span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: var(--product-card-bg, rgb(23 163 186 / 12%));
	color: var(--dark);
	padding: .42rem .85rem;
	font-size: .78rem;
	font-weight: 500;
}

.upl-product-hero__flavor {
	margin: 0 0 1rem;
	border-top: 1px solid var(--line);
	padding-top: .9rem;
	color: var(--body);
	font-size: .95rem;
}

.upl-product-hero__flavor span {
	color: var(--muted);
}

.upl-product-hero__text,
.upl-benefit-split__content > p,
.upl-brand-story p {
	margin-top: 1rem;
	font-weight: 400;
}

.upl-product-hero__content .btn,
.upl-benefit-split__content .btn {
	margin-top: 1.5rem;
}

.upl-product-notes {
	padding-block: 2.5rem;
	border-top: 1px solid var(--line);
}

.upl-product-notes h2 {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: .9rem;
	text-transform: uppercase;
}

.upl-product-notes__content {
	max-width: 860px;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.7;
}

.upl-product-notes__content p {
	margin: .4rem 0;
}

.upl-product-notes__content a {
	color: var(--product-accent, var(--orange));
	overflow-wrap: anywhere;
}

.upl-product-notes__content sup {
	font-size: .68em;
	line-height: 0;
}

.hr-cta-box {
	display: grid;
	gap: .9rem;
	margin-top: 1.6rem;
	border: 1px solid var(--line);
	background: var(--paper);
	padding: clamp(1.1rem, 2.4vw, 1.6rem);
}

.hr-cta-box h3 {
	margin: 0;
	color: var(--product-accent, var(--orange));
	font-size: 1.15rem;
}

.hr-cta-box p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.6;
}

.onliner-logos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .45rem;
}

.onliner-logo {
	display: grid;
	min-height: 48px;
	place-items: center;
	border: 1px solid var(--line);
	background: var(--cream);
	padding: .55rem;
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.onliner-logo:hover,
.onliner-logo:focus-visible {
	border-color: var(--product-accent, var(--orange));
	background: var(--product-accent, var(--orange));
	color: var(--paper);
}

.btn-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid var(--product-accent, var(--orange));
	background: var(--product-accent, var(--orange));
	color: var(--paper);
	padding: .75rem 2.4rem;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.btn-buy:hover,
.btn-buy:focus-visible {
	border-color: var(--red);
	background: var(--red);
	color: var(--paper);
}

.upl-trust-strip {
	border-block: 1px solid var(--line);
}

.upl-trust-strip > p {
	max-width: 720px;
	margin-top: .75rem;
}

.upl-trust-strip__grid,
.upl-stats__grid,
.upl-testimonials__grid {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.upl-feature-grid__layout {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.upl-feature-grid__side {
	display: grid;
	gap: 1rem;
}

.upl-feature-grid__side article {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	border: 0;
	background: var(--paper);
	padding: 1.35rem;
	text-align: center;
}

.upl-trust-strip__grid article,
.upl-stats__grid article,
.upl-testimonials__grid article,
.upl-quality__items article {
	min-width: 0;
	border: 1px solid var(--line);
	background: var(--paper);
	padding: 1.35rem;
}

.upl-trust-strip__grid h3,
.upl-feature-grid__side h3,
.upl-quality__items h3 {
	margin-bottom: .65rem;
}

.upl-trust-strip__grid p,
.upl-feature-grid__side p,
.upl-quality__items p,
.upl-testimonials blockquote {
	margin: 0;
	font-weight: 400;
}

.upl-feature-grid__side p {
	font-size: 1rem;
	font-weight: 300;
}

.upl-trust-strip__image,
.upl-feature-grid__icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.upl-feature-grid__icon-wrap {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 1rem;
	place-items: center;
	background: var(--product-accent, var(--orange));
	color: var(--paper);
}

.upl-feature-grid__icon-wrap img,
.upl-feature-grid__icon-wrap svg {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.upl-feature-grid__icon-wrap svg {
	fill: none;
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.upl-feature-grid__media {
	min-width: 0;
	background: var(--cream);
	overflow: hidden;
}

.upl-feature-grid__image {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.upl-benefit-split__media,
.upl-brand-story__media {
	min-width: 0;
	background: var(--cream);
	overflow: hidden;
}

.upl-benefit-split__image,
.upl-brand-story__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.upl-stats__grid article {
	text-align: center;
}

.upl-stats__grid strong {
	display: block;
	color: var(--product-accent, var(--orange));
	font-size: 1.4rem;
	line-height: 1.2;
}

.upl-stats__grid p {
	margin: .7rem 0 0;
	font-size: .9rem;
	font-style: italic;
	line-height: 1.55;
}

.upl-stats small,
.upl-comparison small {
	display: block;
	margin-top: 1.5rem;
}

.upl-quality__items {
	display: grid;
	gap: 1rem;
}

.upl-quality__media {
	display: grid;
	min-height: 300px;
	place-items: center;
	background: var(--paper);
}

.upl-quality__image {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.upl-quality .upl-section-heading {
	max-width: 920px;
	margin-inline: auto;
	text-align: center;
}

.upl-quality__grid {
	display: block;
}

.upl-quality__items article {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	min-height: 142px;
	border: 2px solid var(--product-accent, var(--line));
	padding: clamp(1rem, 2vw, 1.5rem);
	transition: border-color .2s ease, transform .2s ease;
}

.upl-quality__items article:hover {
	border-color: var(--red);
	transform: translateY(-2px);
}

.upl-quality__mark {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	justify-self: end;
	background: var(--product-accent, var(--orange));
	color: var(--paper);
	transition: background .2s ease, transform .2s ease;
}

.upl-quality__items article:hover .upl-quality__mark {
	background: var(--red);
	transform: translateY(-3px);
}

.upl-quality__subtitle {
	color: var(--product-accent, var(--orange));
	font-size: .88rem;
	font-weight: 600;
	line-height: 1.35;
}

.upl-quality__icon,
.upl-quality__mark img,
.upl-quality__mark svg {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.upl-quality__mark svg {
	fill: none;
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.upl-usage-steps__grid {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.timeline-container {
	align-items: start;
}

.tl-left {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 1rem;
	align-self: start;
}

.tl-left .img-box {
	background: var(--cream);
	overflow: hidden;
}

.upl-usage-steps__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.tl-left h2 {
	margin: 0;
}

.tl-left > p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
}

.tl-right {
	position: relative;
	display: grid;
	gap: 1.25rem;
	border-left: 2px solid var(--product-accent, var(--orange));
	padding-left: clamp(1.1rem, 3vw, 1.8rem);
}

.tl-step {
	position: relative;
	border: 1px solid var(--line);
	background: var(--paper);
	padding: 1.15rem;
}

.tl-step::before {
	position: absolute;
	top: 1.25rem;
	left: calc(-1 * clamp(1.1rem, 3vw, 1.8rem) - 7px);
	width: 12px;
	height: 12px;
	background: var(--product-accent, var(--orange));
	content: "";
}

.step-header {
	display: inline-flex;
	margin-bottom: .8rem;
	background: var(--product-accent, var(--orange));
	color: var(--paper);
	padding: .5rem .75rem;
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.35;
}

.tl-step ul {
	display: grid;
	gap: .45rem;
	margin: 0;
	padding-left: 1.1rem;
}

.tl-step li {
	padding: 0;
}

.upl-usage-steps__grid p {
	margin: .55rem 0 0;
	color: var(--muted);
}

.upl-usage-steps__note {
	max-width: 760px;
	margin-top: 1.5rem;
	border-left: 4px solid var(--product-accent, var(--orange));
	background: var(--cream);
	padding: 1rem 1.2rem;
}

.upl-testimonials__grid article {
	display: grid;
	gap: 1rem;
}

.upl-testimonials__image {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
}

.upl-testimonials blockquote {
	margin: 0;
	font-size: 1rem;
	font-style: italic;
	line-height: 1.8rem;
}

.upl-testimonials blockquote::before {
	content: "“";
	color: var(--product-accent, var(--orange));
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 0;
}

.upl-comparison__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.4rem, 4vw, 3.5rem);
	align-items: start;
}

.upl-comparison__intro {
	min-width: 0;
}

.upl-comparison__intro > p:not(.eyebrow) {
	margin: 1rem 0 0;
	max-width: 36rem;
}

.upl-comparison__intro small {
	margin-top: 1.25rem;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.55;
}

.upl-comparison__scroll {
	min-width: 0;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

.upl-comparison__table {
	width: 100%;
	min-width: 620px;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--paper);
}

.upl-comparison__table th,
.upl-comparison__table td {
	border: 0;
	border-bottom: 1px solid var(--line);
	padding: 1rem;
	font-weight: 400;
	text-align: left;
	vertical-align: middle;
}

.upl-comparison__table thead th {
	border-bottom: 0;
	background: var(--cream);
	color: var(--brown);
	font-weight: 600;
	line-height: 1.25;
}

.upl-comparison__table tbody th {
	color: var(--brown);
	font-weight: 400;
	text-align: left;
}

.upl-comparison__table tbody th small {
	margin-top: .35rem;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.45;
}

.upl-comparison__product-col {
	background: var(--product-accent, var(--orange));
	color: var(--white);
	text-align: center;
}

.upl-comparison__table thead .upl-comparison__product-col {
	color: var(--white);
}

.upl-comparison__table thead .upl-comparison__product-col span:not(.upl-comparison__product-image) {
	color: var(--orange);
}

.upl-comparison__product-image {
	display: block;
	margin: 0 auto .65rem;
	width: clamp(58px, 8vw, 82px);
	height: clamp(58px, 8vw, 82px);
}

.upl-comparison__product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.upl-comparison__table tbody .upl-comparison__product-col {
	font-size: 1.15rem;
}

.upl-comparison__table tbody td {
	text-align: center;
	vertical-align: middle;
}

.upl-comparison__other-col {
	background: var(--paper);
	color: var(--dark);
	text-align: center;
}

.upl-comparison__check,
.upl-comparison__x {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1;
}

.upl-comparison__check {
	color: var(--green);
}

.upl-comparison__product-col .upl-comparison__check {
	color: var(--white);
}

.upl-comparison__x {
	color: var(--dark);
	opacity: .55;
}

.upl-brand-story > div:last-child > strong {
	display: block;
	margin-top: 1.5rem;
}

.upl-related .product-grid {
	margin-top: 2rem;
}

.upl-faq h2,
.upl-reviews h2 {
	margin-bottom: 2rem;
}

.upl-faq__grid {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.upl-faq__media {
	min-width: 0;
	background: var(--cream);
	overflow: hidden;
}

.upl-faq__image {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.upl-faq__content {
	min-width: 0;
}

.upl-reviews__summary {
	margin-top: -1rem;
}

.upl-reviews__grid {
	display: grid;
	gap: 1rem;
}

.upl-reviews__grid article {
	border-top: 1px solid var(--line);
	padding-block: 1.25rem;
}

.upl-reviews__grid article > div {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1rem;
}

.upl-reviews__grid article p {
	margin-top: .75rem;
}

.upl-final-cta {
	display: grid;
	place-items: center;
	width: 100%;
	max-width: none;
	padding: 5rem var(--gut);
	text-align: center;
}

.upl-final-cta h2,
.upl-final-cta p {
	max-width: 680px;
}

.upl-final-cta p {
	margin: 1rem auto 1.5rem;
}

.upl-final-cta--brown {
	background: var(--brown);
	color: var(--paper);
}

.upl-final-cta--brown h2 {
	color: var(--paper);
}

.upl-final-cta--cream {
	background: var(--cream);
}

.upl-final-cta--white {
	border-block: 1px solid var(--line);
	background: var(--paper);
}

@media (min-width: 560px) {
	:root {
		--gut: 28px;
	}

	h1 {
		font-size: 3.25rem;
	}

	h2 {
		font-size: 2.45rem;
	}

	.value-grid,
	.product-grid,
	.post-grid,
	.guide-grid,
	.benefit-grid,
	.need-guide__grid,
	.product-info__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stores-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.store-modal__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.upl-trust-strip__grid,
	.upl-stats__grid,
	.upl-testimonials__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__top {
		grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, 1fr));
	}

}

@media (min-width: 860px) {
	:root {
		--gut: 36px;
	}

	body {
		font-size: 17px;
	}

	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.85rem;
	}

	.section {
		padding-block: 6.5rem;
	}

	.section__header--split {
		grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
		align-items: end;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr;
		min-height: 82px;
	}

	.site-logo {
		position: absolute;
		left: 50%;
		grid-column: auto;
		transform: translateX(-50%);
	}

	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		position: static;
		z-index: 1;
		display: block;
		grid-column: 1;
		width: 100%;
		min-height: 0;
		overflow: visible;
		border: 0;
		background: transparent;
		padding: 0;
	}

	.menu-primary {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.6rem;
		width: 100%;
	}

	.menu-primary a {
		padding: .45rem 0;
		font-size: .78rem;
	}

	.menu-primary li:nth-child(2) {
		margin-right: clamp(7rem, 14vw, 12rem);
	}

	.menu-primary li:last-child a {
		padding: .65rem 1rem;
		font-size: .78rem;
	}

	.home-hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		min-height: calc(100svh - 82px);
	}

	.home-hero__media {
		grid-column: 2;
		grid-row: 1;
		height: 100%;
		min-height: 650px;
	}

	.home-hero__media::after {
		inset: 0 auto 0 0;
		width: 28%;
		height: 100%;
		background: linear-gradient(to right, var(--cream), transparent);
	}

	.home-hero__content {
		grid-column: 1;
		grid-row: 1;
		align-self: center;
		width: min(calc(100% - (2 * var(--gut))), 560px);
		margin-right: 0;
		padding-block: 5rem;
	}

	.brand-intro {
		display: grid;
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
		gap: 1rem 4rem;
	}

	.brand-intro .value-grid {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-top: 2rem;
	}

	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-grid--preview {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.guide-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gummies-preview__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 820px;
	}

	.benefit-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.media-feature,
	.gummies-story,
	.archive-hero,
	.product-hero,
	.single-hero,
	.article-product-cta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-hero--no-image {
		grid-template-columns: minmax(0, 780px);
	}

	.archive-hero {
		min-height: 570px;
	}

	.archive-hero__visual img {
		max-height: 440px;
	}

	.archive-hero__visual--lifestyle img {
		height: 430px;
	}

	.featured-story__card {
		grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
	}

	.product-hero {
		padding-block: 3rem 7rem;
	}

	.product-info__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-faq-wrap {
		grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr);
	}

	.format-compare .value-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.stores-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.category-landing__education {
		grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
	}

	.upl-product-section {
		padding-block: 6.5rem;
	}

	.upl-product-hero__grid,
	.upl-benefit-split,
	.upl-brand-story {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.upl-quality__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.upl-benefit-split--right .upl-benefit-split__media {
		grid-column: 2;
		grid-row: 1;
	}

	.upl-benefit-split--right .upl-benefit-split__content {
		grid-column: 1;
		grid-row: 1;
	}

	.upl-trust-strip__grid {
		grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	}

	.upl-stats__grid {
		grid-template-columns: repeat(2, minmax(180px, 1fr));
	}

	.upl-comparison__grid {
		grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr);
	}

	.upl-comparison__intro {
		position: sticky;
		top: 110px;
	}

	.upl-feature-grid__layout {
		grid-template-columns: minmax(0, 1fr) minmax(260px, .9fr) minmax(0, 1fr);
		align-items: center;
	}

	.timeline-container {
		grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
	}

	.upl-testimonials__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.upl-faq__grid {
		grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
	}
}

@media (min-width: 1180px) {
	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-grid--preview {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.stores-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 559px) {
	.home-hero .button-row,
	.final-cta .button-row {
		display: grid;
	}

	.home-hero .btn,
	.final-cta .btn {
		width: 100%;
	}

	.post-nav .nav-links {
		grid-template-columns: 1fr;
	}

	.archive-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.upl-product-section {
		padding-block: 3.5rem;
	}

	.upl-product-hero__media {
		min-height: 300px;
		grid-template-columns: 1fr;
		grid-template-rows: auto 360px auto;
	}

	.upl-product-hero__icon-rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.upl-product-hero__icon-card {
		min-height: 92px;
	}

	.upl-product-hero__icon {
		width: 34px;
		height: 34px;
	}

	.upl-product-hero__stage,
	.upl-product-hero__thumbs {
		grid-column: 1;
	}

	.upl-product-hero__stage {
		height: 360px;
	}

	.upl-product-hero__thumbs {
		gap: .35rem;
	}

	.upl-quality__items article {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.tl-left {
		position: static;
	}

	.tl-right {
		padding-left: 1rem;
	}

	.tl-step::before {
		left: -1.45rem;
	}

	.upl-final-cta .btn {
		width: 100%;
		min-height: 44px;
	}

	.product-sticky-buy__inner {
		grid-template-columns: 44px minmax(0, 1fr) auto;
		gap: .6rem;
		padding-block: .5rem;
	}

	.product-sticky-buy__image {
		width: 44px;
	}

	.product-sticky-buy__title {
		font-size: .86rem;
	}

	.product-sticky-buy__button {
		min-height: 42px;
		padding: .65rem .9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
