/**
 * Trichovex theme stylesheet.
 *
 * Translated from the Figma file "Trichovex-wireframes", page Home,
 * frame 1:2 "🏠 Home — Desktop" (1440 x 3742).
 *
 * Figma hex values are mapped to the --tv-* custom properties below; absolute
 * artwork offsets are converted to percentages of their container so the
 * composed photo crops survive every breakpoint.
 *
 * Contents
 *   1.  Tokens
 *   2.  Reset & base
 *   3.  Utilities
 *   4.  Buttons
 *   5.  Header & nav
 *   6.  Hero
 *   7.  Trust bar
 *   8.  Ingredients
 *   9.  Benefits / before & after
 *   10. How it works
 *   11. Social proof
 *   12. Final CTA
 *   13. Footer
 *   14. Inner pages
 *   15. Forms
 *   16. Page content
 *   17. Responsive
 */

/* ============================================================ 1. TOKENS */

:root {
	--tv-green: #385543;
	--tv-green-90: rgba(56, 85, 67, 0.9);
	--tv-green-15: rgba(56, 85, 67, 0.15);
	--tv-lime: #b6d965;
	--tv-lime-soft: #bdd875;
	--tv-yellow: #f8e189;
	--tv-brown: #5d372a;
	--tv-mint: #eff6ed;
	--tv-wash: #f3fbe4;
	--tv-ink: #1a2a22;
	--tv-white: #fff;
	--tv-muted: #8c8c8c;
	--tv-line: #e8e8e8;
	/* #8c8c8c on the footer ink is 4.47:1 — below AA. These two clear it. */
	--tv-footer-muted: #9aa79f;
	--tv-footer-line: #33463c;

	--tv-font-display: "Avenir Next", Avenir, "Nunito Sans", -apple-system,
		BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tv-font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;

	--tv-container: 1200px;
	--tv-gutter: 24px;
	--tv-radius-card: 14px;
	--tv-radius-photo: 18px;
	--tv-radius-btn: 6px;

	--tv-shadow-card: 0 6px 20px rgba(56, 46, 13, 0.12);
	--tv-header-h: 80px;
}

/* ============================================================ 2. RESET & BASE */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--tv-white);
	color: var(--tv-green);
	font-family: var(--tv-font-body);
	font-size: 16px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--tv-font-display);
	font-weight: 700;
	line-height: 1.1;
	color: var(--tv-green);
}

p {
	margin: 0;
}

ul,
ol,
dl,
dd {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Underline links inside editor content only — chrome links style themselves. */
.entry-content a,
.faq-item__a a,
.contact-channel a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

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

:focus-visible {
	outline: 3px solid var(--tv-lime);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ============================================================ 3. UTILITIES */

.container {
	width: 100%;
	max-width: calc(var(--tv-container) + var(--tv-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--tv-gutter);
}

.container.narrow {
	max-width: calc(760px + var(--tv-gutter) * 2);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 8px;
	top: 8px;
	z-index: 200;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: var(--tv-green);
	color: var(--tv-white);
	border-radius: var(--tv-radius-btn);
}

/* Eyebrow — Figma: Avenir Next Bold, 12px, #5d372a, tracking 2px. */
.eyebrow {
	font-family: var(--tv-font-display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--tv-brown);
	margin: 0 0 11px;
}

.eyebrow--wide {
	letter-spacing: 2.5px;
}

.section-head {
	margin-bottom: 42px;
}

.section-head--center {
	text-align: center;
}

.section-head__title {
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 48px);
	letter-spacing: -0.01em;
}

.section-lede {
	max-width: 60ch;
	margin: -26px auto 40px;
	text-align: center;
	font-size: 16px;
	color: var(--tv-green);
	opacity: 0.75;
}

.section-foot {
	margin-top: 36px;
	text-align: center;
}

.text-link {
	font-weight: 500;
	font-size: 15px;
	color: var(--tv-green);
	border-bottom: 1px solid var(--tv-green-15);
	padding-bottom: 2px;
	transition: border-color 0.2s ease;
}

.text-link:hover {
	border-bottom-color: var(--tv-green);
}

/* Badge pill — Figma: Inter Bold 11px on green/brown, radius 13px. */
.badge {
	display: inline-block;
	padding: 6px 11px;
	border-radius: 13px;
	background: var(--tv-green);
	color: var(--tv-white);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}

/* Left-rule note — Figma: 3px x 20px bar + Avenir Next Demi 14px. */
.rule-note {
	position: relative;
	padding-left: 14px;
	font-family: var(--tv-font-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	color: var(--tv-green);
}

.rule-note::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 3px;
	height: 1.15em;
	background: var(--tv-green);
}

/* ============================================================ 4. BUTTONS */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--tv-radius-btn);
	font-family: var(--tv-font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn__arrow {
	transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
	transform: translateX(3px);
}

.btn--primary {
	background: var(--tv-green);
	color: var(--tv-white);
}

.btn--primary:hover {
	background: #2c4536;
}

.btn--invert {
	background: var(--tv-white);
	color: var(--tv-green);
}

.btn--invert:hover {
	background: var(--tv-lime);
}

.btn--ghost-lime {
	padding: 0;
	background: none;
	color: var(--tv-lime);
	font-size: 13px;
	font-weight: 400;
}

.btn--ghost-lime:hover {
	transform: none;
	color: var(--tv-white);
}

.btn--sm {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
}

.btn--lg {
	padding: 18px 34px;
	font-size: 16px;
}

/* ============================================================ 5. HEADER & NAV */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--tv-white);
	border-bottom: 1px solid var(--tv-line);
}

.site-header__inner {
	max-width: calc(var(--tv-container) + var(--tv-gutter) * 2);
	margin-inline: auto;
	padding: 0 var(--tv-gutter);
	min-height: var(--tv-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-header__logo img,
.custom-logo-link img {
	width: auto;
	height: 23px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-nav__list a {
	font-family: var(--tv-font-display);
	font-size: 14px;
	font-weight: 500;
	color: var(--tv-green);
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	border-bottom-color: var(--tv-lime);
}

.site-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.site-nav__bar {
	display: block;
	width: 22px;
	height: 2px;
	margin-inline: auto;
	background: var(--tv-green);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(3) {
	opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================ 6. HERO */

/*
 * Figma: 1440 x 730 band. "Cover 1" is drawn 1975 x 925 at (-508, -83),
 * i.e. the visible window sits at 25.7%–98.6% across and 9%–87.9% down the
 * source. object-position 62% 48% reproduces that framing at any width.
 */
.hero {
	position: relative;
	isolation: isolate;
	min-height: 730px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 48%;
}

.hero__inner {
	width: 100%;
	max-width: calc(var(--tv-container) + var(--tv-gutter) * 2);
	margin-inline: auto;
	padding: 60px var(--tv-gutter);
}

.hero__title {
	max-width: 560px;
	font-weight: 600;
	font-size: clamp(2.5rem, 5.2vw, 60px);
	line-height: 1.1;
	margin-bottom: 26px;
}

.hero__lede {
	max-width: 520px;
	font-size: 18px;
	line-height: 1.62;
	color: var(--tv-green);
	opacity: 0.78;
	margin-bottom: 30px;
}

.hero__lede strong {
	font-weight: 600;
}

/* ============================================================ 7. TRUST BAR */

.trust-bar {
	background: var(--tv-mint);
}

.trust-bar__inner {
	max-width: calc(var(--tv-container) + var(--tv-gutter) * 2);
	margin-inline: auto;
	padding: 25px var(--tv-gutter) 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-item {
	position: relative;
	padding: 0 20px;
	text-align: center;
}

.trust-item + .trust-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 17px;
	width: 1px;
	height: 80px;
	background: var(--tv-green-15);
}

/*
 * Fixed 48px box with contain, so a client-uploaded icon of any aspect ratio
 * sits in the same optical position as the four bundled SVGs instead of being
 * stretched to a square.
 */
.trust-item__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 10px;
	object-fit: contain;
}

.trust-item__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}

.trust-item__copy {
	max-width: 280px;
	margin-inline: auto;
	font-size: 13px;
	line-height: 1.45;
	opacity: 0.65;
}

/* ============================================================ 8. INGREDIENTS */

.ingredients {
	background: var(--tv-white);
	padding: 100px 0 82px;
}

.ingredients__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/*
 * Card is 373.333 x 392 in Figma. Everything below the artwork sits in normal
 * flow so copy can wrap without breaking the layout; the artwork is an
 * absolutely positioned layer sized in % of the card.
 */
.ing-card {
	position: relative;
	isolation: isolate;
	min-height: 392px;
	padding: 196px 24px 24px;
	border-radius: var(--tv-radius-card);
	overflow: hidden;
	background: var(--tv-mint);
}

.ing-card--caffeine {
	background: var(--tv-yellow);
}

.ing-card--copper-tripeptide {
	background: var(--tv-lime);
}

/* --- Ingredient card artwork ------------------------------------------- */

.ing-card__art {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	border-radius: inherit;
}

/*
 * Each artwork box is sized from the card WIDTH plus its own aspect-ratio, not
 * from width and height independently. The card grows taller than 392px
 * whenever copy wraps, and driving the height off the card height would reshape
 * the designed box (and, for the two rotated images, skew how the rotation
 * reads). Width + ratio keeps every box in its Figma proportions at any size.
 */
.ing-card__art img {
	position: absolute;
	max-width: none;
	height: auto;
	object-fit: cover;
}

/* Figma 192:94 — box 528.963 x 467.648 centred at (166.68, 202.17), rot -15.25°. */
.ing-card--deoxyribose .ing-card__art img {
	left: 44.65%;
	top: 51.57%;
	width: 141.69%;
	aspect-ratio: 528.963 / 467.648;
	transform: translate(-50%, -50%) rotate(-15.25deg);
}

/* Figma 210:2 — 475 x 608 at (-6.33, -7). */
.ing-card--caffeine .ing-card__art img {
	left: -1.7%;
	top: -1.79%;
	width: 127.23%;
	aspect-ratio: 475 / 608;
}

/* Figma 141:34 — box 627.361 x 554.64 centred at (234.44, 178.93), rot 84.92°. */
.ing-card--copper-tripeptide .ing-card__art img {
	left: 62.8%;
	top: 45.65%;
	width: 168.04%;
	aspect-ratio: 627.361 / 554.64;
	transform: translate(-50%, -50%) rotate(84.92deg);
}

.ing-card--caffeine .badge {
	background: var(--tv-brown);
}

.ing-card__name {
	font-weight: 600;
	font-size: 22px;
	margin: 14px 0 10px;
}

.ing-card__copy {
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.8;
	margin-bottom: 26px;
}

/* ============================================================ 9. BENEFITS */

.benefits {
	background: var(--tv-wash);
	padding: 89px 0 96px;
}

.benefits__grid {
	display: grid;
	grid-template-columns: minmax(0, 660px) minmax(0, 560px);
	gap: 60px;
	align-items: center;
}

.benefits__proof {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 314px));
	gap: 15px;
	justify-content: start;
}

.result-card {
	margin: 0;
	text-align: center;
}

/*
 * Figma masks both cards to 314 x 420, radius 18. The supplied photos are
 * already cropped to exactly that window, so the frame only has to hold the
 * ratio and clip the corners.
 */
.result-card__frame {
	aspect-ratio: 314 / 420;
	border-radius: var(--tv-radius-photo);
	overflow: hidden;
	background: var(--tv-mint);
}

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

.result-card__pill {
	display: inline-block;
	margin-top: 10px;
	padding: 3px 22px;
	border-radius: 50px;
	background: var(--tv-green);
	color: var(--tv-white);
	font-size: 16px;
	font-weight: 500;
}

.result-card__pill--after {
	background: var(--tv-lime);
	color: var(--tv-green);
}

.benefits__title {
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 48px);
	margin-bottom: 36px;
}

.benefits__list {
	display: grid;
	gap: 26px;
}

.benefit {
	position: relative;
	padding-left: 16px;
}

.benefit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 3px;
	height: 22px;
	background: var(--tv-lime);
}

.benefit__title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}

.benefit__copy {
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.75;
}

/* ============================================================ 10. HOW IT WORKS */

.how-it-works {
	background: var(--tv-white);
	padding: 72px 0 78px;
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/*
 * Card 373 x 302 with a 373 x 181 photo band bleeding to the card edges. Each
 * step crops a different region of its source, matching the Figma masks.
 */
.step-card {
	position: relative;
	min-height: 302px;
	padding: 40px 24px 24px;
	border-radius: var(--tv-radius-card);
	overflow: hidden;
	background: var(--tv-mint);
	text-align: center;
}

.step-card__art {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	aspect-ratio: 373 / 181;
	overflow: hidden;
}

/*
 * The step photos ship pre-composed at 3:2, so the band only re-crops them to
 * its wider 373:181 ratio. object-position is tuned per step to keep the point
 * of interest — the parting, the dropper tip — inside the band.
 */
.step-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.step-card--cleanse .step-card__art img {
	object-position: 50% 42%;
}

.step-card--apply .step-card__art img {
	object-position: 50% 52%;
}

.step-card--massage .step-card__art img {
	object-position: 50% 46%;
}

/* Number medallion straddling the band edge: Figma 44px circle at y 157. */
.step-card__num {
	position: relative;
	z-index: 1;
	width: 44px;
	height: 44px;
	margin: calc(48.5% - 22px) auto 12px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tv-green);
	color: var(--tv-white);
	font-family: var(--tv-font-display);
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

.step-card__title {
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 10px;
}

.step-card__copy {
	font-size: 14px;
	line-height: 1.58;
	opacity: 0.78;
}

/* ============================================================ 12. FINAL CTA */

.final-cta {
	background: var(--tv-green);
	padding: 56px 0 56px;
	text-align: center;
}

.final-cta__title {
	font-weight: 800;
	font-size: clamp(2.2rem, 4.4vw, 52px);
	color: var(--tv-white);
	margin-bottom: 20px;
}

.final-cta__lede {
	color: var(--tv-lime);
	font-size: 16px;
	margin-bottom: 32px;
}

/* ============================================================ 13. FOOTER */

.site-footer {
	background: var(--tv-ink);
	color: var(--tv-white);
	padding: 64px 0 24px;
	/* The closing CTA above is --tv-green; the hairline keeps the two dark
	   bands from reading as one accidental block. */
	border-top: 1px solid rgba(182, 217, 101, 0.22);
}

.site-footer__inner {
	max-width: calc(var(--tv-container) + var(--tv-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--tv-gutter);
}

.site-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--tv-footer-line);
}

/* Brand column is wider: it carries the wordmark, strapline and blurb, and
   the three link columns only need ~180px each. */
.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
	gap: 40px 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--tv-footer-line);
}

.site-footer__wordmark {
	display: inline-block;
	font-family: var(--tv-font-display);
	font-weight: 800;
	font-size: 18px;
	letter-spacing: 0.01em;
	color: var(--tv-white);
}

.site-footer .custom-logo-link img {
	height: 22px;
	filter: brightness(0) invert(1);
}

.site-footer__tagline {
	margin-top: 10px;
	font-size: 13px;
	color: var(--tv-lime);
}

.site-footer__blurb {
	margin-top: 14px;
	max-width: 40ch;
	font-size: 13px;
	line-height: 1.7;
	color: var(--tv-footer-muted);
}

.site-footer__col-title {
	margin-bottom: 16px;
	font-family: var(--tv-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--tv-footer-muted);
}

.site-footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* inline-flex kills the whitespace before a trailing .btn__arrow, so the gap
   has to be declared. */
.site-footer__list a,
.site-footer__list .btn--ghost-lime {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--tv-white);
	transition: color 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__list .btn--ghost-lime:hover {
	color: var(--tv-lime);
}

.site-footer__list a:hover .btn__arrow {
	transform: translateX(3px);
}

/* The shop link inherits .btn, whose hover lifts the element. Inside a
   stacked list that shifts the rows below it. */
.site-footer__list .btn--ghost-lime {
	font-size: 14px;
	font-weight: 600;
	color: var(--tv-lime);
}

.site-footer__list .btn--ghost-lime:hover {
	transform: none;
	color: var(--tv-white);
}

.site-footer__list .current-menu-item > a {
	color: var(--tv-lime);
}

.site-footer__note {
	max-width: 34ch;
	font-size: 12px;
	line-height: 1.6;
	color: var(--tv-footer-muted);
}

.site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 24px;
	padding-top: 20px;
}

.site-footer__legal,
.site-footer__fineprint {
	font-size: 12px;
	color: var(--tv-footer-muted);
}

/* ============================================================ 14. INNER PAGES */

.page-hero {
	position: relative;
	isolation: isolate;
	padding: 96px 0 80px;
	background: var(--tv-mint);
	overflow: hidden;
}

.page-hero--plain {
	background: var(--tv-wash);
}

/*
 * How To Use hero — centred, on white. Matched to the client reference of
 * 2026-07-29 (1636px PNG measured at 1.151 device px per CSS px; the scale was
 * fixed by the two unchanged tokens in the shot, the 12px eyebrow and the 18px
 * lede, which both solve exactly). Every colour in the reference resolves to an
 * existing token — nothing new was introduced. Kept off `--plain` because 404,
 * index and page.php share that modifier and must stay left-aligned on wash.
 */
.page-hero--steps {
	background: var(--tv-white);
	text-align: center;
}

/* Reference title measured 776.7 CSS px on one line, which is 60px type for
   this string — 4px above the shared hero size, so it is set here only. */
.page-hero--steps .page-hero__title {
	max-width: none;
	font-size: clamp(2.4rem, 4.2vw, 60px);
	margin-bottom: 27px;
}

.page-hero--steps .page-hero__lede {
	max-width: 720px;
	margin-inline: auto;
}

.page-hero--steps .eyebrow {
	margin-bottom: 26px;
}

.page-hero--product {
	background: transparent;
	min-height: 620px;
	display: flex;
	align-items: center;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 48%;
}

/*
 * Dark product hero. Geometry matched to the approved reference at a 1552px
 * viewport: content edge 100px, eyebrow cap-top 97, headline 141–263,
 * lede 318–368, chips 424–464 (40 tall), button 502–539 (241 x 37).
 */
.page-hero--dark {
	--tv-hero-lime: #bdd875;
	min-height: 756px;
	display: flex;
	align-items: flex-start;
	padding: 0;
	color: var(--tv-white);
}

/*
 * The bundled photo is a tighter composition than the reference (a different
 * product render — its label reads "Advanced Follicle Regeneration Serum", the
 * reference reads "Hair Serum / Dermatology Tested"). At this band ratio the
 * image is only ever cropped vertically, so the bottle sits centre-right rather
 * than hard right. Over-scaling to force it right blows the bottle up well past
 * the reference size, so the honest crop wins; the scrim carries the contrast.
 */
/*
 * Rather than stretching the photo across the band (which forces the bottle to
 * centre and crops the scene), the band is a green field and the photo sits on
 * the right at its natural aspect — full height, nothing cropped vertically, so
 * the composition reads zoomed-out. Its left edge is masked into the field, so
 * there is no seam and the copy sits on flat colour.
 *
 * Field colours sampled from the reference: #214b35 top-left → #386b53 bottom.
 */
.page-hero--dark .page-hero__bg {
	overflow: hidden;
	background: linear-gradient(158deg, #214b35 0%, #2d5a43 48%, #386b53 100%);
}

.page-hero--dark .page-hero__bg img {
	position: absolute;
	left: 27%;
	top: 0;
	width: auto;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: left center;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.1) 18%,
		rgba(0, 0, 0, 0.55) 30%,
		#000 38%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.1) 18%,
		rgba(0, 0, 0, 0.55) 30%,
		#000 38%
	);
}

/* Light, fast-falling — the bottle half stays untouched and bright. */
.page-hero--dark .page-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(16, 38, 26, 0.42) 0%,
		rgba(16, 38, 26, 0.26) 38%,
		rgba(16, 38, 26, 0) 60%
	);
}

/* Wider gutter than the standard container: reference sits at ~6.4vw, not 1200 centred. */
.page-hero--dark .page-hero__inner {
	max-width: none;
	padding-inline: clamp(24px, 6.45vw, 108px);
	padding-block: 95px 0;
}

.page-hero--dark .eyebrow {
	color: var(--tv-hero-lime);
	font-size: 13px;
	letter-spacing: 2.6px;
	margin: 0 0 22px;
}

.page-hero--dark .page-hero__title {
	max-width: 760px;
	font-size: clamp(2.4rem, 4.3vw, 66px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--tv-white);
	margin-bottom: 31px;
}

.page-hero--dark .page-hero__lede {
	max-width: 766px;
	font-size: 18px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.9);
	opacity: 1;
	margin-bottom: 40px;
}

.page-hero--dark .page-hero__lede strong {
	font-weight: 700;
	color: var(--tv-white);
}

.page-hero--dark .claim-chips {
	gap: 14px;
	margin: 0 0 35px;
}

.page-hero--dark .claim-chips li {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--tv-hero-lime);
	color: #2b4a36;
	font-size: 13px;
	font-weight: 600;
}

.page-hero--dark .btn--invert {
	padding: 0 46px;
	min-height: 37px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
}

/*
 * Key benefits band under the product hero.
 *
 * The product photo is not a framed picture here — it *is* the band. The shot
 * is a 2.1:1 banner whose own backdrop is the same pale green as the section,
 * so it is blown up to ~119% of the viewport and bled off all four edges: the
 * bottle lands in the left third and the rest of the frame reads as flat
 * colour behind the copy, with no seam anywhere. --tv-kb-bg is sampled from
 * the photo so any part of the band the image cannot reach still matches.
 *
 * Geometry is measured off the approved reference at a 1564px viewport and
 * expressed as percentages of it, so the whole band scales with the window.
 */
.key-benefits {
	--tv-kb-bg: #edf5da;
	--tv-kb-lime: var(--tv-lime-soft);
	position: relative;
	overflow: hidden;
	min-height: 748px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: var(--tv-kb-bg);
}

.key-benefits__photo {
	position: absolute;
	inset: 0;
}

/*
 * 119.4% wide, pulled 13.75% left and centred a touch high (-51.5% rather than
 * -50%) — that is what puts the bottle at x 123–483 of 1564, matching the
 * reference. The top/bottom fade only ever shows if the band grows taller than
 * the photo can cover; at the design height it sits outside the section.
 */
.key-benefits__photo img {
	position: absolute;
	left: -13.75%;
	top: 50%;
	width: 119.4%;
	max-width: none;
	transform: translateY(-51.5%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
	        mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.key-benefits__inner {
	position: relative;
	width: 58.18%;   /* 910 / 1564 */
	margin-right: 5.69%;   /* 89 / 1564 */
	padding-bottom: 31px;
}

.key-benefits .eyebrow {
	font-size: 12.5px;
	letter-spacing: 2.2px;
	margin: 0 0 22px;
}

.key-benefits__title {
	font-size: clamp(2rem, 3.5vw, 54.7px);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -0.005em;
	color: var(--tv-green);
	margin: 0 0 51px;
}

.key-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.kb-card {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 25px 36px 25px 38px;
	border-radius: 10px;
	background: var(--tv-kb-lime);
}

/* Square canvas + contain, so every glyph reads at the same optical weight. */
.kb-card__icon {
	flex: 0 0 auto;
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.kb-card__title {
	font-family: var(--tv-font-display);
	font-size: 16.3px;
	font-weight: 600;
	line-height: 1.05;
	max-width: 90%;
	color: var(--tv-green);
	margin: 0 0 12px;
}

.kb-card__body p {
	font-size: 13px;
	line-height: 13px;
	color: var(--tv-green);
	margin: 0;
}

/*
 * Below ~1180px the copy column is too narrow for two cards side by side, so
 * the band stops being an overlay: the photo becomes a cropped strip on top
 * (object-position keeps the bottle in frame) and the copy runs full width
 * underneath on the same sampled green.
 */
@media (max-width: 1180px) {
	.key-benefits {
		display: block;
		min-height: 0;
		padding-bottom: 56px;
	}

	.key-benefits__photo {
		position: relative;
		inset: auto;
		aspect-ratio: 16 / 7;
	}

	.key-benefits__photo img {
		position: absolute;
		inset: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 24% 50%;
		transform: none;
		-webkit-mask-image: none;
		        mask-image: none;
	}

	.key-benefits__inner {
		width: auto;
		margin-right: 0;
		padding: 44px var(--tv-gutter) 0;
	}

	.key-benefits__title {
		margin-bottom: 32px;
	}

	.kb-card {
		gap: 22px;
		padding: 26px 26px 26px 28px;
	}

	.kb-card__icon {
		width: 76px;
		height: 76px;
	}

	.kb-card__title {
		font-size: 17px;
	}

	.kb-card__body p {
		font-size: 13.5px;
		line-height: 1.45;
	}
}

@media (max-width: 720px) {
	.key-benefits__grid {
		grid-template-columns: 1fr;
	}

	.key-benefits__photo {
		aspect-ratio: 4 / 3;
	}
}

.page-hero__inner {
	width: 100%;
}

.page-hero__title {
	max-width: 18ch;
	font-weight: 600;
	font-size: clamp(2.2rem, 4.8vw, 56px);
	margin-bottom: 20px;
}

.page-hero__lede {
	max-width: 56ch;
	font-size: 18px;
	line-height: 1.62;
	opacity: 0.78;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	margin-top: 28px;
}

.claim-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0;
}

.claim-chips li {
	padding: 8px 16px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--tv-green-15);
	font-size: 13px;
	font-weight: 600;
}

/* --- Product deep dive --- */

/*
 * Geometry measured off the approved reference at a 1520px viewport: 98px
 * gutters (the same 6.45vw the hero band uses), two 618px columns, 88px
 * between them, photos at 618x376. No rules between the rows — the alternating
 * photo side carries the rhythm on its own.
 */
.deep-dive {
	padding: 43px 0 69px;
}

.deep-dive > .container {
	max-width: none;
	padding-inline: clamp(24px, 6.45vw, 108px);
}

.deep-dive .section-head {
	margin-bottom: 70px;
}

.deep-dive .eyebrow {
	font-size: 13.6px;
	letter-spacing: 1.8px;
	margin-bottom: 26px;
}

.deep-dive .section-head__title {
	font-size: clamp(2rem, 3.375vw, 51.3px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.01em;
}

/*
 * Alternating editorial rows: photo left, right, left. The visual keeps its
 * source order in the DOM (so the reading order stays photo-then-copy) and only
 * the visual column is flipped, which keeps it accessible.
 */
.dd-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 88px;
	align-items: center;
}

.dd-row + .dd-row {
	margin-top: 61px;
}

.dd-row:nth-of-type(even) .dd-row__visual {
	order: 2;
}

.dd-row__visual {
	border-radius: 16px;
	overflow: hidden;
	background: var(--tv-mint);
	aspect-ratio: 618 / 376;
}

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

/* Pill sits on green, then brown on the flipped row, then green again. */
.dd-row .badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 14px;
	border-radius: 16px;
	font-size: 12.2px;
	font-weight: 700;
	letter-spacing: 0;
}

.dd-row:nth-of-type(even) .badge {
	background: var(--tv-brown);
}

.dd-row__name {
	font-weight: 600;
	font-size: 42.2px;
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 17px 0 0;
}

.dd-row__latin {
	font-family: var(--tv-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: none;
	color: #95a099;
	margin: 10px 0 0;
}

.dd-row__body {
	font-size: 17.5px;
	line-height: 29px;
	color: #657668;
	opacity: 1;
	margin: 18px 0 0;
}

.dd-row .rule-note {
	margin-top: 26px;
	padding-left: 24px;
	font-family: var(--tv-font-body);
	font-size: 16.3px;
	line-height: 1.3;
}

.dd-row .rule-note::before {
	top: 0.06em;
	width: 3px;
	height: 21px;
	background: var(--tv-lime-soft);
}

/* --- Mechanism --- */

.mechanism {
	padding: 0;
	background: var(--tv-white);
}

/*
 * The photo bleeds off the left edge of the viewport and runs the full height
 * of the band — it is the section's only boundary, which is why there is no
 * tint behind it and no vertical padding on the section itself. The copy
 * column still lines up with the container's right gutter, so its right edge
 * matches every other section on the page.
 */
.mechanism__grid {
	display: grid;
	grid-template-columns: 45.5% minmax(0, 1fr);
	gap: 70px;
	align-items: center;
	max-width: none;
	padding-inline: 0;
}

.mechanism__visual {
	margin: 0;
	overflow: hidden;
	background: var(--tv-mint);
	align-self: stretch;
	/* 45.5vw wide at the source's 1200x1376 ratio; a floor, so the photo sets
	   the band height on desktop but still grows if the copy runs longer. */
	min-height: 52vw;
}

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

.mechanism__body {
	/* Asymmetric: the design sits the copy block a little above the band's
	   centre rather than dead-centre against the photo. */
	padding-block: 72px 112px;
	padding-right: max(var(--tv-gutter), (100vw - var(--tv-container)) / 2);
}

.mechanism__title {
	font-size: clamp(2rem, 3.6vw, 51px);
	font-weight: 600;
	margin-bottom: 88px;
}

/*
 * Steps read as a numbered descent — surface, mid-scalp, root. The numeral is
 * the whole marker: oversized, in the soft lime, set back from the copy so the
 * three titles form their own column.
 */
.mechanism__steps {
	display: grid;
	gap: 53px;
}

.mech-step {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 26px;
}

.mech-step__num {
	font-family: var(--tv-font-display);
	font-weight: 600;
	font-size: 66px;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--tv-lime-soft);
	/* Pulls the numeral's cap up level with the title's. */
	margin-top: -7px;
}

.mech-step__title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 8px;
}

.mech-step p {
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.78;
}

/* --- Why grid --- */

.why-grid-section {
	padding: 88px 0;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.why-card {
	padding: 28px 24px;
	border-radius: var(--tv-radius-card);
	background: var(--tv-mint);
}

.why-card__icon {
	width: 56px;
	height: auto;
	margin-bottom: 16px;
}

.why-card__title {
	font-size: 17px;
	margin-bottom: 8px;
}

.why-card p {
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.78;
}

/* --- Timeline --- */

.timeline {
	padding: 88px 0;
	background: var(--tv-mint);
}

.timeline__rail {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tl-mile {
	position: relative;
	padding-top: 34px;
}

.tl-mile::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 15px;
	height: 2px;
	background: var(--tv-green-15);
}

.tl-mile:last-child::before {
	right: 50%;
}

.tl-mile:first-child::before {
	left: 50%;
}

.tl-mile__dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tv-green);
	color: var(--tv-white);
	font-family: var(--tv-font-display);
	font-weight: 700;
	font-size: 14px;
}

.tl-mile__phase {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tv-brown);
	font-weight: 600;
	margin-bottom: 6px;
}

.tl-mile__title {
	font-size: 18px;
	margin-bottom: 8px;
}

.tl-mile p {
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.78;
}

/* --- INCI table --- */

.inci {
	padding: 88px 0;
}

.inci__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 48px;
}

.inci-row {
	padding: 18px 0;
	border-bottom: 1px solid var(--tv-green-15);
}

.inci-row strong {
	display: block;
	font-family: var(--tv-font-display);
	font-size: 15px;
	margin-bottom: 4px;
}

.inci-row p {
	font-size: 14px;
	opacity: 0.75;
}

/* --- How To Use --- */

.htu-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

/*
 * Reference chip widths were 134.7 / 119.9 / 141.6 CSS px. The differences
 * between them match the current 14px label metrics to within 0.5px, so the
 * type is unchanged and only the box around it grew: 80px of fixed overhead
 * (12 + 28 circle + 12 gap + 28) against the old 66, and 48px tall.
 */
.htu-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 28px 10px 12px;
	border-radius: 50px;
	background: var(--tv-mint);
	font-weight: 600;
	font-size: 14px;
}

.htu-chip__num {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tv-green);
	color: var(--tv-white);
	font-size: 13px;
}

/*
 * The connector arrows sit in the flex gap, not inside the pill, so they are
 * absolutely positioned rather than being flex items — a pseudo-element inside
 * the <li> would land on top of the mint background. Gap is 12 + 16 + 12.
 */
.page-hero--steps .htu-chips {
	justify-content: center;
	gap: 40px;
	margin-top: 34px;
}

.page-hero--steps .htu-chip + .htu-chip::before {
	content: "\2192";
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	line-height: 1;
	color: var(--tv-lime-soft);
}

.ritual {
	padding: 88px 0;
}

.ritual-step {
	display: grid;
	grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	padding: 36px 0;
	border-top: 1px solid var(--tv-green-15);
}

.ritual-step:first-of-type {
	border-top: 0;
}

.ritual-step__visual {
	border-radius: var(--tv-radius-card);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--tv-mint);
}

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

/*
 * The step number used to be absolutely positioned over the top-left of the
 * photo, where it sat on whatever the crop happened to contain — on step 1 that
 * is wet hair and foam, so a dark green disc on a light busy field. It now leads
 * the copy column instead, on a flat background, and stops covering the image.
 */
.ritual-step__num {
	flex: 0 0 auto;
	/* the row is baseline-aligned for the title and its duration pill; a disc
	   has no meaningful baseline, so it centres against them instead. */
	align-self: center;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tv-green);
	color: var(--tv-white);
	font-family: var(--tv-font-display);
	font-weight: 700;
	font-size: 15px;
}

.ritual-step__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 12px;
}

.ritual-step__head h3 {
	font-size: 30px;
	font-weight: 600;
}

.ritual-step__time {
	padding: 4px 12px;
	border-radius: 50px;
	background: var(--tv-mint);
	font-size: 12px;
	font-weight: 600;
}

.ritual-step__body {
	opacity: 0.82;
	margin-bottom: 18px;
}

.ritual-step__tip {
	padding: 14px 18px;
	border-left: 3px solid var(--tv-lime);
	background: var(--tv-wash);
	font-size: 14px;
	line-height: 1.55;
}

.routine {
	padding: 88px 0;
	background: var(--tv-wash);
}

.routine__grid {
	display: grid;
	grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}

.routine__title {
	font-size: clamp(1.8rem, 3.4vw, 40px);
	font-weight: 600;
	margin-bottom: 14px;
}

.routine__copy p {
	opacity: 0.78;
}

.routine__list {
	display: grid;
	gap: 24px;
}

.compare {
	padding: 88px 0;
}

.compare__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.compare__table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	text-align: left;
}

.compare__table th,
.compare__table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--tv-green-15);
	font-size: 15px;
	font-weight: 400;
}

.compare__table thead th {
	font-family: var(--tv-font-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tv-brown);
}

.compare__table tbody th {
	font-weight: 500;
}

.compare__table td {
	text-align: center;
}

.compare__table .is-brand {
	background: var(--tv-wash);
	font-weight: 700;
}

.compare__table .is-yes {
	color: var(--tv-green);
	font-size: 18px;
}

.compare__table .is-no {
	color: var(--tv-brown);
	opacity: 0.5;
	font-size: 18px;
}

.compare__table .is-maybe {
	opacity: 0.6;
	font-size: 14px;
}

.faq {
	padding: 88px 0;
	background: var(--tv-mint);
}

.faq__list {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: var(--tv-white);
	border-radius: var(--tv-radius-card);
	padding: 4px 22px;
}

.faq-item__q {
	list-style: none;
	cursor: pointer;
	padding: 18px 28px 18px 0;
	position: relative;
	font-family: var(--tv-font-display);
	font-weight: 600;
	font-size: 17px;
}

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

.faq-item__q::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: var(--tv-brown);
}

.faq-item[open] .faq-item__q::after {
	content: "–";
}

.faq-item__a {
	padding: 0 0 20px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.8;
}

/* --- Contact --- */

.contact {
	padding: 88px 0;
	background: var(--tv-wash);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
	gap: 60px;
	align-items: start;
}

.contact__title {
	font-size: clamp(2rem, 4vw, 46px);
	font-weight: 600;
	margin-bottom: 18px;
}

.contact__lede {
	opacity: 0.8;
	margin-bottom: 34px;
}

.contact__channels {
	display: grid;
	gap: 22px;
}

.contact-channel dt {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tv-brown);
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-channel dd {
	font-family: var(--tv-font-display);
	font-weight: 600;
	font-size: 16px;
}

.contact__form-wrap {
	padding: 36px;
	border-radius: var(--tv-radius-card);
	background: var(--tv-white);
	box-shadow: var(--tv-shadow-card);
}

.contact__form-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
}

.support-faq {
	padding: 88px 0;
}

.support-faq__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.support-q {
	padding: 26px;
	border-radius: var(--tv-radius-card);
	background: var(--tv-mint);
}

.support-q h3 {
	font-size: 16px;
	margin-bottom: 8px;
}

.support-q p {
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.8;
}

/* ============================================================ 15. FORMS */

.field {
	margin-bottom: 20px;
}

.field label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--tv-green-15);
	border-radius: var(--tv-radius-btn);
	background: var(--tv-white);
	font-size: 15px;
	transition: border-color 0.2s ease;
}

.field textarea {
	resize: vertical;
	min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--tv-green);
}

.field__error {
	display: none;
	margin-top: 6px;
	font-size: 12px;
	color: var(--tv-brown);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
	border-color: var(--tv-brown);
}

.field.has-error .field__error {
	display: block;
}

.contact-form__hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	margin-bottom: 22px;
	padding: 14px 18px;
	border-radius: var(--tv-radius-btn);
	font-size: 14px;
}

.form-notice--success {
	background: var(--tv-wash);
	border-left: 3px solid var(--tv-lime);
}

.form-notice--error {
	background: #fdf3ef;
	border-left: 3px solid var(--tv-brown);
}

/* ============================================================ 16. PAGE CONTENT */

.page-content {
	padding: 72px 0 88px;
}

.page-content--notes {
	padding-top: 0;
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.entry-content h2 {
	font-size: 30px;
	margin-top: 1.8em;
}

.entry-content h3 {
	font-size: 22px;
	margin-top: 1.6em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.3em;
	list-style: revert;
}

.entry-content li + li {
	margin-top: 0.4em;
}

.entry-content blockquote {
	margin: 1.6em 0;
	padding: 18px 24px;
	border-left: 3px solid var(--tv-lime);
	background: var(--tv-wash);
}

.entry__thumb {
	margin: 0 0 32px;
	border-radius: var(--tv-radius-card);
	overflow: hidden;
}

.widget-title {
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tv-lime);
	margin-bottom: 14px;
}

.site-footer__widgets a {
	color: var(--tv-white);
}

/* ============================================================ 17. RESPONSIVE */

@media (max-width: 1080px) {
	.benefits__grid,
	.routine__grid,
	.contact__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.benefits__proof {
		grid-template-columns: repeat(2, minmax(0, 314px));
		justify-content: center;
	}

	.why-grid,
	.timeline__rail {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.tl-mile::before {
		display: none;
	}

	.tl-mile {
		padding-left: 46px;
		padding-top: 0;
	}
}

@media (max-width: 900px) {
	:root {
		--tv-gutter: 20px;
	}

	.site-nav {
		position: fixed;
		inset: var(--tv-header-h) 0 auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px var(--tv-gutter) 24px;
		background: var(--tv-white);
		border-bottom: 1px solid var(--tv-line);
		box-shadow: 0 18px 30px rgba(26, 42, 34, 0.12);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--tv-line);
	}

	.site-nav__list a:hover,
	.site-nav__list .current-menu-item > a {
		border-bottom-color: var(--tv-lime);
	}

	.site-nav__cta {
		margin-top: 18px;
	}

	.site-nav__cta .btn {
		width: 100%;
	}

	.site-nav__toggle {
		display: flex;
	}

	/*
	 * The hero photo is a wide right-weighted composition, so overlaying copy
	 * on it below 900px always collides with the model. Stack instead: photo
	 * band first, copy underneath on the mint tint.
	 */
	.hero {
		display: block;
		min-height: 0;
	}

	.hero__bg {
		position: relative;
		inset: auto;
		z-index: 0;
		aspect-ratio: 16 / 11;
	}

	.hero__bg img {
		object-position: 66% 30%;
	}

	.hero__inner {
		background: var(--tv-mint);
		padding-block: 36px 44px;
	}

	.page-hero--product {
		display: block;
		min-height: 0;
		padding-top: 0;
		background: var(--tv-mint);
	}

	/*
	 * The dark variant keeps its dark ground on mobile — the stacked layout
	 * would otherwise put white copy on the mint tint.
	 */
	.page-hero--dark {
		background: #16261a;
	}

	.page-hero--dark .page-hero__bg {
		margin-bottom: 0;
	}

	.page-hero--dark .page-hero__bg::after {
		background: linear-gradient(
			180deg,
			rgba(16, 38, 26, 0) 45%,
			rgba(16, 38, 26, 0.75) 82%,
			#16261a 100%
		);
	}

	.page-hero--dark .page-hero__inner {
		padding-block: 28px 48px;
	}

	.page-hero--dark .page-hero__title {
		margin-bottom: 22px;
	}

	.page-hero--dark .page-hero__lede {
		margin-bottom: 26px;
	}

	.page-hero--dark .claim-chips {
		margin-bottom: 26px;
	}

	.page-hero--product .page-hero__bg {
		position: relative;
		inset: auto;
		z-index: 0;
		aspect-ratio: 16 / 11;
		margin-bottom: 36px;
	}

	.page-hero--product .page-hero__bg img {
		object-position: 66% 30%;
	}

	.ingredients__grid,
	.steps__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Brand takes the full width, the three link columns share the row. */
	.site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px 28px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.ing-card,
	.step-card {
		max-width: 480px;
		margin-inline: auto;
		width: 100%;
	}

	.trust-bar__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 0;
	}

	.trust-item:nth-child(odd)::before {
		display: none;
	}

	.dd-row,
	.ritual-step {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	/* Stacked: the photo keeps its full-bleed edge, the copy takes the gutter. */
	.mechanism__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.dd-row + .dd-row {
		margin-top: 44px;
	}

	.deep-dive .section-head {
		margin-bottom: 44px;
	}

	/* Photo always leads on a single column, whatever the desktop order. */
	.dd-row:nth-of-type(even) .dd-row__visual {
		order: 0;
	}

	/*
	 * Stacked, the photo is a band rather than the section's whole first
	 * screen — 4:5 on a phone, capped once the column gets tablet-wide.
	 */
	.mechanism__visual {
		min-height: 0;
		/* width pinned so the cap trims height only, never the bleed. */
		width: 100%;
		aspect-ratio: 4 / 5;
		max-height: 520px;
	}

	.mechanism__body {
		padding: 44px var(--tv-gutter) 60px;
	}

	.mechanism__title {
		margin-bottom: 40px;
	}

	.mechanism__steps {
		gap: 34px;
	}

	.mech-step {
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 18px;
	}

	.mech-step__num {
		font-size: 50px;
		margin-top: -8px;
	}

	.mech-step__title {
		font-size: 21px;
	}

	.inci__grid {
		grid-template-columns: 1fr;
	}

	.ingredients,
	.how-it-works,
	.benefits,
	.deep-dive,
	.why-grid-section,
	.timeline,
	.inci,
	.ritual,
	.routine,
	.compare,
	.faq,
	.contact,
	.support-faq {
		padding-block: 60px;
	}
}

@media (max-width: 600px) {
	.benefits__proof {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.result-card__pill {
		font-size: 14px;
		padding-inline: 16px;
	}

	.why-grid,
	.timeline__rail {
		grid-template-columns: 1fr;
	}

	.contact__form-wrap {
		padding: 24px;
	}

	/* Stacked chips put the arrows at the start of each line, pointing at
	   nothing. */
	.page-hero--steps .htu-chips {
		gap: 12px;
	}

	.page-hero--steps .htu-chip + .htu-chip::before {
		display: none;
	}

	.site-footer {
		padding-top: 48px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* Four stacked columns run long on a phone; the page links read fine
	   wrapped in rows and save a screenful. */
	.site-footer__col--pages .site-footer__list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px 28px;
	}

	.site-footer__blurb,
	.site-footer__note {
		max-width: none;
	}

	.final-cta {
		padding-block: 48px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
