:root {
	--lf-paper: #fff;
	--lf-ink: #111;
	--lf-soft: #555;
	--lf-muted: #777;
	--lf-line: #e7e3dd;
	--lf-wash: #f8f7f4;
	--lf-accent: #8aa899;
	--lf-header-h: 68px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lf-paper);
	color: var(--lf-ink);
	font-family: "Helvetica Neue", Arial, sans-serif;
	line-height: 1.45;
}

.lf-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: #fff;
	pointer-events: none;
	overflow: hidden;
	transition: opacity 560ms ease, transform 560ms ease, visibility 0ms linear 560ms;
}

.lf-loader-mark {
	position: relative;
	z-index: 1;
	width: clamp(122px, 12vw, 172px);
	height: auto;
	opacity: 0;
	filter: blur(2px);
	transform: translateY(6px) scale(0.985);
	mix-blend-mode: multiply;
	animation:
		lf-loader-mark 760ms cubic-bezier(0.19, 1, 0.22, 1) 80ms forwards,
		lf-loader-breathe 1900ms ease-in-out 900ms infinite alternate;
}

.lf-loader.is-done {
	opacity: 0;
	transform: translateY(-6px);
	visibility: hidden;
}

@keyframes lf-loader-mark {
	0% {
		opacity: 0;
		filter: blur(2px);
		transform: translateY(6px) scale(0.98);
	}

	100% {
		opacity: 0.86;
		filter: blur(0);
		transform: translateY(0) scale(1);
	}
}

@keyframes lf-loader-breathe {
	from {
		opacity: 0.62;
		transform: translateY(0) scale(1);
	}

	to {
		opacity: 0.92;
		transform: translateY(0) scale(1.01);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lf-loader,
	.lf-loader-mark {
		animation: none;
		transition: opacity 260ms ease, visibility 0ms linear 260ms;
	}

	.lf-loader-mark {
		opacity: 0.86;
		filter: none;
		transform: none;
	}
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
select {
	font: inherit;
	color: inherit;
}

button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.lf-shell {
	width: min(100% - 56px, 1720px);
	margin: 0 auto;
}

.lf-topbar {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	height: var(--lf-header-h);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.34);
	color: white;
	transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.lf-topbar.is-light,
.woocommerce .lf-topbar,
body.woocommerce-page .lf-topbar,
body.woocommerce-cart .lf-topbar,
body.woocommerce-checkout .lf-topbar,
body.page:not(.home) .lf-topbar,
body.single-product .lf-topbar {
	color: var(--lf-ink);
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--lf-line);
	backdrop-filter: blur(20px);
}

body.lf-menu-is-open,
body.lf-cart-is-open {
	overflow: hidden;
}

.lf-icon-link,
.lf-header-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	min-width: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lf-icon-link {
	justify-self: start;
}

.lf-header-actions {
	justify-content: flex-end;
}

.lf-wordmark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 25px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.lf-wordmark img {
	width: clamp(178px, 18vw, 252px);
	height: auto;
	max-height: 30px;
	object-fit: contain;
	transition: filter 220ms ease, opacity 220ms ease;
}

.lf-topbar:not(.is-light) .lf-wordmark img {
	filter: invert(1);
}

.lf-menu-panel .lf-wordmark img {
	filter: none;
}

.lf-menu-icon,
.lf-bag {
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.lf-menu-icon::before,
.lf-menu-icon::after {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	height: 1px;
	background: currentColor;
}

.lf-menu-icon::before {
	top: 6px;
}

.lf-menu-icon::after {
	top: 12px;
}

.lf-bag {
	display: inline-block;
	border: 1px solid currentColor;
	border-radius: 1px;
}

.lf-bag::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 5px;
	width: 7px;
	height: 7px;
	border: 1px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.lf-cart-count {
	position: absolute;
	right: -11px;
	top: -12px;
	z-index: 2;
	min-width: 18px;
	height: 18px;
	display: none;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--lf-ink);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	visibility: hidden;
}

body.lf-cart-is-verified .lf-cart-count.is-visible {
	display: grid;
	visibility: visible;
}

.lf-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.98);
	color: var(--lf-ink);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 260ms ease, visibility 0ms linear 260ms;
}

.lf-menu-panel.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0ms;
}

.lf-menu-panel-inner {
	min-height: 100%;
	display: grid;
	grid-template-rows: var(--lf-header-h) auto 1fr;
	background: white;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.lf-menu-panel-head {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 34px;
	border-bottom: 1px solid var(--lf-line);
}

.lf-menu-panel-head .lf-wordmark {
	grid-column: 2;
}

.lf-menu-close {
	justify-self: end;
	position: relative;
	width: 34px;
	height: 34px;
	border: 1px solid transparent;
}

.lf-menu-close::before,
.lf-menu-close::after {
	content: "";
	position: absolute;
	top: 16px;
	left: 8px;
	width: 18px;
	height: 1px;
	background: currentColor;
}

.lf-menu-close::before {
	transform: rotate(45deg);
}

.lf-menu-close::after {
	transform: rotate(-45deg);
}

.lf-menu-quick {
	display: none;
	gap: 10px;
	padding: 16px 20px 14px;
	border-bottom: 1px solid var(--lf-line);
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lf-menu-quick::-webkit-scrollbar {
	display: none;
}

.lf-menu-quick a {
	flex: 0 0 auto;
	min-width: max-content;
	padding: 11px 14px;
	border: 1px solid var(--lf-line);
	color: var(--lf-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	scroll-snap-align: start;
}

.lf-menu-grid {
	display: grid;
	grid-template-columns: minmax(220px, 0.68fr) minmax(420px, 1.32fr) minmax(320px, 0.88fr);
	gap: clamp(36px, 5vw, 86px);
	align-items: start;
	padding: clamp(56px, 7vw, 104px) clamp(34px, 6vw, 96px);
}

.lf-menu-primary,
.lf-menu-columns nav,
.lf-menu-feature {
	min-width: 0;
}

.lf-menu-primary,
.lf-menu-columns nav {
	display: grid;
	align-content: start;
	gap: 15px;
}

.lf-menu-primary a {
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: clamp(34px, 4vw, 62px);
	line-height: 0.98;
	letter-spacing: 0;
}

.lf-menu-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(26px, 3vw, 48px);
}

.lf-menu-columns h2 {
	margin: 0 0 18px;
	color: var(--lf-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lf-menu-columns a {
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid rgba(231, 227, 221, 0.72);
	color: var(--lf-ink);
	font-size: 14px;
}

.lf-menu-primary a,
.lf-menu-columns a,
.lf-menu-feature a {
	transition: opacity 180ms ease;
}

.lf-menu-primary a:hover,
.lf-menu-columns a:hover,
.lf-menu-feature a:hover {
	opacity: 0.58;
}

.lf-menu-feature img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: var(--lf-wash);
}

.lf-menu-feature p {
	margin: 24px 0 0;
	color: var(--lf-soft);
	font-size: 14px;
}

.lf-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 96;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 240ms ease, visibility 0ms linear 240ms;
}

.lf-cart-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0ms;
}

.lf-cart-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 18, 0.28);
}

.lf-cart-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	grid-template-rows: var(--lf-header-h) 1fr auto;
	width: min(100vw, 430px);
	height: 100%;
	background: white;
	color: var(--lf-ink);
	box-shadow: -24px 0 52px rgba(17, 17, 17, 0.12);
	transform: translateX(100%);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	outline: none;
}

.lf-cart-drawer.is-open .lf-cart-drawer-panel {
	transform: translateX(0);
}

.lf-cart-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 22px;
	border-bottom: 1px solid var(--lf-line);
}

.lf-cart-drawer-head p,
.lf-cart-drawer-note span {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lf-cart-drawer-body {
	min-height: 0;
	overflow-y: auto;
	padding: 22px;
	-webkit-overflow-scrolling: touch;
}

.lf-cart-drawer-body .woocommerce-mini-cart {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lf-cart-drawer-body .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 16px;
	min-height: 108px;
	padding: 0 28px 18px 0;
	border-bottom: 1px solid var(--lf-line);
}

.lf-cart-drawer-body .woocommerce-mini-cart-item img {
	width: 86px;
	height: 86px;
	object-fit: contain;
	background: white;
}

.lf-cart-drawer-body .woocommerce-mini-cart-item a:not(.remove) {
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 20px;
	line-height: 1.08;
}

.lf-cart-drawer-body .woocommerce-mini-cart-item .quantity {
	display: block;
	margin-top: 8px;
	color: var(--lf-muted);
	font-size: 12px;
}

.lf-cart-drawer-body a.remove {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid var(--lf-line);
	color: var(--lf-muted) !important;
	font-size: 18px;
	line-height: 1;
}

.lf-cart-drawer-body .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 24px 0 16px;
	padding-top: 18px;
	border-top: 1px solid var(--lf-line);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lf-cart-drawer-body .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 10px;
	margin: 0;
}

.lf-cart-drawer-body .woocommerce-mini-cart__buttons .button {
	display: grid;
	place-items: center;
	min-height: 52px;
	border: 1px solid var(--lf-ink);
	background: var(--lf-ink);
	color: white;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.lf-cart-drawer-body .woocommerce-mini-cart__buttons .button:not(.checkout) {
	background: white;
	color: var(--lf-ink);
}

.lf-cart-drawer-body .woocommerce-mini-cart__empty-message {
	margin: 32px 0;
	color: var(--lf-muted);
	font-size: 14px;
	text-align: center;
}

.lf-cart-drawer-note {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 17px 22px;
	border-top: 1px solid var(--lf-line);
	color: var(--lf-muted);
}

.lf-hero {
	position: relative;
	min-height: 680px;
	height: 100svh;
	overflow: hidden;
	color: white;
	background: #f4f3ef;
	isolation: isolate;
}

@supports (height: 100dvh) {
	.lf-hero {
		height: 100dvh;
	}
}

.lf-hero-sticky {
	position: relative;
	top: 0;
	height: 100%;
	min-height: 0;
	display: grid;
	place-items: end center;
	isolation: isolate;
}

.lf-hero-fallback,
.lf-hero-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.9) contrast(0.96) brightness(0.9);
}

.lf-hero-fallback {
	z-index: -2;
}

.lf-hero-media {
	z-index: -1;
}

.lf-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 34%, rgba(0, 0, 0, 0.1) 100%),
		linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 22%);
	pointer-events: none;
}

.lf-hero-copy {
	position: relative;
	z-index: 3;
	width: min(920px, calc(100% - 48px));
	padding: 0 0 clamp(58px, 10vh, 104px);
	text-align: center;
}

.lf-eyebrow,
.lf-eyebrow-dark {
	margin: 0 0 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.lf-eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.lf-eyebrow-dark {
	color: var(--lf-muted);
}

.lf-hero h1,
.lf-intro h2,
.lf-product-heading h1,
.lf-product-heading h2,
.lf-atelier-note h2 {
	margin: 0;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-weight: 400;
	letter-spacing: 0;
}

.lf-hero h1 {
	max-width: 900px;
	font-size: clamp(42px, 5.7vw, 92px);
	line-height: 0.98;
}

.lf-underlink {
	display: inline-flex;
	margin-top: 28px;
	padding-bottom: 6px;
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lf-underlink.dark {
	margin-top: 0;
	color: var(--lf-ink);
	border-bottom-color: var(--lf-accent);
}

.lf-intro,
.lf-product-heading {
	padding: clamp(74px, 8vw, 118px) 0 50px;
	text-align: center;
	background: white;
}

.lf-intro h2,
.lf-product-heading h1,
.lf-product-heading h2 {
	font-size: clamp(36px, 4.4vw, 76px);
	line-height: 1;
}

.lf-intro p,
.lf-product-heading p,
.lf-atelier-note p {
	width: min(680px, 100%);
	margin: 22px auto 0;
	color: var(--lf-soft);
	font-size: 15px;
}

.lf-editorial-pair {
	width: min(100% - 56px, 1720px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	padding: 0 0 118px;
	background: white;
}

.lf-editorial-card {
	display: grid;
	grid-template-rows: auto auto auto auto;
	gap: 22px;
	text-align: center;
}

.lf-editorial-card img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	background: var(--lf-wash);
}

.lf-editorial-card h3 {
	margin: 0;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0;
}

.lf-editorial-card p {
	width: min(520px, 100%);
	margin: -8px auto 0;
	color: var(--lf-soft);
	font-size: 14px;
}

.lf-editorial-card .lf-underlink {
	justify-self: center;
}

.lf-catalog {
	border-top: 1px solid var(--lf-line);
	background: white;
}

.lf-catalog-toolbar {
	position: sticky;
	top: var(--lf-header-h);
	z-index: 30;
	min-height: 62px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	border-bottom: 1px solid var(--lf-line);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(20px);
}

.lf-toolbar-side {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0 32px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lf-toolbar-side.align-end {
	justify-content: flex-end;
}

.lf-view-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lf-grid-button {
	width: 31px;
	height: 31px;
	display: grid;
	place-items: center;
	border: 1px solid transparent;
	opacity: 0.45;
}

.lf-mobile-grid-button {
	display: none;
}

.lf-grid-button.is-active {
	border-color: var(--lf-ink);
	opacity: 1;
}

.lf-grid-icon {
	display: grid;
	width: 18px;
	height: 18px;
	gap: 2px;
	--lf-grid-preview-cols: 3;
}

.lf-grid-icon.cols-1 {
	--lf-grid-preview-cols: 1;
}

.lf-grid-icon.cols-2 {
	--lf-grid-preview-cols: 2;
}

.lf-grid-icon.cols-4 {
	--lf-grid-preview-cols: 4;
}

.lf-grid-icon.cols-5 {
	--lf-grid-preview-cols: 5;
}

.lf-grid-icon::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(90deg, currentColor 1px, transparent 1px);
	background-size: calc(100% / var(--lf-grid-preview-cols)) calc(100% / var(--lf-grid-preview-cols));
	opacity: 0.9;
}

.lf-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
	border-top: 1px solid var(--lf-line);
	border-left: 1px solid var(--lf-line);
}

.lf-product-grid[data-cols="5"] .lf-product-media {
	min-height: clamp(250px, 23vw, 430px);
	padding: 28px;
}

.lf-product-grid[data-cols="5"] .lf-product-meta {
	min-height: 142px;
	padding: 22px 18px 30px;
}

.lf-product-grid[data-cols="5"] .lf-product-meta h3 {
	font-size: 20px;
}

.lf-empty-catalog {
	padding: 64px 0 96px;
	text-align: center;
	color: var(--lf-muted);
}

.lf-product-card {
	min-width: 0;
	border-right: 1px solid var(--lf-line);
	border-bottom: 1px solid var(--lf-line);
	text-align: center;
	background: white;
	cursor: pointer;
}

.lf-product-media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(360px, 36vw, 660px);
	padding: 44px;
	overflow: hidden;
	background: white;
	isolation: isolate;
}

.lf-product-media img {
	width: 100%;
	height: 100%;
	max-height: 560px;
	object-fit: contain;
	transition: transform 520ms ease, opacity 420ms ease;
}

.lf-product-main {
	position: relative;
	z-index: 1;
	mix-blend-mode: normal;
}

.lf-product-hover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	opacity: 0;
	filter: saturate(0.98) contrast(1.01);
	z-index: 1;
}

.lf-product-card:hover .lf-product-main {
	transform: scale(1.035);
}

.lf-product-card:hover .has-hover .lf-product-main {
	opacity: 0;
	transform: scale(1.012);
}

.lf-product-card:hover .has-hover .lf-product-hover {
	opacity: 1;
}

.lf-product-card:hover .ambient-hover .lf-product-main {
	opacity: 1;
	transform: scale(1.035);
	mix-blend-mode: normal;
	filter: saturate(1.02) contrast(1.02);
	z-index: 2;
}

.lf-badge {
	position: absolute;
	top: 22px;
	left: 24px;
	z-index: 2;
	padding: 8px 12px;
	background: #f1eee8;
	color: var(--lf-ink);
	font-size: 12px;
}

.lf-product-meta {
	min-height: 160px;
	display: grid;
	align-content: start;
	gap: 5px;
	padding: 26px 24px 34px;
}

.lf-swatches {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 12px;
}

.lf-swatch {
	position: relative;
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	border: 1px solid #d9d4ca;
	border-radius: 999px;
	background: var(--swatch, #eee);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
	transition: border-color 180ms ease, opacity 180ms ease, outline-color 180ms ease, transform 180ms ease;
}

.lf-swatch:hover,
.lf-swatch.is-active {
	border-color: var(--lf-ink);
	outline: 1px solid var(--lf-ink);
	outline-offset: 3px;
	opacity: 1;
	transform: translateY(-1px);
}

.lf-swatch span {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.lf-product-meta h3 {
	margin: 0;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0;
}

.lf-product-meta p {
	margin: 0;
	color: var(--lf-soft);
	font-size: 14px;
}

.lf-price {
	margin-top: 14px;
	font-size: 13px;
	letter-spacing: 0.06em;
}

.lf-details-link {
	justify-self: center;
	margin-top: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--lf-accent);
	color: var(--lf-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lf-catalog-cta {
	display: grid;
	place-items: center;
	padding: 58px 24px 72px;
	border-bottom: 1px solid var(--lf-line);
	background: white;
}

.lf-atelier-note {
	padding: 118px 0;
	text-align: center;
	background: white;
}

.lf-atelier-note h2 {
	font-size: clamp(42px, 5vw, 88px);
	line-height: 0.98;
}

.lf-footer {
	display: grid;
	grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.75fr);
	gap: clamp(32px, 5vw, 86px);
	align-items: end;
	border-top: 1px solid var(--lf-line);
	padding: clamp(64px, 7vw, 112px) clamp(24px, 5vw, 84px) 42px;
	background: white;
	color: var(--lf-muted);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lf-footer-brand {
	display: grid;
	justify-items: start;
	gap: 20px;
	max-width: 460px;
}

.lf-footer-mark {
	width: 68px;
	height: 68px;
	object-fit: contain;
	opacity: 0.9;
}

.lf-footer-wordmark {
	width: min(320px, 68vw);
	height: auto;
}

.lf-footer-brand p {
	max-width: 390px;
	margin: 0;
	color: var(--lf-soft);
	font-size: 14px;
	line-height: 1.65;
	letter-spacing: 0;
	text-transform: none;
}

.lf-footer-links,
.lf-footer-meta {
	display: grid;
	gap: 13px;
}

.lf-footer-links a {
	color: var(--lf-ink);
	font-weight: 700;
	letter-spacing: 0.14em;
}

.lf-footer-meta {
	justify-items: end;
	text-align: right;
}

.woocommerce-ordering select {
	border: 0;
	background: transparent;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.woocommerce-pagination {
	padding: 48px 0;
	text-align: center;
}

.lf-content {
	padding: 0 0 96px;
}

.lf-page-card {
	padding: 32px 0;
	border-bottom: 1px solid var(--lf-line);
}

.lf-page-card h2 {
	margin: 0 0 10px;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 34px;
	font-weight: 400;
}

.lf-single-product {
	padding-top: var(--lf-header-h);
	background: white;
}

.lf-breadcrumb {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 24px 34px;
	border-bottom: 1px solid var(--lf-line);
	color: var(--lf-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lf-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	min-height: calc(100vh - var(--lf-header-h));
	border-bottom: 1px solid var(--lf-line);
}

.lf-product-gallery {
	position: relative;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	border-right: 1px solid var(--lf-line);
	background: #fbfbfa;
}

.lf-gallery-index {
	position: sticky;
	top: calc(var(--lf-header-h) + 96px);
	z-index: 4;
	display: grid;
	align-self: start;
	justify-items: center;
	gap: 13px;
	padding-top: 110px;
	font-size: 11px;
	color: var(--lf-muted);
}

.lf-gallery-step {
	position: relative;
	display: grid;
	place-items: center;
	width: 28px;
	min-height: 30px;
	transition: color 180ms ease;
}

.lf-gallery-step::after {
	content: "";
	display: block;
	width: 1px;
	height: 0;
	margin-top: 6px;
	background: var(--lf-ink);
	transition: height 180ms ease;
}

.lf-gallery-step.is-active {
	color: var(--lf-ink);
}

.lf-gallery-step.is-active::after {
	height: 34px;
}

.lf-product-gallery-track {
	grid-column: 2;
	min-width: 0;
}

.lf-mobile-thumbs {
	display: none;
}

.lf-gallery-frame {
	min-height: calc(100svh - var(--lf-header-h));
	display: grid;
	place-items: center;
	margin: 0;
	padding: clamp(56px, 7vw, 96px) clamp(36px, 6vw, 86px);
	border-bottom: 1px solid var(--lf-line);
	background: #fbfbfa;
	scroll-margin-top: calc(var(--lf-header-h) + 18px);
}

.lf-gallery-frame img {
	width: 100%;
	max-height: min(760px, calc(100svh - var(--lf-header-h) - 150px));
	object-fit: contain;
}

.lf-gallery-frame.is-environment {
	background: white;
}

.lf-gallery-frame.is-detail {
	background: #f7f6f3;
	overflow: hidden;
}

.lf-gallery-frame.is-detail img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
}

.lf-product-summary {
	align-self: start;
	position: sticky;
	top: var(--lf-header-h);
	padding: clamp(46px, 7vw, 94px);
}

.lf-product-summary h1 {
	margin: 0;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: clamp(42px, 5vw, 78px);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0;
}

.lf-single-price {
	margin-top: 28px;
	font-size: 15px;
	letter-spacing: 0.06em;
}

.lf-product-summary .lf-swatches {
	justify-content: flex-start;
	gap: 12px;
	margin: 24px 0 0;
}

.lf-product-summary .lf-swatch {
	width: 18px;
	height: 18px;
}

.lf-product-short {
	margin-top: 28px;
	color: var(--lf-soft);
	font-size: 15px;
}

.lf-product-short p {
	margin: 0 0 14px;
}

.lf-promise-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 34px;
	background: var(--lf-line);
	border: 1px solid var(--lf-line);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.lf-promise-row span {
	display: grid;
	place-items: center;
	min-height: 54px;
	padding: 10px;
	background: white;
}

.lf-product-specs {
	margin: 28px 0 0;
	border-top: 1px solid var(--lf-line);
	border-bottom: 1px solid var(--lf-line);
}

.lf-product-specs div {
	display: grid;
	grid-template-columns: minmax(110px, 0.35fr) minmax(0, 0.65fr);
	gap: 24px;
	padding: 14px 0;
	border-bottom: 1px solid var(--lf-line);
}

.lf-product-specs div:last-child {
	border-bottom: 0;
}

.lf-product-specs dt,
.lf-product-specs dd {
	margin: 0;
}

.lf-product-specs dt {
	color: var(--lf-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lf-product-specs dd {
	color: var(--lf-ink);
	font-size: 13px;
	line-height: 1.35;
}

.lf-cart-panel {
	margin-top: 34px;
}

.lf-cart-panel form.cart {
	display: grid;
	gap: 16px;
}

.lf-cart-panel table.variations {
	width: 100%;
	border-collapse: collapse;
}

.lf-cart-panel table.variations th,
.lf-cart-panel table.variations td {
	display: block;
	padding: 0 0 12px;
	text-align: left;
}

.lf-cart-panel table.variations label,
.lf-cart-panel .quantity,
.lf-cart-panel .wc-pao-addon-name {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lf-cart-panel select,
.lf-cart-panel input,
.lf-cart-panel textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--lf-line);
	border-radius: 0;
	background: white;
	padding: 12px 14px;
	font-size: 14px;
}

.lf-cart-panel textarea {
	min-height: 96px;
	resize: vertical;
}

.lf-cart-panel .quantity input {
	max-width: 96px;
	text-align: center;
}

.lf-cart-panel .single_add_to_cart_button {
	width: 100%;
	min-height: 58px;
	border: 1px solid var(--lf-ink);
	background: var(--lf-ink) !important;
	color: white !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lf-product-note {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--lf-line);
	color: var(--lf-muted);
	font-size: 13px;
}

.lf-product-note p {
	margin: 0;
}

.lf-product-story {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 74px;
	padding: 118px max(34px, calc((100vw - 1320px) / 2));
	border-bottom: 1px solid var(--lf-line);
}

.lf-product-story h2 {
	margin: 0;
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: clamp(40px, 4.8vw, 78px);
	font-weight: 400;
	line-height: 0.98;
}

.lf-story-copy {
	color: var(--lf-soft);
	font-size: 16px;
}

.lf-story-copy p:first-child {
	margin-top: 0;
}

.lf-related-edit .lf-product-heading {
	padding-top: 86px;
}

.woocommerce-cart .lf-page-card,
.woocommerce-checkout .lf-page-card {
	padding: 0 0 42px;
	border-bottom: 0;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	width: 100%;
	border: 1px solid var(--lf-line);
	border-collapse: collapse;
	background: white;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	position: relative;
	margin: 0 0 30px;
	border: 1px solid var(--lf-line);
	background: #fbfbfa;
	color: var(--lf-soft);
	padding: 18px 22px 18px 54px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	left: 22px;
	top: 19px;
}

.woocommerce-message:focus,
.woocommerce-info:focus,
.woocommerce-error:focus {
	outline: 1px solid var(--lf-line);
	outline-offset: 0;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding: 18px;
	border: 1px solid var(--lf-line);
	text-align: left;
	vertical-align: middle;
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.woocommerce-cart table.shop_table .product-thumbnail img {
	width: 96px;
	height: 96px;
	object-fit: contain;
	background: #fbfbfa;
}

.woocommerce-cart table.shop_table .product-name a,
.woocommerce-checkout table.shop_table .product-name {
	font-family: Didot, "Bodoni 72", Georgia, serif;
	font-size: 24px;
	letter-spacing: 0;
}

.woocommerce-cart .quantity input {
	width: 82px;
	min-height: 46px;
	border: 1px solid var(--lf-line);
	text-align: center;
}

.woocommerce-cart .coupon {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.woocommerce-cart .coupon input {
	min-height: 48px;
	border: 1px solid var(--lf-line);
	padding: 0 14px;
}

.woocommerce-cart .actions,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout .col2-set {
	background: #fbfbfa;
}

.cart_totals {
	width: min(100%, 520px);
	margin: 34px 0 0 auto;
	padding: 28px;
	border: 1px solid var(--lf-line);
}

.woocommerce-cart .wc-proceed-to-checkout {
	margin-top: 20px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
	min-height: 52px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--lf-ink) !important;
	border-radius: 0 !important;
	background: var(--lf-ink) !important;
	color: white !important;
	padding: 0 28px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.woocommerce a.remove {
	color: var(--lf-muted) !important;
	font-size: 22px;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
	margin-top: 24px;
	padding: 28px;
	border: 1px solid var(--lf-line);
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
	min-height: 48px;
	border: 1px solid var(--lf-line);
	border-radius: 0;
	padding: 10px 12px;
}

@media (max-width: 860px) {
	.lf-topbar {
		grid-template-columns: auto 1fr auto;
		padding: 0 20px;
	}

	.lf-icon-link span:not(.lf-menu-icon),
	.lf-header-actions a:not(.lf-bag) {
		display: none;
	}

	.lf-menu-panel-head {
		padding: 0 20px;
	}

	.lf-menu-quick {
		display: flex;
	}

	.lf-menu-grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding: 44px 24px 72px;
	}

	.lf-menu-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.lf-menu-primary a {
		font-size: clamp(34px, 12vw, 56px);
	}

	.lf-menu-feature img {
		aspect-ratio: 16 / 10;
	}

	.lf-shell {
		width: min(100% - 32px, 1720px);
	}

	.lf-editorial-pair {
		width: min(100% - 32px, 1720px);
		grid-template-columns: 1fr;
	}

	.lf-editorial-card img {
		aspect-ratio: 4 / 3;
	}

	.lf-hero-copy {
		width: min(100% - 40px, 720px);
	}

	.lf-product-grid {
		grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr));
	}

	.lf-product-detail,
	.lf-product-story {
		grid-template-columns: 1fr;
	}

	.lf-product-gallery {
		grid-template-columns: 1fr;
		border-right: 0;
	}

	.lf-gallery-index {
		display: none;
	}

	.lf-product-gallery-track {
		grid-column: 1;
	}

	.lf-product-gallery-track .lf-gallery-frame {
		display: none;
	}

	.lf-product-gallery-track .lf-gallery-frame.is-mobile-active {
		display: grid;
	}

	.lf-mobile-thumbs {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		padding: 12px 16px 20px;
		border-top: 1px solid var(--lf-line);
		background: white;
		scrollbar-width: none;
	}

	.lf-mobile-thumbs::-webkit-scrollbar {
		display: none;
	}

.lf-mobile-thumb {
	width: 76px;
	aspect-ratio: 1;
	flex: 0 0 76px;
		display: grid;
		place-items: center;
		border: 1px solid var(--lf-line);
		background: #fbfbfa;
		opacity: 0.55;
	transition: border-color 180ms ease, opacity 180ms ease;
}

.lf-mobile-thumb span {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}

.lf-mobile-thumb.is-active {
	border-color: var(--lf-ink);
	opacity: 1;
}

.lf-mobile-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lf-mobile-thumb .is-cutout img {
	object-fit: contain;
	padding: 5px;
	background: #fff;
}

.lf-mobile-thumb .is-detail img {
	transform: scale(1.45);
	transform-origin: center;
}

	.lf-product-summary {
		position: static;
	}

	.cart_totals {
		width: 100%;
	}
}

@media (max-width: 760px) {
	.lf-catalog-toolbar {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 16px 0;
	}

	.lf-toolbar-side {
		justify-content: center;
		padding: 0 18px;
	}

	.lf-toolbar-side.align-end {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	:root {
		--lf-header-h: 60px;
	}

	.lf-wordmark {
		letter-spacing: 0.12em;
	}

	.lf-wordmark img {
		width: clamp(174px, 54vw, 226px);
		max-height: 28px;
	}

	.lf-hero {
		min-height: 560px;
		height: 88svh;
		max-height: 760px;
	}

	.lf-hero-copy {
		padding-bottom: clamp(44px, 9vh, 72px);
	}

	.lf-hero h1 {
		max-width: 340px;
		margin: 0 auto;
		font-size: clamp(36px, 11vw, 48px);
		line-height: 0.98;
	}

	.lf-product-heading {
		padding: 72px 0 40px;
	}

	.lf-product-heading h1,
	.lf-product-heading h2,
	.lf-intro h2,
	.lf-atelier-note h2 {
		font-size: clamp(38px, 12vw, 50px);
	}

	.lf-view-toggle {
		display: flex;
		justify-content: center;
		gap: 8px;
	}

	.lf-mobile-grid-button {
		display: grid;
	}

	.lf-grid-button[data-grid="4"],
	.lf-grid-button[data-grid="5"] {
		display: none;
	}

	.lf-catalog-toolbar {
		min-height: 108px;
		gap: 8px;
	}

	.lf-toolbar-side {
		font-size: 11px;
		line-height: 1.25;
	}

	.lf-product-grid {
		grid-template-columns: repeat(var(--cols, 1), minmax(0, 1fr));
	}

	.lf-product-grid[data-cols="3"] {
		grid-template-columns: repeat(3, minmax(136px, 40vw));
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.lf-product-grid[data-cols="3"]::-webkit-scrollbar {
		display: none;
	}

	.lf-product-grid[data-cols="3"] .lf-product-card {
		scroll-snap-align: start;
	}

	.lf-editorial-pair {
		display: flex;
		width: 100%;
		gap: 14px;
		padding: 0 18px 18px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.lf-editorial-pair::-webkit-scrollbar {
		display: none;
	}

	.lf-editorial-card {
		flex: 0 0 86vw;
		scroll-snap-align: start;
	}

	.lf-product-media {
		min-height: 390px;
		padding: 26px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-media {
		min-height: 250px;
		padding: 18px;
	}

	.lf-product-grid[data-cols="3"] .lf-product-media {
		min-height: 178px;
		padding: 12px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-meta,
	.lf-product-grid[data-cols="3"] .lf-product-meta {
		min-height: 0;
		padding: 18px 10px 24px;
		gap: 4px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-meta h3,
	.lf-product-grid[data-cols="3"] .lf-product-meta h3 {
		font-size: 20px;
		line-height: 1.05;
	}

	.lf-product-grid[data-cols="3"] .lf-product-meta h3 {
		font-size: 16px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-meta p,
	.lf-product-grid[data-cols="3"] .lf-product-meta p,
	.lf-product-grid[data-cols="3"] .lf-details-link {
		display: none;
	}

	.lf-product-grid[data-cols="2"] .lf-price,
	.lf-product-grid[data-cols="3"] .lf-price {
		margin-top: 8px;
		font-size: 11px;
	}

	.lf-product-grid[data-cols="3"] .lf-swatches {
		gap: 6px;
		margin-bottom: 9px;
	}

	.lf-product-grid[data-cols="3"] .lf-swatch {
		width: 11px;
		height: 11px;
	}

	.lf-product-grid[data-cols="2"] .lf-details-link {
		font-size: 10px;
		letter-spacing: 0.11em;
	}

	.lf-breadcrumb {
		padding: 18px 20px;
	}

	.lf-cart-drawer-panel {
		width: min(100vw, 390px);
	}

	.lf-cart-drawer-body {
		padding: 18px;
	}

	.lf-cart-drawer-body .woocommerce-mini-cart-item {
		grid-template-columns: 74px 1fr;
		gap: 14px;
	}

	.lf-cart-drawer-body .woocommerce-mini-cart-item img {
		width: 74px;
		height: 74px;
	}

	.lf-cart-drawer-note {
		display: grid;
		justify-content: stretch;
	}

	.lf-gallery-frame {
		min-height: 58vh;
		padding: 28px;
	}

	.lf-gallery-frame img {
		max-height: 50vh;
	}

	.lf-mobile-thumb {
		width: 70px;
		flex-basis: 70px;
	}

	.woocommerce-cart table.shop_table,
	.woocommerce-cart table.shop_table tbody,
	.woocommerce-cart table.shop_table tr,
	.woocommerce-cart table.shop_table td {
		display: block;
		width: 100%;
	}

	.woocommerce-cart table.shop_table thead {
		display: none;
	}

	.woocommerce-cart table.shop_table td {
		border-width: 0 0 1px;
		text-align: left !important;
	}

	.woocommerce-cart .woocommerce-message .button,
	.woocommerce-checkout .woocommerce-message .button {
		display: none;
	}

	.woocommerce-cart table.shop_table .product-thumbnail {
		display: block !important;
		padding-bottom: 0;
		text-align: center !important;
	}

	.woocommerce-cart table.shop_table .product-thumbnail img {
		display: block;
		width: 132px;
		height: 132px;
		margin: 0 auto;
	}

	.woocommerce-cart table.shop_table .product-name a {
		display: block;
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.05;
	}

	.woocommerce-cart table.shop_table td::before {
		color: var(--lf-muted);
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.woocommerce-cart .coupon {
		display: grid;
	}

	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
	.woocommerce-checkout #place_order {
		width: 100%;
	}

	.lf-product-summary {
		padding: 36px 24px 56px;
	}

	.lf-product-summary h1 {
		font-size: clamp(38px, 12vw, 50px);
		line-height: 1.02;
	}

	.lf-promise-row {
		grid-template-columns: 1fr;
	}

	.lf-product-specs div {
		grid-template-columns: 1fr;
		gap: 5px;
		padding: 13px 0;
	}

	.lf-product-story {
		gap: 28px;
		padding: 72px 24px;
	}

	.lf-footer {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.lf-footer-meta {
		justify-items: start;
		text-align: left;
	}
}

@media (max-width: 360px) {
	.lf-catalog-toolbar {
		min-height: 96px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-media {
		min-height: 218px;
		padding: 14px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-meta {
		padding: 16px 8px 20px;
	}

	.lf-product-grid[data-cols="2"] .lf-product-meta h3 {
		font-size: 17px;
	}

	.lf-product-grid[data-cols="2"] .lf-swatches {
		gap: 7px;
	}

	.lf-product-grid[data-cols="2"] .lf-swatch {
		width: 12px;
		height: 12px;
	}
}
