:root {
	--lz-ink: #111827;
	--lz-ink-soft: #4b5563;
	--lz-surface: #ffffff;
	--lz-surface-soft: #f4f5f7;
	--lz-surface-warm: #f1efe9;
	--lz-line: rgba(17, 24, 39, 0.14);
	--lz-accent: #ff5a36;
	--lz-accent-dark: #d83b1d;
	--lz-dark: #111b1a;
	--lz-dark-soft: #1b2826;
	--lz-green: #a6f4c5;
	--lz-container: 1240px;
	--lz-gutter: clamp(20px, 4vw, 52px);
	--lz-section: clamp(76px, 10vw, 144px);
	--lz-radius: 4px;
	--lz-shadow: 0 24px 70px rgba(22, 28, 27, 0.12);
	--lz-transition: 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	color: var(--lz-ink);
	background: var(--lz-surface);
	font-family: Inter, "SF Pro Display", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.is-nav-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: inherit;
	font-weight: 570;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(3rem, 7.2vw, 7rem);
}

h2 {
	font-size: clamp(2.3rem, 4.6vw, 4.75rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}

::selection {
	color: #fff;
	background: var(--lz-accent);
}

.screen-reader-text,
.lz-skip-link {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lz-skip-link:focus {
	z-index: 99999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	color: #fff;
	background: var(--lz-dark);
}

.lz-container {
	width: min(100% - (var(--lz-gutter) * 2), var(--lz-container));
	margin-inline: auto;
}

.lz-section {
	position: relative;
	padding-block: var(--lz-section);
}

.lz-eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 22px;
	color: var(--lz-accent);
	font-size: 0.75rem;
	font-weight: 720;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.lz-eyebrow::before {
	width: 30px;
	height: 1px;
	content: "";
	background: currentColor;
}

.lz-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.lz-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-height: 52px;
	padding: 13px 20px 13px 24px;
	color: #fff;
	background: var(--lz-accent);
	border: 1px solid var(--lz-accent);
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 680;
	line-height: 1;
	transition:
		color var(--lz-transition),
		background var(--lz-transition),
		border-color var(--lz-transition),
		transform var(--lz-transition);
}

.lz-button:hover,
.lz-button:focus-visible {
	color: #fff;
	background: var(--lz-accent-dark);
	border-color: var(--lz-accent-dark);
	transform: translateY(-2px);
}

.lz-button svg {
	flex: 0 0 auto;
	transition: transform var(--lz-transition);
}

.lz-button:hover svg,
.lz-button:focus-visible svg {
	transform: translateX(4px);
}

.lz-button--small {
	min-height: 42px;
	padding: 10px 15px 10px 18px;
	gap: 16px;
	font-size: 0.78rem;
}

.lz-button--light {
	color: var(--lz-dark);
	background: #fff;
	border-color: #fff;
}

.lz-button--light:hover,
.lz-button--light:focus-visible {
	color: var(--lz-dark);
	background: var(--lz-green);
	border-color: var(--lz-green);
}

.lz-button--ghost {
	color: currentColor;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.36);
}

.lz-button--ghost:hover,
.lz-button--ghost:focus-visible {
	color: var(--lz-dark);
	background: #fff;
	border-color: #fff;
}

.lz-button--outline {
	color: var(--lz-ink);
	background: transparent;
	border-color: var(--lz-ink);
}

.lz-button--outline:hover,
.lz-button--outline:focus-visible {
	color: #fff;
	background: var(--lz-ink);
	border-color: var(--lz-ink);
}

.lz-notice {
	padding: 7px 0;
	color: rgba(255, 255, 255, 0.86);
	background: var(--lz-dark);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.lz-header {
	position: sticky;
	z-index: 100;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(16px);
	transition:
		border-color var(--lz-transition),
		box-shadow var(--lz-transition);
}

.admin-bar .lz-header {
	top: 32px;
}

.lz-header.is-scrolled {
	border-color: var(--lz-line);
	box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.lz-header__inner {
	display: flex;
	align-items: center;
	min-height: 78px;
}

.lz-brand {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
	font-weight: 760;
	letter-spacing: -0.025em;
	line-height: 1;
}

.lz-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #fff;
	background: var(--lz-accent);
	font-size: 1rem;
	font-weight: 800;
	border-radius: 50%;
}

.lz-brand__name {
	font-size: 1.08rem;
}

.lz-brand__logo {
	display: block;
	width: auto;
	max-width: 190px;
	height: 42px;
	object-fit: contain;
}

.lz-nav {
	margin-left: auto;
}

.lz-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 42px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lz-nav__list li {
	position: relative;
	margin: 0;
}

.lz-nav__list a {
	display: block;
	padding: 27px 0;
	color: #28302f;
	font-size: 0.82rem;
	font-weight: 640;
	line-height: 1.2;
}

.lz-nav__list > li > a::after {
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
	height: 1px;
	content: "";
	background: var(--lz-accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--lz-transition);
}

.lz-nav__list > li:hover > a::after,
.lz-nav__list > .current-menu-item > a::after,
.lz-nav__list > .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.lz-nav__list .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -18px;
	display: grid;
	gap: 3px;
	width: 210px;
	margin: 0;
	padding: 10px;
	visibility: hidden;
	list-style: none;
	background: #fff;
	border: 1px solid var(--lz-line);
	border-radius: var(--lz-radius);
	box-shadow: var(--lz-shadow);
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity var(--lz-transition),
		transform var(--lz-transition),
		visibility var(--lz-transition);
}

.lz-nav__list li:hover > .sub-menu,
.lz-nav__list li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.lz-nav__list .sub-menu a {
	padding: 10px 12px;
	border-radius: 2px;
}

.lz-nav__list .sub-menu a:hover {
	background: var(--lz-surface-soft);
}

.lz-header__cta {
	margin-left: clamp(22px, 3vw, 42px);
}

.lz-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	cursor: pointer;
	background: none;
	border: 0;
	border-radius: 50%;
}

.lz-nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 23px;
	height: 1px;
	margin: 5px auto;
	background: var(--lz-ink);
	transition:
		transform var(--lz-transition),
		opacity var(--lz-transition);
}

.lz-hero {
	display: flex;
	overflow: hidden;
	align-items: center;
	min-height: clamp(620px, calc(100vh - 78px), 900px);
	padding-block: clamp(90px, 12vw, 170px);
	color: #fff;
	background:
		linear-gradient(90deg, rgba(9, 20, 18, 0.94) 0%, rgba(9, 20, 18, 0.78) 48%, rgba(9, 20, 18, 0.38) 100%),
		var(--lz-hero-image, linear-gradient(135deg, #112421 0%, #253e38 100%));
	background-position: center;
	background-size: cover;
}

.lz-hero::after {
	position: absolute;
	right: -8%;
	bottom: -40%;
	width: 48vw;
	height: 48vw;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.lz-hero--light {
	color: var(--lz-ink);
	background:
		linear-gradient(90deg, rgba(245, 245, 241, 0.96) 0%, rgba(245, 245, 241, 0.8) 52%, rgba(245, 245, 241, 0.35) 100%),
		var(--lz-hero-image, linear-gradient(135deg, #f0ede5 0%, #dbe4df 100%));
	background-position: center;
	background-size: cover;
}

.lz-hero__ambient {
	position: absolute;
	top: -16%;
	left: 60%;
	width: 420px;
	height: 420px;
	background: rgba(166, 244, 197, 0.14);
	border-radius: 50%;
	filter: blur(90px);
}

.lz-hero__inner {
	position: relative;
	z-index: 1;
}

.lz-hero__content {
	max-width: 920px;
}

.lz-hero--center .lz-hero__content {
	margin-inline: auto;
	text-align: center;
}

.lz-hero--center .lz-eyebrow,
.lz-hero--center .lz-button-row {
	justify-content: center;
}

.lz-hero h1 {
	max-width: 12ch;
	margin-bottom: 28px;
	text-wrap: balance;
}

.lz-hero--center h1 {
	margin-inline: auto;
}

.lz-hero__description {
	max-width: 650px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(1rem, 1.5vw, 1.24rem);
	line-height: 1.7;
}

.lz-hero--light .lz-hero__description {
	color: var(--lz-ink-soft);
}

.lz-hero--light .lz-button--ghost {
	color: var(--lz-ink);
	border-color: rgba(17, 24, 39, 0.35);
}

.lz-hero--light .lz-button--ghost:hover {
	color: #fff;
	background: var(--lz-ink);
}

.lz-hero--center .lz-hero__description {
	margin-inline: auto;
}

.lz-hero__index {
	position: absolute;
	right: 0;
	bottom: -110px;
	display: flex;
	gap: 28px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.64rem;
	font-weight: 650;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lz-hero--light .lz-hero__index {
	color: rgba(17, 24, 39, 0.42);
}

.lz-image-text {
	background: var(--lz-surface-warm);
}

.lz-image-text__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
	gap: clamp(52px, 8vw, 118px);
	align-items: center;
}

.lz-image-text--right .lz-image-text__media {
	order: 2;
}

.lz-image-text__media {
	position: relative;
	min-height: 500px;
}

.lz-image-text__media::after {
	position: absolute;
	z-index: 2;
	right: -20px;
	bottom: -20px;
	width: 42%;
	height: 42%;
	content: "";
	border-right: 1px solid var(--lz-accent);
	border-bottom: 1px solid var(--lz-accent);
	pointer-events: none;
}

.lz-image-text__media > img {
	display: block;
	width: 100%;
	min-height: 500px;
	object-fit: cover;
	box-shadow: var(--lz-shadow);
}

.lz-art-placeholder {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	background:
		linear-gradient(135deg, transparent 49.8%, rgba(255, 255, 255, 0.08) 50%),
		linear-gradient(125deg, #273b36, #13211f);
	box-shadow: var(--lz-shadow);
}

.lz-art-placeholder span {
	position: absolute;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.lz-art-placeholder span:nth-child(1) {
	top: 11%;
	left: 17%;
	width: 63%;
	aspect-ratio: 1;
}

.lz-art-placeholder span:nth-child(2) {
	right: 6%;
	bottom: 5%;
	width: 44%;
	aspect-ratio: 1;
	background: rgba(166, 244, 197, 0.12);
}

.lz-art-placeholder span:nth-child(3) {
	top: 34%;
	left: 36%;
	width: 20%;
	aspect-ratio: 1;
	background: var(--lz-accent);
	border: 0;
}

.lz-art-placeholder small {
	position: absolute;
	bottom: 24px;
	left: 26px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.65rem;
	letter-spacing: 0.17em;
}

.lz-image-text__content h2 {
	max-width: 10ch;
	margin-bottom: 28px;
}

.lz-rich-text {
	max-width: 600px;
	color: var(--lz-ink-soft);
	font-size: 1.04rem;
	line-height: 1.85;
}

.lz-rich-text p:last-child {
	margin-bottom: 0;
}

.lz-image-text__content .lz-button {
	margin-top: 34px;
}

.lz-products {
	background: #fff;
}

.lz-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.55fr);
	gap: 48px;
	align-items: end;
	margin-bottom: clamp(48px, 7vw, 82px);
}

.lz-section-heading h2 {
	max-width: 13ch;
	margin-bottom: 0;
	text-wrap: balance;
}

.lz-section-heading > p {
	max-width: 500px;
	margin-bottom: 5px;
	color: var(--lz-ink-soft);
}

.lz-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--lz-line);
	border: 1px solid var(--lz-line);
}

.lz-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: #fff;
}

.lz-product-card__media {
	overflow: hidden;
	aspect-ratio: 1.25;
	background: #e9ecea;
}

.lz-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.lz-product-card:hover .lz-product-card__media img {
	transform: scale(1.04);
}

.lz-product-card__placeholder {
	position: relative;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(145deg, transparent 50%, rgba(17, 27, 26, 0.08) 50.2%),
		linear-gradient(135deg, #e7ebe7, #ccd8d2);
}

.lz-product-card__placeholder::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42%;
	aspect-ratio: 1;
	content: "";
	border: 1px solid rgba(17, 27, 26, 0.25);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.lz-product-card__placeholder span {
	position: absolute;
	right: 22px;
	bottom: 16px;
	color: rgba(17, 27, 26, 0.42);
	font-size: 2rem;
	font-weight: 260;
}

.lz-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 3vw, 38px);
}

.lz-product-card__tag {
	margin-bottom: 24px;
	color: var(--lz-accent);
	font-size: 0.68rem;
	font-weight: 720;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.lz-product-card h3 {
	margin-bottom: 14px;
}

.lz-product-card__body > p:not(.lz-product-card__tag) {
	margin-bottom: 28px;
	color: var(--lz-ink-soft);
	font-size: 0.92rem;
}

.lz-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: auto;
	padding-top: 17px;
	font-size: 0.78rem;
	font-weight: 700;
	border-top: 1px solid var(--lz-line);
}

.lz-text-link span {
	color: var(--lz-accent);
	font-size: 1.05rem;
	transition: transform var(--lz-transition);
}

.lz-text-link:hover span {
	transform: translate(3px, -3px);
}

.lz-advantages {
	overflow: hidden;
	color: #fff;
	background: var(--lz-dark);
}

.lz-advantages::before {
	position: absolute;
	top: -35%;
	right: -12%;
	width: 55vw;
	height: 55vw;
	content: "";
	border: 1px solid rgba(166, 244, 197, 0.12);
	border-radius: 50%;
}

.lz-section-heading--light > p {
	color: rgba(255, 255, 255, 0.58);
}

.lz-advantage-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lz-advantage {
	display: flex;
	min-height: 280px;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(26px, 3.5vw, 44px);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: background var(--lz-transition);
}

.lz-advantage:hover {
	background: var(--lz-dark-soft);
}

.lz-advantage__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 60px;
	color: var(--lz-green);
	border: 1px solid rgba(166, 244, 197, 0.4);
	border-radius: 50%;
	font-size: 0.7rem;
	font-weight: 720;
	letter-spacing: 0.08em;
}

.lz-advantage h3 {
	margin-bottom: 14px;
}

.lz-advantage p {
	max-width: 330px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.9rem;
}

.lz-faq {
	background: var(--lz-surface-soft);
}

.lz-faq__grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.65fr) minmax(450px, 1fr);
	gap: clamp(58px, 9vw, 130px);
	align-items: start;
}

.lz-faq__heading {
	position: sticky;
	top: 130px;
}

.lz-faq__heading h2 {
	max-width: 9ch;
	margin-bottom: 26px;
}

.lz-faq__heading > p:last-child {
	max-width: 410px;
	color: var(--lz-ink-soft);
}

.lz-accordion {
	border-top: 1px solid var(--lz-line);
}

.lz-accordion__item {
	border-bottom: 1px solid var(--lz-line);
}

.lz-accordion__item h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 650;
	letter-spacing: -0.015em;
	line-height: 1.45;
}

.lz-accordion__item button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 27px 0;
	color: var(--lz-ink);
	text-align: left;
	cursor: pointer;
	background: none;
	border: 0;
}

.lz-accordion__item button i {
	position: relative;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border: 1px solid var(--lz-line);
	border-radius: 50%;
}

.lz-accordion__item button i::before,
.lz-accordion__item button i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 1px;
	content: "";
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform var(--lz-transition);
}

.lz-accordion__item button i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.lz-accordion__item button[aria-expanded="true"] i {
	color: #fff;
	background: var(--lz-accent);
	border-color: var(--lz-accent);
}

.lz-accordion__item button[aria-expanded="true"] i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.lz-accordion__answer {
	padding: 0 56px 27px 0;
	color: var(--lz-ink-soft);
}

.lz-accordion__answer p {
	max-width: 680px;
	margin-bottom: 0;
}

.lz-cta {
	padding-block: clamp(60px, 8vw, 110px);
	color: #fff;
	background:
		linear-gradient(rgba(17, 27, 26, 0.78), rgba(17, 27, 26, 0.78)),
		var(--lz-cta-image, linear-gradient(135deg, #192b27, #0e1715));
	background-position: center;
	background-size: cover;
}

.lz-cta__panel {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px;
	padding: clamp(34px, 6vw, 80px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(17, 27, 26, 0.34);
	backdrop-filter: blur(8px);
}

.lz-cta__content {
	max-width: 800px;
}

.lz-cta h2 {
	max-width: 12ch;
	margin-bottom: 24px;
}

.lz-cta__content > p:last-child {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.65);
}

.lz-cta .lz-button-row {
	flex-shrink: 0;
	margin-top: 0;
}

.lz-footer {
	padding-top: clamp(70px, 8vw, 108px);
	color: rgba(255, 255, 255, 0.66);
	background: #0b1211;
}

.lz-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 0.6fr 0.8fr;
	gap: clamp(50px, 8vw, 120px);
	padding-bottom: 70px;
}

.lz-brand--footer {
	margin-bottom: 24px;
	color: #fff;
}

.lz-footer__brand > p {
	max-width: 430px;
	margin-bottom: 0;
	font-size: 0.93rem;
}

.lz-footer h2 {
	margin-bottom: 24px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 720;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lz-footer__menu,
.lz-footer__contact ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lz-footer a {
	transition: color var(--lz-transition);
}

.lz-footer a:hover {
	color: var(--lz-green);
}

.lz-footer__social {
	display: flex;
	gap: 18px;
	margin-top: 24px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 680;
	text-transform: uppercase;
}

.lz-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 24px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.7rem;
	letter-spacing: 0.04em;
}

.lz-footer__bottom p {
	margin: 0;
}

.lz-entry,
.lz-listing,
.lz-empty-state {
	padding-block: clamp(70px, 9vw, 130px);
}

.lz-entry {
	max-width: 920px;
}

.lz-entry__header {
	margin-bottom: 48px;
	text-align: center;
}

.lz-entry__header h1 {
	margin-bottom: 0;
	font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.lz-entry__meta,
.lz-post-card__meta {
	margin-bottom: 16px;
	color: var(--lz-accent);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lz-entry__featured {
	overflow: hidden;
	margin-bottom: 50px;
}

.lz-entry__featured img {
	display: block;
	width: 100%;
}

.lz-entry__content {
	color: #293231;
	font-size: 1.05rem;
}

.lz-entry__content > * {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.lz-entry__content > .alignwide {
	max-width: 1100px;
}

.lz-entry__content > .alignfull {
	max-width: none;
}

.lz-entry__content h2 {
	margin-top: 2em;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.lz-entry__content h3 {
	margin-top: 1.8em;
}

.lz-entry__content a {
	color: var(--lz-accent-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lz-entry__content blockquote {
	margin-top: 2em;
	margin-bottom: 2em;
	padding-left: 24px;
	color: var(--lz-ink);
	border-left: 3px solid var(--lz-accent);
	font-size: 1.25rem;
}

.lz-listing__header {
	max-width: 760px;
	margin-bottom: 60px;
}

.lz-listing__header h1 {
	margin-bottom: 20px;
	font-size: clamp(2.6rem, 6vw, 5rem);
}

.lz-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.lz-post-card {
	background: var(--lz-surface-soft);
}

.lz-post-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.35;
}

.lz-post-card__media img,
.lz-media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lz-media-placeholder {
	background: linear-gradient(135deg, #dfe5e1, #bdcbc4);
}

.lz-post-card__body {
	padding: 26px;
}

.lz-post-card h2 {
	margin-bottom: 14px;
	font-size: 1.45rem;
}

.lz-post-card__body > p:last-child {
	margin-bottom: 0;
	color: var(--lz-ink-soft);
	font-size: 0.9rem;
}

.navigation.pagination {
	margin-top: 60px;
}

.nav-links {
	display: flex;
	gap: 8px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--lz-line);
}

.page-numbers.current {
	color: #fff;
	background: var(--lz-dark);
}

.lz-empty-state {
	min-height: 65vh;
	text-align: center;
}

.lz-empty-state h1 {
	margin-bottom: 20px;
	font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.lz-empty-state .lz-eyebrow {
	justify-content: center;
}

.lz-empty-state .lz-button {
	margin-top: 24px;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--lz-delay, 0ms),
		transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--lz-delay, 0ms);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1050px) {
	.lz-header__cta {
		display: none;
	}

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

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

	.lz-cta__panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.lz-footer__top {
		grid-template-columns: 1.1fr 0.6fr 0.8fr;
		gap: 42px;
	}
}

@media (max-width: 860px) {
	.admin-bar .lz-header {
		top: 46px;
	}

	.lz-header__inner {
		min-height: 68px;
	}

	.lz-nav-toggle {
		z-index: 2;
		display: block;
		margin-left: auto;
	}

	.lz-nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
		transform: translateY(6px) rotate(45deg);
	}

	.lz-nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
		opacity: 0;
	}

	.lz-nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.lz-nav {
		position: fixed;
		z-index: 1;
		top: 0;
		right: 0;
		display: flex;
		width: min(86vw, 420px);
		height: 100vh;
		align-items: center;
		margin: 0;
		padding: 90px 36px 48px;
		visibility: hidden;
		background: #fff;
		box-shadow: -20px 0 60px rgba(17, 24, 39, 0.14);
		opacity: 0;
		transform: translateX(100%);
		transition:
			opacity var(--lz-transition),
			transform var(--lz-transition),
			visibility var(--lz-transition);
	}

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

	.lz-nav__list {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.lz-nav__list a {
		padding: 15px 0;
		font-size: 1.16rem;
		border-bottom: 1px solid var(--lz-line);
	}

	.lz-nav__list > li > a::after {
		display: none;
	}

	.lz-nav__list .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 0 18px;
		visibility: visible;
		background: none;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.lz-nav__list .sub-menu a {
		font-size: 0.92rem;
	}

	.lz-hero {
		min-height: 650px;
	}

	.lz-image-text__grid,
	.lz-faq__grid {
		grid-template-columns: 1fr;
	}

	.lz-image-text--right .lz-image-text__media {
		order: 0;
	}

	.lz-image-text__content h2,
	.lz-faq__heading h2 {
		max-width: 13ch;
	}

	.lz-faq__heading {
		position: static;
	}

	.lz-footer__top {
		grid-template-columns: 1fr 1fr;
	}

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

@media (max-width: 650px) {
	:root {
		--lz-gutter: 20px;
		--lz-section: 76px;
	}

	.admin-bar .lz-header {
		top: 0;
	}

	h1 {
		font-size: clamp(2.8rem, 14vw, 4.5rem);
	}

	h2 {
		font-size: clamp(2.15rem, 10vw, 3.2rem);
	}

	.lz-button-row,
	.lz-button {
		width: 100%;
	}

	.lz-header__inner {
		min-height: 64px;
	}

	.lz-brand__logo {
		max-width: 150px;
		height: 36px;
	}

	.lz-hero {
		min-height: 620px;
		padding-block: 90px;
		background:
			linear-gradient(90deg, rgba(9, 20, 18, 0.94), rgba(9, 20, 18, 0.68)),
			var(--lz-hero-image, linear-gradient(135deg, #112421 0%, #253e38 100%));
	}

	.lz-hero--light {
		background:
			linear-gradient(90deg, rgba(245, 245, 241, 0.96), rgba(245, 245, 241, 0.76)),
			var(--lz-hero-image, linear-gradient(135deg, #f0ede5 0%, #dbe4df 100%));
	}

	.lz-hero__index {
		display: none;
	}

	.lz-image-text__grid {
		gap: 50px;
	}

	.lz-image-text__media,
	.lz-image-text__media > img,
	.lz-art-placeholder {
		min-height: 390px;
	}

	.lz-image-text__media::after {
		right: -9px;
		bottom: -9px;
	}

	.lz-section-heading {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lz-product-grid,
	.lz-advantage-grid,
	.lz-post-grid {
		grid-template-columns: 1fr;
	}

	.lz-advantage {
		min-height: 240px;
	}

	.lz-cta__panel {
		gap: 38px;
		padding: 30px 24px;
	}

	.lz-footer__top {
		grid-template-columns: 1fr;
	}

	.lz-footer__brand {
		grid-column: auto;
	}

	.lz-footer__bottom {
		flex-direction: column;
		gap: 8px;
	}
}

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

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

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

