/* ============================================================
   AVK Dr Naturevedaa — main stylesheet
   Colour tokens are injected from the theme options panel as
   CSS variables (see inc/enqueue.php → avkdn_dynamic_css).
   ============================================================ */

:root {
	--forest: #14452F;
	--leaf: #2F7A4F;
	--gold: #B8912F;
	--ivory: #FBF8F1;
	--bark: #33291E;
	--sage: #E6EFE4;
	--radius: 18px;
	--radius-sm: 9px;
	--base: 16px;

	--paper: #FFFFFF;
	--line: rgba(20, 69, 47, .14);
	--muted: rgba(51, 41, 30, .66);
	--shadow-sm: 0 1px 2px rgba(20, 69, 47, .06), 0 4px 14px rgba(20, 69, 47, .06);
	--shadow-md: 0 2px 6px rgba(20, 69, 47, .07), 0 18px 40px rgba(20, 69, 47, .10);
	--shadow-lg: 0 30px 70px rgba(20, 69, 47, .18);

	--display: "Fraunces", "Iowan Old Style", Georgia, serif;
	--body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--utility: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--step: clamp(56px, 8vw, 108px);
}

/* ---------- reset ---------- */

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

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

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--body);
	font-size: var(--base);
	line-height: 1.65;
	color: var(--bark);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

/* The hidden attribute must always win. Component classes below set
   display: grid / flex, which would otherwise override the browser's
   own [hidden] rule and leave panels visible on the page. */
[hidden] { display: none !important; }

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--leaf); }

button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -.015em;
	color: var(--forest);
	margin: 0 0 .5em;
	text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--forest);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- layout ---------- */

.wrap {
	width: min(100% - 40px, 1240px);
	margin-inline: auto;
}
.wrap--narrow { width: min(100% - 40px, 780px); }

@media (max-width: 640px) {
	.wrap, .wrap--narrow { width: calc(100% - 32px); }
}

.section { padding-block: var(--step); }
.section--tint { background: var(--sage); }
.section--deep { background: var(--forest); color: rgba(255,255,255,.86); }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .eyebrow { color: var(--gold); }

.section__more { margin-top: 40px; text-align: center; }

.layout { display: grid; gap: 48px; padding-block: var(--step); }
@media (min-width: 900px) {
	.layout--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

/* ---------- eyebrow + section heads ---------- */

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--utility);
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--leaf);
	margin: 0 0 14px;
}
.eyebrow__mark {
	width: 26px; height: 1px;
	background: var(--gold);
	flex: none;
	position: relative;
}
.eyebrow__mark::after {
	content: "";
	position: absolute;
	right: -3px; top: -2px;
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--gold);
}

.sechead { max-width: 620px; margin: 0 0 48px; }
.sechead--center { margin-inline: auto; text-align: center; }
.sechead--center .eyebrow { justify-content: center; }
.sechead__title { margin-bottom: .35em; }
.sechead__text { color: var(--muted); font-size: 1.05rem; }
.section--deep .sechead__text { color: rgba(255,255,255,.7); }

/* ---------- buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 600;
	font-size: .94rem;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--leaf); color: #fff; box-shadow: var(--shadow-sm); }

.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(20,69,47,.04); color: var(--forest); }

.btn--gold { background: var(--gold); color: #1d1707; }
.btn--gold:hover { background: #cfa63c; color: #1d1707; }

.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: .85rem; }

.iconbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border: 1px solid transparent;
	border-radius: 50%;
	background: transparent;
	color: var(--forest);
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.iconbtn:hover { background: var(--sage); }
.iconbtn.is-on { color: var(--gold); }
.iconbtn.is-on svg { fill: currentColor; }

.linkbtn {
	background: none; border: 0; padding: 0;
	color: var(--leaf);
	text-decoration: underline;
	cursor: pointer;
	font-size: .85rem;
}

.linkarrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 600;
	font-size: .9rem;
	text-decoration: none;
	color: var(--leaf);
}
.linkarrow svg { transition: transform .2s ease; }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---------- topbar ---------- */

.topbar {
	background: var(--forest);
	color: rgba(255,255,255,.9);
	font-size: .82rem;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	min-height: 40px;
	padding-block: 8px;
	text-align: center;
}
.topbar__text { margin: 0; }
.topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}
@media (max-width: 780px) { .topbar__link { display: none; } }

/* ---------- masthead ---------- */

.masthead {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: relative;
	z-index: 60;
}
body.has-sticky-header .masthead { position: sticky; top: 0; }
.masthead.is-stuck { box-shadow: var(--shadow-sm); }

.masthead__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 78px;
}
.masthead__burger { display: none; }
.masthead__brand { flex: none; margin-right: auto; }
.masthead__tools { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--sage);
	color: var(--forest);
	flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong {
	font-family: var(--display);
	font-size: 1.16rem;
	color: var(--forest);
	letter-spacing: -.01em;
}
.brand__text em {
	font-family: var(--utility);
	font-style: normal;
	font-size: .64rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
}
.custom-logo { max-height: 56px; width: auto; }

/* ---------- navigation ---------- */

.nav__head, .nav__foot { display: none; }

.menu, .submenu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu { display: flex; align-items: center; gap: 4px; }

.menu-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: .93rem;
	font-weight: 600;
	color: var(--forest);
	text-decoration: none;
	white-space: nowrap;
}
.menu-link:hover { background: var(--sage); }
.current-menu-item > .menu-link { color: var(--leaf); }

.caret {
	width: 6px; height: 6px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	display: inline-block;
	opacity: .65;
}

.menu > li { position: relative; }

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 70;
}
.menu > li:hover > .submenu,
.menu > li:focus-within > .submenu,
.menu > li.is-open > .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.submenu .menu-link { display: flex; width: 100%; }

.menu > li.is-mega { position: static; }
.menu > li.is-mega > .submenu {
	left: 50%;
	transform: translate(-50%, 8px);
	width: min(100% - 40px, 1000px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 6px;
	padding: 24px;
}
.menu > li.is-mega:hover > .submenu,
.menu > li.is-mega:focus-within > .submenu,
.menu > li.is-mega.is-open > .submenu { transform: translate(-50%, 0); }

.submenu-toggle { display: none; }

@media (max-width: 1000px) {
	.masthead__burger { display: inline-flex; }
	.nav {
		position: fixed;
		inset: 0 auto 0 0;
		width: min(88vw, 360px);
		background: var(--paper);
		z-index: 120;
		padding: 20px;
		overflow-y: auto;
		transform: translateX(-102%);
		transition: transform .28s cubic-bezier(.4, 0, .2, 1);
		box-shadow: var(--shadow-lg);
	}
	.nav.is-open { transform: none; }
	.nav__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-family: var(--utility);
		font-size: .72rem;
		letter-spacing: .16em;
		text-transform: uppercase;
		color: var(--muted);
		padding-bottom: 16px;
		border-bottom: 1px solid var(--line);
		margin-bottom: 12px;
	}
	.nav__foot {
		display: block;
		margin-top: 24px;
		padding-top: 18px;
		border-top: 1px solid var(--line);
	}
	.nav__foot a {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		font-weight: 600;
		text-decoration: none;
	}
	.menu { flex-direction: column; align-items: stretch; gap: 0; }
	.menu > li { border-bottom: 1px solid var(--line); }
	.menu-link { padding: 14px 4px; font-size: 1rem; }
	.menu-link .caret { display: none; }
	.submenu, .menu > li.is-mega > .submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none !important;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		display: none;
		width: auto;
		padding: 0 0 12px 14px;
		border-left: 2px solid var(--sage);
		margin-bottom: 10px;
	}
	.menu > li.is-open > .submenu { display: block; }
	.submenu-toggle {
		display: grid;
		place-items: center;
		position: absolute;
		right: 0; top: 6px;
		width: 40px; height: 40px;
		background: none;
		border: 0;
		cursor: pointer;
	}
	.submenu-toggle[aria-expanded="true"] .caret { transform: rotate(-135deg) translate(-3px, -3px); }
}

/* ---------- search panel ---------- */

.searchpanel {
	position: absolute;
	top: 100%; left: 0; right: 0;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow-md);
	padding: 22px 0 26px;
	z-index: 65;
}
.searchpanel__form {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 2px solid var(--forest);
	padding-bottom: 10px;
	color: var(--forest);
}
.searchpanel__form input {
	flex: 1;
	border: 0;
	background: none;
	font-family: var(--display);
	font-size: clamp(1.1rem, 2.4vw, 1.6rem);
	color: var(--forest);
	padding: 4px 0;
}
.searchpanel__form input:focus { outline: none; }

.searchpanel__results { margin-top: 18px; max-height: 54vh; overflow-y: auto; }
.sresult {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	color: var(--bark);
}
.sresult:hover { background: var(--sage); }
.sresult img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.sresult__body { min-width: 0; }
.sresult__body strong { display: block; color: var(--forest); font-size: .95rem; }
.sresult__body span { font-size: .8rem; color: var(--muted); }
.sresult__type {
	font-family: var(--utility);
	font-size: .64rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--leaf);
	margin-left: auto;
	flex: none;
}
.searchpanel__empty { color: var(--muted); padding: 10px; font-size: .92rem; }

/* ---------- overlay, drawer, modal ---------- */

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 69, 47, .42);
	backdrop-filter: blur(2px);
	z-index: 110;
	opacity: 0;
	transition: opacity .25s ease;
}
.overlay.is-on { opacity: 1; }

.drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	width: min(92vw, 420px);
	background: var(--paper);
	z-index: 130;
	display: flex;
	flex-direction: column;
	transform: translateX(102%);
	transition: transform .28s cubic-bezier(.4, 0, .2, 1);
	box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px;
	border-bottom: 1px solid var(--line);
}
.drawer__head h2 { margin: 0; font-size: 1.2rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }

.drawer__ship { margin-bottom: 18px; font-size: .85rem; color: var(--muted); }
.drawer__bar, .shipnote__bar {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: var(--sage);
	overflow: hidden;
	margin-top: 8px;
}
.drawer__bar i, .shipnote__bar i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--leaf), var(--gold));
	transition: width .4s ease;
}

.drawer__items { list-style: none; margin: 0; padding: 0; }
.drawer__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.drawer__thumb img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.drawer__meta { flex: 1; min-width: 0; }
.drawer__meta a { font-weight: 600; font-size: .92rem; text-decoration: none; }
.drawer__qty { display: block; font-size: .82rem; color: var(--muted); }
.drawer__remove {
	background: none; border: 0; cursor: pointer;
	color: var(--muted); padding: 6px;
}
.drawer__remove:hover { color: #a3352b; }

.drawer__foot {
	padding-top: 18px;
	display: grid;
	gap: 10px;
}
.drawer__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1.05rem;
	padding-bottom: 6px;
}
.drawer__total strong { font-family: var(--display); font-size: 1.35rem; color: var(--forest); }

.drawer__empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.drawer__empty svg { margin: 0 auto 16px; color: var(--sage); }

.modal {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: grid;
	place-items: center;
	padding: 20px;
}
.modal__box {
	position: relative;
	background: var(--paper);
	border-radius: var(--radius);
	width: min(100%, 860px);
	max-height: 88vh;
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
	padding: 34px;
}
.modal__close { position: absolute; top: 12px; right: 12px; }

/* ---------- floating actions & bottom nav ---------- */

.floats {
	position: fixed;
	right: 16px;
	bottom: 16px;
	display: grid;
	gap: 10px;
	z-index: 90;
}
body.has-bottom-nav .floats { bottom: 78px; }
@media (min-width: 780px) { body.has-bottom-nav .floats { bottom: 16px; } }

.float {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--forest);
	color: #fff;
	box-shadow: var(--shadow-md);
	cursor: pointer;
	text-decoration: none;
	transition: transform .18s ease;
}
.float:hover { transform: scale(1.06); color: #fff; }
.float--wa { background: #1f9d5a; }
.float--top { background: var(--gold); color: #1d1707; }

.bottomnav { display: none; }
@media (max-width: 780px) {
	.bottomnav {
		position: fixed;
		left: 0; right: 0; bottom: 0;
		display: flex;
		background: var(--paper);
		border-top: 1px solid var(--line);
		z-index: 95;
		padding-bottom: env(safe-area-inset-bottom);
	}
	.bottomnav a, .bottomnav button {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3px;
		padding: 9px 4px;
		background: none;
		border: 0;
		font-size: .66rem;
		font-weight: 600;
		color: var(--forest);
		text-decoration: none;
		cursor: pointer;
		position: relative;
	}
	body.has-bottom-nav { padding-bottom: 62px; }
}

/* count bubbles */
.cartcount, .wishcount {
	position: absolute;
	top: 4px; right: 2px;
	min-width: 18px; height: 18px;
	padding: 0 5px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--gold);
	color: #1d1707;
	font-size: .66rem;
	font-weight: 700;
	line-height: 1;
}
.cartcount[data-count="0"], .wishcount[data-count="0"] { display: none; }

/* ---------- toast ---------- */

.toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 16px);
	background: var(--forest);
	color: #fff;
	padding: 13px 22px;
	border-radius: 999px;
	box-shadow: var(--shadow-md);
	font-size: .9rem;
	font-weight: 600;
	z-index: 200;
	opacity: 0;
	transition: opacity .22s ease, transform .22s ease;
	max-width: calc(100vw - 40px);
	text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast.is-error { background: #8f2f24; }

/* ---------- hero ---------- */

.hero {
	background:
		radial-gradient(120% 100% at 85% 0%, rgba(184, 145, 47, .10), transparent 55%),
		var(--ivory);
	padding-block: clamp(48px, 7vw, 92px);
	overflow: hidden;
}
.hero__inner {
	display: grid;
	gap: 48px;
	align-items: center;
}
@media (min-width: 900px) {
	.hero__inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}

.hero__title { margin-bottom: .4em; }
.hero__text { font-size: 1.08rem; color: var(--muted); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	font-family: var(--utility);
	font-size: .74rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--leaf);
}

.hero__media { position: relative; }
.hero__frame {
	border-radius: calc(var(--radius) * 1.6);
	overflow: hidden;
	background: var(--sage);
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

/* signature: batch ledger */
.ledger {
	position: absolute;
	left: -18px;
	bottom: 28px;
	margin: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 16px 20px;
	min-width: 230px;
}
.ledger figcaption {
	font-family: var(--utility);
	font-size: .62rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 8px;
}
.ledger dl { margin: 0; display: grid; gap: 4px; }
.ledger dl > div { display: flex; justify-content: space-between; gap: 18px; }
.ledger dt { font-size: .78rem; color: var(--muted); }
.ledger dd {
	margin: 0;
	font-family: var(--utility);
	font-size: .78rem;
	color: var(--forest);
}
@media (max-width: 640px) {
	.ledger { left: 8px; right: 8px; bottom: -16px; min-width: 0; }
	.hero__media { margin-bottom: 30px; }
}

/* ---------- usp strip ---------- */

.usp { background: var(--forest); color: rgba(255,255,255,.9); }
.usp__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px 28px;
	padding-block: 20px;
}
.usp__item {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: .88rem;
	font-weight: 600;
}
.usp__item svg { color: var(--gold); flex: none; }

/* ---------- categories ---------- */

.catgrid {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 20px;
}
.catgrid__item a {
	display: block;
	text-decoration: none;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	transition: transform .2s ease, box-shadow .2s ease;
	height: 100%;
}
.catgrid__item a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.catgrid__media {
	display: block;
	aspect-ratio: 1;
	background: var(--sage);
	overflow: hidden;
}
.catgrid__media img { width: 100%; height: 100%; object-fit: cover; }
.catgrid__body { display: block; padding: 16px 18px 18px; }
.catgrid__body strong { display: block; color: var(--forest); font-family: var(--display); font-size: 1.06rem; }
.catgrid__body em {
	font-style: normal;
	font-family: var(--utility);
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ---------- benefits ---------- */

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}
.benefit {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 26px;
}
.benefit__icon {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--sage);
	color: var(--forest);
	margin-bottom: 18px;
}
.benefit h3 { font-size: 1.08rem; }
.benefit p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- collections ---------- */

.collection__inner { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) {
	.collection__inner { grid-template-columns: .8fr 1.2fr; gap: 56px; }
	.collection__inner--reverse .collection__copy { order: 2; }
}
.collection__copy p { color: var(--muted); margin-bottom: 24px; }

/* ---------- spotlight ---------- */

.spotlight { background: var(--sage); }
.spotlight__inner { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .spotlight__inner { grid-template-columns: 1fr 1fr; gap: 60px; } }

.spotlight__media {
	border-radius: calc(var(--radius) * 1.4);
	overflow: hidden;
	background: var(--paper);
	box-shadow: var(--shadow-md);
	aspect-ratio: 1;
}
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__price {
	font-family: var(--display);
	font-size: 1.6rem;
	color: var(--forest);
	margin-bottom: 12px;
}
.spotlight__price del { opacity: .45; font-size: .7em; margin-right: 8px; }
.spotlight__short { color: var(--muted); }
.spotlight__ings { font-size: .88rem; color: var(--muted); }
.spotlight__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.ticklist { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 9px; }
.ticklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.ticklist svg { color: var(--leaf); flex: none; margin-top: 4px; }

/* ---------- before / after ---------- */

.ba {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	max-width: 900px;
	margin-inline: auto;
	box-shadow: var(--shadow-md);
	background: var(--paper);
	user-select: none;
}
.ba__pane { position: absolute; inset: 0; }
.ba__pane img, .ba__pane .ph { width: 100%; height: 100%; object-fit: cover; }
.ba__pane--before { width: 50%; overflow: hidden; border-right: 2px solid var(--gold); }
.ba__pane--before img, .ba__pane--before .ph {
	width: 900px;
	max-width: none;
	height: 100%;
}
.ba__tag {
	position: absolute;
	top: 14px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(20,69,47,.82);
	color: #fff;
	font-family: var(--utility);
	font-size: .66rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
	z-index: 3;
}
.ba__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: var(--shadow-md);
	pointer-events: none;
	z-index: 2;
}
.ba__handle::before, .ba__handle::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0; height: 0;
	border-block: 5px solid transparent;
}
.ba__handle::before {
	left: 11px;
	transform: translateY(-50%);
	border-right: 7px solid #1d1707;
}
.ba__handle::after {
	right: 11px;
	transform: translateY(-50%);
	border-left: 7px solid #1d1707;
}
.beforeafter__note {
	text-align: center;
	margin-top: 22px;
	font-size: .85rem;
	color: var(--muted);
}

/* ---------- ingredient ledger table ---------- */

.ledgertable-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
}
.ledgertable {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}
.ledgertable th, .ledgertable td {
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	font-size: .92rem;
}
.ledgertable thead th {
	font-family: var(--utility);
	font-size: .66rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	background: var(--sage);
	font-weight: 500;
}
.ledgertable tbody th {
	font-family: var(--display);
	font-size: 1rem;
	color: var(--forest);
	font-weight: 600;
}
.ledgertable tbody tr:last-child th,
.ledgertable tbody tr:last-child td { border-bottom: 0; }
.ledgertable tbody tr:hover { background: rgba(230, 239, 228, .45); }
.ledgertable em { color: var(--muted); }

/* ---------- why grid ---------- */

.whygrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.why { background: var(--ivory); padding: 32px 28px; }
.why__no {
	display: block;
	font-family: var(--utility);
	font-size: .74rem;
	letter-spacing: .14em;
	color: var(--gold);
	margin-bottom: 14px;
}
.why h3 { font-size: 1.06rem; }
.why p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- testimonials ---------- */

.tgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}
.tcard {
	position: relative;
	margin: 0;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--radius);
	padding: 30px 28px 26px;
}
.tcard__mark { color: var(--gold); display: block; margin-bottom: 14px; }
.tcard blockquote {
	margin: 14px 0 20px;
	font-size: .96rem;
	line-height: 1.7;
	color: rgba(255,255,255,.86);
}
.tcard figcaption { display: flex; flex-direction: column; }
.tcard figcaption strong { color: #fff; font-size: .95rem; }
.tcard figcaption em {
	font-style: normal;
	font-family: var(--utility);
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
}

.stars { display: flex; gap: 2px; }
.star { color: rgba(255,255,255,.25); }
.star.is-on { color: var(--gold); }
.star.is-on svg { fill: currentColor; }

/* ---------- journal cards ---------- */

.postgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 26px;
}
.postgrid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.jcard {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.jcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.jcard__media { display: block; aspect-ratio: 16 / 10; background: var(--sage); overflow: hidden; }
.jcard__media img { width: 100%; height: 100%; object-fit: cover; }
.jcard__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.jcard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	font-family: var(--utility);
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}
.jcard__cat { color: var(--leaf); }
.jcard__title { font-size: 1.18rem; margin-bottom: .45em; }
.jcard__title a { text-decoration: none; }
.jcard__text { color: var(--muted); font-size: .92rem; flex: 1; }
.jcard .linkarrow { margin-top: 16px; align-self: flex-start; }

/* ---------- instagram ---------- */

.iggrid {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}
.iggrid a {
	position: relative;
	display: block;
	aspect-ratio: 1;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--sage);
}
.iggrid img { width: 100%; height: 100%; object-fit: cover; }
.iggrid__hover {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(20,69,47,.55);
	color: #fff;
	opacity: 0;
	transition: opacity .2s ease;
}
.iggrid a:hover .iggrid__hover { opacity: 1; }

/* ---------- faq ---------- */

.faq { display: grid; gap: 10px; }
.faq__item {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 600;
	color: var(--forest);
	list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
	flex: none;
	position: relative;
	width: 14px; height: 14px;
}
.faq__item summary i::before,
.faq__item summary i::after {
	content: "";
	position: absolute;
	background: var(--gold);
	transition: transform .2s ease;
}
.faq__item summary i::before { inset: 6px 0; height: 2px; }
.faq__item summary i::after { inset: 0 6px; width: 2px; }
.faq__item[open] summary i::after { transform: scaleY(0); }
.faq__body { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- newsletter ---------- */

.newsletter__inner {
	display: grid;
	gap: 32px;
	align-items: center;
	background: var(--sage);
	border-radius: calc(var(--radius) * 1.4);
	padding: clamp(30px, 5vw, 54px);
}
@media (min-width: 900px) { .newsletter__inner { grid-template-columns: 1fr 1fr; gap: 56px; } }
.newsletter__copy p { color: var(--muted); margin: 0; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
.newsletter__form input {
	flex: 1 1 220px;
	padding: 15px 20px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--paper);
	font: inherit;
	font-size: .95rem;
}
.newsletter__form input:focus { outline: none; border-color: var(--forest); }
.newsletter__note {
	flex-basis: 100%;
	margin: 0;
	font-size: .85rem;
	color: var(--leaf);
	min-height: 1.2em;
}
.newsletter__note.is-error { color: #8f2f24; }

/* ---------- cta ---------- */

.ctasec__inner { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .ctasec__inner { grid-template-columns: 1.3fr .7fr; gap: 50px; } }
.ctasec p { color: rgba(255,255,255,.72); margin: 0; }
.ctasec__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- footer ---------- */

.footer {
	background: var(--forest);
	color: rgba(255,255,255,.72);
	padding-top: clamp(48px, 6vw, 80px);
	margin-top: auto;
}
.footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	padding-bottom: 48px;
}
.footer__col--brand { grid-column: span 1; }
@media (min-width: 1000px) { .footer__col--brand { grid-column: span 1; max-width: 320px; } }

.footer .brand__mark { background: rgba(255,255,255,.1); color: var(--gold); }
.footer .brand__text strong { color: #fff; }
.footer .brand__text em { color: rgba(255,255,255,.5); }
.footer__blurb { margin-top: 18px; font-size: .9rem; }

.footer h3 {
	color: #fff;
	font-family: var(--utility);
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer li a {
	color: rgba(255,255,255,.72);
	text-decoration: none;
	font-size: .92rem;
}
.footer li a:hover { color: var(--gold); }
.footer .count { display: none; }

.contactcard { display: grid; gap: 12px; }
.contactcard li { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; }
.contactcard svg { flex: none; margin-top: 3px; color: var(--gold); }
.contactcard span { color: inherit; }

.social { display: flex; gap: 8px; margin-top: 22px; }
.social li a {
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	color: rgba(255,255,255,.8);
}
.social li a:hover { background: var(--gold); border-color: var(--gold); color: #1d1707; }

.footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 20px;
	font-size: .82rem;
}
.footer__copy { margin: 0; }
.footer__policies {
	display: flex !important;
	flex-wrap: wrap;
	gap: 18px;
	list-style: none;
	margin: 0; padding: 0;
}
.footer__policies a { font-size: .82rem; }

.paybadges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0; padding: 0;
}
.paybadge {
	padding: 4px 11px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 6px;
	font-family: var(--utility);
	font-size: .64rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
}

/* ---------- page chrome ---------- */

.pagehead {
	background: var(--sage);
	padding-block: clamp(34px, 5vw, 60px);
	border-bottom: 1px solid var(--line);
}
.pagehead__title { margin: 0; }
.pagehead__text { margin-top: 14px; color: var(--muted); max-width: 62ch; }
.pagehead .searchform { margin-top: 22px; max-width: 460px; }

.crumbs { margin-bottom: 16px; }
.crumbs ol {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-family: var(--utility);
	font-size: .7rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
}
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.crumbs a { text-decoration: none; color: var(--leaf); }

.readbar { position: sticky; top: 0; height: 3px; background: transparent; z-index: 80; }
.readbar i { display: block; height: 100%; width: 0; background: var(--gold); }

.page-article { padding-block: clamp(38px, 5vw, 64px); }
.page-article__media {
	margin: 0 0 34px;
	border-radius: var(--radius);
	overflow: hidden;
}

/* ---------- prose ---------- */

.prose { font-size: 1.03rem; line-height: 1.78; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.8em; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose img { border-radius: var(--radius); }
.prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--gold);
	font-family: var(--display);
	font-size: 1.2rem;
	color: var(--forest);
}
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose code {
	background: var(--sage);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: var(--utility);
	font-size: .88em;
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }

/* ---------- post meta / author ---------- */

.postmeta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.share { display: flex; align-items: center; gap: 8px; }
.share__label {
	font-family: var(--utility);
	font-size: .66rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-right: 4px;
}
.share a {
	display: grid;
	place-items: center;
	width: 36px; height: 36px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--forest);
}
.share a:hover { background: var(--sage); }

.taglist a {
	display: inline-block;
	padding: 4px 12px;
	margin: 0 4px 4px 0;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .78rem;
	text-decoration: none;
}

.authorbox {
	display: flex;
	gap: 18px;
	margin-top: 34px;
	padding: 26px;
	background: var(--sage);
	border-radius: var(--radius);
}
.authorbox img { border-radius: 50%; flex: none; }
.authorbox strong { display: block; color: var(--forest); font-family: var(--display); font-size: 1.05rem; }
.authorbox p { margin: 6px 0 0; font-size: .9rem; color: var(--muted); }

/* ---------- search results page ---------- */

.searchlist { display: grid; gap: 4px; padding-block: var(--step); }
.searchitem {
	display: flex;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.searchitem__media img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--radius-sm); }
.searchitem__type {
	font-family: var(--utility);
	font-size: .66rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--leaf);
}
.searchitem h2 { font-size: 1.2rem; margin: 6px 0 8px; }
.searchitem h2 a { text-decoration: none; }
.searchitem p { color: var(--muted); font-size: .93rem; margin: 0; }
.searchitem__price { margin-top: 8px; font-weight: 600; color: var(--forest); }

.searchform { display: flex; gap: 8px; }
.searchform input {
	flex: 1;
	padding: 13px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--paper);
	font: inherit;
	font-size: .93rem;
}
.searchform input:focus { outline: none; border-color: var(--forest); }
.searchform button {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--forest);
	color: #fff;
	cursor: pointer;
	flex: none;
}

/* ---------- empty state / 404 ---------- */

.emptystate {
	text-align: center;
	padding: clamp(50px, 8vw, 90px) 20px;
	max-width: 520px;
	margin-inline: auto;
}
.emptystate svg { margin: 0 auto 20px; color: var(--sage); }
.emptystate p { color: var(--muted); margin-bottom: 26px; }
.emptystate .searchform { margin-bottom: 22px; text-align: left; }

.notfound { padding-block: var(--step); text-align: center; }
.notfound .eyebrow { justify-content: center; }
.notfound p { color: var(--muted); max-width: 46ch; margin-inline: auto; }
.notfound .searchform { max-width: 420px; margin: 26px auto; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- pagination ---------- */

.pager { margin-top: 44px; }
.pager ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
.pager a, .pager span {
	display: grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	text-decoration: none;
	font-size: .9rem;
	font-weight: 600;
}
.pager .current { background: var(--forest); color: #fff; border-color: var(--forest); }
.pager a:hover { background: var(--sage); }

/* ---------- widgets ---------- */

.widget + .widget { margin-top: 34px; }
.widget__title {
	font-family: var(--utility);
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.widget ul a { text-decoration: none; font-size: .92rem; }
.layout__side .widget {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

/* ---------- contact form ---------- */

.cform { display: grid; gap: 18px; }
.cform__grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .cform__grid { grid-template-columns: 1fr 1fr; } }
.cform__row { display: grid; gap: 7px; }
.cform__row label {
	font-family: var(--utility);
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
}
.cform input, .cform textarea {
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	font: inherit;
	font-size: .95rem;
	color: var(--bark);
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--forest); }
.cform__hp { position: absolute; left: -9999px; }
.cform button { justify-self: start; }
.cform__note { margin: 0; font-size: .88rem; color: var(--leaf); min-height: 1.2em; }
.cform__note.is-error { color: #8f2f24; }

.mapbox {
	margin-top: 34px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	aspect-ratio: 16 / 9;
}
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; }
.mapbox--empty {
	display: grid;
	place-items: center;
	background: var(--sage);
	color: var(--muted);
	text-align: center;
	padding: 30px;
}

/* ---------- comments ---------- */

.comments { padding-block: 50px; border-top: 1px solid var(--line); }
.comments__title { font-size: 1.4rem; }
.commentlist { list-style: none; margin: 0 0 40px; padding: 0; }
.commentlist ol { list-style: none; padding-left: 26px; }
.commentlist li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.commentlist .avatar { border-radius: 50%; float: left; margin-right: 16px; }
.comment-form { display: grid; gap: 16px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	font: inherit;
}
.comments__note { font-size: .86rem; color: var(--muted); }

/* ---------- illustrated placeholder ---------- */

.ph {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 160px;
	background:
		radial-gradient(80% 80% at 50% 30%, rgba(255,255,255,.7), transparent 70%),
		var(--sage);
	overflow: hidden;
}
.ph svg { width: 58%; max-width: 190px; height: auto; }
.ph__bottle { fill: rgba(20,69,47,.10); }
.ph__cap { fill: rgba(184,145,47,.34); }
.ph__leaf { fill: rgba(47,122,79,.30); }
.ph__stem { stroke: rgba(47,122,79,.42); stroke-width: 2.5; fill: none; }
.ph__label {
	position: absolute;
	bottom: 12px;
	font-family: var(--utility);
	font-size: .62rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(20,69,47,.45);
	text-align: center;
	padding-inline: 10px;
}

/* ---------- print ---------- */

@media print {
	.masthead, .footer, .floats, .bottomnav, .topbar, .drawer, .overlay, .modal { display: none !important; }
	body { background: #fff; }
}
