/*
 * LOW CARB AVENUE DESIGN TOKENS
 * These core colors and two font families control the visual system.
 */
:root {
	--lca-forest: #174d3d;
	--lca-blue: #2d658c;
	--lca-orange: #e86d37;
	--lca-cream: #fffaf3;
	--lca-paper: #fffaf3;
	--lca-white: #fff;
	--lca-ink: #263630;
	--lca-muted: #393836;
	--lca-line: #e6d8c7;
	--lca-font-display: "Lora", Georgia, serif;
	--lca-font-body: "Montserrat", Arial, sans-serif;
	--lca-container: 100%;
	--lca-page-space: clamp(16px, 3.2vw, 54px);
	--lca-card-radius: 15px;
}

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

html {
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	scroll-behavior: smooth;
}

body {
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	margin: 0;
	background: var(--lca-paper);
	color: var(--lca-ink);
	font-family: var(--lca-font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.lca-menu-is-open {
	overflow: hidden;
}

body.lca-side-cart-is-open {
	overflow: hidden;
}

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

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

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

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

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

.lca-container,
.lca-section-shell {
	width: min(100%, var(--lca-container));
	max-width: 100%;
	min-width: 0;
	margin-inline: auto;
	padding-inline: var(--lca-page-space);
}

.lca-section-shell--narrow {
	width: min(100%, 980px);
}

.lca-main {
	min-height: 55vh;
}

.lca-homepage {
	width: 100%;
}

.lca-content-layout {
	padding-block: clamp(32px, 5vw, 64px);
}

.lca-entry {
	max-width: 1024px;
	margin-inline: auto;
}

.lca-entry + .lca-entry {
	margin-top: 32px;
}

.lca-entry__title {
	font-family: var(--lca-font-display);
	font-size: clamp(38px, 6vw, 68px);
	line-height: 1.05;
}

.lca-entry__title a {
	text-decoration: none;
}

.lca-admin-notice {
	padding-block: 34px;
}

.lca-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	transform: translateY(-180%);
	padding: 10px 16px;
	background: var(--lca-forest);
	color: #fff;
}

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

/* Compact store-offer rotator above the site header. */
.lca-announcement-bar {
	position: relative;
	z-index: 22;
	width: 100%;
	min-height: 40px;
	overflow: hidden;
	background: var(--lca-orange);
	border-bottom: 1px solid color-mix(in srgb, var(--lca-forest) 25%, transparent);
	color: var(--lca-paper);
}

.lca-announcement-bar__track {
	position: relative;
	width: 100%;
	min-height: 38px;
}

.lca-announcement-bar__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 7px max(52px, var(--lca-page-space));
	visibility: hidden;
	color: var(--lca-paper);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 1.25;
	opacity: 0;
	pointer-events: none;
	text-align: center;
	text-decoration: none;
	transform: translateY(9px);
	transition: opacity 280ms ease, transform 280ms ease, visibility 280ms ease;
}

.lca-announcement-bar__item.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.lca-announcement-bar__item:hover,
.lca-announcement-bar__item:focus-visible {
	color: var(--lca-paper);
}

.lca-announcement-bar__item:focus-visible {
	outline: 2px solid var(--lca-paper);
	outline-offset: -4px;
}

.lca-announcement-bar__item svg {
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: var(--lca-paper);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-announcement-bar__control {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--lca-paper);
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.lca-announcement-bar__control--previous {
	left: 0;
}

.lca-announcement-bar__control--next {
	right: 0;
}

.lca-announcement-bar__control:hover,
.lca-announcement-bar__control:focus-visible {
	background: color-mix(in srgb, var(--lca-forest) 22%, transparent);
	color: var(--lca-paper);
}

.lca-announcement-bar__control:focus-visible {
	outline: 2px solid var(--lca-paper);
	outline-offset: -4px;
}

.lca-announcement-bar__control svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

/* Header. WordPress exposes registered menu locations in Customize > Menus. */
.lca-site-header {
	position: relative;
	z-index: 20;
	width: 100%;
	background: rgba(255, 250, 243, 0.97);
	border-bottom: 1px solid rgba(23, 77, 61, 0.1);
}

.home .lca-site-header {
	position: relative;
	background: color-mix(in srgb, var(--lca-cream) 97%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--lca-forest) 10%, transparent);
}

.lca-site-header__inner {
	display: flex;
	align-items: center;
	min-height: 92px;
	gap: clamp(18px, 2.5vw, 44px);
}

.lca-site-branding {
	flex: 0 1 330px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: min(100%, 310px);
	max-height: 62px;
}

.lca-site-title,
.lca-site-footer__title {
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	text-decoration: none;
}

.lca-primary-nav {
	margin-left: auto;
}

.lca-primary-nav__list,
.lca-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lca-primary-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 38px);
}

.lca-primary-nav__list li {
	position: relative;
}

.lca-primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-block: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.lca-primary-nav .menu-item-has-children > a::before {
	order: 2;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.lca-primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	background: var(--lca-orange);
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

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

.lca-primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 30;
	min-width: 220px;
	margin: 0;
	padding: 9px;
	visibility: hidden;
	background: rgba(255, 250, 243, 0.98);
	border: 1px solid rgba(23, 77, 61, 0.12);
	border-radius: 15px;
	box-shadow: 0 18px 50px rgba(23, 77, 61, 0.16);
	list-style: none;
	opacity: 0;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.lca-primary-nav .sub-menu::before {
	position: absolute;
	top: -7px;
	left: 50%;
	width: 13px;
	height: 13px;
	background: var(--lca-paper);
	border-top: 1px solid rgba(23, 77, 61, 0.12);
	border-left: 1px solid rgba(23, 77, 61, 0.12);
	content: "";
	transform: translateX(-50%) rotate(45deg);
}

.lca-primary-nav .sub-menu a {
	display: flex;
	width: 100%;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: 13px;
}

.lca-primary-nav .sub-menu a::after {
	display: none;
}

.lca-primary-nav .sub-menu a:hover,
.lca-primary-nav .sub-menu .current-menu-item > a {
	background: var(--lca-cream);
	color: var(--lca-orange);
}

.lca-primary-nav li:hover > .sub-menu,
.lca-primary-nav li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.lca-primary-nav li:hover > a::before,
.lca-primary-nav li:focus-within > a::before {
	transform: translateY(4px) rotate(225deg);
}

.lca-menu-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: rgba(255, 250, 243, 0.76);
	border: 1px solid rgba(23, 77, 61, 0.15);
	border-radius: 50%;
	color: var(--lca-forest);
	cursor: pointer;
}

.lca-menu-toggle__lines {
	display: grid;
	gap: 4px;
	width: 18px;
}

.lca-menu-toggle__lines span {
	display: block;
	height: 1.5px;
	background: currentColor;
	border-radius: 99px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.lca-header-actions {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
}

.lca-site-branding + .lca-header-actions {
	margin-left: auto;
}

.lca-header-account,
.lca-header-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 45px;
	min-height: 45px;
	padding: 9px 11px;
	background: rgba(255, 250, 243, 0.78);
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	color: var(--lca-forest);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.lca-header-account:hover,
.lca-header-account:focus-visible,
.lca-header-cart:hover,
.lca-header-cart:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-header-account svg,
.lca-header-cart svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.lca-header-account {
	width: 45px;
	padding-inline: 11px;
}

.lca-header-cart__count {
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--lca-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 10px;
	line-height: 1;
}

.lca-header-cart__count.is-pending {
	animation: lca-cart-count-pop 360ms ease both;
}

@keyframes lca-cart-count-pop {
	50% {
		transform: scale(1.28);
	}
}

/* Shared buttons and section headings. */
.lca-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease;
}

.lca-button:hover {
	color: #fff;
	transform: translateY(-2px);
}

.lca-button--primary {
	background: var(--lca-forest);
	color: #fff;
}

.lca-button--primary:hover {
	background: var(--lca-orange);
}

.lca-button--light {
	background: var(--lca-paper);
	color: var(--lca-forest);
}

.lca-button--light:hover {
	background: var(--lca-orange);
}

.lca-section-heading {
	max-width: 780px;
	margin: 0 auto clamp(18px, 2.4vw, 28px);
	text-align: center;
}

.lca-section-heading--compact {
	margin-bottom: 18px;
}

.lca-section-heading__eyebrow,
.lca-locations__eyebrow {
	margin: 0 0 9px;
	color: var(--lca-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.lca-section-heading__eyebrow::before,
.lca-section-heading__eyebrow::after {
	display: inline-block;
	width: 34px;
	height: 1px;
	margin: 0 13px 3px;
	background: currentColor;
	content: "";
}

.lca-section-heading__title {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(40px, 5.2vw, 66px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.lca-section-heading__description {
	max-width: 640px;
	margin: 11px auto 0;
	color: var(--lca-ink);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
}

/* Two-column homepage hero with editable image slider. */
.lca-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--lca-cream);
}

.lca-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
	width: 100%;
	min-height: clamp(530px, 42vw, 620px);
}

.lca-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 0;
	padding: clamp(34px, 4vw, 56px) clamp(28px, 4vw, 64px);
	text-align: center;
}

.lca-hero:not(.lca-hero--with-slider) .lca-hero__layout {
	grid-template-columns: 1fr;
}

.lca-hero:not(.lca-hero--with-slider) .lca-hero__content {
	align-items: center;
	width: min(100%, 1080px);
	margin-inline: auto;
	text-align: center;
}

.lca-hero__title {
	width: min(112%, 720px);
	margin: 0 -6%;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	line-height: 1;
}

.lca-hero__title-art {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.lca-hero__curve-text {
	fill: currentColor;
	font-family: var(--lca-font-display);
	font-size: 136px;
	font-weight: 700;
	letter-spacing: -4px;
}

.lca-hero__curve-text--bottom {
	font-size: 132px;
	font-weight: 700;
	letter-spacing: -3px;
}

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

.lca-hero__copy {
	max-width: 590px;
	margin: clamp(30px, 3vw, 40px) 0 22px;
	color: var(--lca-ink);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.62;
}

.lca-hero__copy span {
	display: block;
}

.lca-hero__media {
	position: relative;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	background: color-mix(in srgb, var(--lca-forest) 9%, var(--lca-cream));
}

.lca-hero__slides,
.lca-hero__slide {
	position: absolute;
	inset: 0;
}

.lca-hero__slide {
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 650ms ease;
}

.lca-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.lca-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lca-hero__slide-link {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.lca-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: color-mix(in srgb, var(--lca-paper) 92%, transparent);
	border: 1px solid color-mix(in srgb, var(--lca-forest) 16%, transparent);
	border-radius: 50%;
	box-shadow: 0 8px 24px color-mix(in srgb, var(--lca-forest) 20%, transparent);
	color: var(--lca-forest);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.lca-hero__arrow:hover {
	background: var(--lca-forest);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--lca-forest) 30%, transparent);
	color: #fff;
}

.lca-hero__arrow--previous {
	left: 18px;
}

.lca-hero__arrow--next {
	right: 18px;
}

.lca-hero__arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.lca-hero__dots {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.lca-hero__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	background: rgba(255, 255, 255, 0.72);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	transition: width 180ms ease, background-color 180ms ease;
}

.lca-hero__dots button[aria-current="true"] {
	width: 27px;
	background: var(--lca-orange);
	border-radius: 999px;
}

/* Product comparison tabs. */
.lca-comparison {
	width: 100%;
	padding-block: clamp(36px, 4.4vw, 58px);
	background: var(--lca-paper);
}

.lca-comparison__tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: min(100%, 520px);
	margin: 0 auto 13px;
	padding: 0;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 999px;
}

.lca-comparison__tab {
	min-height: 42px;
	padding: 8px 16px;
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--lca-ink);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.lca-comparison__tab.is-active {
	background: var(--lca-forest);
	color: #fff;
}

.lca-comparison__panels {
	overflow: hidden;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 17px;
	box-shadow: 0 12px 38px rgba(70, 49, 27, 0.045);
}

.lca-comparison__panel[hidden] {
	display: none;
}

.lca-comparison__labels,
.lca-comparison__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
	align-items: center;
}

.lca-comparison__labels {
	padding: 15px clamp(18px, 5vw, 58px) 6px;
	color: var(--lca-muted);
	font-family: var(--lca-font-display);
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.lca-comparison__label--ours {
	color: var(--lca-orange);
}

.lca-comparison__label--typical {
	color: #77746f;
	font-size: 0.82em;
	font-weight: 600;
}

.lca-comparison__row {
	min-height: 74px;
	padding: 8px clamp(16px, 4vw, 46px);
	border-top: 1px solid var(--lca-line);
}

.lca-comparison__value {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	text-align: center;
}

.lca-comparison__value strong {
	font-family: var(--lca-font-display);
	font-size: clamp(22px, 3vw, 29px);
	line-height: 1;
}

.lca-comparison__value span {
	margin-top: 5px;
	color: var(--lca-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.lca-comparison__value--ours strong,
.lca-comparison__value--ours span {
	color: var(--lca-orange);
}

.lca-comparison__value--typical strong,
.lca-comparison__value--typical span {
	color: #77746f;
}

.lca-comparison__value--typical strong {
	font-size: clamp(19px, 2.45vw, 24px);
}

.lca-comparison__value--typical span {
	font-size: 9px;
	font-weight: 600;
}

.lca-comparison__row--oil {
	min-height: 92px;
}

.lca-comparison__row--oil .lca-comparison__value strong {
	max-width: 290px;
	font-size: clamp(18px, 2.25vw, 24px);
	line-height: 1.14;
}

.lca-comparison__row--oil .lca-comparison__value--typical strong {
	font-size: clamp(15px, 1.85vw, 20px);
}

.lca-comparison__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: auto;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--lca-forest);
}

.lca-comparison__icon::after {
	display: none;
	content: none;
}

.lca-comparison__icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
	vector-effect: non-scaling-stroke;
}

/* Featured product section and reusable product card. */
.lca-product-showcase {
	contain: inline-size paint;
	width: 100%;
	overflow: hidden;
	padding-block: clamp(36px, 4.6vw, 60px) 0;
	background: var(--lca-cream);
}

.lca-product-showcase__heading-wrap {
	width: min(100%, 980px);
	margin-inline: auto;
	padding-inline: var(--lca-page-space);
}

.lca-product-card {
	display: flex;
	min-width: 0;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
	flex-direction: column;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: var(--lca-card-radius);
	box-shadow: none;
}

.lca-product-card__media {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	aspect-ratio: 1 / 0.92;
	overflow: hidden;
	background: var(--lca-paper);
	text-decoration: none;
}

.lca-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

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

.lca-product-card__badge {
	position: absolute;
	top: 13px;
	left: 13px;
	z-index: 1;
	max-width: calc(100% - 26px);
	padding: 6px 10px;
	background: var(--lca-forest);
	border-radius: 999px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.lca-product-card__content {
	display: flex;
	align-items: flex-start;
	flex: 0 0 auto;
	flex-direction: column;
	padding: 14px 15px 11px;
}

.lca-product-card__brand {
	margin: 0 0 5px;
	color: var(--lca-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lca-product-card__title {
	margin: 0;
	font-family: var(--lca-font-display);
	font-size: clamp(20px, 1.55vw, 25px);
	font-weight: 600;
	line-height: 1.08;
}

.lca-product-card__title a {
	text-decoration: none;
}

.lca-product-card__flavour {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 8px 0 0;
	color: #514e48;
	font-size: 12px;
	line-height: 1.4;
}

.lca-product-card__price {
	margin: 10px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.lca-product-card__price del {
	margin-right: 5px;
	color: var(--lca-muted);
	font-weight: 500;
}

.lca-product-card__price ins {
	text-decoration: none;
}

.lca-product-card__end-space {
	flex: 1 1 auto;
	min-height: 0;
}

/* Buy once / subscribe and quantity controls. */
.lca-purchase-form {
	min-width: 0;
	margin: 0;
	padding: 0 15px 25px;
}

.lca-purchase-options {
	display: grid;
	gap: 6px;
	min-width: 0;
	margin: 0 0 8px;
	padding: 0;
	border: 0;
}

.lca-purchase-option {
	display: grid;
	grid-template-columns: minmax(92px, 1fr) auto minmax(60px, auto);
	align-items: center;
	gap: 5px;
	min-width: 0;
	min-height: 40px;
	padding: 6px 8px;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 10px;
	cursor: pointer;
}

.lca-purchase-option.is-selected {
	background: var(--lca-cream);
	border-color: var(--lca-orange);
}

.lca-purchase-option__choice {
	display: grid;
	grid-template-columns: 17px minmax(0, 1fr);
	align-items: center;
	gap: 6px;
	min-width: 0;
	cursor: pointer;
}

.lca-purchase-option__choice:only-child {
	grid-column: 1 / -1;
}

.lca-purchase-option__choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.lca-purchase-option__marker {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	border: 1px solid var(--lca-orange);
	border-radius: 50%;
}

.lca-purchase-option__choice input:focus-visible + .lca-purchase-option__marker {
	outline: 3px solid var(--lca-orange);
	outline-offset: 2px;
}

.lca-purchase-option__choice input:checked + .lca-purchase-option__marker {
	background: var(--lca-orange);
}

.lca-purchase-option__choice input:checked + .lca-purchase-option__marker::after {
	position: absolute;
	top: 3px;
	left: 5px;
	width: 4px;
	height: 7px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	content: "";
	transform: rotate(45deg);
}

.lca-purchase-option__title {
	min-width: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lca-purchase-option__frequency-label {
	color: var(--lca-muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: nowrap;
}

.lca-purchase-option__select {
	max-width: 92px;
	min-width: 0;
	padding: 3px 14px 3px 3px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--lca-muted);
	border-radius: 0;
	color: var(--lca-ink);
	font-size: 10px;
	cursor: pointer;
}

.lca-purchase-option__select:disabled {
	opacity: 0.48;
	cursor: default;
}

.lca-purchase-form__actions {
	display: grid;
	grid-template-columns: minmax(80px, 0.8fr) minmax(100px, 1.2fr);
	align-items: stretch;
	gap: 6px;
	min-width: 0;
}

.lca-quantity-control {
	display: grid;
	grid-template-columns: 27px minmax(26px, 1fr) 27px;
	min-width: 0;
	height: 38px;
	overflow: hidden;
	border: 1px solid var(--lca-line);
	border-radius: 9px;
}

.lca-quantity-control .quantity {
	display: block;
	min-width: 0;
}

.lca-quantity-control__button,
.lca-quantity-control .qty {
	width: 100%;
	height: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: var(--lca-paper);
	border: 0;
	border-radius: 0;
	color: var(--lca-ink);
	text-align: center;
}

.lca-quantity-control__button {
	font-size: 17px;
	cursor: pointer;
}

.lca-quantity-control__button:hover {
	background: var(--lca-cream);
}

.lca-quantity-control .qty {
	-moz-appearance: textfield;
	border-right: 1px solid var(--lca-line);
	border-left: 1px solid var(--lca-line);
}

.lca-quantity-control .qty::-webkit-inner-spin-button,
.lca-quantity-control .qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.lca-purchase-form__submit,
.lca-product-card__options-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 38px;
	padding: 7px 9px;
	background: var(--lca-forest);
	border: 1px solid var(--lca-forest);
	border-radius: 9px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.lca-purchase-form__submit {
	gap: 7px;
}

.lca-product-card .lca-purchase-form__submit.button {
	height: 38px;
	margin: 0 !important;
	align-self: stretch;
}

.lca-purchase-form__cart-icon {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-purchase-form__submit:hover,
.lca-product-card__options-button:hover {
	background: var(--lca-orange);
	border-color: var(--lca-orange);
	color: #fff;
}

.lca-purchase-form__submit.is-loading {
	position: relative;
	color: transparent;
	cursor: wait;
}

.lca-purchase-form__submit.is-loading::after {
	position: absolute;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	content: "";
	animation: lca-cart-spin 650ms linear infinite;
}

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

.lca-purchase-form__submit:only-child {
	grid-column: 1 / -1;
}

.lca-product-card__options-button {
	margin: 0 10px 10px;
}

.lca-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.lca-product-card__features {
	display: grid;
	grid-template-columns: repeat(var(--lca-feature-columns, 3), minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	background: var(--lca-paper);
	border-block: 1px solid rgba(235, 129, 48, 0.34);
	list-style: none;
}

.lca-product-card__feature {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	min-height: 58px;
	padding: 7px 5px 6px;
	background: transparent;
	border: 0;
	border-right: 1px solid rgba(235, 129, 48, 0.24);
	border-radius: 0;
	text-align: center;
}

.lca-product-card__feature:last-child {
	border-right: 0;
}

.lca-product-card__feature:nth-child(5n) {
	border-right: 0;
}

.lca-product-card__feature:nth-child(n + 6) {
	border-top: 1px solid rgba(235, 129, 48, 0.24);
}

.lca-product-card__feature strong {
	color: var(--lca-orange);
	font-family: var(--lca-font-body);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
}

.lca-product-card__feature span {
	margin-top: 5px;
	overflow-wrap: anywhere;
	color: var(--lca-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.045em;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Homepage-only nutrition selector and single highlighted product metric. */
.lca-product-feature-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	width: 100%;
	max-width: 100%;
	margin: 24px auto clamp(32px, 3.4vw, 48px);
	padding: 2px;
	overflow: visible;
}

.lca-product-feature-tabs::-webkit-scrollbar {
	display: none;
}

.lca-product-feature-tabs__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: max-content;
	max-width: 100%;
	min-height: 74px;
	padding: 13px 24px;
	background: transparent;
	border: 2px solid var(--lca-orange);
	border-radius: 999px;
	color: var(--lca-orange);
	font-family: var(--lca-font-body);
	font-size: clamp(23px, 2vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.lca-product-feature-tabs__button:hover {
	background: color-mix(in srgb, var(--lca-orange) 10%, transparent);
	border-color: var(--lca-orange);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--lca-orange) 18%, transparent);
	color: var(--lca-orange);
}

.lca-product-feature-tabs__button:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--lca-orange) 38%, transparent);
	outline-offset: 2px;
}

.lca-product-feature-tabs__button.is-active {
	background: var(--lca-orange);
	border-color: var(--lca-orange);
	box-shadow: 0 10px 26px color-mix(in srgb, var(--lca-orange) 28%, transparent);
	color: var(--lca-paper);
}

.lca-product-showcase .lca-product-card__featured-metrics {
	display: grid;
	place-items: center;
	min-height: 206px;
	padding: 18px 14px 50px;
	background: var(--lca-white);
}

.lca-product-showcase .lca-product-card__featured-metric {
	min-width: 0;
	text-align: center;
}

.lca-product-showcase .lca-product-card__featured-metric[hidden] {
	display: none;
}

.lca-product-showcase .lca-product-card__featured-metric strong {
	display: block;
	overflow-wrap: anywhere;
	color: var(--lca-orange);
	font-family: var(--lca-font-display);
	font-size: 130px;
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1;
}

.lca-product-showcase .lca-product-card__featured-metric.is-missing strong {
	color: var(--lca-line);
}

.lca-product-showcase .lca-product-card--homepage-features .lca-product-card__media {
	background: var(--lca-white);
	border-top: 0;
}

.lca-product-showcase .lca-slider__viewport {
	padding-bottom: 0;
}

/* Five clean, fully interactive cards with a centered scroll position. */
.lca-slider {
	--lca-slider-gap: clamp(12px, 1.2vw, 22px);
	/* Three complete cards plus a generous peek of both outer cards. */
	--lca-slider-card-width: clamp(265px, 21.75vw, 400px);
	width: 100%;
	position: relative;
	min-width: 0;
	max-width: 100%;
	isolation: isolate;
}

.lca-slider__viewport {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding-block: 12px 6px;
	scrollbar-width: none;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	overscroll-behavior-inline: contain;
}

.lca-slider__viewport::-webkit-scrollbar {
	display: none;
}

.lca-slider__viewport:focus-visible {
	outline: none;
}

.lca-slider__track {
	display: grid;
	align-items: stretch;
	min-width: 0;
	grid-auto-columns: var(--lca-slider-card-width);
	grid-auto-flow: column;
	gap: var(--lca-slider-gap);
	padding-inline: calc((100vw - var(--lca-slider-card-width)) / 2);
}

.lca-slider__item {
	position: relative;
	z-index: 1;
	display: flex;
	min-width: 0;
	visibility: hidden;
	opacity: 0;
	scroll-snap-align: center;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.lca-slider:not(.is-ready) .lca-slider__item {
	visibility: hidden;
	opacity: 0;
}

.lca-slider__item.is-center,
.lca-slider__item.is-left-inner,
.lca-slider__item.is-right-inner {
	visibility: visible;
	filter: none;
	opacity: 1;
	transform: none;
}

.lca-slider__item.is-center {
	z-index: 3;
}

.lca-slider__item.is-left-edge {
	visibility: visible;
	filter: none;
	opacity: 1;
	transform: none;
}

.lca-slider__item.is-right-edge {
	visibility: visible;
	filter: none;
	opacity: 1;
	transform: none;
}

.lca-slider__item.is-far {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.lca-slider.is-repositioning .lca-slider__item {
	transition: none;
}

.lca-slider__controls {
	position: static;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	margin: 12px auto 0;
	padding-inline: var(--lca-page-space);
	pointer-events: none;
}

.lca-slider__arrow {
	position: absolute;
	z-index: 40;
	top: calc(50% - 200px);
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	padding: 0;
	background: var(--lca-forest);
	border: 2px solid color-mix(in srgb, var(--lca-white) 90%, transparent);
	border-radius: 50%;
	box-shadow: 0 10px 28px color-mix(in srgb, var(--lca-forest) 24%, transparent), 0 2px 7px color-mix(in srgb, var(--lca-forest) 16%, transparent);
	color: var(--lca-white);
	cursor: pointer;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lca-slider__arrow[data-lca-slider-prev] {
	left: clamp(12px, 2.4vw, 42px);
}

.lca-slider__arrow[data-lca-slider-next] {
	right: clamp(12px, 2.4vw, 42px);
}

.lca-slider__arrow svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.lca-slider__arrow:hover:not(:disabled) {
	background: var(--lca-orange);
	border-color: var(--lca-white);
	box-shadow: 0 13px 32px color-mix(in srgb, var(--lca-orange) 30%, transparent), 0 3px 8px color-mix(in srgb, var(--lca-forest) 16%, transparent);
	color: var(--lca-white);
	transform: translateY(-50%) scale(1.08);
}

.lca-slider__arrow:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--lca-orange) 42%, transparent);
	outline-offset: 4px;
}

.lca-slider__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.lca-slider__dots {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	pointer-events: auto;
}

.lca-slider__dot {
	width: 22px;
	height: 3px;
	padding: 0;
	background: #d9ccba;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: width 180ms ease, background-color 180ms ease;
}

.lca-slider__dot[aria-current="true"] {
	width: 36px;
	background: var(--lca-forest);
}

.lca-slider.is-static .lca-slider__controls {
	display: none;
}

/* Customer review slider between featured products and locations. */
.lca-testimonials {
	width: 100%;
	padding: 60px 0 20px;
	background: var(--lca-paper);
}

.lca-testimonials__slider {
	width: min(100%, 1180px);
	margin-inline: auto;
}

.lca-testimonials__slider:empty {
	display: none;
}

/* Locations section and lightweight inline service-area map. */
.lca-locations {
	width: 100%;
	padding-block: 20px;
	background: var(--lca-paper);
}

.lca-locations__card {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 440px;
	overflow: hidden;
	background: var(--lca-cream);
	border: 1px solid var(--lca-line);
	border-radius: 22px;
	box-shadow: none;
}

.lca-locations__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	width: min(48%, 560px);
	margin-left: clamp(24px, 4.2vw, 62px);
	padding: clamp(28px, 3.4vw, 44px);
	padding-bottom: clamp(34px, 4vw, 48px);
	background: color-mix(in srgb, var(--lca-cream) 88%, transparent);
	border-radius: 18px;
	box-shadow: 0 16px 44px color-mix(in srgb, var(--lca-ink) 8%, transparent);
	backdrop-filter: blur(3px);
}

.lca-locations__content h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 0.96;
}

.lca-locations__content > p:not(.lca-locations__eyebrow) {
	max-width: 500px;
	margin: 12px 0 0;
	color: var(--lca-muted);
	font-size: clamp(15px, 1.3vw, 17px);
	line-height: 1.58;
}

.lca-locations__content .lca-locations__lead {
	margin-top: 16px;
	padding-left: 14px;
	border-left: 3px solid var(--lca-orange);
	color: var(--lca-ink);
	font-family: var(--lca-font-body);
	font-size: clamp(17px, 1.7vw, 21px);
	font-weight: 700;
	line-height: 1.4;
}

.lca-locations__map {
	position: absolute;
	inset: 0;
	background: color-mix(in srgb, var(--lca-cream) 82%, var(--lca-paper));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lca-locations__map::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, color-mix(in srgb, var(--lca-cream) 97%, transparent) 0%, color-mix(in srgb, var(--lca-cream) 84%, transparent) 39%, transparent 66%);
	content: "";
	pointer-events: none;
}

.lca-locations__map svg {
	width: 100%;
	height: 100%;
	min-height: 440px;
}

.lca-locations__map.has-custom-image svg {
	display: none;
}

.lca-map__water {
	fill: color-mix(in srgb, var(--lca-forest) 15%, var(--lca-paper));
}

.lca-map__roads,
.lca-map__minor-roads {
	fill: none;
	stroke-linecap: round;
}

.lca-map__roads {
	stroke: color-mix(in srgb, var(--lca-forest) 24%, transparent);
	stroke-width: 3;
}

.lca-map__minor-roads {
	stroke: color-mix(in srgb, var(--lca-forest) 12%, transparent);
	stroke-width: 1.5;
}

.lca-map__labels {
	fill: color-mix(in srgb, var(--lca-ink) 68%, transparent);
	font-family: var(--lca-font-body);
	font-size: 15px;
	letter-spacing: 0.05em;
}

.lca-map__labels circle {
	fill: var(--lca-ink);
}

.lca-locations__pin {
	position: absolute;
	top: 66px;
	right: 25%;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 19px 12px 13px;
	background: var(--lca-paper);
	border: 1px solid color-mix(in srgb, var(--lca-line) 82%, transparent);
	border-radius: 999px;
	box-shadow: 0 12px 30px color-mix(in srgb, var(--lca-ink) 13%, transparent);
	color: var(--lca-ink);
}

.lca-locations__pin svg {
	width: 38px;
	height: 38px;
	fill: var(--lca-orange);
	stroke: var(--lca-orange);
	stroke-width: 1.6;
}

.lca-locations__pin svg circle {
	fill: var(--lca-paper);
}

.lca-locations__pin span,
.lca-locations__pin small {
	display: block;
}

.lca-locations__pin strong {
	font-size: 15px;
}

.lca-locations__pin small {
	margin-top: 2px;
	color: var(--lca-muted);
	font-size: 12px;
}

.lca-locations__actions {
	position: absolute;
	right: clamp(22px, 4vw, 54px);
	bottom: 28px;
	left: clamp(22px, 4vw, 54px);
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 290px));
	justify-content: end;
	gap: 18px;
}

.lca-locations__action {
	display: grid;
	grid-template-columns: 34px 1fr auto;
	align-items: center;
	gap: 13px;
	min-height: 66px;
	padding: 10px 19px;
	background: color-mix(in srgb, var(--lca-paper) 94%, transparent);
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	box-shadow: 0 9px 24px color-mix(in srgb, var(--lca-ink) 8%, transparent);
	color: var(--lca-forest);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.lca-locations__action:hover,
.lca-locations__action:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	box-shadow: 0 12px 28px color-mix(in srgb, var(--lca-forest) 17%, transparent);
	color: var(--lca-paper);
	transform: translateY(-2px);
}

.lca-locations__action svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-locations__action b {
	font-size: 22px;
	font-weight: 500;
}

.lca-locations__action--primary {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: var(--lca-paper);
}

.lca-locations__action--primary:hover,
.lca-locations__action--primary:focus-visible {
	background: var(--lca-orange);
	border-color: var(--lca-orange);
	box-shadow: 0 12px 28px color-mix(in srgb, var(--lca-orange) 28%, transparent);
}

/* Editorial carousel after the locations section. */
.lca-blog {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-block: 20px clamp(40px, 5vw, 64px);
	background: var(--lca-paper);
}

.lca-blog .lca-section-heading {
	max-width: 900px;
	margin-bottom: clamp(23px, 3vw, 34px);
}

.lca-blog .lca-section-heading__title {
	font-size: clamp(37px, 4.3vw, 58px);
}

.lca-blog__stage {
	position: relative;
}

.lca-blog__viewport {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 8px 2px 15px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lca-blog__viewport::-webkit-scrollbar {
	display: none;
}

.lca-blog__track {
	display: grid;
	grid-auto-columns: clamp(224px, 20vw, 292px);
	grid-auto-flow: column;
	gap: clamp(10px, 1.25vw, 18px);
	width: max-content;
}

.lca-blog-card {
	display: flex;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	background: rgba(255, 250, 243, 0.92);
	border: 1px solid rgba(230, 216, 199, 0.92);
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(52, 44, 34, 0.055);
	flex-direction: column;
	scroll-snap-align: start;
	transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.lca-blog-card:hover {
	border-color: rgba(232, 109, 55, 0.34);
	box-shadow: 0 14px 36px rgba(52, 44, 34, 0.1);
	transform: translateY(-4px);
}

.lca-blog-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3.35;
	background: #f1e7d9;
}

.lca-blog-card__image::after {
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	background: linear-gradient(180deg, transparent, rgba(23, 77, 61, 0.08));
	content: "";
	pointer-events: none;
}

.lca-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lca-blog-card:hover .lca-blog-card__image img {
	transform: scale(1.035);
}

.lca-blog-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background: radial-gradient(circle at 72% 24%, rgba(232, 109, 55, 0.18), transparent 25%), linear-gradient(145deg, #efe4d4, #fffaf3);
}

.lca-blog-card__placeholder svg {
	width: 74px;
	height: 74px;
	fill: none;
	stroke: var(--lca-forest);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.lca-blog-card__content {
	display: flex;
	align-items: flex-start;
	flex: 1;
	flex-direction: column;
	padding: 16px 16px 17px;
}

.lca-blog-card__category {
	margin: 0 0 8px;
	color: var(--lca-orange);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lca-blog-card__title {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(19px, 1.55vw, 23px);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.lca-blog-card__title a {
	text-decoration: none;
}

.lca-blog-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 9px 0 14px;
	color: var(--lca-muted);
	font-size: 11px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lca-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	color: var(--lca-forest);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-blog-card__link span,
.lca-blog__all span {
	color: var(--lca-orange);
	font-size: 15px;
	line-height: 1;
	transition: transform 180ms ease;
}

.lca-blog-card__link:hover span,
.lca-blog__all:hover span {
	transform: translateX(3px);
}

.lca-blog__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	background: var(--lca-paper);
	border: 1px solid rgba(23, 77, 61, 0.18);
	border-radius: 50%;
	box-shadow: 0 7px 22px rgba(23, 77, 61, 0.13);
	color: var(--lca-forest);
	cursor: pointer;
	place-items: center;
	transform: translateY(-50%);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.lca-blog__arrow:hover:not(:disabled) {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
	transform: translateY(-50%) scale(1.04);
}

.lca-blog__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.lca-blog__arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-blog__arrow--prev {
	left: -13px;
}

.lca-blog__arrow--next {
	right: -13px;
}

.lca-blog__controls {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(120px, 290px) auto;
	justify-content: center;
	gap: 17px;
	min-height: 26px;
	margin-top: 9px;
}

.lca-blog__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6c685f;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-blog__progress {
	height: 3px;
	overflow: hidden;
	background: #e5d7c5;
	border-radius: 999px;
}

.lca-blog__progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--lca-forest);
	border-radius: inherit;
	transform: scaleX(0.08);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.lca-blog__all {
	color: var(--lca-forest);
}

.lca-blog.is-static .lca-blog__arrow,
.lca-blog.is-static .lca-blog__progress {
	display: none;
}

.lca-blog.is-static .lca-blog__controls {
	display: flex;
}

/* Blog home, taxonomy archives, and article search. */
.lca-blog-archive {
	background: var(--lca-paper);
}

.lca-blog-archive__hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(54px, 7vw, 92px) 28px;
}

.lca-blog-archive__hero-inner {
	position: relative;
}

.lca-blog-archive__heading {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.lca-blog-archive__eyebrow,
.lca-newsletter__eyebrow {
	margin: 0 0 13px;
	color: var(--lca-orange);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lca-blog-archive__heading h1 {
	max-width: 700px;
	margin: 0 auto;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(48px, 6.2vw, 78px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.lca-blog-archive__heading > p:last-child {
	max-width: 590px;
	margin: 17px auto 0;
	color: var(--lca-muted);
	font-size: 15px;
	line-height: 1.55;
}

.lca-blog-archive__wheat {
	position: absolute;
	top: 30px;
	right: max(0px, calc(var(--lca-page-space) - 20px));
	width: clamp(190px, 21vw, 290px);
	height: auto;
	fill: none;
	stroke: rgba(202, 174, 137, 0.46);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.2;
}

.lca-blog-search {
	position: relative;
	z-index: 2;
	display: flex;
	max-width: 610px;
	margin: 42px auto 20px;
}

.lca-blog-search input[type="search"] {
	width: 100%;
	height: 48px;
	padding: 10px 62px 10px 16px;
	background: rgba(255, 250, 243, 0.9);
	border: 1px solid var(--lca-line);
	border-radius: 9px;
	color: var(--lca-ink);
	font-size: 13px;
	outline: 0;
	-webkit-appearance: none;
}

.lca-blog-search input[type="search"]:focus {
	border-color: var(--lca-forest);
	box-shadow: 0 0 0 3px rgba(23, 77, 61, 0.1);
}

.lca-blog-search button {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	width: 52px;
	height: 48px;
	padding: 0;
	background: var(--lca-forest);
	border: 1px solid var(--lca-forest);
	border-radius: 0 9px 9px 0;
	color: #fff;
	cursor: pointer;
	place-items: center;
}

.lca-blog-search button:hover,
.lca-blog-search button:focus-visible {
	background: var(--lca-orange);
	border-color: var(--lca-orange);
}

.lca-blog-search svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.7;
}

.lca-blog-filters {
	position: relative;
	z-index: 2;
	display: flex;
	max-width: 980px;
	margin-inline: auto;
	overflow-x: auto;
	padding: 0 2px 6px;
	gap: 14px;
	justify-content: center;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lca-blog-filters::-webkit-scrollbar {
	display: none;
}

.lca-blog-filters a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 23px;
	background: transparent;
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	color: var(--lca-ink);
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.lca-blog-filters a:hover,
.lca-blog-filters a:focus-visible,
.lca-blog-filters a.is-active {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-blog-archive__body {
	padding-block: 16px clamp(54px, 6vw, 82px);
}

.lca-blog-featured {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	height: 420px;
	overflow: hidden;
	background: rgba(255, 250, 243, 0.92);
	border: 1px solid var(--lca-line);
	border-radius: 15px;
	box-shadow: 0 10px 34px rgba(52, 44, 34, 0.055);
}

.lca-blog-featured__image {
	position: relative;
	display: block;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	background: #f1e7d9;
}

.lca-blog-featured__image > img,
.lca-blog-archive-card__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lca-blog-featured:hover .lca-blog-featured__image > img,
.lca-blog-archive-card:hover .lca-blog-archive-card__image > img {
	transform: scale(1.025);
}

.lca-blog-featured__badge {
	position: absolute;
	top: 17px;
	left: 17px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	background: var(--lca-forest);
	border-radius: 999px;
	box-shadow: 0 5px 15px rgba(23, 77, 61, 0.2);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.lca-blog-featured__badge span {
	width: 7px;
	height: 7px;
	background: var(--lca-orange);
	border-radius: 50%;
}

.lca-blog-featured__content {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(30px, 3.5vw, 48px);
	flex-direction: column;
}

.lca-blog-archive__category {
	display: inline-block;
	margin-bottom: 13px;
	color: var(--lca-orange);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-blog-featured__title,
.lca-blog-archive-card__title {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-weight: 600;
	letter-spacing: -0.025em;
}

.lca-blog-featured__title {
	color: var(--lca-orange);
	font-size: clamp(31px, 3.1vw, 46px);
	line-height: 1.06;
}

.lca-blog-featured__title a,
.lca-blog-archive-card__title a {
	text-decoration: none;
}

.lca-blog-featured__excerpt {
	margin: 17px 0 20px;
	color: var(--lca-muted);
	font-size: 16px;
	line-height: 1.58;
}

.lca-post-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #625f59;
	font-size: 9px;
	font-weight: 500;
	line-height: 1.35;
}

.lca-post-meta__avatar {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.lca-post-meta__author {
	display: inline-flex;
	gap: 3px;
	white-space: nowrap;
}

.lca-post-meta__author a {
	color: var(--lca-ink);
	font-weight: 700;
	text-decoration: none;
}

.lca-post-meta__separator {
	width: 1px;
	height: 14px;
	background: var(--lca-line);
}

.lca-blog-featured__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	margin-top: 25px;
	padding: 10px 22px;
	background: var(--lca-forest);
	border-radius: 999px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-blog-featured__button:hover,
.lca-blog-featured__button:focus-visible {
	background: var(--lca-orange);
	color: #fff;
}

.lca-blog-featured__button span,
.lca-blog-archive-card__link span {
	font-size: 17px;
	line-height: 1;
}

.lca-blog-archive__latest {
	margin-top: clamp(54px, 7vw, 82px);
}

.lca-blog-archive__section-heading {
	margin-bottom: clamp(28px, 3.5vw, 42px);
	text-align: center;
}

.lca-blog-archive__section-heading h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(38px, 4.6vw, 58px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.lca-blog-archive__section-heading span {
	display: block;
	width: 54px;
	height: 2px;
	margin: 15px auto 0;
	background: var(--lca-orange);
}

.lca-blog-archive__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
}

.lca-blog-archive-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	background: rgba(255, 250, 243, 0.92);
	border: 1px solid var(--lca-line);
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(52, 44, 34, 0.045);
	flex-direction: column;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.lca-blog-archive-card:hover {
	border-color: rgba(232, 109, 55, 0.36);
	box-shadow: 0 13px 34px rgba(52, 44, 34, 0.085);
	transform: translateY(-3px);
}

.lca-blog-archive-card__image {
	display: block;
	height: clamp(190px, 17vw, 265px);
	overflow: hidden;
	background: #f1e7d9;
}

.lca-blog-archive__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	background: #f1e7d9;
	place-items: center;
}

.lca-blog-archive__placeholder svg {
	width: 72px;
	height: 72px;
	fill: none;
	stroke: var(--lca-forest);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.lca-blog-archive-card__content {
	display: flex;
	align-items: flex-start;
	flex: 1;
	padding: 20px;
	flex-direction: column;
}

.lca-blog-archive-card__title {
	font-size: clamp(21px, 1.9vw, 27px);
	line-height: 1.08;
}

.lca-blog-archive-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 11px 0 18px;
	color: var(--lca-muted);
	font-size: 13px;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lca-blog-archive-card .lca-post-meta {
	margin-top: auto;
}

.lca-blog-archive-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 17px;
	color: var(--lca-forest);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-blog-archive-card__link:hover,
.lca-blog-archive-card__link:focus-visible {
	color: var(--lca-orange);
}

.lca-blog-archive .navigation.pagination {
	margin-top: 38px;
}

.lca-blog-archive .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.lca-blog-archive .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 7px;
	background: transparent;
	border: 1px solid var(--lca-line);
	border-radius: 7px;
	color: var(--lca-forest);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	place-items: center;
}

.lca-blog-archive .page-numbers.current,
.lca-blog-archive .page-numbers:hover,
.lca-blog-archive .page-numbers:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-blog-archive .page-numbers.dots {
	border-color: transparent;
}

.lca-blog-archive__empty {
	max-width: 600px;
	margin: 55px auto 0;
	padding: 40px 24px;
	border: 1px solid var(--lca-line);
	border-radius: 14px;
	text-align: center;
}

.lca-blog-archive__empty h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: 34px;
}

.lca-blog-archive__empty p {
	margin: 8px 0 20px;
	color: var(--lca-muted);
	font-size: 13px;
}

.lca-newsletter {
	position: relative;
	display: grid;
	min-height: 245px;
	margin-top: clamp(48px, 6vw, 78px);
	overflow: hidden;
	padding: 70px clamp(24px, 5vw, 70px);
	background: #eef2ec;
	border: 1px solid rgba(23, 77, 61, 0.2);
	border-radius: 15px;
	place-items: center;
}

.lca-newsletter__botanical {
	position: absolute;
	bottom: -8px;
	left: 8px;
	width: 205px;
	fill: none;
	stroke: rgba(23, 77, 61, 0.15);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.2;
}

.lca-newsletter__content {
	position: relative;
	z-index: 1;
	width: min(100%, 650px);
	text-align: center;
}

.lca-newsletter__eyebrow {
	margin-bottom: 7px;
}

.lca-newsletter h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(29px, 3.4vw, 42px);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.lca-newsletter__content > p:not(.lca-newsletter__eyebrow):not(.lca-newsletter__note):not(.lca-newsletter__setup) {
	margin: 9px 0 19px;
	color: var(--lca-muted);
	font-size: 12px;
}

.lca-newsletter__form {
	display: flex;
	width: 100%;
	margin-top: 19px;
}

.lca-newsletter__form input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	padding: 10px 15px;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-right: 0;
	border-radius: 8px 0 0 8px;
	color: var(--lca-ink);
	font-size: 12px;
	outline: 0;
}

.lca-newsletter__form input[type="email"]:focus {
	border-color: var(--lca-forest);
	box-shadow: inset 0 0 0 2px rgba(23, 77, 61, 0.08);
}

.lca-newsletter__form button {
	flex: 0 0 auto;
	min-width: 145px;
	height: 48px;
	padding: 10px 23px;
	background: var(--lca-orange);
	border: 1px solid var(--lca-orange);
	border-radius: 0 8px 8px 0;
	color: #fff;
	cursor: pointer;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lca-newsletter__form button:hover,
.lca-newsletter__form button:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
}

.lca-newsletter__trap {
	position: absolute;
	left: -5000px;
}

.lca-newsletter__note,
.lca-newsletter__setup {
	margin: 8px 0 0;
	color: var(--lca-muted);
	font-size: 10px;
}

.lca-newsletter__setup {
	padding: 11px 14px;
	background: rgba(255, 250, 243, 0.75);
	border: 1px solid var(--lca-line);
	border-radius: 8px;
}

@media (max-width: 820px) {
	.lca-blog-archive__hero {
		padding-block: 42px 20px;
	}

	.lca-blog-archive__heading {
		max-width: 620px;
	}

	.lca-blog-archive__heading h1 {
		max-width: 600px;
		font-size: clamp(43px, 8.5vw, 64px);
	}

	.lca-blog-archive__heading > p:last-child {
		max-width: 520px;
		font-size: 13px;
	}

	.lca-blog-archive__wheat {
		top: 32px;
		right: -62px;
		width: 220px;
		opacity: 0.75;
	}

	.lca-blog-search {
		max-width: 560px;
		margin-top: 31px;
	}

	.lca-blog-filters {
		width: calc(100% + var(--lca-page-space));
		margin-right: calc(-1 * var(--lca-page-space));
		padding-right: var(--lca-page-space);
		justify-content: flex-start;
	}

	.lca-blog-featured {
		grid-template-columns: 1fr;
		height: auto;
	}

	.lca-blog-featured__image {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 7.5;
	}

	.lca-blog-featured__content {
		padding: 25px 28px 20px;
	}

	.lca-blog-featured__title {
		font-size: clamp(28px, 5.4vw, 39px);
	}

	.lca-blog-featured__excerpt {
		margin-block: 10px 13px;
		font-size: 14px;
	}

	.lca-blog-featured__button {
		align-self: stretch;
		margin-top: 16px;
		border-radius: 7px;
	}

	.lca-blog-archive__latest {
		margin-top: 44px;
	}

	.lca-blog-archive__grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.lca-blog-archive-card {
		display: grid;
		grid-template-columns: minmax(160px, 36%) minmax(0, 1fr);
		min-height: 180px;
	}

	.lca-blog-archive-card:hover {
		transform: none;
	}

	.lca-blog-archive-card__image {
		height: 100%;
		min-height: 180px;
	}

	.lca-blog-archive-card__content {
		padding: 15px 17px;
	}

	.lca-blog-archive-card__title {
		font-size: clamp(20px, 3.5vw, 26px);
	}

	.lca-blog-archive-card__excerpt {
		margin: 5px 0 9px;
		font-size: 12px;
		-webkit-line-clamp: 2;
	}

	.lca-blog-archive-card .lca-post-meta {
		margin-top: 0;
	}

	.lca-blog-archive-card__link {
		align-self: flex-end;
		margin-top: 9px;
	}

	.lca-newsletter {
		min-height: 225px;
		padding: 70px 24px;
	}

	.lca-newsletter__botanical {
		left: -35px;
		width: 165px;
	}
}

@media (max-width: 560px) {
	.lca-blog-archive__hero {
		padding-top: 34px;
	}

	.lca-blog-archive__eyebrow {
		margin-bottom: 10px;
		font-size: 9px;
	}

	.lca-blog-archive__heading h1 {
		max-width: 330px;
		font-size: clamp(39px, 12.2vw, 52px);
	}

	.lca-blog-archive__heading > p:last-child {
		max-width: 330px;
		margin-top: 12px;
		font-size: 11px;
	}

	.lca-blog-archive__wheat {
		top: 48px;
		right: -86px;
		width: 190px;
		opacity: 0.58;
	}

	.lca-blog-search {
		margin-block: 24px 15px;
	}

	.lca-blog-search input[type="search"],
	.lca-blog-search button {
		height: 44px;
	}

	.lca-blog-search button {
		width: 48px;
	}

	.lca-blog-filters {
		gap: 9px;
	}

	.lca-blog-filters a {
		min-height: 36px;
		padding-inline: 18px;
		font-size: 10px;
	}

	.lca-blog-archive__body {
		padding-top: 9px;
	}

	.lca-blog-featured__image {
		aspect-ratio: 16 / 8.7;
	}

	.lca-blog-featured__badge {
		top: 10px;
		left: 10px;
		padding: 6px 10px;
		font-size: 9px;
	}

	.lca-blog-featured__content {
		padding: 18px 16px 14px;
	}

	.lca-blog-archive__category {
		margin-bottom: 7px;
		font-size: 8px;
	}

	.lca-blog-featured__title {
		font-size: clamp(24px, 7.1vw, 31px);
	}

	.lca-blog-featured__excerpt {
		display: -webkit-box;
		overflow: hidden;
		font-size: 13px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.lca-post-meta {
		flex-wrap: wrap;
		gap: 6px;
		font-size: 8px;
	}

	.lca-post-meta__avatar {
		width: 27px;
		height: 27px;
	}

	.lca-post-meta__separator {
		height: 11px;
	}

	.lca-blog-archive__section-heading {
		margin-bottom: 19px;
	}

	.lca-blog-archive__section-heading h2 {
		font-size: clamp(32px, 9.5vw, 41px);
	}

	.lca-blog-archive-card {
		grid-template-columns: minmax(112px, 37%) minmax(0, 1fr);
		min-height: 158px;
	}

	.lca-blog-archive-card__image {
		min-height: 158px;
	}

	.lca-blog-archive-card__content {
		padding: 11px 12px;
	}

	.lca-blog-archive-card__title {
		font-size: clamp(16px, 4.8vw, 21px);
	}

	.lca-blog-archive-card__excerpt {
		font-size: 11px;
		line-height: 1.5;
	}

	.lca-blog-archive-card .lca-post-meta__avatar {
		width: 22px;
		height: 22px;
	}

	.lca-blog-archive-card__link {
		font-size: 8px;
	}

	.lca-blog-archive .nav-links {
		gap: 7px;
	}

	.lca-blog-archive .page-numbers {
		min-width: 39px;
		height: 39px;
	}

	.lca-newsletter {
		min-height: 0;
		padding: 70px 13px;
	}

	.lca-newsletter h2 {
		font-size: clamp(25px, 7.4vw, 32px);
	}

	.lca-newsletter__content > p:not(.lca-newsletter__eyebrow):not(.lca-newsletter__note):not(.lca-newsletter__setup) {
		font-size: 10px;
	}

	.lca-newsletter__form input[type="email"] {
		font-size: 10px;
	}

	.lca-newsletter__form button {
		min-width: 116px;
		padding-inline: 12px;
		font-size: 9px;
	}

	.lca-newsletter__botanical {
		display: none;
	}
}

/* Single articles: native Gutenberg content in a focused editorial layout. */
.lca-single-post {
	padding-bottom: clamp(54px, 6vw, 86px);
	background: var(--lca-paper);
}

.lca-single-hero,
.lca-single-featured,
.lca-single-layout,
.lca-single-footer,
.lca-single-related,
.lca-single-newsletter {
	width: min(100%, 1480px);
}

.lca-single-hero {
	padding-top: clamp(27px, 4vw, 54px);
	padding-bottom: clamp(30px, 4vw, 52px);
}

.lca-single-breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: clamp(24px, 3vw, 38px);
	gap: 10px;
	color: #77736d;
	font-size: 12px;
	text-align: left;
}

.lca-single-breadcrumbs a {
	text-decoration: none;
}

.lca-single-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
	align-items: center;
	max-width: 1320px;
	margin-inline: auto;
	gap: clamp(38px, 5vw, 78px);
}

.lca-single-hero__grid.is-image-empty {
	grid-template-columns: minmax(0, 880px);
	justify-content: center;
	text-align: center;
}

.lca-single-hero__content {
	min-width: 0;
}

.lca-single-hero__category {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--lca-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-single-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.lca-single-hero__subtitle {
	max-width: 650px;
	margin: 15px 0 0;
	color: #68645e;
	font-size: 17px;
	line-height: 1.5;
}

.lca-single-hero__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 27px;
	gap: 12px;
	color: #625f59;
	font-size: 12px;
	font-weight: 500;
}

.lca-single-hero__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.lca-single-hero__meta a {
	color: var(--lca-ink);
	font-weight: 700;
	text-decoration: none;
}

.lca-single-hero__reviewed {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin: 18px 0 0;
	padding: 6px 16px;
	gap: 8px;
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	color: #5f5b55;
	font-size: 12px;
}

.lca-single-hero__grid.is-image-empty .lca-single-hero__subtitle {
	margin-inline: auto;
}

.lca-single-hero__grid.is-image-empty .lca-single-hero__meta {
	justify-content: center;
}

.lca-single-hero__reviewed span {
	display: grid;
	width: 16px;
	height: 16px;
	background: var(--lca-ink);
	border-radius: 50%;
	color: #fff;
	font-size: 9px;
	place-items: center;
}

.lca-single-featured {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #f1e7d9;
	border-radius: 15px;
	box-shadow: 0 14px 34px rgba(52, 44, 34, 0.09);
}

.lca-single-featured img {
	width: 100%;
	height: clamp(320px, 29vw, 430px);
	object-fit: cover;
}

.lca-single-layout {
	display: grid;
	grid-template-columns: 62px minmax(0, 920px) minmax(280px, 320px);
	justify-content: center;
	padding-top: 38px;
	gap: clamp(26px, 2.5vw, 42px);
}

.lca-single-share {
	padding-top: 7px;
}

.lca-single-share > p {
	margin: 0 0 11px;
	color: var(--lca-forest);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.lca-single-share ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 9px;
	flex-direction: column;
	list-style: none;
}

.lca-single-share a {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid var(--lca-line);
	border-radius: 50%;
	color: var(--lca-forest);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	place-items: center;
}

.lca-single-share a:hover,
.lca-single-share a:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-single-content-column {
	min-width: 0;
}

.lca-single-summary {
	margin-bottom: 28px;
	padding: 19px 23px;
	background: #f1f3ef;
	border: 1px solid rgba(23, 77, 61, 0.14);
	border-radius: 10px;
}

.lca-single-summary h2 {
	display: flex;
	align-items: center;
	margin: 0 0 7px;
	gap: 10px;
	color: var(--lca-forest);
	font-family: var(--lca-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lca-single-summary h2 span {
	display: grid;
	width: 18px;
	height: 18px;
	background: var(--lca-forest);
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	place-items: center;
}

.lca-single-summary p {
	margin: 0;
	color: #5c5a55;
	font-size: 16px;
	line-height: 1.65;
}

.lca-single-content {
	color: #403e39;
	font-size: 18px;
	line-height: 1.75;
}

.lca-single-content > :first-child {
	margin-top: 0;
}

.lca-single-content h2,
.lca-single-content h3,
.lca-single-content h4,
.lca-single-content h5,
.lca-single-content h6 {
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-weight: 600;
	letter-spacing: -0.02em;
	scroll-margin-top: 24px;
}

.lca-single-content h2 {
	margin: 36px 0 11px;
	font-size: clamp(34px, 3.4vw, 42px);
	line-height: 1.15;
}

.lca-single-content h3 {
	margin: 31px 0 9px;
	font-size: clamp(28px, 2.8vw, 34px);
	line-height: 1.18;
}

.lca-single-content h4 {
	margin: 27px 0 8px;
	font-size: 24px;
}

.lca-single-content p,
.lca-single-content ul,
.lca-single-content ol {
	margin-top: 0;
	margin-bottom: 22px;
}

.lca-single-content ul,
.lca-single-content ol {
	padding-left: 24px;
}

.lca-single-content li + li {
	margin-top: 7px;
}

.lca-single-content a {
	color: var(--lca-forest);
	font-weight: 600;
}

.lca-single-content figure,
.lca-single-content .wp-block-image {
	margin: 26px 0;
}

.lca-single-content figure img,
.lca-single-content .wp-block-image img {
	border-radius: 10px;
}

.lca-single-content figcaption,
.lca-single-content .wp-element-caption {
	margin-top: 7px;
	color: #77736d;
	font-size: 12px;
	font-style: italic;
	line-height: 1.45;
	text-align: center;
}

.lca-single-content .alignwide {
	width: min(960px, calc(100vw - (2 * var(--lca-page-space))));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.lca-single-content .alignfull {
	width: min(1180px, calc(100vw - (2 * var(--lca-page-space))));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.lca-single-content .wp-block-table {
	overflow-x: auto;
}

.lca-single-content table {
	width: 100%;
	margin-block: 25px;
	border-collapse: separate;
	border: 1px solid var(--lca-line);
	border-radius: 10px;
	border-spacing: 0;
	font-size: 14px;
	line-height: 1.55;
}

.lca-single-content th,
.lca-single-content td {
	padding: 11px 13px;
	border-right: 1px solid var(--lca-line);
	border-bottom: 1px solid var(--lca-line);
	text-align: left;
	vertical-align: top;
}

.lca-single-content th {
	color: var(--lca-forest);
	font-weight: 700;
}

.lca-single-content tr:last-child td,
.lca-single-content tr:last-child th {
	border-bottom: 0;
}

.lca-single-content th:last-child,
.lca-single-content td:last-child {
	border-right: 0;
}

.lca-single-content blockquote,
.lca-single-content .wp-block-quote {
	position: relative;
	margin: 34px 0;
	padding: 5px 42px;
	border: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(27px, 3vw, 36px);
	font-weight: 600;
	line-height: 1.22;
	text-align: center;
}

.lca-single-content blockquote::before,
.lca-single-content blockquote::after {
	position: absolute;
	color: var(--lca-orange);
	font-family: Georgia, serif;
	font-size: 48px;
	line-height: 1;
}

.lca-single-content blockquote::before {
	top: -2px;
	left: 4px;
	content: "\201C";
}

.lca-single-content blockquote::after {
	right: 4px;
	bottom: -16px;
	content: "\201D";
}

.lca-single-content blockquote p {
	margin: 0;
}

.lca-single-content .wp-block-group.has-background {
	margin-block: 28px;
	padding: 22px;
	border: 1px solid var(--lca-line);
	border-radius: 11px;
}

.lca-single-content .wp-block-button__link,
.lca-single-content .wp-element-button,
.lca-single-content .post-password-form input[type="submit"] {
	background: var(--lca-orange);
	border: 1px solid var(--lca-orange);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.lca-single-content .wp-block-button__link:hover,
.lca-single-content .wp-block-button__link:focus-visible,
.lca-single-content .wp-element-button:hover,
.lca-single-content .wp-element-button:focus-visible,
.lca-single-content .post-password-form input[type="submit"]:hover,
.lca-single-content .post-password-form input[type="submit"]:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-single-toc {
	position: sticky;
	top: 24px;
	align-self: start;
	padding: 26px 24px;
	border: 1px solid var(--lca-line);
	border-radius: 10px;
}

.lca-single-toc h2 {
	margin: 0 0 11px;
	color: var(--lca-forest);
	font-family: var(--lca-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lca-single-toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lca-single-toc li + li {
	border-top: 1px solid rgba(230, 216, 199, 0.65);
}

.lca-single-toc a {
	display: block;
	padding-block: 10px;
	color: #5d5a54;
	font-size: 13px;
	line-height: 1.5;
	text-decoration: none;
}

.lca-single-toc__level-3 a {
	padding-left: 11px;
	font-size: 12px;
}

.lca-single-toc a:hover,
.lca-single-toc a:focus-visible {
	color: var(--lca-orange);
}

.lca-single-disclaimer {
	display: flex;
	align-items: center;
	margin: 30px 0 0;
	padding: 14px 17px;
	gap: 12px;
	border: 1px solid var(--lca-line);
	border-radius: 9px;
	color: #77736d;
	font-size: 13px;
	line-height: 1.55;
}

.lca-single-disclaimer span {
	display: grid;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border: 1px solid #77736d;
	border-radius: 50%;
	font-family: Georgia, serif;
	font-weight: 700;
	place-items: center;
}

.lca-single-footer {
	width: min(calc(100% - (2 * var(--lca-page-space))), 1200px);
	margin-top: 46px;
	padding-inline: 0;
}

.lca-author-box {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	align-items: center;
	padding: 30px 34px;
	gap: 32px;
	border: 1px solid var(--lca-line);
	border-radius: 12px;
}

.lca-author-box__avatar {
	width: 118px;
	height: 118px;
	border-radius: 50%;
	object-fit: cover;
}

.lca-author-box h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: 30px;
	font-weight: 600;
}

.lca-author-box p {
	margin: 4px 0 12px;
	color: #5f5b55;
	font-size: 15px;
	line-height: 1.65;
}

.lca-author-box a {
	display: inline-flex;
	min-height: 33px;
	align-items: center;
	padding: 7px 18px;
	background: var(--lca-orange);
	border: 1px solid var(--lca-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lca-author-box h2 + a {
	margin-top: 8px;
}

.lca-author-box a:hover,
.lca-author-box a:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-single-footer__tools {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 86px;
	padding: 22px 4px 30px;
	gap: 20px;
	border-bottom: 1px solid var(--lca-line);
}

.lca-single-topics {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	font-size: 12px;
}

.lca-single-topics a {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	padding: 5px 13px;
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
}

.lca-single-actions {
	display: flex;
	align-self: flex-start;
	margin-left: auto;
	gap: 5px;
}

.lca-single-actions button {
	min-height: 34px;
	padding: 7px 18px;
	background: var(--lca-forest);
	border: 1px solid var(--lca-forest);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
}

.lca-single-actions button:hover,
.lca-single-actions button:focus-visible {
	background: var(--lca-orange);
	border-color: var(--lca-orange);
	color: #fff;
}

.lca-single-related {
	width: min(calc(100% - (2 * var(--lca-page-space))), 1065px);
	padding-inline: 0;
	padding-top: clamp(28px, 4vw, 48px);
}

.lca-single-related__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	gap: 20px;
}

.lca-single-related__heading h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 600;
	letter-spacing: -0.025em;
}

.lca-single-related__heading span {
	width: 37px;
	height: 2px;
	background: var(--lca-orange);
}

.lca-single-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
}

.lca-single-related .lca-blog-archive-card__image {
	height: 185px;
}

.lca-single-related .lca-blog-archive-card__content {
	padding: 16px;
}

.lca-single-related .lca-blog-archive-card__title {
	font-size: 23px;
}

.lca-single-related .lca-blog-archive-card__excerpt,
.lca-single-related .lca-post-meta__avatar,
.lca-single-related .lca-post-meta__author,
.lca-single-related .lca-post-meta__separator:first-of-type {
	display: none;
}

.lca-single-related .lca-post-meta {
	margin-top: 10px;
}

.lca-single-newsletter {
	width: min(calc(100% - (2 * var(--lca-page-space))), 1210px);
	padding-inline: 0;
}

.lca-single-newsletter .lca-newsletter {
	margin-top: clamp(42px, 5vw, 66px);
}

@media (max-width: 1260px) {
	.lca-single-layout {
		grid-template-columns: 52px minmax(0, 1fr);
		max-width: 1060px;
	}

	.lca-single-toc {
		position: static;
		grid-column: 2;
		grid-row: 1;
		margin-bottom: 0;
	}

	.lca-single-content-column {
		grid-column: 2;
		grid-row: 2;
	}

	.lca-single-share {
		grid-column: 1;
		grid-row: 1 / span 2;
	}
}

@media (max-width: 920px) {
	.lca-single-hero__grid {
		grid-template-columns: 1fr;
		max-width: 780px;
		gap: 30px;
	}

	.lca-single-hero__content {
		text-align: center;
	}

	.lca-single-hero h1 {
		margin-inline: auto;
	}

	.lca-single-hero__subtitle {
		margin-inline: auto;
	}

	.lca-single-hero__meta {
		justify-content: center;
	}

	.lca-single-featured {
		max-width: 720px;
		margin-inline: auto;
	}

	.lca-single-featured img {
		height: auto;
		max-height: 390px;
		aspect-ratio: 16 / 8.5;
	}
}

@media (max-width: 720px) {
	.lca-single-hero {
		padding-top: 20px;
	}

	.lca-single-breadcrumbs {
		overflow-x: auto;
		margin-bottom: 27px;
		white-space: nowrap;
	}

	.lca-single-hero h1 {
		max-width: 620px;
		font-size: clamp(37px, 9.6vw, 54px);
	}

	.lca-single-hero__subtitle {
		font-size: 15px;
	}

	.lca-single-hero__meta {
		flex-wrap: wrap;
		font-size: 11px;
	}

	.lca-single-featured img {
		min-height: 0;
		max-height: 340px;
		aspect-ratio: 16 / 9;
	}

	.lca-single-layout {
		grid-template-columns: 1fr;
		padding-top: 20px;
	}

	.lca-single-share {
		grid-column: 1;
		grid-row: auto;
		padding-top: 0;
	}

	.lca-single-share > p {
		text-align: left;
	}

	.lca-single-share ul {
		align-items: center;
		flex-direction: row;
	}

	.lca-single-content-column,
	.lca-single-toc {
		grid-column: 1;
		grid-row: auto;
	}

	.lca-single-toc {
		order: -1;
	}

	.lca-single-content {
		font-size: 17px;
	}

	.lca-single-content .alignwide,
	.lca-single-content .alignfull {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		transform: none;
	}

	.lca-author-box {
		grid-template-columns: 86px minmax(0, 1fr);
		padding: 17px;
		gap: 16px;
	}

	.lca-author-box__avatar {
		width: 82px;
		height: 82px;
	}

	.lca-single-footer__tools {
		align-items: flex-start;
		padding: 20px 0 25px;
		flex-direction: column;
	}

	.lca-single-related__grid {
		grid-template-columns: 1fr;
	}

	.lca-single-related .lca-blog-archive-card {
		display: grid;
		grid-template-columns: minmax(130px, 37%) minmax(0, 1fr);
		min-height: 165px;
	}

	.lca-single-related .lca-blog-archive-card__image {
		height: 100%;
		min-height: 165px;
	}
}

@media (max-width: 480px) {
	.lca-single-hero h1 {
		font-size: clamp(34px, 10.5vw, 45px);
	}

	.lca-single-hero__meta {
		gap: 7px;
	}

	.lca-single-hero__avatar {
		width: 42px;
		height: 42px;
	}

	.lca-single-featured img {
		min-height: 0;
		max-height: 270px;
	}

	.lca-single-summary {
		padding: 16px;
	}

	.lca-single-content table {
		min-width: 540px;
	}

	.lca-single-content blockquote,
	.lca-single-content .wp-block-quote {
		padding-inline: 29px;
	}

	.lca-author-box {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lca-author-box__avatar {
		margin-inline: auto;
	}

	.lca-single-related__heading {
		gap: 11px;
	}

	.lca-single-related__heading span {
		width: 23px;
	}

	.lca-single-related__heading h2 {
		font-size: 30px;
	}

	.lca-single-related .lca-blog-archive-card {
		grid-template-columns: minmax(110px, 36%) minmax(0, 1fr);
	}

	.lca-single-related .lca-blog-archive-card__title {
		font-size: 20px;
	}
}

@media print {
	.lca-site-header,
	.lca-site-footer,
	.lca-single-share,
	.lca-single-toc,
	.lca-single-actions,
	.lca-single-related,
	.lca-single-newsletter {
		display: none !important;
	}

	.lca-single-layout {
		display: block;
	}

	.lca-single-post,
	.lca-single-hero {
		background: #fff;
	}
}

/* Footer: complete live-site content in a cleaner editorial layout. */
.lca-site-footer {
	width: 100%;
	background: var(--lca-cream);
	color: var(--lca-ink);
	border-top: 1px solid var(--lca-line);
}

.lca-site-footer__main {
	display: grid;
	grid-template-columns: minmax(250px, 0.85fr) minmax(420px, 1.7fr) minmax(260px, 0.95fr);
	gap: clamp(28px, 3.6vw, 54px);
	padding-block: clamp(34px, 4vw, 52px);
}

/* Hide the third-party BOS4W separator; the theme renders its own purchase UI. */
.bos4w-or-subscribe {
	display: none !important;
}

.lca-site-footer .custom-logo {
	max-width: 280px;
	filter: none;
}

.lca-site-footer__title {
	color: var(--lca-forest);
}

.lca-site-footer__brand p,
.lca-site-footer__promise p {
	max-width: 430px;
	margin: 13px 0 0;
	color: var(--lca-muted);
	font-size: 14px;
	line-height: 1.75;
}

.lca-site-footer h2 {
	margin: 0 0 13px;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: 25px;
	font-weight: 700;
}

.lca-footer-products,
.lca-footer-resources,
.lca-footer-social,
.lca-footer-legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lca-footer-products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 10px;
}

.lca-footer-products a,
.lca-footer-resources a,
.lca-footer-social a,
.lca-footer-legal a {
	text-decoration: none;
}

.lca-footer-products a {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.lca-site-footer__resources {
	margin-top: 20px;
}

.lca-footer-resources,
.lca-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.lca-footer-resources a,
.lca-footer-social a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 7px 12px;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 999px;
	color: var(--lca-forest);
	font-size: 11px;
	font-weight: 700;
}

.lca-footer-social a {
	gap: 7px;
}

.lca-footer-social__icon {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 18px;
	height: 18px;
}

.lca-footer-social__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.7;
}

.lca-footer-social__icon rect,
.lca-footer-social__icon circle:not(.lca-social-icon__fill) {
	fill: none;
}

.lca-footer-social__icon .lca-social-icon__fill {
	fill: currentColor;
	stroke: none;
}

.lca-footer-social__icon .lca-social-icon__cutout {
	fill: var(--lca-paper);
	stroke: none;
}

.lca-footer-social a:hover .lca-social-icon__cutout {
	fill: var(--lca-forest);
}

.lca-footer-resources a:hover,
.lca-footer-social a:hover {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-footer-social {
	margin-top: 18px;
}

.lca-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 18px;
	border-top: 1px solid rgba(23, 77, 61, 0.16);
	font-size: 12px;
}

.lca-site-footer__bottom p {
	margin: 0;
}

.lca-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 20px;
}

/* Fast, dependency-free WooCommerce side cart. */
.lca-side-cart {
	position: fixed;
	z-index: 1000;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 240ms ease;
}

.lca-side-cart.is-open {
	visibility: visible;
	pointer-events: auto;
}

.lca-side-cart__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(21, 38, 32, 0.48);
	border: 0;
	border-radius: 0;
	backdrop-filter: blur(2px);
	opacity: 0;
	cursor: default;
	transition: opacity 240ms ease;
}

.lca-side-cart.is-open .lca-side-cart__backdrop {
	opacity: 1;
}

.lca-side-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: min(100%, 448px);
	height: 100%;
	height: 100dvh;
	min-height: 0;
	overflow: hidden;
	flex-direction: column;
	background: var(--lca-paper);
	box-shadow: -22px 0 70px rgba(23, 77, 61, 0.22);
	outline: 0;
	transform: translate3d(102%, 0, 0);
	transition: transform 240ms cubic-bezier(0.22, 0.8, 0.32, 1);
}

.lca-side-cart.is-open .lca-side-cart__panel {
	transform: translate3d(0, 0, 0);
}

.lca-side-cart__header {
	position: relative;
	z-index: 22;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	gap: 20px;
	padding: 22px 22px 17px;
	background: var(--lca-paper);
	border-bottom: 1px solid var(--lca-line);
}

.lca-side-cart__header p {
	margin: 0 0 2px;
	color: var(--lca-orange);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lca-side-cart__header h2 {
	margin: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: 29px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.lca-side-cart__close {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: var(--lca-cream);
	border: 1px solid var(--lca-line);
	border-radius: 50%;
	color: var(--lca-forest);
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lca-side-cart__close:hover {
	background: var(--lca-forest);
	color: #fff;
	transform: rotate(5deg);
}

.lca-side-cart__close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.lca-side-cart__status {
	position: absolute;
	top: 82px;
	right: 16px;
	left: 16px;
	z-index: 24;
	display: flex;
	min-height: 0;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	background: transparent;
	border-radius: 9px;
	box-shadow: 0 8px 24px rgba(21, 38, 32, 0.12);
	color: var(--lca-forest);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	visibility: hidden;
	opacity: 0;
	transition: opacity 160ms ease, visibility 160ms ease;
}

.lca-side-cart__status.is-visible {
	visibility: visible;
	background: var(--lca-paper);
	opacity: 1;
}

.lca-side-cart__status.is-error {
	background: #fff0eb;
	color: #9d351f;
}

.lca-side-cart__loader {
	position: absolute;
	inset: 82px 0 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	background: rgba(251, 248, 239, 0.82);
	backdrop-filter: blur(2px);
	color: var(--lca-forest);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.025em;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 140ms ease, visibility 140ms ease;
}

.lca-side-cart.is-busy .lca-side-cart__loader {
	visibility: visible;
	opacity: 1;
}

.lca-side-cart__loader-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(23, 77, 61, 0.16);
	border-top-color: var(--lca-forest);
	border-radius: 50%;
	animation: lca-side-cart-spin 680ms linear infinite;
}

@keyframes lca-side-cart-spin {
	to {
		transform: rotate(1turn);
	}
}

.lca-side-cart__contents {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
}

.lca-side-cart__shipping {
	flex: 0 0 auto;
	padding: 15px 22px 17px;
	background: var(--lca-cream);
	border-bottom: 1px solid var(--lca-line);
}

.lca-side-cart__shipping p {
	margin: 0 0 15px;
	color: var(--lca-ink);
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

.lca-side-cart__shipping p strong {
	color: var(--lca-forest);
}

.lca-side-cart__shipping.is-complete p strong {
	color: var(--lca-forest);
}

.lca-side-cart__shipping.is-complete {
	background: #eaf3ef;
}

.lca-side-cart__shipping-road {
	position: relative;
	height: 7px;
	margin: 0 15px 1px 2px;
	background: rgba(23, 77, 61, 0.15);
	border-radius: 99px;
}

.lca-side-cart__shipping-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--lca-shipping-progress);
	background: var(--lca-orange);
	border-radius: inherit;
	transition: width 360ms ease;
}

.lca-side-cart__shipping.is-complete .lca-side-cart__shipping-fill {
	background: var(--lca-forest);
}

.lca-side-cart__shipping.is-complete .lca-side-cart__truck {
	color: var(--lca-forest);
}

.lca-side-cart__shipping.is-complete .lca-side-cart__destination {
	background: var(--lca-forest);
}

.lca-side-cart__truck {
	position: absolute;
	top: 50%;
	left: clamp(0px, calc(var(--lca-shipping-progress) - 16px), calc(100% - 25px));
	display: grid;
	place-items: center;
	width: 32px;
	height: 25px;
	color: var(--lca-forest);
	transform: translateY(-58%);
	transition: left 360ms ease;
}

.lca-side-cart__truck svg {
	width: 32px;
	height: 22px;
	fill: var(--lca-paper);
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.lca-side-cart__destination {
	position: absolute;
	top: 50%;
	right: -17px;
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	background: var(--lca-forest);
	border-radius: 50%;
	color: #fff;
	transform: translateY(-50%);
}

.lca-side-cart__destination svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-side-cart__items {
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	flex: 1 1 auto;
	padding: 3px 22px;
	overscroll-behavior: contain;
	scrollbar-color: rgba(23, 77, 61, 0.25) transparent;
	scrollbar-width: thin;
}

.lca-side-cart__item {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 11px;
	padding: 12px 0;
	border-bottom: 1px solid var(--lca-line);
	transition: opacity 160ms ease, transform 160ms ease;
}

.lca-side-cart__item.is-updating {
	opacity: 0.58;
	pointer-events: none;
}

.lca-side-cart__item.is-removing {
	opacity: 0;
	pointer-events: none;
	transform: translateX(20px);
}

.lca-side-cart__item-image {
	display: block;
	width: 74px;
	height: 82px;
	overflow: hidden;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 11px;
}

.lca-side-cart__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lca-side-cart__item-details {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: flex-start;
}

.lca-side-cart__item-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 26px;
	align-items: start;
	gap: 8px;
}

.lca-side-cart__item-heading h3 {
	margin: 1px 0 0;
	font-family: var(--lca-font-display);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.22;
}

.lca-side-cart__item-heading h3 a {
	text-decoration: none;
}

.lca-side-cart__subscription {
	display: flex;
	align-items: flex-start;
	margin: 5px 0 1px;
}

.lca-side-cart__subscription.is-subscription {
	display: grid;
	gap: 4px;
	padding: 6px 7px;
	background: rgba(236, 244, 225, 0.78);
	border: 1px solid rgba(23, 77, 61, 0.18);
	border-radius: 8px;
}

.lca-side-cart__subscription-upgrade,
.lca-side-cart__purchase-switch {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-body);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.3;
	text-align: left;
	text-decoration: underline;
	text-decoration-color: rgba(23, 77, 61, 0.32);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	cursor: pointer;
}

.lca-side-cart__subscription-upgrade {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 7px;
	background: rgba(236, 244, 225, 0.82);
	border: 1px solid rgba(23, 77, 61, 0.2);
	border-radius: 999px;
	text-decoration: none;
}

.lca-side-cart__subscription-upgrade:hover,
.lca-side-cart__subscription-upgrade:focus-visible {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
}

.lca-side-cart__subscription-upgrade svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-side-cart__subscription-select-label {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 7px;
	color: var(--lca-forest);
	font-size: 9px;
	font-weight: 800;
	line-height: 1.2;
}

.lca-side-cart__subscription-select-label select {
	width: 100%;
	min-width: 0;
	height: 26px;
	margin: 0;
	padding: 0 24px 0 8px;
	background-color: var(--lca-paper);
	border: 1px solid rgba(23, 77, 61, 0.24);
	border-radius: 7px;
	color: var(--lca-ink);
	font-family: var(--lca-font-body);
	font-size: 10px;
	font-weight: 700;
}

.lca-side-cart__purchase-switch {
	color: var(--lca-muted);
	font-size: 9px;
}

.lca-side-cart__purchase-switch:hover,
.lca-side-cart__purchase-switch:focus-visible {
	color: var(--lca-orange);
}

.lca-side-cart__remove {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--lca-muted);
	cursor: pointer;
}

.lca-side-cart__remove:hover {
	background: #fff0eb;
	color: var(--lca-orange);
}

.lca-side-cart__remove svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.lca-side-cart__item-details dl.variation {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2px 5px;
	margin: 4px 0;
	color: var(--lca-muted);
	font-size: 10px;
	line-height: 1.35;
}

.lca-side-cart__item-details dl.variation dt,
.lca-side-cart__item-details dl.variation dd,
.lca-side-cart__item-details dl.variation p {
	margin: 0;
}

.lca-side-cart__item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 7px;
}

.lca-side-cart__quantity {
	display: grid;
	grid-template-columns: 26px 31px 26px;
	height: 29px;
	overflow: hidden;
	background: var(--lca-paper);
	border: 1px solid var(--lca-line);
	border-radius: 999px;
}

.lca-side-cart__quantity button,
.lca-side-cart__quantity input {
	width: 100%;
	height: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--lca-ink);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.lca-side-cart__quantity button {
	font-size: 16px;
	cursor: pointer;
}

.lca-side-cart__quantity button:hover {
	background: var(--lca-cream);
}

.lca-side-cart__quantity input {
	-moz-appearance: textfield;
	border-right: 1px solid var(--lca-line);
	border-left: 1px solid var(--lca-line);
}

.lca-side-cart__quantity input::-webkit-inner-spin-button,
.lca-side-cart__quantity input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.lca-side-cart__fixed-quantity {
	color: var(--lca-muted);
	font-size: 11px;
	font-weight: 700;
}

.lca-side-cart__item-price {
	font-size: 13px;
	white-space: nowrap;
}

.lca-side-cart__summary {
	flex: 0 0 auto;
	padding: 18px 22px max(20px, env(safe-area-inset-bottom));
	background: var(--lca-paper);
	border-top: 2px solid var(--lca-orange);
	box-shadow: 0 -10px 30px rgba(23, 77, 61, 0.055);
}

.lca-side-cart__summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-size: 13px;
}

.lca-side-cart__summary-row + .lca-side-cart__summary-row {
	margin-top: 6px;
}

.lca-side-cart__summary-row--total {
	color: var(--lca-ink);
	font-size: 15px;
	font-weight: 700;
}

.lca-side-cart__summary-row .woocommerce-Price-amount {
	font-weight: 700;
}

.lca-side-cart__summary > p {
	margin: 8px 0 14px;
	color: var(--lca-muted);
	font-size: 9px;
	line-height: 1.45;
	text-align: center;
}

.lca-side-cart__summary-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px;
}

.lca-side-cart__continue,
.lca-side-cart__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lca-side-cart__continue {
	background: var(--lca-paper);
	border: 1px solid var(--lca-orange);
	color: var(--lca-ink);
}

.lca-side-cart__continue:hover {
	background: var(--lca-cream);
	color: var(--lca-forest);
	transform: translateY(-1px);
}

.lca-side-cart__checkout {
	gap: 10px;
	background: var(--lca-orange);
	border: 1px solid var(--lca-orange);
	color: #fff;
}

.lca-side-cart__checkout:hover {
	background: var(--lca-forest);
	border-color: var(--lca-forest);
	color: #fff;
	transform: translateY(-1px);
}

.lca-side-cart__checkout svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lca-side-cart__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	overflow-y: auto;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 38px 30px;
	text-align: center;
}

.lca-side-cart__empty-icon {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	background: var(--lca-cream);
	border-radius: 50%;
	color: var(--lca-forest);
}

.lca-side-cart__empty-icon svg {
	width: 46px;
	height: 46px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.lca-side-cart__empty h3 {
	max-width: 310px;
	margin: 20px 0 0;
	color: var(--lca-forest);
	font-family: var(--lca-font-display);
	font-size: 25px;
	line-height: 1.18;
}

.lca-side-cart__empty p {
	max-width: 315px;
	margin: 10px 0 20px;
	color: var(--lca-muted);
	font-size: 12px;
	line-height: 1.55;
}

.lca-side-cart__empty .lca-button {
	min-height: 44px;
	padding: 9px 20px;
	font-size: 11px;
}

/* Use the same card on native WooCommerce product archives. */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product.lca-product-loop-item {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product.lca-product-loop-item .lca-product-card {
	height: 100%;
}

/* Quiet, one-time content reveals. Elements stay visible unless JS explicitly enables them. */
html.lca-reveal-enabled .lca-scroll-reveal {
	opacity: 0;
	transform: translate3d(0, 12px, 0);
	transition:
		opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--lca-reveal-delay, 0ms),
		transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--lca-reveal-delay, 0ms);
	will-change: opacity, transform;
}

html.lca-reveal-enabled .lca-scroll-reveal.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: auto;
}

@media (max-width: 1180px) {
	.lca-slider {
		--lca-slider-card-width: clamp(265px, 21.75vw, 400px);
	}

	.lca-site-footer__main {
		grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
	}

	.lca-site-footer__promise {
		grid-column: 1 / -1;
	}

	.lca-product-card__title {
		font-size: clamp(20px, 2.7vw, 26px);
	}

	.lca-locations__pin {
		right: 18%;
	}

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

@media (max-width: 820px) {
	.lca-section-heading__description,
	.lca-hero__copy {
		font-size: 18px;
	}

	.lca-product-feature-tabs__button {
		min-height: 68px;
		padding: 12px 22px;
		font-size: 28px;
	}

	.lca-product-showcase .lca-product-card__featured-metrics {
		min-height: 172px;
		padding: 16px 12px 42px;
	}

	.lca-product-showcase .lca-product-card__featured-metric strong {
		font-size: 104px;
	}

	.lca-hero__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lca-hero__content {
		align-items: center;
		padding: 44px var(--lca-page-space) 46px;
		text-align: center;
	}

	.lca-hero__title {
		width: min(110%, 720px);
		margin-inline: -5%;
	}

	.lca-hero__copy {
		max-width: 680px;
	}

	.lca-hero__media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.lca-blog__track {
		grid-auto-columns: clamp(226px, 40vw, 285px);
	}

	.lca-blog__arrow--prev {
		left: -8px;
	}

	.lca-blog__arrow--next {
		right: -8px;
	}

	.lca-site-header__inner {
		position: relative;
		flex-wrap: nowrap;
		gap: 10px;
		padding-block: 12px;
	}

	.lca-site-branding {
		flex: 1 1 auto;
		min-width: 0;
	}

	.lca-menu-toggle {
		display: grid;
		flex: 0 0 auto;
		order: 2;
	}

	.lca-header-actions {
		order: 3;
		gap: 7px;
	}

	.lca-primary-nav {
		position: absolute;
		top: calc(100% - 4px);
		left: 50%;
		z-index: 40;
		order: 4;
		width: calc(100% - (2 * var(--lca-page-space)));
		max-height: calc(100vh - 100px);
		margin: 0;
		overflow-y: auto;
		padding: 13px;
		visibility: hidden;
		background: rgba(255, 250, 243, 0.985);
		border: 1px solid rgba(23, 77, 61, 0.12);
		border-radius: 17px;
		box-shadow: 0 22px 60px rgba(23, 77, 61, 0.2);
		opacity: 0;
		transform: translate(-50%, -8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.lca-site-header.is-menu-open .lca-primary-nav {
		visibility: visible;
		opacity: 1;
		transform: translate(-50%, 0);
	}

	.lca-primary-nav__list {
		display: grid;
		width: 100%;
		gap: 2px;
	}

	.lca-primary-nav a {
		width: 100%;
		padding: 11px 12px;
		border-radius: 10px;
	}

	.lca-primary-nav a::after,
	.lca-primary-nav .menu-item-has-children > a::before {
		display: none;
	}

	.lca-primary-nav a:hover,
	.lca-primary-nav .current-menu-item > a,
	.lca-primary-nav .current-menu-ancestor > a {
		background: var(--lca-cream);
		color: var(--lca-orange);
	}

	.lca-primary-nav .sub-menu {
		position: static;
		min-width: 0;
		margin: 0 0 6px 16px;
		padding: 2px 0 2px 11px;
		visibility: visible;
		background: transparent;
		border: 0;
		border-left: 1px solid var(--lca-line);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.lca-primary-nav .sub-menu::before {
		display: none;
	}

	.lca-primary-nav .sub-menu a {
		padding-block: 8px;
		font-size: 12px;
	}

	.lca-site-header.is-menu-open .lca-menu-toggle__lines span:first-child {
		transform: translateY(5.5px) rotate(45deg);
	}

	.lca-site-header.is-menu-open .lca-menu-toggle__lines span:nth-child(2) {
		opacity: 0;
	}

	.lca-site-header.is-menu-open .lca-menu-toggle__lines span:last-child {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.lca-header-cart__label {
		display: none;
	}

	.lca-locations__card {
		min-height: 500px;
	}

	.lca-locations__content {
		width: min(58%, 520px);
		margin-left: 30px;
		padding: 32px;
	}

	.lca-locations__pin {
		top: 44px;
		right: 5%;
	}

	.lca-locations__map svg {
		min-height: 500px;
	}

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

	.lca-site-footer__main {
		grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
	}

	.lca-site-footer__promise {
		grid-column: 1 / -1;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	:root {
		--lca-card-radius: 14px;
	}

	.lca-announcement-bar {
		min-height: 38px;
	}

	.lca-announcement-bar__track {
		min-height: 36px;
	}

	.lca-announcement-bar__item {
		gap: 7px;
		padding-block: 7px;
		font-size: 11px;
	}

	.lca-announcement-bar__item svg {
		width: 18px;
		height: 18px;
	}

	.lca-announcement-bar__control {
		width: 34px;
	}

	.lca-announcement-bar__control svg {
		width: 18px;
		height: 18px;
	}

	.lca-blog {
		padding-block: 14px 38px;
	}

	.lca-testimonials {
		padding: 42px 0 14px;
	}

	.lca-locations {
		padding-block: 14px;
	}

	.lca-section-heading__description,
	.lca-hero__copy {
		font-size: 16px;
	}

	.lca-product-feature-tabs {
		justify-content: center;
		gap: 10px;
		margin-bottom: 30px;
	}

	.lca-product-feature-tabs__button {
		min-height: 60px;
		padding: 10px 18px;
		font-size: 23px;
	}

	.lca-product-showcase .lca-product-card__featured-metrics {
		min-height: 148px;
		padding: 14px 10px 36px;
	}

	.lca-product-showcase .lca-product-card__featured-metric strong {
		font-size: 82px;
	}

	.lca-blog .lca-section-heading {
		margin-bottom: 19px;
	}

	.lca-blog .lca-section-heading__title {
		font-size: clamp(34px, 10.5vw, 45px);
		line-height: 1.02;
	}

	.lca-blog__viewport {
		margin-inline: calc(-1 * var(--lca-page-space));
		padding: 6px var(--lca-page-space) 13px;
		width: calc(100% + (2 * var(--lca-page-space)));
		scroll-padding-inline: var(--lca-page-space);
	}

	.lca-blog__track {
		grid-auto-columns: min(78vw, 290px);
		gap: 11px;
	}

	.lca-blog__arrow {
		display: none;
	}

	.lca-blog-card__content {
		padding: 14px 14px 15px;
	}

	.lca-blog-card__title {
		font-size: 21px;
	}

	.lca-blog__controls {
		grid-template-columns: minmax(70px, 1fr) auto;
		gap: 12px;
		justify-content: stretch;
	}

	.lca-blog__all {
		justify-self: end;
	}

	.lca-site-branding {
		flex-basis: auto;
	}

	.custom-logo {
		max-width: min(100%, 180px);
		max-height: 52px;
	}

	.lca-site-header__inner {
		gap: 7px;
	}

	.lca-header-actions {
		gap: 5px;
	}

	.lca-menu-toggle,
	.lca-header-account {
		width: 42px;
		min-width: 42px;
		height: 42px;
		min-height: 42px;
		padding: 8px;
	}

	.lca-header-cart {
		min-width: 58px;
		height: 42px;
		min-height: 42px;
		gap: 5px;
		padding: 8px;
	}

	.lca-hero__content {
		padding: 36px 18px 38px;
	}

	.lca-hero__title {
		width: 100%;
		margin: 0;
	}

	.lca-hero__copy {
		width: 100%;
		max-width: 520px;
		margin: 34px 0 20px;
		font-size: clamp(14px, 3.8vw, 16px);
		line-height: 1.65;
	}

	.lca-hero__copy span {
		white-space: normal;
	}

	.lca-hero--with-slider .lca-hero__layout {
		position: relative;
		display: block;
		min-height: clamp(480px, 128vw, 560px);
	}

	.lca-hero--with-slider .lca-hero__content {
		position: relative;
		z-index: 2;
		min-height: inherit;
		padding: 46px 26px 62px;
		background: linear-gradient(
			180deg,
			color-mix(in srgb, var(--lca-ink) 30%, transparent),
			color-mix(in srgb, var(--lca-ink) 52%, transparent)
		);
		pointer-events: none;
	}

	.lca-hero--with-slider .lca-hero__title {
		width: min(132%, 500px);
		margin-inline: -16%;
		color: #fff;
		filter: drop-shadow(0 2px 10px color-mix(in srgb, var(--lca-ink) 55%, transparent));
	}

	.lca-hero--with-slider .lca-hero__copy {
		max-width: 350px;
		margin-top: clamp(36px, 10vw, 46px);
		color: #fff;
		text-shadow: 0 2px 10px color-mix(in srgb, var(--lca-ink) 75%, transparent);
	}

	.lca-hero--with-slider .lca-button {
		background: var(--lca-orange);
		pointer-events: auto;
	}

	.lca-hero--with-slider .lca-button:hover {
		background: var(--lca-forest);
	}

	.lca-hero--with-slider .lca-hero__media {
		position: absolute;
		z-index: 1;
		inset: 0;
		min-height: 100%;
		aspect-ratio: auto;
	}

	.lca-hero--with-slider .lca-hero__arrow {
		display: none;
	}

	.lca-hero__arrow {
		width: 40px;
		height: 40px;
	}

	.lca-hero__arrow--previous {
		left: 12px;
	}

	.lca-hero__arrow--next {
		right: 12px;
	}

	.lca-comparison__labels,
	.lca-comparison__row {
		grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
	}

	.lca-comparison__labels {
		padding-inline: 10px;
	}

	.lca-comparison__row {
		padding-inline: 10px;
	}

	.lca-comparison__row--oil {
		min-height: 102px;
	}

	.lca-comparison__row--oil .lca-comparison__value strong,
	.lca-comparison__row--oil .lca-comparison__value--typical strong {
		font-size: 14px;
		line-height: 1.2;
	}

	.lca-comparison__icon {
		width: 48px;
		height: 48px;
	}

	.lca-comparison__icon svg {
		width: 28px;
		height: 28px;
	}

	.lca-section-heading__eyebrow::before,
	.lca-section-heading__eyebrow::after {
		width: 18px;
		margin-inline: 8px;
	}

	.lca-slider {
		--lca-slider-gap: 9px;
		--lca-slider-card-width: 82vw;
	}

	.lca-slider__viewport {
		padding-block: 10px 5px;
	}

	.lca-slider__controls {
		min-height: 26px;
		margin-top: 10px;
		padding-inline: 52px;
	}

	.lca-slider__arrow {
		top: calc(50% - 200px);
		width: 42px;
		height: 42px;
		border-width: 1.5px;
		box-shadow: 0 7px 20px color-mix(in srgb, var(--lca-forest) 24%, transparent);
	}

	.lca-slider__arrow[data-lca-slider-prev] {
		left: 10px;
	}

	.lca-slider__arrow[data-lca-slider-next] {
		right: 10px;
	}

	.lca-slider__arrow svg {
		width: 27px;
		height: 27px;
	}

	.lca-product-card__price {
		font-size: 17px;
	}

	.lca-slider__dots {
		flex-wrap: wrap;
		gap: 5px;
	}

	.lca-slider__dot {
		width: 10px;
	}

	.lca-slider__dot[aria-current="true"] {
		width: 24px;
	}

	.lca-product-card__title {
		font-size: 24px;
	}

	.lca-product-card__content {
		padding: 14px 15px 11px;
	}

	.lca-locations__content {
		align-items: center;
		width: auto;
		margin: 24px 18px 154px;
		padding: 28px 22px;
		text-align: center;
	}

	.lca-locations__content .lca-locations__lead {
		padding: 0 0 10px;
		border-bottom: 2px solid var(--lca-orange);
		border-left: 0;
	}

	.lca-locations__card,
	.lca-locations__map svg {
		min-height: 540px;
	}

	.lca-locations__map::before {
		background: linear-gradient(180deg, color-mix(in srgb, var(--lca-cream) 92%, transparent) 0%, color-mix(in srgb, var(--lca-cream) 76%, transparent) 54%, color-mix(in srgb, var(--lca-cream) 45%, transparent) 100%);
	}

	.lca-map__labels,
	.lca-locations__pin {
		display: none;
	}

	.lca-locations__actions {
		right: 20px;
		bottom: 20px;
		left: 20px;
		grid-template-columns: minmax(0, 340px);
		justify-content: center;
		gap: 10px;
	}

	.lca-locations__action {
		min-height: 60px;
	}

	.lca-locations__content > p:not(.lca-locations__eyebrow) {
		max-width: 430px;
	}

	.lca-site-footer__main {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lca-site-footer__promise {
		grid-column: auto;
	}

	.lca-footer-products {
		grid-template-columns: 1fr;
	}

	.lca-site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.lca-footer-legal {
		justify-content: flex-start;
	}

	.lca-side-cart__header {
		padding: 18px 17px 14px;
	}

	.lca-side-cart__header h2 {
		font-size: 26px;
	}

	.lca-side-cart__close {
		width: 40px;
		height: 40px;
	}

	.lca-side-cart__status,
	.lca-side-cart__shipping,
	.lca-side-cart__items,
	.lca-side-cart__summary {
		padding-right: 17px;
		padding-left: 17px;
	}

	.lca-side-cart__status {
		right: 12px;
		left: 12px;
	}

	.lca-side-cart__shipping {
		padding-top: 13px;
		padding-bottom: 16px;
	}

	.lca-side-cart__item {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 10px;
		padding-block: 11px;
	}

	.lca-side-cart__item-image {
		width: 68px;
		height: 76px;
	}

	.lca-side-cart__item-heading h3 {
		font-size: 14px;
	}

	.lca-side-cart__summary {
		padding-top: 15px;
		padding-bottom: max(17px, env(safe-area-inset-bottom));
	}

	.lca-side-cart__summary-actions {
		gap: 9px;
	}

	.lca-side-cart__continue,
	.lca-side-cart__checkout {
		min-height: 46px;
		padding-inline: 9px;
		font-size: 10px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}

/* Focused homepage refinements for phone-sized screens. */
@media (max-width: 640px) {
	.lca-homepage .lca-section-heading__title {
		font-size: clamp(35px, 10vw, 43px);
		line-height: 1.05;
	}

	.lca-homepage .lca-section-heading__description {
		max-width: 350px;
		font-size: clamp(15px, 4.1vw, 17px);
		line-height: 1.55;
	}

	.lca-hero--with-slider .lca-hero__layout {
		min-height: clamp(490px, 124vw, 545px);
	}

	.lca-hero--with-slider .lca-hero__content {
		padding: 42px 20px 68px;
	}

	.lca-hero--with-slider .lca-hero__title {
		width: min(108%, 470px);
		margin-inline: -4%;
	}

	.lca-hero--with-slider .lca-hero__copy {
		max-width: 350px;
		margin-top: clamp(27px, 7vw, 36px);
		font-size: clamp(14px, 3.9vw, 16px);
		font-weight: 600;
		line-height: 1.58;
	}

	.lca-hero--with-slider .lca-hero__media {
		z-index: auto;
	}

	.lca-hero--with-slider .lca-hero__dots {
		right: auto;
		bottom: 14px;
		left: 50%;
		width: max-content;
		padding: 7px 10px;
		background: color-mix(in srgb, var(--lca-forest) 62%, transparent);
		border: 1px solid color-mix(in srgb, var(--lca-white) 28%, transparent);
		border-radius: 999px;
		box-shadow: 0 5px 18px color-mix(in srgb, var(--lca-ink) 26%, transparent);
		transform: translateX(-50%);
		backdrop-filter: blur(4px);
	}

	.lca-hero--with-slider .lca-hero__dots button {
		width: 10px;
		height: 10px;
		background: color-mix(in srgb, var(--lca-white) 88%, transparent);
		box-shadow: none;
	}

	.lca-hero--with-slider .lca-hero__dots button[aria-current='true'] {
		width: 27px;
		background: var(--lca-orange);
	}

	.lca-product-feature-tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		width: 100%;
		margin: 21px auto 30px;
		padding-inline: 4px;
	}

	.lca-product-feature-tabs__button {
		width: 100%;
		min-height: 56px;
		padding: 9px 11px;
		font-size: clamp(18px, 5.2vw, 22px);
		line-height: 1.15;
		white-space: nowrap;
	}

	.lca-product-feature-tabs__button:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
		width: calc(50% - 5px);
	}

	.lca-product-showcase .lca-product-card__featured-metrics {
		min-height: 132px;
		padding: 13px 10px 30px;
	}

	.lca-product-showcase .lca-product-card__featured-metric strong {
		font-size: clamp(70px, 21vw, 86px);
	}

	.lca-locations__content {
		width: auto;
		margin: 20px 14px 148px;
		padding: 25px 18px 27px;
	}

	.lca-locations__content h2 {
		font-size: clamp(39px, 11.5vw, 47px);
		line-height: 1.05;
		white-space: nowrap;
	}

	.lca-locations__content .lca-locations__lead {
		margin-top: 12px;
		padding-bottom: 9px;
		font-size: clamp(16px, 4.6vw, 18px);
		line-height: 1.42;
	}

	.lca-locations__content > p:not(.lca-locations__eyebrow):not(.lca-locations__lead) {
		margin-top: 12px;
		font-size: clamp(14px, 4.1vw, 16px);
		line-height: 1.58;
	}

	.lca-locations__actions {
		right: 14px;
		bottom: 16px;
		left: 14px;
	}

	.lca-locations__action {
		min-height: 57px;
		padding-inline: 16px;
		font-size: 14px;
	}
}

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

	.lca-product-card__image,
	.lca-button,
	.lca-slider__item,
	.lca-blog-card,
	.lca-blog-card__image img,
	.lca-blog-featured__image > img,
	.lca-blog-archive-card,
	.lca-blog-archive-card__image > img,
	.lca-blog__progress span,
	.lca-hero__slide,
	.lca-hero__arrow,
	.lca-hero__dots button,
	.lca-side-cart__panel,
	.lca-side-cart__backdrop,
	.lca-side-cart__item,
	.lca-side-cart__shipping-fill,
	.lca-side-cart__truck {
		transition: none;
	}

	html.lca-reveal-enabled .lca-scroll-reveal,
	html.lca-reveal-enabled .lca-scroll-reveal.is-revealed {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.lca-purchase-form__submit.is-loading::after,
	.lca-side-cart__loader-spinner,
	.lca-header-cart__count.is-pending {
		animation: none;
	}
}
