/* ==========================================================================
   LiveGoods Botanical — main.css
   A collector's botanical archive. Herbarium catalogue, not lifestyle decor.

   TABLE OF CONTENTS
   01. Tokens (:root custom properties)
   02. Reset & base
   03. Typography
   04. Layout primitives
   05. Buttons & form controls
   06. Quantity stepper
   07. Icons, badges, chips, pips
   08. Images & gradient placeholders
   09. Skeletons
   10. Announcement bar
   11. Header & navigation
   12. Mobile drawer nav
   13. Predictive search
   14. Hero
   15. Category cards
   16. Section heads
   17. Editorial split
   18. Specimen spec table
   19. Trust row
   20. Newsletter
   21. Footer
   22. Cart drawer
   23. Toasts
   24. Modals (quick view / lightbox)
   25. Blog, pages, comments, 404
   26. Pagination & breadcrumbs
   27. Utilities & accessibility
   28. Reduced motion & print
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */

:root {
	/* --- Brand palette ------------------------------------------------- */
	--lg-green-900: #14281d;
	--lg-green-700: #1f4d33;
	--lg-green-500: #3a7d5c;
	--lg-cream: #f7f4ed;
	--lg-sand: #ede7da;
	--lg-terracotta: #c1663f;
	--lg-ink: #1a1a18;
	--lg-muted: #6b6b63;
	--lg-line: #ddd8cc;
	--lg-white: #fff;

	/* --- Derived / state ----------------------------------------------- */
	--lg-green-700-hover: #183d28;
	--lg-terracotta-hover: #a9542f;
	--lg-sand-deep: #e2dac9;
	--lg-success: #2f6b4a;
	--lg-error: #a33326;
	--lg-focus: #3a7d5c;
	--lg-overlay: rgba(20, 40, 29, 0.42);

	/* --- Typography ----------------------------------------------------- */
	--lg-font-display: "Fraunces", "Instrument Serif", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
	--lg-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--lg-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

	--lg-fs-xs: 0.75rem;
	--lg-fs-sm: 0.8125rem;
	--lg-fs-base: 0.9375rem;
	--lg-fs-md: 1rem;
	--lg-fs-lg: clamp(1.0625rem, 0.98rem + 0.4vw, 1.1875rem);
	--lg-fs-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
	--lg-fs-2xl: clamp(1.5rem, 1.28rem + 1.05vw, 2rem);
	--lg-fs-3xl: clamp(1.875rem, 1.5rem + 1.85vw, 2.875rem);
	--lg-fs-4xl: clamp(2.125rem, 1.55rem + 2.85vw, 4rem);
	--lg-fs-hero: clamp(2rem, 1.28rem + 3.6vw, 4.5rem);

	--lg-lh-tight: 1.06;
	--lg-lh-snug: 1.24;
	--lg-lh-base: 1.65;
	--lg-ls-tight: -0.018em;
	--lg-ls-wide: 0.14em;

	/* --- Spacing scale --------------------------------------------------- */
	--lg-s-1: 0.25rem;
	--lg-s-2: 0.5rem;
	--lg-s-3: 0.75rem;
	--lg-s-4: 1rem;
	--lg-s-5: 1.5rem;
	--lg-s-6: 2rem;
	--lg-s-7: 2.5rem;
	--lg-s-8: 3rem;
	--lg-s-9: 4rem;
	--lg-s-10: 5rem;
	--lg-s-11: 6rem;
	--lg-s-12: 8rem;

	--lg-section-y: clamp(3rem, 2rem + 5vw, 6.5rem);
	--lg-gutter: clamp(1rem, 0.55rem + 2.2vw, 3rem);

	/* --- Radius (sharp, archival) --------------------------------------- */
	--lg-r-xs: 2px;
	--lg-r-sm: 4px;
	--lg-r-md: 4px;
	--lg-r-lg: 6px;
	--lg-r-pill: 999px;

	/* --- Shadows (very subtle) ------------------------------------------ */
	--lg-sh-xs: 0 1px 2px rgba(20, 40, 29, 0.05);
	--lg-sh-sm: 0 2px 6px rgba(20, 40, 29, 0.06);
	--lg-sh-md: 0 4px 16px rgba(20, 40, 29, 0.08);
	--lg-sh-lg: 0 12px 34px rgba(20, 40, 29, 0.12);
	--lg-sh-xl: 0 24px 60px rgba(20, 40, 29, 0.18);

	/* --- Motion ---------------------------------------------------------- */
	--lg-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--lg-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--lg-t-fast: 140ms;
	--lg-t-base: 240ms;
	--lg-t-slow: 420ms;

	/* --- Layout ---------------------------------------------------------- */
	--lg-max: 1320px;
	--lg-max-narrow: 760px;
	--lg-max-wide: 1600px;
	--lg-tap: 44px;

	/* --- Z-index scale --------------------------------------------------- */
	--lg-z-sticky-bar: 60;
	--lg-z-header: 70;
	--lg-z-search: 80;
	--lg-z-backdrop: 90;
	--lg-z-drawer: 100;
	--lg-z-modal: 110;
	--lg-z-lightbox: 120;
	--lg-z-toast: 130;
	--lg-z-skip: 200;

	/* --- Runtime sizes (JS can override) --------------------------------- */
	--lg-header-h: 68px;
	--lg-announcement-h: 0px;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--lg-header-h) + 16px);
}

body {
	margin: 0;
	background-color: var(--lg-cream);
	color: var(--lg-ink);
	font-family: var(--lg-font-body);
	font-size: var(--lg-fs-base);
	line-height: var(--lg-lh-base);
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.lgb-no-scroll {
	overflow: hidden;
	/* Preserve scroll position without the layout jump. */
	position: relative;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* Never a literal height attribute + width:100%. Images always auto-height. */
img {
	height: auto;
}

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

button {
	cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	/*
	 * overflow-wrap:break-word only breaks a word that CANNOT fit — the safety net.
	 * word-break:break-word + hyphens:auto were splitting ordinary Latin binomials
	 * ("Anthuri/um clar/in/ervium") which reads as broken CSS on a catalog page.
	 * Botanical names are the brand; they must never hyphenate.
	 */
	overflow-wrap: break-word;
	hyphens: manual;
}

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

figure {
	margin: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--lg-line);
	margin: var(--lg-s-7) 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

::selection {
	background: var(--lg-green-700);
	color: var(--lg-cream);
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4 {
	margin: 0 0 var(--lg-s-4);
	font-family: var(--lg-font-display);
	font-weight: 400;
	line-height: var(--lg-lh-tight);
	letter-spacing: var(--lg-ls-tight);
	color: var(--lg-green-900);
	font-optical-sizing: auto;
}

h1 { font-size: var(--lg-fs-4xl); }
h2 { font-size: var(--lg-fs-3xl); }
h3 { font-size: var(--lg-fs-2xl); }
h4 { font-size: var(--lg-fs-xl); }

h5,
h6 {
	margin: 0 0 var(--lg-s-3);
	font-family: var(--lg-font-body);
	color: var(--lg-green-900);
}

h5 {
	font-size: var(--lg-fs-md);
	font-weight: 600;
}

h6 {
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-muted);
}

p {
	margin: 0 0 var(--lg-s-4);
}

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

a {
	color: var(--lg-green-700);
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
	transition: color var(--lg-t-fast) var(--lg-ease);
}

a:hover {
	color: var(--lg-terracotta);
}

strong,
b {
	font-weight: 600;
}

small {
	font-size: var(--lg-fs-xs);
}

blockquote {
	margin: var(--lg-s-6) 0;
	padding-left: var(--lg-s-5);
	border-left: 2px solid var(--lg-terracotta);
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-lg);
	color: var(--lg-green-900);
}

code,
pre,
kbd {
	font-family: var(--lg-font-mono);
	font-size: 0.875em;
}

pre {
	background: var(--lg-sand);
	border-radius: var(--lg-r-sm);
	padding: var(--lg-s-4);
	overflow-x: auto;
}

code {
	background: var(--lg-sand);
	padding: 0.15em 0.4em;
	border-radius: var(--lg-r-xs);
}

pre code {
	background: none;
	padding: 0;
}

/* --- Signature elements ------------------------------------------------ */

.lgb-eyebrow {
	margin: 0 0 var(--lg-s-3);
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-muted);
}

/* The Latin binomial — the theme's typographic signature. */
.lgb-binomial {
	margin: 0 0 var(--lg-s-2);
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: var(--lg-fs-sm);
	line-height: 1.35;
	letter-spacing: 0.005em;
	color: var(--lg-green-500);
}

.lgb-binomial--single {
	font-size: var(--lg-fs-lg);
	color: var(--lg-green-500);
	margin-bottom: var(--lg-s-2);
}

.lgb-binomial__text {
	position: relative;
	padding-left: 1.25rem;
}

.lgb-binomial__text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 0.85rem;
	height: 1px;
	background: var(--lg-terracotta);
}

.lgb-lede {
	font-size: var(--lg-fs-lg);
	line-height: 1.55;
	color: var(--lg-muted);
}

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

.lgb-container {
	width: 100%;
	max-width: var(--lg-max);
	margin-inline: auto;
	padding-inline: var(--lg-gutter);
}

.lgb-container--narrow { max-width: var(--lg-max-narrow); }
.lgb-container--wide { max-width: var(--lg-max-wide); }
.lgb-container--flush { padding-inline: 0; }

.lgb-section {
	padding-block: var(--lg-section-y);
}

.lgb-section--tight {
	padding-block: clamp(2rem, 1.4rem + 3vw, 4rem);
}

.lgb-section--sand { background: var(--lg-sand); }
.lgb-section--cream { background: var(--lg-cream); }

.lgb-section--dark {
	background: var(--lg-green-900);
	color: var(--lg-sand);
}

.lgb-section--dark h1,
.lgb-section--dark h2,
.lgb-section--dark h3,
.lgb-section--dark h4,
.lgb-section--dark h5 {
	color: var(--lg-cream);
}

.lgb-section--dark .lgb-eyebrow,
.lgb-section--dark .lgb-section-head__intro {
	color: rgba(247, 244, 237, 0.72);
}

.lgb-section--dark a {
	color: var(--lg-sand);
}

.lgb-main {
	display: block;
	min-height: 40vh;
}

.lgb-grid {
	display: grid;
	gap: var(--lg-s-5);
}

.lgb-stack > * + * {
	margin-top: var(--lg-s-4);
}

/* ==========================================================================
   05. BUTTONS & FORM CONTROLS
   ========================================================================== */

.lgb-btn,
button.lgb-btn,
a.lgb-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--lg-s-2);
	min-height: var(--lg-tap);
	min-width: var(--lg-tap);
	padding: 0.78rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--lg-r-sm);
	background: var(--lg-green-700);
	color: var(--lg-cream);
	font-family: var(--lg-font-body);
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	line-height: 1.1;
	cursor: pointer;
	transition: background-color var(--lg-t-fast) var(--lg-ease),
		border-color var(--lg-t-fast) var(--lg-ease),
		color var(--lg-t-fast) var(--lg-ease),
		transform var(--lg-t-fast) var(--lg-ease),
		opacity var(--lg-t-fast) var(--lg-ease);
}

.lgb-btn:hover,
a.lgb-btn:hover {
	background: var(--lg-green-700-hover);
	color: var(--lg-cream);
}

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

.lgb-btn[disabled],
.lgb-btn.is-disabled,
.lgb-btn[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.lgb-btn--primary {
	background: var(--lg-green-700);
	color: var(--lg-cream);
}

.lgb-btn--accent {
	background: var(--lg-terracotta);
	color: var(--lg-cream);
}

.lgb-btn--accent:hover {
	background: var(--lg-terracotta-hover);
	color: var(--lg-cream);
}

.lgb-btn--outline {
	background: transparent;
	border-color: var(--lg-green-900);
	color: var(--lg-green-900);
}

.lgb-btn--outline:hover {
	background: var(--lg-green-900);
	color: var(--lg-cream);
}

.lgb-btn--ghost {
	background: transparent;
	border-color: var(--lg-line);
	color: var(--lg-green-900);
}

.lgb-btn--ghost:hover {
	background: var(--lg-sand);
	color: var(--lg-green-900);
}

.lgb-btn--light {
	background: var(--lg-cream);
	color: var(--lg-green-900);
}

.lgb-btn--light:hover {
	background: var(--lg-white);
	color: var(--lg-green-900);
}

.lgb-btn--block {
	display: flex;
	width: 100%;
}

.lgb-btn--sm {
	min-height: 38px;
	padding: 0.5rem 1rem;
	font-size: var(--lg-fs-xs);
}

.lgb-btn--lg {
	padding: 1rem 2.1rem;
	font-size: var(--lg-fs-base);
}

/* --- Button AJAX states ------------------------------------------------- */

.lgb-btn__label {
	display: inline-block;
	transition: opacity var(--lg-t-fast) var(--lg-ease);
}

.lgb-btn__spinner {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
}

.lgb-btn.is-loading {
	pointer-events: none;
	cursor: progress;
}

.lgb-btn.is-loading .lgb-btn__spinner {
	opacity: 1;
	animation: lgb-spin 620ms linear infinite;
}

.lgb-btn.is-loading .lgb-btn__label {
	opacity: 0.45;
}

.lgb-btn.is-added {
	background: var(--lg-success);
	border-color: var(--lg-success);
	color: var(--lg-cream);
}

@keyframes lgb-spin {
	to { transform: rotate(360deg); }
}

/* --- Text link with arrow ---------------------------------------------- */

.lgb-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: var(--lg-tap);
	font-family: var(--lg-font-body);
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lg-green-900);
	border-bottom: 1px solid var(--lg-green-900);
	padding-bottom: 2px;
	align-self: flex-start;
}

.lgb-link-arrow svg {
	transition: transform var(--lg-t-base) var(--lg-ease);
}

.lgb-link-arrow:hover {
	color: var(--lg-terracotta);
	border-bottom-color: var(--lg-terracotta);
}

.lgb-link-arrow:hover svg {
	transform: translateX(4px);
}

/* --- Inputs -------------------------------------------------------------- */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
select,
textarea,
.lgb-input {
	width: 100%;
	min-height: var(--lg-tap);
	padding: 0.7rem 0.9rem;
	background: var(--lg-white);
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	color: var(--lg-ink);
	font-size: var(--lg-fs-base);
	line-height: 1.4;
	transition: border-color var(--lg-t-fast) var(--lg-ease), box-shadow var(--lg-t-fast) var(--lg-ease);
	appearance: none;
	-webkit-appearance: none;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B63' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='m5 9 7 7 7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	padding-right: 2.4rem;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--lg-green-500);
	box-shadow: 0 0 0 3px rgba(58, 125, 92, 0.16);
}

input::placeholder,
textarea::placeholder {
	color: var(--lg-muted);
	opacity: 0.8;
}

label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: var(--lg-fs-sm);
	font-weight: 500;
	color: var(--lg-green-900);
}

/* Hide native number spinners everywhere; we ship our own stepper. */
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* ==========================================================================
   06. QUANTITY STEPPER
   ========================================================================== */

.lgb-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	background: var(--lg-white);
	overflow: hidden;
	height: var(--lg-tap);
}

.lgb-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--lg-green-900);
	transition: background-color var(--lg-t-fast) var(--lg-ease);
}

.lgb-qty__btn:hover {
	background: var(--lg-sand);
}

.lgb-qty__btn[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
}

.lgb-qty__input,
.lgb-qty .qty {
	width: 46px;
	min-height: auto;
	height: 100%;
	padding: 0;
	border: 0;
	border-left: 1px solid var(--lg-line);
	border-right: 1px solid var(--lg-line);
	border-radius: 0;
	background: transparent;
	text-align: center;
	font-size: var(--lg-fs-base);
	font-variant-numeric: tabular-nums;
	font-weight: 500;
}

.lgb-qty__input:focus,
.lgb-qty .qty:focus {
	box-shadow: none;
	background: var(--lg-sand);
}

.lgb-qty--sm {
	height: 36px;
}

.lgb-qty--sm .lgb-qty__btn {
	width: 34px;
	min-width: 34px;
	min-height: 34px;
}

.lgb-qty--sm .lgb-qty__input {
	width: 38px;
}

/* ==========================================================================
   07. ICONS, BADGES, CHIPS, PIPS
   ========================================================================== */

.lgb-icon {
	flex: none;
	display: block;
	pointer-events: none;
}

.lgb-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.28rem 0.55rem;
	border-radius: var(--lg-r-xs);
	background: var(--lg-green-900);
	color: var(--lg-cream);
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	white-space: nowrap;
}

.lgb-badge--sale {
	background: var(--lg-terracotta);
	color: var(--lg-cream);
}

.lgb-badge--new {
	background: var(--lg-green-500);
}

.lgb-badge--oos {
	background: var(--lg-muted);
}

.lgb-badge--tc {
	background: transparent;
	border: 1px solid var(--lg-green-500);
	color: var(--lg-green-700);
}

.lgb-badge--low {
	background: var(--lg-terracotta);
}

.lgb-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.65rem;
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	background: var(--lg-white);
	font-size: var(--lg-fs-xs);
	color: var(--lg-green-900);
	line-height: 1.2;
}

.lgb-chip__label {
	font-family: var(--lg-font-mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--lg-muted);
	font-size: 0.6875rem;
}

.lgb-chip--oos {
	border-color: var(--lg-terracotta);
	color: var(--lg-terracotta);
}

.lgb-collector-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-2);
	margin: 0 0 var(--lg-s-4);
}

/* --- Difficulty pips ---------------------------------------------------- */

.lgb-pips {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.lgb-pips__pip {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 1px solid var(--lg-green-500);
	background: transparent;
}

.lgb-pips__pip.is-on {
	background: var(--lg-green-500);
}

.lgb-pips__label {
	margin-left: 0.4rem;
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

/* ==========================================================================
   08. IMAGES & GRADIENT PLACEHOLDERS
   ========================================================================== */

.lgb-img-wrap {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background: var(--lg-sand);
	border-radius: inherit;
}

.lgb-img-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* When the wrapper has no aspect-ratio the image sizes naturally. */
.lgb-img-wrap:not([style*="aspect-ratio"]) img {
	height: auto;
}

/* Graceful degradation: a tasteful gradient when the file is missing. */
.lgb-img-wrap--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	color: rgba(20, 40, 29, 0.28);
	background: linear-gradient(150deg, #e8e2d3 0%, #d6cfbc 100%);
}

.lgb-img-wrap--placeholder[data-ph="0"] {
	background: linear-gradient(150deg, #e6e9df 0%, #c9d2c2 100%);
}

.lgb-img-wrap--placeholder[data-ph="1"] {
	background: linear-gradient(150deg, #efe9db 0%, #d9cdb8 100%);
}

.lgb-img-wrap--placeholder[data-ph="2"] {
	background: linear-gradient(150deg, #dfe6e0 0%, #b9c9bd 100%);
}

.lgb-img-wrap--placeholder[data-ph="3"] {
	background: linear-gradient(150deg, #f0e6df 0%, #dbc4b4 100%);
}

.lgb-img-wrap--placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
	opacity: 0.5;
	pointer-events: none;
}

.lgb-placeholder__mark {
	position: relative;
	z-index: 1;
	display: block;
	opacity: 0.55;
}

/* Broken <img> files still leave the gradient visible behind them. */
img.lgb-img,
img.lgb-img-broken {
	background: linear-gradient(150deg, #e8e2d3 0%, #d6cfbc 100%);
}

/* ==========================================================================
   09. SKELETONS
   ========================================================================== */

.lgb-skeleton {
	display: grid;
	gap: var(--lg-s-5);
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.lgb-skeleton--row {
	grid-template-columns: 1fr;
}

.lgb-skeleton__item {
	display: block;
}

.lgb-skeleton__media,
.lgb-skeleton__line {
	display: block;
	border-radius: var(--lg-r-sm);
	background: linear-gradient(90deg, var(--lg-sand) 0%, #f3efe5 50%, var(--lg-sand) 100%);
	background-size: 200% 100%;
	animation: lgb-shimmer 1.35s ease-in-out infinite;
}

.lgb-skeleton__media {
	aspect-ratio: 4 / 5;
	margin-bottom: var(--lg-s-3);
}

.lgb-skeleton__line {
	height: 11px;
	margin-bottom: 8px;
}

.lgb-skeleton__line--short {
	width: 45%;
}

.lgb-skeleton--line .lgb-skeleton__media {
	display: none;
}

@keyframes lgb-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ==========================================================================
   10. ANNOUNCEMENT BAR
   ========================================================================== */

.lgb-announcement {
	position: relative;
	background: var(--lg-green-900);
	color: var(--lg-cream);
	font-size: var(--lg-fs-xs);
	letter-spacing: 0.04em;
	overflow: hidden;
}

.lgb-announcement[hidden] {
	display: none;
}

.lgb-announcement__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--lg-s-3);
	min-height: 40px;
	padding: 0.55rem calc(var(--lg-gutter) + 2.2rem);
	text-align: center;
}

.lgb-announcement__track {
	position: relative;
	display: block;
	min-height: 1.3em;
	width: 100%;
}

.lgb-announcement__msg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity var(--lg-t-slow) var(--lg-ease), transform var(--lg-t-slow) var(--lg-ease);
	pointer-events: none;
}

.lgb-announcement__msg.is-active {
	position: relative;
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.lgb-announcement__msg a {
	color: inherit;
	text-decoration: underline;
}

.lgb-announcement__close {
	position: absolute;
	right: max(0.35rem, calc(var(--lg-gutter) - 0.65rem));
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--lg-tap);
	height: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	border: 0;
	background: transparent;
	color: inherit;
	opacity: 0.75;
	border-radius: var(--lg-r-sm);
}

.lgb-announcement__close:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   11. HEADER & NAVIGATION
   ========================================================================== */

.lgb-header {
	position: sticky;
	top: 0;
	z-index: var(--lg-z-header);
	background: var(--lg-cream);
	border-bottom: 1px solid var(--lg-line);
	transition: box-shadow var(--lg-t-base) var(--lg-ease), transform var(--lg-t-base) var(--lg-ease);
}

.lgb-header.is-stuck {
	box-shadow: var(--lg-sh-sm);
}

.lgb-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--lg-s-4);
	width: 100%;
	max-width: var(--lg-max-wide);
	margin-inline: auto;
	padding: 0.55rem var(--lg-gutter);
	min-height: var(--lg-header-h);
}

/* The header grid is always exactly 3 cells:
   mobile  -> [hamburger] [brand] [actions]   (nav hidden)
   desktop -> [brand]     [nav]   [actions]   (hamburger hidden)
   Hiding the WRAPPER, not just the button, keeps the cell count at 3. */
.lgb-header__left {
	display: flex;
	align-items: center;
}

/* --- Branding ----------------------------------------------------------- */

.lgb-header__brand {
	display: flex;
	align-items: center;
	min-height: var(--lg-tap);
}

.lgb-header__brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.lgb-header__brand .custom-logo {
	width: auto;
	height: auto;
	max-height: 46px;
	max-width: 210px;
	object-fit: contain;
}

.lgb-wordmark {
	margin: 0;
	font-size: 1.0625rem;
}

.lgb-wordmark__link {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
	min-height: var(--lg-tap);
	text-decoration: none;
	color: var(--lg-green-900);
}

.lgb-wordmark__name {
	font-family: var(--lg-font-display);
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.375rem);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1;
	white-space: nowrap;
}

.lgb-wordmark__rule {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--lg-terracotta);
	transform: scaleX(0.35);
	transform-origin: left;
	transition: transform var(--lg-t-base) var(--lg-ease);
}

.lgb-wordmark__link:hover .lgb-wordmark__rule {
	transform: scaleX(1);
}

/* --- Primary nav --------------------------------------------------------- */

.lgb-nav {
	display: none;
	justify-self: center;
}

.lgb-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.6rem, 1.4vw, 1.75rem);
	list-style: none;
}

.lgb-nav__list li {
	position: relative;
}

.lgb-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: var(--lg-tap);
	padding: 0 0.15rem;
	color: var(--lg-green-900);
	font-size: var(--lg-fs-sm);
	font-weight: 500;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

.lgb-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	height: 1px;
	background: var(--lg-terracotta);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--lg-t-base) var(--lg-ease);
}

.lgb-nav__list a:hover::after,
.lgb-nav__list .current-menu-item > a::after,
.lgb-nav__list .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

/* Dropdowns */
.lgb-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -0.9rem;
	min-width: 220px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: var(--lg-white);
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	box-shadow: var(--lg-sh-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--lg-t-fast) var(--lg-ease), transform var(--lg-t-fast) var(--lg-ease), visibility var(--lg-t-fast);
	z-index: 5;
}

.lgb-nav__list li:hover > .sub-menu,
.lgb-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.lgb-nav__list .sub-menu a {
	display: flex;
	width: 100%;
	padding: 0 1rem;
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: var(--lg-fs-base);
}

.lgb-nav__list .sub-menu a::after {
	display: none;
}

.lgb-nav__list .sub-menu a:hover {
	background: var(--lg-sand);
}

/* --- Header actions ------------------------------------------------------ */

.lgb-header__actions {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	justify-self: end;
}

.lgb-iconbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--lg-tap);
	height: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	padding: 0;
	border: 0;
	border-radius: var(--lg-r-sm);
	background: transparent;
	color: var(--lg-green-900);
	text-decoration: none;
	transition: background-color var(--lg-t-fast) var(--lg-ease), color var(--lg-t-fast) var(--lg-ease);
}

.lgb-iconbtn:hover {
	background: var(--lg-sand);
	color: var(--lg-green-900);
}

.lgb-iconbtn--menu {
	display: inline-flex;
}

.lgb-cart-count {
	position: absolute;
	top: 4px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: var(--lg-r-pill);
	background: var(--lg-terracotta);
	color: var(--lg-cream);
	font-family: var(--lg-font-mono);
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 18px;
	text-align: center;
	transform: scale(0);
	transition: transform var(--lg-t-base) var(--lg-ease-out);
}

.lgb-cart-count.is-filled {
	transform: scale(1);
}

.lgb-cart-count.is-bump {
	animation: lgb-bump 420ms var(--lg-ease-out);
}

@keyframes lgb-bump {
	0% { transform: scale(1); }
	35% { transform: scale(1.35); }
	100% { transform: scale(1); }
}

/* ==========================================================================
   12. MOBILE DRAWER NAV
   ========================================================================== */

.lgb-mobile-nav {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: var(--lg-z-drawer);
	width: min(87vw, 380px);
	background: var(--lg-cream);
	transform: translateX(-102%);
	transition: transform var(--lg-t-slow) var(--lg-ease-out);
	display: flex;
	flex-direction: column;
	visibility: hidden;
	box-shadow: var(--lg-sh-xl);
}

.lgb-mobile-nav.is-open {
	transform: none;
	visibility: visible;
}

.lgb-mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lg-s-3);
	padding: var(--lg-s-3) var(--lg-s-4);
	border-bottom: 1px solid var(--lg-line);
	min-height: 64px;
}

.lgb-mobile-nav__title {
	margin: 0;
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-muted);
}

.lgb-mobile-nav__body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: var(--lg-s-4) var(--lg-s-4) var(--lg-s-8);
}

.lgb-mobile-nav__list,
.lgb-mobile-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lgb-mobile-nav__list > li {
	border-bottom: 1px solid var(--lg-line);
}

.lgb-mobile-nav__list a {
	display: flex;
	align-items: center;
	min-height: var(--lg-tap);
	padding: 0.85rem 0;
	color: var(--lg-green-900);
	font-family: var(--lg-font-display);
	font-size: 1.25rem;
	text-decoration: none;
}

.lgb-mobile-nav__list .sub-menu {
	padding-left: var(--lg-s-4);
	padding-bottom: var(--lg-s-2);
}

.lgb-mobile-nav__list .sub-menu a {
	font-family: var(--lg-font-body);
	font-size: var(--lg-fs-base);
	min-height: var(--lg-tap);
	padding: 0.5rem 0;
}

.lgb-mobile-nav__foot {
	padding: var(--lg-s-4);
	border-top: 1px solid var(--lg-line);
	background: var(--lg-sand);
}

.lgb-mobile-nav__foot .lgb-btn {
	width: 100%;
}

/* --- Shared backdrop ----------------------------------------------------- */

.lgb-backdrop {
	position: fixed;
	inset: 0;
	z-index: var(--lg-z-backdrop);
	background: var(--lg-overlay);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--lg-t-base) var(--lg-ease), visibility var(--lg-t-base);
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	cursor: pointer;
}

.lgb-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
   13. PREDICTIVE SEARCH
   ========================================================================== */

.lgb-search {
	position: relative;
	width: 100%;
}

/* Header search: a slide-down panel */
.lgb-search-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: var(--lg-z-search);
	background: var(--lg-cream);
	border-bottom: 1px solid var(--lg-line);
	box-shadow: var(--lg-sh-md);
	transform: translateY(-8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--lg-t-base) var(--lg-ease), transform var(--lg-t-base) var(--lg-ease), visibility var(--lg-t-base);
}

.lgb-search-panel.is-open {
	opacity: 1;
	transform: none;
	visibility: visible;
}

.lgb-search-panel__inner {
	max-width: var(--lg-max);
	margin-inline: auto;
	padding: var(--lg-s-5) var(--lg-gutter) var(--lg-s-6);
}

.lgb-search__form {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--lg-s-2);
	border-bottom: 1px solid var(--lg-green-900);
	padding-bottom: 0.35rem;
}

.lgb-search__icon {
	color: var(--lg-muted);
	flex: none;
}

.lgb-search__input {
	flex: 1;
	min-height: var(--lg-tap);
	padding: 0.3rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-family: var(--lg-font-display);
	font-size: clamp(1.05rem, 0.9rem + 0.9vw, 1.65rem);
	color: var(--lg-green-900);
}

.lgb-search__input:focus {
	outline: none;
	box-shadow: none;
}

.lgb-search__clear,
.lgb-search__close {
	flex: none;
}

.lgb-search__hint {
	margin: var(--lg-s-3) 0 0;
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

/* --- Results ------------------------------------------------------------- */

.lgb-search__results {
	margin-top: var(--lg-s-4);
	max-height: min(58vh, 460px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.lgb-search__results[hidden] {
	display: none;
}

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

.lgb-search__item + .lgb-search__item {
	border-top: 1px solid var(--lg-line);
}

.lgb-search__link {
	display: flex;
	align-items: center;
	gap: var(--lg-s-3);
	min-height: 72px;
	padding: 0.6rem 0.5rem;
	text-decoration: none;
	color: var(--lg-ink);
	border-radius: var(--lg-r-sm);
	transition: background-color var(--lg-t-fast) var(--lg-ease);
}

.lgb-search__link:hover,
.lgb-search__item.is-active .lgb-search__link {
	background: var(--lg-sand);
	color: var(--lg-ink);
}

.lgb-search__thumb {
	flex: none;
	width: 56px;
	border-radius: var(--lg-r-sm);
	overflow: hidden;
	background: var(--lg-sand);
}

.lgb-search__thumb .lgb-img-wrap {
	aspect-ratio: 1 / 1;
	min-height: 0;
}

.lgb-search__body {
	flex: 1;
	min-width: 0;
}

.lgb-search__name {
	display: block;
	margin: 0;
	font-size: var(--lg-fs-base);
	font-weight: 500;
	color: var(--lg-green-900);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lgb-search__binomial {
	display: block;
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: var(--lg-fs-xs);
	color: var(--lg-green-500);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lgb-search__price {
	flex: none;
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	color: var(--lg-green-900);
	font-variant-numeric: tabular-nums;
}

.lgb-search__price del {
	color: var(--lg-muted);
	font-weight: 400;
	margin-right: 0.3rem;
}

.lgb-search__viewall {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lg-s-2);
	min-height: var(--lg-tap);
	margin-top: var(--lg-s-2);
	padding: 0.75rem 0.5rem;
	border-top: 1px solid var(--lg-green-900);
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lg-green-900);
}

.lgb-search__viewall:hover {
	color: var(--lg-terracotta);
}

.lgb-search__empty {
	padding: var(--lg-s-5) 0;
	color: var(--lg-muted);
	font-size: var(--lg-fs-base);
}

/* ==========================================================================
   14. HERO
   ========================================================================== */

.lgb-hero {
	position: relative;
	background: var(--lg-cream);
	overflow: hidden;
}

.lgb-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	max-width: var(--lg-max-wide);
	margin-inline: auto;
	align-items: stretch;
}

.lgb-hero__media {
	position: relative;
	order: -1;
	min-height: clamp(280px, 52vw, 420px);
	background: var(--lg-sand);
}

.lgb-hero__media .lgb-img-wrap {
	height: 100%;
	min-height: inherit;
	border-radius: 0;
}

.lgb-hero__media img {
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.lgb-hero__caption {
	position: absolute;
	left: var(--lg-s-4);
	bottom: var(--lg-s-4);
	max-width: calc(100% - var(--lg-s-8));
	padding: 0.5rem 0.75rem;
	background: rgba(20, 40, 29, 0.72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: var(--lg-r-xs);
	color: var(--lg-cream);
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: var(--lg-fs-xs);
	line-height: 1.35;
}

.lgb-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--lg-s-4);
	padding: clamp(2rem, 1.4rem + 4vw, 5.5rem) var(--lg-gutter);
	max-width: 42rem;
}

/* clamp() guarantees no clipping at 390px — never a fixed font-size here. */
.lgb-hero__title {
	margin: 0;
	font-size: var(--lg-fs-hero);
	line-height: 1.02;
	letter-spacing: -0.022em;
	color: var(--lg-green-900);
	overflow-wrap: break-word;
	hyphens: manual;
	text-wrap: balance;
	max-width: 16ch;
}

.lgb-hero__binomial {
	margin: 0;
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: clamp(0.8125rem, 0.76rem + 0.25vw, 1rem);
	color: var(--lg-green-500);
}

.lgb-hero__sub {
	margin: 0;
	max-width: 46ch;
	font-size: var(--lg-fs-lg);
	line-height: 1.55;
	color: var(--lg-muted);
}

.lgb-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-3);
	margin-top: var(--lg-s-2);
}

.lgb-hero__ctas .lgb-btn {
	flex: 1 1 auto;
	min-width: 0;
}

.lgb-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-2) var(--lg-s-5);
	margin-top: var(--lg-s-4);
	padding-top: var(--lg-s-4);
	border-top: 1px solid var(--lg-line);
	font-family: var(--lg-font-mono);
	/* These three lines are the trust proof — guarantee, propagation, provenance.
	   At 0.6875rem they were unreadable at arm's length. Sized to be read. */
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lg-green-900);
}

.lgb-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

/* ==========================================================================
   15. CATEGORY CARDS
   ========================================================================== */

.lgb-cats {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-4);
}

.lgb-cat {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--lg-white);
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform var(--lg-t-base) var(--lg-ease), box-shadow var(--lg-t-base) var(--lg-ease), border-color var(--lg-t-base) var(--lg-ease);
}

.lgb-cat:hover {
	transform: translateY(-3px);
	box-shadow: var(--lg-sh-md);
	border-color: var(--lg-green-500);
	color: inherit;
}

.lgb-cat__media {
	position: relative;
	background: var(--lg-sand);
}

.lgb-cat__media .lgb-img-wrap {
	aspect-ratio: 4 / 3;
	border-radius: 0;
}

.lgb-cat__index {
	position: absolute;
	top: var(--lg-s-3);
	left: var(--lg-s-3);
	z-index: 2;
	padding: 0.25rem 0.5rem;
	background: var(--lg-cream);
	border-radius: var(--lg-r-xs);
	font-family: var(--lg-font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	color: var(--lg-green-900);
}

.lgb-cat__body {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-2);
	flex: 1;
	padding: var(--lg-s-5);
}

.lgb-cat__title {
	margin: 0;
	font-size: var(--lg-fs-xl);
	color: var(--lg-green-900);
}

.lgb-cat__binomial {
	margin: 0;
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: var(--lg-fs-xs);
	color: var(--lg-green-500);
}

.lgb-cat__text {
	margin: 0;
	font-size: var(--lg-fs-sm);
	color: var(--lg-muted);
	flex: 1;
}

.lgb-cat__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: var(--lg-tap);
	font-size: var(--lg-fs-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lg-green-700);
}

.lgb-cat:hover .lgb-cat__cta {
	color: var(--lg-terracotta);
}

.lgb-cat__count {
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	color: var(--lg-muted);
	letter-spacing: 0.08em;
}

/* ==========================================================================
   16. SECTION HEADS
   ========================================================================== */

.lgb-section-head {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-3);
	margin-bottom: var(--lg-s-6);
}

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

.lgb-section-head--center .lgb-section-head__intro {
	margin-inline: auto;
}

.lgb-section-head__title {
	margin: 0;
	font-size: var(--lg-fs-3xl);
	text-wrap: balance;
}

.lgb-section-head__intro {
	margin: 0;
	max-width: 56ch;
	font-size: var(--lg-fs-lg);
	color: var(--lg-muted);
}

.lgb-section-head__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: var(--lg-tap);
	font-size: var(--lg-fs-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lg-green-900);
	white-space: nowrap;
	align-self: flex-start;
}

.lgb-section-head__link:hover {
	color: var(--lg-terracotta);
}

/* ==========================================================================
   17. EDITORIAL SPLIT
   ========================================================================== */

.lgb-editorial {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-6);
	align-items: center;
}

.lgb-editorial__media .lgb-img-wrap {
	aspect-ratio: 4 / 3;
	border-radius: var(--lg-r-sm);
}

.lgb-editorial__body {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-4);
	max-width: 44rem;
}

.lgb-editorial__title {
	margin: 0;
	font-size: var(--lg-fs-3xl);
	text-wrap: balance;
}

.lgb-editorial__text {
	margin: 0;
	font-size: var(--lg-fs-md);
	line-height: 1.7;
	color: var(--lg-muted);
}

.lgb-editorial--dark .lgb-editorial__text {
	color: rgba(247, 244, 237, 0.78);
}

.lgb-editorial__points {
	list-style: none;
	display: grid;
	gap: var(--lg-s-3);
	margin: 0;
	padding: 0;
}

.lgb-editorial__point {
	display: flex;
	align-items: flex-start;
	gap: var(--lg-s-3);
	padding-top: var(--lg-s-3);
	border-top: 1px solid var(--lg-line);
	font-size: var(--lg-fs-sm);
}

.lgb-editorial--dark .lgb-editorial__point {
	border-top-color: rgba(247, 244, 237, 0.18);
}

.lgb-editorial__point-num {
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	color: var(--lg-terracotta);
	padding-top: 0.15rem;
	flex: none;
}

.lgb-editorial__point strong {
	display: block;
	font-weight: 600;
	color: var(--lg-green-900);
	margin-bottom: 0.15rem;
}

.lgb-editorial--dark .lgb-editorial__point strong {
	color: var(--lg-cream);
}

/* ==========================================================================
   18. SPECIMEN SPEC TABLE  (the wedge — herbarium data, not lifestyle fluff)
   ========================================================================== */

.lgb-spec {
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	background: var(--lg-white);
	overflow: hidden;
}

.lgb-spec--dark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(247, 244, 237, 0.2);
}

.lgb-spec__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lg-s-3);
	padding: var(--lg-s-3) var(--lg-s-4);
	border-bottom: 1px solid var(--lg-line);
	background: var(--lg-sand);
}

.lgb-spec--dark .lgb-spec__head {
	background: rgba(255, 255, 255, 0.05);
	border-bottom-color: rgba(247, 244, 237, 0.2);
}

.lgb-spec__title {
	margin: 0;
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-green-900);
}

.lgb-spec--dark .lgb-spec__title {
	color: var(--lg-cream);
}

.lgb-spec__ref {
	font-family: var(--lg-font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.1em;
	color: var(--lg-muted);
}

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

.lgb-spec__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
	align-items: baseline;
	gap: var(--lg-s-3);
	padding: 0.7rem var(--lg-s-4);
	border-bottom: 1px dotted var(--lg-line);
	font-size: var(--lg-fs-sm);
}

.lgb-spec--dark .lgb-spec__row {
	border-bottom-color: rgba(247, 244, 237, 0.16);
}

.lgb-spec__row:last-child {
	border-bottom: 0;
}

.lgb-spec__label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--lg-muted);
	min-width: 0;
}

.lgb-spec__label svg {
	color: var(--lg-green-500);
	flex: none;
}

.lgb-spec__value {
	font-size: var(--lg-fs-sm);
	color: var(--lg-green-900);
	font-weight: 500;
	min-width: 0;
	overflow-wrap: break-word;
}

.lgb-spec--dark .lgb-spec__value {
	color: var(--lg-cream);
}

.lgb-spec__foot {
	padding: var(--lg-s-3) var(--lg-s-4);
	border-top: 1px solid var(--lg-line);
	background: var(--lg-sand);
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

.lgb-spec--dark .lgb-spec__foot {
	background: rgba(255, 255, 255, 0.05);
	border-top-color: rgba(247, 244, 237, 0.2);
	color: rgba(247, 244, 237, 0.66);
}

.lgb-spec--compact .lgb-spec__row {
	padding-block: 0.55rem;
}

/* Specimen feature block (front page) */
.lgb-specimen-feature {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-6);
	align-items: center;
}

.lgb-specimen-feature__media {
	position: relative;
}

.lgb-specimen-feature__media .lgb-img-wrap {
	aspect-ratio: 4 / 5;
	border-radius: var(--lg-r-sm);
}

.lgb-specimen-feature__tag {
	position: absolute;
	top: var(--lg-s-3);
	left: var(--lg-s-3);
	padding: 0.3rem 0.6rem;
	background: var(--lg-cream);
	border-radius: var(--lg-r-xs);
	font-family: var(--lg-font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lg-green-900);
}

/* ==========================================================================
   19. TRUST ROW
   ========================================================================== */

.lgb-trust {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-5);
}

.lgb-trust__item {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-2);
	padding-top: var(--lg-s-4);
	border-top: 1px solid var(--lg-line);
}

.lgb-section--dark .lgb-trust__item {
	border-top-color: rgba(247, 244, 237, 0.2);
}

.lgb-trust__icon {
	color: var(--lg-terracotta);
	margin-bottom: var(--lg-s-1);
}

.lgb-trust__title {
	margin: 0;
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-xl);
	color: var(--lg-green-900);
}

.lgb-section--dark .lgb-trust__title {
	color: var(--lg-cream);
}

.lgb-trust__text {
	margin: 0;
	font-size: var(--lg-fs-sm);
	color: var(--lg-muted);
	line-height: 1.6;
}

.lgb-section--dark .lgb-trust__text {
	color: rgba(247, 244, 237, 0.72);
}

/* ==========================================================================
   20. NEWSLETTER
   ========================================================================== */

.lgb-newsletter {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-5);
	align-items: center;
}

.lgb-newsletter__title {
	margin: 0 0 var(--lg-s-2);
	font-size: var(--lg-fs-2xl);
	text-wrap: balance;
}

.lgb-newsletter__text {
	margin: 0;
	font-size: var(--lg-fs-base);
	color: var(--lg-muted);
	max-width: 46ch;
}

.lgb-section--dark .lgb-newsletter__text {
	color: rgba(247, 244, 237, 0.75);
}

.lgb-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-3);
	width: 100%;
}

.lgb-newsletter__row {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-2);
}

.lgb-newsletter__input {
	flex: 1;
	min-height: var(--lg-tap);
	background: var(--lg-white);
	border: 1px solid var(--lg-line);
}

.lgb-newsletter__note {
	margin: 0;
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

.lgb-section--dark .lgb-newsletter__note {
	color: rgba(247, 244, 237, 0.6);
}

.lgb-newsletter__msg {
	margin: 0;
	font-size: var(--lg-fs-sm);
	min-height: 1.2em;
}

.lgb-newsletter__msg.is-error {
	color: var(--lg-terracotta);
}

.lgb-newsletter__msg.is-success {
	color: var(--lg-green-500);
}

/* ==========================================================================
   21. FOOTER
   ========================================================================== */

.lgb-footer {
	background: var(--lg-green-900);
	color: rgba(247, 244, 237, 0.78);
	font-size: var(--lg-fs-sm);
}

.lgb-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-7);
	padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}

.lgb-footer__brand {
	max-width: 34rem;
}

.lgb-footer__wordmark {
	margin: 0 0 var(--lg-s-3);
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-2xl);
	color: var(--lg-cream);
	line-height: 1.1;
}

.lgb-footer__blurb {
	margin: 0 0 var(--lg-s-4);
	line-height: 1.65;
	color: rgba(247, 244, 237, 0.72);
}

.lgb-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lgb-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--lg-tap);
	height: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	border: 1px solid rgba(247, 244, 237, 0.25);
	border-radius: var(--lg-r-sm);
	color: var(--lg-cream);
	text-decoration: none;
	transition: background-color var(--lg-t-fast) var(--lg-ease), border-color var(--lg-t-fast) var(--lg-ease);
}

.lgb-footer__social a:hover {
	background: rgba(247, 244, 237, 0.12);
	border-color: var(--lg-cream);
	color: var(--lg-cream);
}

.lgb-footer__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--lg-s-6) var(--lg-s-4);
}

.lgb-footer__col {
	min-width: 0;
}

.lgb-footer__heading {
	margin: 0 0 var(--lg-s-2);
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-cream);
}

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

/* HARD REQUIREMENT: footer links are full 44px tap targets, no exemptions. */
.lgb-footer__menu a,
.lgb-footer a.lgb-footer__link {
	display: flex;
	align-items: center;
	min-height: var(--lg-tap);
	padding: 0.25rem 0;
	color: rgba(247, 244, 237, 0.78);
	text-decoration: none;
	line-height: 1.3;
	transition: color var(--lg-t-fast) var(--lg-ease);
}

.lgb-footer__menu a:hover,
.lgb-footer a.lgb-footer__link:hover {
	color: var(--lg-cream);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.lgb-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-3);
	padding-block: var(--lg-s-5);
	border-top: 1px solid rgba(247, 244, 237, 0.18);
	font-size: var(--lg-fs-xs);
	color: rgba(247, 244, 237, 0.6);
}

.lgb-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 var(--lg-s-4);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lgb-footer__legal a {
	display: inline-flex;
	align-items: center;
	min-height: var(--lg-tap);
	color: inherit;
	text-decoration: none;
}

.lgb-footer__legal a:hover {
	color: var(--lg-cream);
	text-decoration: underline;
}

.lgb-footer__copy {
	margin: 0;
}

.lgb-footer__widget-area .widget {
	margin-bottom: var(--lg-s-5);
}

/* ==========================================================================
   22. CART DRAWER
   ========================================================================== */

.lgb-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: var(--lg-z-drawer);
	display: flex;
	flex-direction: column;
	width: min(100vw, 452px);
	max-width: 100vw;
	background: var(--lg-cream);
	box-shadow: var(--lg-sh-xl);
	transform: translateX(102%);
	visibility: hidden;
	transition: transform var(--lg-t-slow) var(--lg-ease-out), visibility var(--lg-t-slow);
	overscroll-behavior: contain;
}

.lgb-drawer.is-open {
	transform: none;
	visibility: visible;
}

.lgb-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lg-s-3);
	padding: var(--lg-s-4) var(--lg-s-4) var(--lg-s-3);
	border-bottom: 1px solid var(--lg-line);
	min-height: 64px;
	flex: none;
}

.lgb-drawer__title {
	margin: 0;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-xl);
	color: var(--lg-green-900);
}

.lgb-drawer__count {
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
	letter-spacing: 0.08em;
}

/* --- Free shipping progress ---------------------------------------------- */

.lgb-freeship {
	flex: none;
	padding: var(--lg-s-3) var(--lg-s-4);
	border-bottom: 1px solid var(--lg-line);
	background: var(--lg-sand);
}

.lgb-freeship[hidden] {
	display: none;
}

.lgb-freeship__text {
	margin: 0 0 0.5rem;
	font-size: var(--lg-fs-xs);
	color: var(--lg-green-900);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.lgb-freeship__text strong {
	font-weight: 600;
}

.lgb-freeship__track {
	position: relative;
	height: 5px;
	border-radius: var(--lg-r-pill);
	background: var(--lg-sand-deep);
	overflow: hidden;
}

.lgb-freeship__fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	border-radius: var(--lg-r-pill);
	background: linear-gradient(90deg, var(--lg-green-500), var(--lg-green-700));
	transition: width var(--lg-t-slow) var(--lg-ease-out);
}

.lgb-freeship.is-qualified .lgb-freeship__fill {
	background: linear-gradient(90deg, var(--lg-green-500), var(--lg-success));
}

.lgb-freeship.is-qualified .lgb-freeship__text {
	color: var(--lg-success);
	font-weight: 600;
}

/* --- Drawer body --------------------------------------------------------- */

.lgb-drawer__body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: var(--lg-s-2) var(--lg-s-4);
}

.lgb-drawer__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--lg-s-4);
	min-height: 46vh;
	text-align: center;
	padding: var(--lg-s-6) var(--lg-s-2);
}

.lgb-drawer__empty-icon {
	color: var(--lg-line);
}

.lgb-drawer__empty p {
	margin: 0;
	color: var(--lg-muted);
}

.lgb-cart-lines {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lgb-cart-line {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: var(--lg-s-3);
	padding: var(--lg-s-4) 0;
	border-bottom: 1px solid var(--lg-line);
	transition: opacity var(--lg-t-base) var(--lg-ease);
}

.lgb-cart-line.is-updating {
	opacity: 0.45;
	pointer-events: none;
}

.lgb-cart-line__media {
	border-radius: var(--lg-r-sm);
	overflow: hidden;
	background: var(--lg-sand);
}

.lgb-cart-line__media .lgb-img-wrap {
	aspect-ratio: 4 / 5;
	min-height: 0;
}

.lgb-cart-line__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.lgb-cart-line__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--lg-s-2);
}

.lgb-cart-line__name {
	margin: 0;
	font-size: var(--lg-fs-base);
	font-weight: 500;
	line-height: 1.3;
	color: var(--lg-green-900);
}

.lgb-cart-line__name a {
	color: inherit;
	text-decoration: none;
}

.lgb-cart-line__name a:hover {
	color: var(--lg-terracotta);
}

.lgb-cart-line__binomial {
	margin: 0;
	font-family: var(--lg-font-display);
	font-style: italic;
	font-size: var(--lg-fs-xs);
	color: var(--lg-green-500);
}

.lgb-cart-line__variation {
	margin: 0;
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

.lgb-cart-line__price {
	font-size: var(--lg-fs-sm);
	color: var(--lg-muted);
	font-variant-numeric: tabular-nums;
}

.lgb-cart-line__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lg-s-2);
	margin-top: auto;
	padding-top: var(--lg-s-2);
	flex-wrap: wrap;
}

.lgb-cart-line__total {
	font-size: var(--lg-fs-base);
	font-weight: 600;
	color: var(--lg-green-900);
	font-variant-numeric: tabular-nums;
}

.lgb-cart-line__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--lg-tap);
	height: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	border: 0;
	background: transparent;
	color: var(--lg-muted);
	border-radius: var(--lg-r-sm);
	transition: color var(--lg-t-fast) var(--lg-ease), background-color var(--lg-t-fast) var(--lg-ease);
}

.lgb-cart-line__remove:hover {
	color: var(--lg-terracotta);
	background: var(--lg-sand);
}

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

.lgb-drawer__foot {
	flex: none;
	padding: var(--lg-s-4);
	padding-bottom: max(var(--lg-s-4), env(safe-area-inset-bottom));
	border-top: 1px solid var(--lg-line);
	background: var(--lg-cream);
	box-shadow: 0 -8px 22px rgba(20, 40, 29, 0.06);
}

.lgb-drawer__subtotal {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--lg-s-3);
	margin-bottom: 0.35rem;
}

.lgb-drawer__subtotal-label {
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--lg-muted);
}

.lgb-drawer__subtotal-value {
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-xl);
	color: var(--lg-green-900);
	font-variant-numeric: tabular-nums;
}

.lgb-drawer__note {
	margin: 0 0 var(--lg-s-3);
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

.lgb-drawer__actions {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-2);
}

.lgb-drawer__actions .lgb-btn {
	width: 100%;
}

/* ==========================================================================
   23. TOASTS
   ========================================================================== */

.lgb-toasts {
	position: fixed;
	top: calc(var(--lg-header-h) + 12px);
	right: var(--lg-s-4);
	z-index: var(--lg-z-toast);
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-2);
	width: min(calc(100vw - 2rem), 360px);
	pointer-events: none;
}

.lgb-toast {
	display: flex;
	align-items: flex-start;
	gap: var(--lg-s-3);
	padding: var(--lg-s-3) var(--lg-s-4);
	background: var(--lg-green-900);
	color: var(--lg-cream);
	border-radius: var(--lg-r-sm);
	box-shadow: var(--lg-sh-lg);
	font-size: var(--lg-fs-sm);
	line-height: 1.4;
	pointer-events: auto;
	opacity: 0;
	transform: translateX(16px);
	transition: opacity var(--lg-t-base) var(--lg-ease-out), transform var(--lg-t-base) var(--lg-ease-out);
}

.lgb-toast.is-visible {
	opacity: 1;
	transform: none;
}

.lgb-toast.is-leaving {
	opacity: 0;
	transform: translateX(16px);
}

.lgb-toast__icon {
	flex: none;
	color: var(--lg-green-500);
	margin-top: 1px;
}

.lgb-toast--error {
	background: var(--lg-error);
}

.lgb-toast--error .lgb-toast__icon {
	color: var(--lg-cream);
}

.lgb-toast__body {
	flex: 1;
	min-width: 0;
}

.lgb-toast__title {
	display: block;
	font-weight: 600;
}

.lgb-toast__close {
	flex: none;
	width: 28px;
	height: 28px;
	min-width: 28px;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: inherit;
	opacity: 0.7;
	border-radius: var(--lg-r-xs);
}

.lgb-toast__close:hover {
	opacity: 1;
}

/* ==========================================================================
   24. MODALS (QUICK VIEW / LIGHTBOX)
   ========================================================================== */

.lgb-modal {
	position: fixed;
	inset: 0;
	z-index: var(--lg-z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--lg-s-4);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--lg-t-base) var(--lg-ease), visibility var(--lg-t-base);
}

.lgb-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.lgb-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 980px;
	max-height: calc(100dvh - 2rem);
	background: var(--lg-cream);
	border-radius: var(--lg-r-sm);
	box-shadow: var(--lg-sh-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: translateY(12px) scale(0.99);
	transition: transform var(--lg-t-base) var(--lg-ease-out);
}

.lgb-modal.is-open .lgb-modal__dialog {
	transform: none;
}

.lgb-modal__close {
	position: absolute;
	top: var(--lg-s-2);
	right: var(--lg-s-2);
	z-index: 3;
	width: var(--lg-tap);
	height: var(--lg-tap);
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: var(--lg-r-sm);
	background: var(--lg-cream);
	color: var(--lg-green-900);
	box-shadow: var(--lg-sh-sm);
}

.lgb-modal__close:hover {
	background: var(--lg-sand);
}

.lgb-modal__body {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 0;
}

/* --- Quick view layout ---------------------------------------------------- */

.lgb-quickview {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.lgb-quickview__media {
	background: var(--lg-sand);
}

.lgb-quickview__media .lgb-img-wrap {
	aspect-ratio: 1 / 1;
	border-radius: 0;
}

.lgb-quickview__body {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-3);
	padding: var(--lg-s-5);
}

.lgb-quickview__title {
	margin: 0;
	font-size: var(--lg-fs-2xl);
	line-height: 1.1;
}

.lgb-quickview__price {
	font-family: var(--lg-font-display);
	font-size: var(--lg-fs-xl);
	color: var(--lg-green-900);
}

.lgb-quickview__price del {
	color: var(--lg-muted);
	font-size: 0.8em;
	margin-right: 0.4rem;
}

.lgb-quickview__price ins {
	text-decoration: none;
	color: var(--lg-terracotta);
}

.lgb-quickview__excerpt {
	font-size: var(--lg-fs-sm);
	color: var(--lg-muted);
	line-height: 1.6;
}

.lgb-quickview__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-2);
	margin-top: auto;
	padding-top: var(--lg-s-3);
}

.lgb-quickview__actions .lgb-btn {
	flex: 1 1 auto;
}

.lgb-quickview__full {
	font-size: var(--lg-fs-xs);
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--lg-green-900);
	display: inline-flex;
	align-items: center;
	min-height: var(--lg-tap);
	gap: 0.35rem;
}

.lgb-modal__loading {
	display: grid;
	gap: var(--lg-s-4);
	padding: var(--lg-s-6);
}

/* --- Lightbox -------------------------------------------------------------- */

.lgb-lightbox {
	position: fixed;
	inset: 0;
	z-index: var(--lg-z-lightbox);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 40, 29, 0.94);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--lg-t-base) var(--lg-ease), visibility var(--lg-t-base);
	touch-action: pan-y;
}

.lgb-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lgb-lightbox__stage {
	position: relative;
	max-width: min(94vw, 1200px);
	max-height: 88dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.lgb-lightbox__img {
	max-width: 94vw;
	max-height: 88dvh;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform var(--lg-t-base) var(--lg-ease);
	cursor: zoom-in;
}

.lgb-lightbox__img.is-zoomed {
	transform: scale(2);
	cursor: zoom-out;
}

.lgb-lightbox__close,
.lgb-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	border: 1px solid rgba(247, 244, 237, 0.3);
	border-radius: var(--lg-r-sm);
	background: rgba(20, 40, 29, 0.55);
	color: var(--lg-cream);
	transition: background-color var(--lg-t-fast) var(--lg-ease);
}

.lgb-lightbox__close:hover,
.lgb-lightbox__nav:hover {
	background: rgba(247, 244, 237, 0.2);
}

.lgb-lightbox__close {
	top: var(--lg-s-4);
	right: var(--lg-s-4);
}

.lgb-lightbox__nav--prev { left: var(--lg-s-3); top: 50%; transform: translateY(-50%); }
.lgb-lightbox__nav--next { right: var(--lg-s-3); top: 50%; transform: translateY(-50%); }

.lgb-lightbox__counter {
	position: absolute;
	bottom: var(--lg-s-4);
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	letter-spacing: 0.1em;
	color: rgba(247, 244, 237, 0.8);
}

/* ==========================================================================
   25. BLOG, PAGES, COMMENTS, 404
   ========================================================================== */

.lgb-page-header {
	padding-block: clamp(2rem, 1.5rem + 3vw, 4rem) var(--lg-s-6);
	border-bottom: 1px solid var(--lg-line);
}

.lgb-page-header__title {
	margin: 0;
	font-size: var(--lg-fs-3xl);
	text-wrap: balance;
}

.lgb-page-header__desc {
	margin: var(--lg-s-3) 0 0;
	max-width: 56ch;
	color: var(--lg-muted);
	font-size: var(--lg-fs-lg);
}

.lgb-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-7);
	padding-block: var(--lg-s-7);
}

.lgb-posts {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--lg-s-7);
}

.lgb-post-card {
	display: flex;
	flex-direction: column;
	gap: var(--lg-s-3);
}

.lgb-post-card__media .lgb-img-wrap {
	aspect-ratio: 3 / 2;
	border-radius: var(--lg-r-sm);
}

.lgb-post-card__title {
	margin: 0;
	font-size: var(--lg-fs-xl);
}

.lgb-post-card__title a {
	color: var(--lg-green-900);
	text-decoration: none;
}

.lgb-post-card__title a:hover {
	color: var(--lg-terracotta);
}

.lgb-post-card__excerpt {
	margin: 0;
	color: var(--lg-muted);
	font-size: var(--lg-fs-sm);
}

.lgb-entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--lg-muted);
}

.lgb-entry {
	max-width: var(--lg-max-narrow);
	margin-inline: auto;
}

.lgb-entry__header {
	margin-bottom: var(--lg-s-6);
}

.lgb-entry__title {
	margin: var(--lg-s-3) 0;
	font-size: var(--lg-fs-3xl);
	text-wrap: balance;
}

.lgb-entry__media {
	margin-bottom: var(--lg-s-6);
}

.lgb-entry__media .lgb-img-wrap {
	aspect-ratio: 16 / 9;
	border-radius: var(--lg-r-sm);
}

.lgb-entry__content > * + * {
	margin-top: var(--lg-s-4);
}

.lgb-entry__content h2,
.lgb-entry__content h3 {
	margin-top: var(--lg-s-7);
}

.lgb-entry__content ul,
.lgb-entry__content ol {
	padding-left: 1.25rem;
}

.lgb-entry__content li + li {
	margin-top: 0.4rem;
}

.lgb-entry__content img {
	border-radius: var(--lg-r-sm);
}

.lgb-entry__footer {
	margin-top: var(--lg-s-7);
	padding-top: var(--lg-s-5);
	border-top: 1px solid var(--lg-line);
}

.lgb-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-2);
	list-style: none;
}

.lgb-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0.25rem 0.65rem;
	border: 1px solid var(--lg-line);
	border-radius: var(--lg-r-sm);
	font-size: var(--lg-fs-xs);
	text-decoration: none;
	color: var(--lg-green-900);
}

.lgb-tags a:hover {
	border-color: var(--lg-green-500);
	background: var(--lg-sand);
}

.lgb-post-nav {
	display: grid;
	gap: var(--lg-s-4);
	margin-top: var(--lg-s-7);
	padding-top: var(--lg-s-5);
	border-top: 1px solid var(--lg-line);
}

.lgb-post-nav a {
	display: block;
	min-height: var(--lg-tap);
	text-decoration: none;
	color: var(--lg-green-900);
}

.lgb-post-nav span {
	display: block;
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lg-muted);
	margin-bottom: 0.25rem;
}

/* --- Sidebar & widgets ---------------------------------------------------- */

.lgb-sidebar {
	min-width: 0;
}

.widget {
	margin-bottom: var(--lg-s-6);
	padding-bottom: var(--lg-s-5);
	border-bottom: 1px solid var(--lg-line);
}

.widget:last-child {
	border-bottom: 0;
}

.widget-title {
	margin: 0 0 var(--lg-s-3);
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--lg-ls-wide);
	color: var(--lg-muted);
}

.widget ul {
	list-style: none;
}

.widget li a {
	display: flex;
	align-items: center;
	min-height: var(--lg-tap);
	color: var(--lg-green-900);
	text-decoration: none;
	font-size: var(--lg-fs-sm);
}

.widget li a:hover {
	color: var(--lg-terracotta);
}

/* --- Comments -------------------------------------------------------------- */

.lgb-comments {
	max-width: var(--lg-max-narrow);
	margin: var(--lg-s-9) auto 0;
	padding-top: var(--lg-s-6);
	border-top: 1px solid var(--lg-line);
}

.lgb-comments__title {
	font-size: var(--lg-fs-xl);
	margin-bottom: var(--lg-s-5);
}

.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children {
	padding-left: var(--lg-s-5);
	border-left: 1px solid var(--lg-line);
	margin-top: var(--lg-s-4);
}

.comment-body {
	padding: var(--lg-s-4) 0;
	border-bottom: 1px solid var(--lg-line);
}

.comment-author {
	display: flex;
	align-items: center;
	gap: var(--lg-s-2);
	font-weight: 600;
	color: var(--lg-green-900);
	margin-bottom: 0.25rem;
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata {
	font-family: var(--lg-font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lg-muted);
	margin-bottom: var(--lg-s-2);
}

.comment-metadata a,
.comment-reply-link {
	color: var(--lg-muted);
	text-decoration: none;
}

.comment-reply-link {
	display: inline-flex;
	align-items: center;
	min-height: var(--lg-tap);
	font-size: var(--lg-fs-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--lg-green-700);
}

.comment-form {
	display: grid;
	gap: var(--lg-s-3);
	margin-top: var(--lg-s-5);
}

.comment-form .form-submit {
	margin: 0;
}

.comment-form input[type="submit"] {
	min-height: var(--lg-tap);
	padding: 0.78rem 1.6rem;
	border: 0;
	border-radius: var(--lg-r-sm);
	background: var(--lg-green-700);
	color: var(--lg-cream);
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.comment-form input[type="submit"]:hover {
	background: var(--lg-green-700-hover);
}

/* --- 404 -------------------------------------------------------------------- */

.lgb-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--lg-s-5);
	text-align: center;
	padding-block: clamp(3rem, 2rem + 6vw, 7rem);
	max-width: 46rem;
	margin-inline: auto;
}

.lgb-404__code {
	font-family: var(--lg-font-mono);
	font-size: var(--lg-fs-xs);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lg-terracotta);
}

.lgb-404__title {
	margin: 0;
	font-size: var(--lg-fs-3xl);
	text-wrap: balance;
}

.lgb-404__text {
	margin: 0;
	color: var(--lg-muted);
	font-size: var(--lg-fs-lg);
	max-width: 48ch;
}

.lgb-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lg-s-3);
	justify-content: center;
}

.lgb-404__search {
	width: min(100%, 460px);
}

/* --- Search form (generic) --------------------------------------------------- */

.lgb-searchform {
	display: flex;
	gap: var(--lg-s-2);
	width: 100%;
}

.lgb-searchform__field {
	flex: 1;
	min-width: 0;
}

.lgb-searchform__submit {
	flex: none;
}

/* ==========================================================================
   26. PAGINATION & BREADCRUMBS
   ========================================================================== */

.lgb-pagination {
	margin-top: var(--lg-s-7);
	padding-top: var(--lg-s-5);
	border-top: 1px solid var(--lg-line);
}

.lgb-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--lg-s-1);
	list-style: none;
}

.lgb-pagination a,
.lgb-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--lg-tap);
	min-height: var(--lg-tap);
	padding: 0 0.65rem;
	border: 1px solid transparent;
	border-radius: var(--lg-r-sm);
	color: var(--lg-green-900);
	text-decoration: none;
	font-size: var(--lg-fs-sm);
	font-variant-numeric: tabular-nums;
}

.lgb-pagination a:hover {
	background: var(--lg-sand);
	border-color: var(--lg-line);
}

.lgb-pagination .current {
	background: var(--lg-green-900);
	color: var(--lg-cream);
}

.lgb-breadcrumbs {
	padding-block: var(--lg-s-3);
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
}

.lgb-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
}

.lgb-breadcrumbs__item + .lgb-breadcrumbs__item::before {
	content: "/";
	margin-right: 0.4rem;
	color: var(--lg-line);
}

.lgb-breadcrumbs a {
	color: var(--lg-muted);
	text-decoration: none;
}

.lgb-breadcrumbs a:hover {
	color: var(--lg-green-900);
	text-decoration: underline;
}

/* ==========================================================================
   27. UTILITIES & ACCESSIBILITY
   ========================================================================== */

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

.screen-reader-text:focus {
	background-color: var(--lg-cream);
	border-radius: var(--lg-r-sm);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--lg-green-900);
	display: block;
	font-size: var(--lg-fs-sm);
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 16px 24px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: var(--lg-z-skip);
}

.lgb-skip-link {
	position: absolute;
	top: -100px;
	left: 8px;
	z-index: var(--lg-z-skip);
	padding: 0.85rem 1.4rem;
	background: var(--lg-green-900);
	color: var(--lg-cream);
	border-radius: var(--lg-r-sm);
	font-size: var(--lg-fs-sm);
	font-weight: 600;
	text-decoration: none;
	transition: top var(--lg-t-fast) var(--lg-ease);
}

.lgb-skip-link:focus {
	top: 8px;
	color: var(--lg-cream);
}

/* Visible focus rings everywhere. */
:focus-visible {
	outline: 2px solid var(--lg-focus);
	outline-offset: 2px;
	border-radius: var(--lg-r-xs);
}

/* Keyboard users only — never remove the ring for them. */
.lgb-no-outline:focus:not(:focus-visible) {
	outline: none;
}

[hidden] {
	display: none !important;
}

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

.lgb-text-center { text-align: center; }
.lgb-mt-0 { margin-top: 0; }
.lgb-mb-0 { margin-bottom: 0; }
.lgb-flow > * + * { margin-top: var(--lg-s-4); }

.lgb-notice {
	padding: var(--lg-s-3) var(--lg-s-4);
	border-left: 3px solid var(--lg-green-500);
	background: var(--lg-sand);
	border-radius: var(--lg-r-xs);
	font-size: var(--lg-fs-sm);
	margin-bottom: var(--lg-s-4);
}

.lgb-notice--error {
	border-left-color: var(--lg-terracotta);
}

.lgb-sr-status {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* Alignment classes for block content */
.alignwide {
	max-width: var(--lg-max);
	margin-inline: auto;
}

.alignfull {
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.alignleft {
	float: left;
	margin: 0 var(--lg-s-5) var(--lg-s-4) 0;
}

.alignright {
	float: right;
	margin: 0 0 var(--lg-s-4) var(--lg-s-5);
}

.aligncenter {
	margin-inline: auto;
	display: block;
}

.wp-caption-text,
figcaption {
	font-size: var(--lg-fs-xs);
	color: var(--lg-muted);
	margin-top: 0.5rem;
}

.sticky .lgb-post-card__title::before {
	content: "★ ";
	color: var(--lg-terracotta);
}

/* ==========================================================================
   28. RESPONSIVE — mobile first; the breakpoints below only ADD
   ========================================================================== */

/* ≥ 480px — small phones landscape */
@media (min-width: 480px) {
	.lgb-newsletter__row {
		flex-direction: row;
		align-items: center;
	}

	.lgb-newsletter__row .lgb-btn {
		flex: none;
	}

	.lgb-drawer__actions {
		flex-direction: column;
	}
}

/* ≥ 600px */
@media (min-width: 600px) {
	.lgb-cats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

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

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

	.lgb-hero__ctas .lgb-btn {
		flex: 0 1 auto;
	}
}

/* ≥ 782px — tablets */
@media (min-width: 782px) {
	:root {
		--lg-header-h: 76px;
	}

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

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

	.lgb-editorial {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(2rem, 1rem + 4vw, 4.5rem);
	}

	.lgb-editorial--reverse .lgb-editorial__media {
		order: 2;
	}

	.lgb-specimen-feature {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: clamp(2rem, 1rem + 4vw, 4rem);
	}

	.lgb-newsletter {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2rem, 1rem + 4vw, 4rem);
	}

	.lgb-section-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: var(--lg-s-5);
	}

	.lgb-section-head--center {
		flex-direction: column;
		align-items: center;
	}

	.lgb-section-head__link {
		padding-bottom: 0.35rem;
	}

	.lgb-quickview {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.lgb-quickview__media .lgb-img-wrap {
		aspect-ratio: 4 / 5;
		height: 100%;
	}

	.lgb-quickview__body {
		padding: var(--lg-s-6);
	}
}

/* ≥ 1024px — desktop */
@media (min-width: 1024px) {
	.lgb-nav {
		display: block;
	}

	.lgb-header__left,
	.lgb-iconbtn--menu {
		display: none;
	}

	.lgb-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		min-height: min(78vh, 780px);
	}

	.lgb-hero__media {
		order: 0;
		min-height: 100%;
	}

	.lgb-hero--media-left .lgb-hero__media {
		order: -1;
	}

	.lgb-hero__content {
		padding-inline: clamp(2rem, 1rem + 4vw, 5rem);
		max-width: 46rem;
		justify-self: center;
	}

	.lgb-hero__title {
		max-width: 14ch;
	}

	.lgb-layout--sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: var(--lg-s-9);
	}

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

	.lgb-footer__top {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
		gap: clamp(2rem, 1rem + 4vw, 6rem);
	}

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

	.lgb-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.lgb-cart-line {
		grid-template-columns: 88px minmax(0, 1fr);
	}
}

/* ≥ 1280px */
@media (min-width: 1280px) {
	.lgb-hero__content {
		padding-block: clamp(3rem, 2rem + 4vw, 6rem);
	}
}

/* Hover-capable devices only: avoid sticky hover states on touch. */
@media (hover: none) {
	.lgb-cat:hover {
		transform: none;
		box-shadow: none;
	}
}

/* ==========================================================================
   29. REDUCED MOTION & PRINT
   ========================================================================== */

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.lgb-drawer,
	.lgb-mobile-nav {
		transition: none;
	}
}

@media print {
	.lgb-header,
	.lgb-footer,
	.lgb-announcement,
	.lgb-drawer,
	.lgb-backdrop,
	.lgb-toasts,
	.lgb-sticky-atc,
	.lgb-modal,
	.lgb-lightbox,
	.lgb-mobile-nav {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}
}


/* ==========================================================================
   MOBILE LEGIBILITY PASS (Sophia QC 2026-08-12)
   Phone review found three real readability faults at 390px. Fixed at the
   source, not on the server. Desktop sizing is deliberately left alone.
   ========================================================================== */

@media (max-width: 782px) {

	/* 1. Specimen record was ~11px — the whole positioning wedge, unreadable.
	      Bump label and value, and let the row breathe. */
	.lgb-spec__label {
		font-size: 0.8125rem;
		letter-spacing: 0.07em;
	}

	.lgb-spec__value {
		font-size: 0.9375rem;
		line-height: 1.45;
	}

	.lgb-spec__row {
		padding-block: 0.7rem;
	}

	/* 2. "BROWSE -> N ITEMS" was grey-on-beige and near invisible.
	      Darken to the brand green and lift the count out of muted. */
	.lgb-cat__cta {
		font-size: 0.8125rem;
		font-weight: 700;
		color: var(--lg-green-900);
	}

	.lgb-cat__count {
		font-size: 0.8125rem;
		color: var(--lg-green-700);
	}

	/* 3. Footer type was scaled down to the point of uselessness. */
	.lgb-footer a.lgb-footer__link,
	.lgb-footer__menu a {
		font-size: 0.9375rem;
	}

	.lgb-footer__bottom,
	.lgb-footer__copy {
		font-size: 0.8125rem;
		color: rgba(247, 244, 237, 0.78);
	}

	.lgb-footer__blurb {
		font-size: 0.9375rem;
		line-height: 1.55;
	}
}
