.hero {
	position: relative;
	overflow: hidden;
	padding-block: 121.6px;
	background: var(--night);
	isolation: isolate;
}

.hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s;
	z-index: -1;
}

.hero__photo.is-on { opacity: 1; }

.hero .wrap {
	position: relative;
	max-width: 1140px;
	padding-inline: 4.5vw;
}

.hero .panel {
	width: 80%;
	max-width: 30rem;
	margin-right: auto;
	
	text-align: left;
	padding: 14.4px 9.6px;
	border-radius: var(--radius-lg);
	background: #08060c;
	color: #fff;
}

.hero__brand { margin: 0; }
.hero__logo { width: 100%; max-width: 339px; height: auto; }

.hero__title {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: .01em;
	color: #fff;
}

.hero p {
	max-width: none;
	margin: 18.4px 0 0;
	color: #fff;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 24px; }
.hero .button { color: #fff; }

[id="spores"], [id="grow-kits"] { scroll-margin-top: 80px; }

.split { display: grid; gap: 32px; }
.pair-cols { display: grid; gap: 32px; }

.trust { padding-block: clamp(24px, 3vw, 40px); }
.trust__strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.trust__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	font-size: clamp(12.5px, 3.2vw, 14px);
	line-height: 1.2;
}
.trust__item:hover { color: var(--kicker); }
.trust__item svg { width: 18px; height: 18px; flex: 0 0 auto; }

.cardset { margin: 24px 0; }
.only-desk { display: none; }
.promo { position: relative; display: grid; margin: 32px 0 0; border-radius: var(--radius-lg); overflow: hidden; }
.promo img { grid-area: 1 / 1; width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.promo__text {
	grid-area: 1 / 1;
	display: grid;
	place-items: center;
	padding: 28px 20px;
	background: linear-gradient(180deg, rgba(8,6,12,.3), rgba(8,6,12,.78));
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 16px rgba(8,6,12,.75);
}
.promo__panel {
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	opacity: 0;
	transition: opacity .6s;
}
.promo__panel.is-on { opacity: 1; }
.promo__title {
	font-weight: 800;
	font-size: clamp(20px, 4.8vw, 38px);
	line-height: 1.12;
	letter-spacing: -.01em;
}
.promo__sub {
	max-width: 46ch;
	font-size: clamp(13px, 3.1vw, 16.5px);
	line-height: 1.45;
	color: rgba(255,255,255,.92);
}

.promo__credit,
.promo__note {
	position: absolute;
	z-index: 2;
	line-height: 1.2;
	font-size: 9.92px;
	letter-spacing: 1.7856px;
	color: #fff;
	text-shadow: rgba(8, 6, 12, .9) 0 1px 3px;
}
.promo__credit { top: 11.2px; left: 12px; }
.promo__note { right: 12px; bottom: 11.2px; font-weight: 700; }

.strains { margin: 36px 0 0; }
.strains__head { margin: 0 0 12px; font-weight: 800; letter-spacing: .01em; }
.strains__intro { max-width: var(--measure); margin: 0 auto 18px; color: var(--ink-soft); }
.strains__head a { color: var(--ink); text-decoration: none; border-bottom: 2px solid currentColor; }
.strains__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.strains__list a {
	display: block;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(16, 13, 22, .055);
	color: var(--ink-soft);
	text-decoration: none;
	font-size: .88em;
	line-height: 1.3;
}
.strains__list a:hover { background: rgba(16, 13, 22, .11); color: var(--ink); }

.split__photo { order: -1; }

.split__text > *:last-child { margin-bottom: 0; }
.split__btn { max-width: none; margin: 0; }

.split__photo { margin: 0; }

.cycle {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--paper-tint);
}

.cycle img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .9s;
}

.cycle img.is-on { opacity: 1; }

.split__frame .split__name,
.split__frame .split__credit {
	position: absolute;
	z-index: 2;
	line-height: 1.2;
	color: #fff;
	text-shadow: rgba(8, 6, 12, .9) 0 1px 3px;
}

.split__name {
	top: 11.5px;
	left: 13.6px;
	font-size: 10.88px;
	font-weight: 700;
	letter-spacing: .6528px;
}

.split__credit {
	right: 12px;
	bottom: 11.2px;
	font-size: 9.92px;
	letter-spacing: 1.7856px;
}

.split__frame img,
.cycle {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media (min-width: 56.3125em) {
	.pair-cols { grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start; }
	.strains__list a { padding: 6px 13px; font-size: .9em; }
	.cardset { display: none; }
	.only-desk { display: block; }
	.split__frame img { aspect-ratio: auto; }
	.split__photo--tall .split__frame img { aspect-ratio: 3 / 4; }
	.cycle { aspect-ratio: 1 / 1; }
}

.split__frame { position: relative; display: block; line-height: 0; }
.split__frame > a { display: block; }
.split__frame img { width: 100%; border-radius: var(--radius-lg); }
.split__under {
	line-height: 1.4;
	margin: 8px 0 0;
	font-size: 12px;
	letter-spacing: .6px;
	color: var(--ink-faint);
}

.growkits { background: var(--paper-tint); padding-block: clamp(57.6px, 7.5vw, 96px); }
.growkits .split { margin-block: 24px; }

.duo { display: grid; gap: 38.4px; justify-content: center; }
.duo__card { display: flex; flex-direction: column; gap: 16px; }
.duo__card h3 { font-size: var(--card-name); line-height: 1.1; }
.duo__card h3 a { text-decoration: none; }
.duo__card p { margin: 0; max-width: none; color: var(--ink-soft); }
.duo__art { display: block; }
.duo__art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-lg); }
.duo__btn { margin: 0; }

.product-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--grid-gap);
	margin: 2.3rem 0;
}

.product-grid > * { flex: 0 0 calc((100% - var(--grid-gap)) / 2); }

.product-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--paper-tint);
	text-decoration: none;
	color: inherit;
}

.product-card__art { position: absolute; inset: 0; }
.product-card__art img { width: 100%; height: 100%; object-fit: cover; }

.product-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 62%;
	background: linear-gradient(to top, rgba(8, 6, 12, .86), rgba(8, 6, 12, .34) 46%, transparent);
}

.product-card__flag {
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 2;
	padding: 1.5px 4px;
	background: #000;
	font-size: var(--flag-size, 5px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #fff;
}

.product-card__name {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 24px 17.6px;
	text-align: center;
	font-size: var(--card-name);
	font-weight: var(--card-name-weight);
	line-height: 1.08;
	color: #fff;
	text-shadow: rgba(8, 6, 12, .85) 0 2px 8px;
}

.product-card__foot {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 12.8px 16px 16px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
}

.product-card__price del { opacity: .6; font-weight: 400; margin-right: 6px; }
.product-card__price ins { text-decoration: none; }

.blog-card { text-decoration: none; color: inherit; }
.blog-card__art { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper-tint); }
.blog-card__art img { width: 100%; height: 100%; object-fit: cover; }
.blog-card h3 { margin: 12px 0 4px; font-family: var(--font-heading); font-size: 17px; font-weight: 800; letter-spacing: 0; line-height: 1.25; }
.blog-card__date { font-size: 12.48px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-faint); }

.pair { display: grid; gap: 27.2px; max-width: 1000px; margin: 32px auto; align-items: start; justify-content: center; }
.pair .band { margin: 0; max-width: none; }

.pair .band img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center 28%; }

@media (min-width: 40em) {
	.pair .band img { aspect-ratio: 486 / 684; object-position: center; }
}
.pair .band figcaption { min-height: 40px; }

.band { margin: 32px auto; max-width: 900px; }
.band img { width: 100%; border-radius: var(--radius-lg); }
.band--wide img { aspect-ratio: 900 / 675; object-fit: cover; }
.band figcaption {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: .6px;
	color: var(--ink-faint);
	text-align: center;
}

.reviews__feed { margin-block: 32px; }
.reviews__more { max-width: none; margin: 0; }

.blog { padding-block: clamp(57.6px, 7vw, 89.6px); }
.blog__sub { max-width: none; margin: 0 0 24px; color: var(--ink-soft); }
.blog__more, .blog__all { max-width: none; margin: 24px 0 0; }
.blog__all a { font-weight: 700; }

.hero > br,
.cycle > br,
.split > br,
.split__frame > br,
.split__photo > br,
.cats > br,
.product-grid > br,
.duo > br,
.pair > br,
.carousel__track > br { display: none; }

.cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 17.6px; margin-top: 24px; }
.cats > * { flex: 0 0 calc((100% - 17.6px * (var(--cols-phone, 2) - 1)) / var(--cols-phone, 2)); }

.cat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	aspect-ratio: 4 / 3;
	padding: 20px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--night);
	text-align: center;
	text-decoration: none;
	transition: transform .15s;
}

.cat__art { position: absolute; inset: 0; }
.cat__art img { width: 100%; height: 100%; object-fit: cover; }

.cat::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 6, 12, .82), rgba(8, 6, 12, .46) 55%, rgba(8, 6, 12, .18));
}

.cat:hover { transform: translateY(-2px); }
.cat:hover .cat__art img { transform: scale(1.03); }
.cat__art img { transition: transform .4s; }

.cat__name { position: relative; z-index: 2; }

.cat__name {
	font-family: var(--font-heading);
	font-size: var(--card-name);
	font-weight: var(--card-name-weight);
	line-height: 1.1;
	color: #fff;
	text-shadow: rgba(8, 6, 12, .8) 0 2px 8px;
}

.section--tint { background: var(--paper-tint); }

.faq .wrap { max-width: 944px; }
.faq__list { margin-top: 24px; border-top: var(--hairline) solid var(--line); }
.faq__item { border-bottom: var(--hairline) solid var(--line); }
.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: var(--tap-target);
	padding: 16px 0;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: "+"; font-size: 22px; line-height: 1; color: var(--ink-faint); }
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer { padding-bottom: 16px; color: var(--ink-soft); }
.faq__answer p { max-width: var(--measure); }

@media (min-width: 40em) {
	.hero .panel { width: 62%; max-width: 34rem; padding: 24px; }
	.hero__logo { max-width: 413px; }
	.hero__title { font-size: 16.5px; margin-top: 16px; }
	.duo { grid-template-columns: repeat(2, 1fr); }
	.pair { grid-template-columns: repeat(2, 1fr); }
	.cats > * { flex-basis: calc((100% - 17.6px * (var(--cols-tablet, 3) - 1)) / var(--cols-tablet, 3)); }
	.blog__cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 56.3125em) {
	.split { grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start; }
	.split__photo { order: 0; }
	.split--wide { grid-template-columns: 1.174fr 1fr; gap: 41.6px; }
	.product-grid > * { flex-basis: calc((100% - var(--grid-gap) * 2) / 3); }
	.product-grid--4 > * { flex-basis: calc((100% - var(--grid-gap) * 3) / 4); }
	.cats > * { flex-basis: calc((100% - 17.6px * (var(--cols-desk, 4) - 1)) / var(--cols-desk, 4)); }

	.blog__cards { grid-template-columns: repeat(4, 1fr); }
	.hero { padding-block: 121.6px; }
	.hero .panel { width: 43%; max-width: none; margin-left: 34px; margin-right: auto; padding: 38.4px; border-radius: 22px; }
	.hero__logo { max-width: 416px; }
	.hero__title { font-size: 18px; margin-top: 18.4px; }
	.hero p { font-size: 16.32px; line-height: 24.48px; margin: 18.4px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__photo, .cycle img { transition: none; }
}

.split__text, .duo__card { text-align: center; }
.split__text > p, .duo__card p { max-width: var(--measure); margin-inline: auto; }
.faq__item { text-align: left; }
.vcard { text-align: left; }

.carousel { position: relative; margin-block: 24px; }

.carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 78%;
	gap: var(--grid-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;

	
	margin-inline: calc(var(--gutter) * -1);
	padding-inline: var(--gutter);
	scroll-padding-inline: var(--gutter);
	padding-bottom: 4px;
}

.carousel__track::-webkit-scrollbar { display: none; }

.carousel__arrow {
	position: absolute;
	top: 28%;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: var(--hairline) solid var(--line);
	border-radius: 999px;
	background: var(--paper);
	color: var(--ink);
	cursor: pointer;
}

.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }
.carousel__arrow:hover { border-color: var(--ink-faint); }
.carousel__arrow[hidden] { display: none !important; }

.vcard { scroll-snap-align: start; text-decoration: none; color: inherit; text-align: left; }

.vcard__art {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--paper-tint);
}

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

.vcard__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: rgba(8, 6, 12, .62);
}

.vcard__play::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 16px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transform: translateX(3px);
}

.vcard:hover .vcard__play { background: rgba(8, 6, 12, .82); }

.vcard__dur {
	position: absolute;
	right: 8px;
	bottom: 8px;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(8, 6, 12, .82);
	font-size: 11px;
	font-weight: 700;
	color: #fff;
}

.vcard__title {
	display: block;
	margin-top: 12px;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.vcard__date {
	display: block;
	margin-top: 4px;
	font-size: 12.48px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ink-faint);
}

@media (min-width: 40em) {
	.carousel__track { grid-auto-columns: 42%; }
	.carousel__arrow { display: flex; }
}

@media (min-width: 56.3125em) {
	.carousel__track { grid-auto-columns: calc((100% - var(--grid-gap) * 2) / 3); }
}

.reviews__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--grid-gap);
	margin-block: 32px;
}

.review {
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 24px;
	border: var(--hairline) solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--paper);
	text-align: left;
}

.review__stars { font-size: 15px; letter-spacing: 2px; color: var(--accent); }

.review__text {
	margin: 0;
	font-size: var(--body-size);
	line-height: 1.5;
	color: var(--ink);
}

.review__by { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.review__name { font-size: 14px; font-weight: 700; }
.review__verified { font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--kicker); }
.review__product { font-size: 13px; color: var(--ink-soft); }

@media (min-width: 40em) {
	.review { flex-basis: calc((100% - var(--grid-gap)) / 2); }
}

@media (min-width: 56.3125em) {
	.review { flex-basis: calc((100% - var(--grid-gap) * 2) / 3); }
}

.home .card__ez {
	top: 6px;
	left: 6px;
	padding: 1.5px 4px;
	font-size: var(--flag-size, 6px);
	line-height: 1;
	letter-spacing: .02em;
}

@media (min-width: 40em) {
	.home .card__ez {
		top: 8px;
		left: 8px;
		padding: 3.2px 8px;
		font-size: 8.96px;
		letter-spacing: .5376px;
	}
}

.news:not(:has(.news__item)) { display: none; }

.news__item { max-width: var(--measure); margin-inline: auto; }
.news__title { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 12px; }
.news__body { color: var(--ink-soft); line-height: 1.6; }
.news__body p { margin: 0 0 12px; }
.news__body p:last-child { margin-bottom: 0; }
.news__body a { font-weight: 700; color: var(--ink); }
.news__more { margin-top: 20px; }
.news__body .cyc-news__sign { margin-top: 20px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); font-size: .9em; }

.logoswap { display: grid; }
.logoswap img { grid-area: 1 / 1; opacity: 0; transition: opacity .6s; }
.logoswap img.is-on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
	.logoswap img { transition: none; }
}

.news__title a { color: inherit; text-decoration: none; border-bottom: 2px solid currentColor; }
.news__title a:hover { color: var(--kicker); }

/* ==========================================================================
   PROMO PANEL, treatment B (owner 2026-09-17, picked from four mocked over the
   real background). The panel had every line the same size in a muted #ff7fb0,
   which the owner called "a horrible pink and not the bright luminous" and, more
   to the point, gave four paragraphs equal weight so nothing led. A promo banner
   needs one thing to look at first.

   So: the heading carries the luminous pink and a glow, the offer itself is white
   and larger, the explanation and the rule step down, and the date is quietest.
   #ff2d8f is the brand --pink (#cf1667) lifted for a dark photo: same hue, enough
   lightness to stay legible over the scrim, where the token measures about 4:1.
   ========================================================================== */
.promo__title {
	text-transform: uppercase;
	letter-spacing: .01em;
	color: #ff2d8f;
	/* the glow is what makes it read as luminous rather than just saturated */
	text-shadow: 0 0 22px rgba(255,45,143,.55), 0 2px 16px rgba(8,6,12,.8);
}
/* the explanation and the rule sit under it, quieter */
.promo__sub {
	font-size: clamp(12.5px, 2.9vw, 14.5px);
	color: rgba(255,255,255,.88);
}

/* the offer line leads: white, larger, bold */
.promo__lead {
	font-size: clamp(14px, 3.4vw, 18px);
	font-weight: 700;
	color: #fff;
}
/* a timestamp on the offer, not part of it */
.promo__date {
	font-size: clamp(10.5px, 2.4vw, 12px);
	color: rgba(255,255,255,.7);
	margin-top: 2px;
}

/* The promo sits in its own band above Latest News now (owner 2026-09-17: "Put that right
   above the latest news section please"), rather than tucked inside the spores section. Its
   32px top margin was spacing it off the spore grid it used to follow; in a band of its own
   the section padding already does that job. */
.promoband .promo { margin-top: 0; }
