:root {
	--wd-plum: #4b163f;
	--wd-plum-dark: #2a0b24;
	--wd-plum-soft: #6d365f;
	--wd-apricot: #ff8056;
	--wd-apricot-soft: #ffb18f;
	--wd-cream: #fff8ec;
	--wd-paper: #fffdf7;
	--wd-lilac: #dcccf8;
	--wd-lilac-soft: #eee6ff;
	--wd-ink: #271520;
	--wd-muted: #74646d;
	--wd-line: rgba(75, 22, 63, 0.14);
	--wd-shadow: 0 24px 70px rgba(58, 25, 47, 0.12);
	--wd-radius: 26px;
	--wd-wrap: min(1400px, calc(100vw - 64px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--wd-cream);
	color: var(--wd-ink);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}
body.wd-panel-open { overflow: hidden; }
::selection { background: var(--wd-lilac); color: var(--wd-plum); }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
address { font-style: normal; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.wd-wrap { width: var(--wd-wrap); margin-inline: auto; }
.wd-site-content { min-height: 50vh; animation: wd-page-arrive .78s both cubic-bezier(.2,.75,.2,1); }
.wd-main { overflow: hidden; }

.wd-route-wipe {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
	overflow: hidden;
}
.wd-route-layer { position: absolute; inset: 0; display: block; will-change: transform; }
.wd-route-layer-one { background: var(--wd-apricot); transform: translate3d(-101%,0,0); transition: transform .52s cubic-bezier(.77,0,.18,1); }
.wd-route-layer-two { background: var(--wd-lilac); transform: translate3d(101%,0,0); transition: transform .54s .10s cubic-bezier(.77,0,.18,1); }
.wd-route-layer-three { background: var(--wd-plum); transform: translate3d(0,101%,0); transition: transform .48s .23s cubic-bezier(.77,0,.18,1); }
.wd-route-wipe > strong {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	display: flex;
	align-items: baseline;
	color: #fff;
	font-size: clamp(42px,6vw,82px);
	font-weight: 800;
	letter-spacing: -.075em;
	opacity: 0;
	transform: translate(-50%,-43%) scale(.9);
	transition: opacity .22s .50s ease, transform .36s .45s cubic-bezier(.2,.8,.2,1);
}
.wd-route-wipe > strong > span { font-weight: 500; }
.wd-route-wipe > strong > small { position: absolute; top: calc(100% + 12px); left: 50%; color: var(--wd-apricot-soft); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%); }
body.wd-leaving .wd-route-layer { transform: translate3d(0,0,0); }
body.wd-leaving .wd-route-wipe > strong { opacity: 1; transform: translate(-50%,-50%) scale(1); }
body.wd-leaving .wd-site-content { transform: translateY(-12px) scale(.985); filter: blur(5px); opacity: 0; transition: transform .55s ease, filter .55s ease, opacity .45s ease; }
@keyframes wd-page-arrive { from { opacity: 0; filter: blur(8px); transform: translateY(22px) scale(.992); } to { opacity: 1; filter: blur(0); transform: none; } }

.wd-announcement {
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 7px 28px;
	background: var(--wd-plum);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-align: center;
}
.wd-announcement i { width: 3px; height: 3px; border-radius: 50%; background: var(--wd-apricot); }
.wd-header {
	position: sticky;
	top: 0;
	z-index: 80;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 92px;
	padding: 0 34px;
	background: rgba(255, 248, 236, .91);
	border-bottom: 1px solid rgba(75, 22, 63, .07);
	backdrop-filter: blur(18px);
}
.admin-bar .wd-header { top: 32px; }
.wd-logo { justify-self: start; line-height: 1; }
.wd-wordmark {
	display: inline-flex;
	align-items: baseline;
	color: var(--wd-plum);
	font-size: clamp(27px, 2.35vw, 37px);
	font-weight: 800;
	letter-spacing: -.075em;
}
.wd-wordmark span { font-weight: 500; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-height: 52px; }
.wd-desktop-nav { justify-self: center; }
.wd-menu { display: flex; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.wd-menu a {
	position: relative;
	display: block;
	padding: 13px 18px;
	font-size: 14px;
	font-weight: 700;
}
.wd-menu a::after {
	position: absolute;
	right: 18px;
	bottom: 7px;
	left: 18px;
	height: 1.5px;
	background: var(--wd-apricot);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .28s ease;
}
.wd-menu a:hover::after, .wd-menu .current-menu-item a::after, .wd-menu .current_page_item a::after { transform: scaleX(1); transform-origin: left; }
.wd-header-tools { display: flex; align-items: center; justify-self: end; gap: 9px; }
.wd-icon-button {
	position: relative;
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	padding: 0;
	background: transparent;
	border: 1px solid var(--wd-line);
	border-radius: 50%;
	transition: color .25s ease, background .25s ease, transform .25s ease;
}
.wd-icon-button:hover { color: #fff; background: var(--wd-plum); transform: translateY(-2px); }
.wd-cart-button { color: #fff; background: var(--wd-plum); }
.wd-cart-button:hover { background: var(--wd-apricot); }
.wd-cart-button b {
	position: absolute;
	top: -4px;
	right: -3px;
	display: none;
	min-width: 19px;
	height: 19px;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	background: var(--wd-apricot);
	border: 2px solid var(--wd-cream);
	border-radius: 20px;
	color: #fff;
	font-size: 9px;
}
.wd-cart-button b.has-items { display: flex; }
.wd-menu-button { display: none; }

.wd-screen-dim {
	position: fixed;
	inset: 0;
	z-index: 110;
	visibility: hidden;
	background: rgba(35, 10, 29, .56);
	opacity: 0;
	transition: opacity .34s ease, visibility .34s ease;
}
.wd-screen-dim.is-open { visibility: visible; opacity: 1; }
.wd-mobile-panel, .wd-cart-panel, .wd-search-panel {
	position: fixed;
	z-index: 120;
	background: var(--wd-paper);
	box-shadow: -24px 0 80px rgba(32, 7, 26, .2);
}
.wd-mobile-panel, .wd-cart-panel {
	top: 0;
	right: 0;
	bottom: 0;
	width: min(460px, 94vw);
	padding: 34px;
	transform: translateX(105%);
	transition: transform .48s cubic-bezier(.77, 0, .18, 1);
}
.wd-mobile-panel.is-open, .wd-cart-panel.is-open { transform: translateX(0); }
.wd-panel-close {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-left: auto;
	padding: 0;
	background: transparent;
	border: 1px solid var(--wd-line);
	border-radius: 50%;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}
.wd-panel-close:hover { color: #fff; background: var(--wd-plum); transform: rotate(8deg); }
.wd-mobile-panel > .wd-eyebrow { margin: 55px 0 18px; }
.wd-mobile-panel .wd-menu { display: block; }
.wd-mobile-panel .wd-menu a { padding: 12px 0; font-size: 33px; letter-spacing: -.05em; }
.wd-mobile-panel .wd-menu a::after { display: none; }
.wd-panel-email { position: absolute; right: 34px; bottom: 40px; left: 34px; padding-top: 20px; border-top: 1px solid var(--wd-line); color: var(--wd-plum); font-size: 14px; font-weight: 700; }
.wd-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wd-panel-head h2 { margin: 0; color: var(--wd-plum); font-size: 28px; letter-spacing: -.04em; }
.wd-panel-head h2 span { color: var(--wd-apricot); }
.wd-search-panel {
	top: 0;
	right: 0;
	left: 0;
	max-height: min(720px, 92vh);
	padding: 44px max(32px, calc((100vw - 1160px) / 2));
	transform: translateY(-105%);
	transition: transform .48s cubic-bezier(.77, 0, .18, 1);
	overflow-y: auto;
}
.admin-bar .wd-search-panel { top: 32px; }
.wd-search-panel.is-open { transform: translateY(0); }
.wd-search-field {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
	margin: 38px 0 24px;
	padding: 18px 20px;
	background: var(--wd-cream);
	border: 1px solid var(--wd-line);
	border-radius: 16px;
}
.wd-search-field input { width: 100%; padding: 0; background: transparent; border: 0; outline: 0; font-size: 22px; }
.wd-search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.wd-search-results > a {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	align-items: center;
	gap: 15px;
	padding: 11px;
	border: 1px solid var(--wd-line);
	border-radius: 14px;
	transition: background .24s ease, transform .24s ease;
}
.wd-search-results > a:hover { background: var(--wd-lilac-soft); transform: translateY(-2px); }
.wd-search-results img { width: 64px; height: 64px; padding: 5px; object-fit: contain; background: #fff; border-radius: 10px; }
.wd-search-results span { display: grid; }
.wd-search-results small { color: var(--wd-apricot); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.wd-search-results strong { font-size: 13px; line-height: 1.35; }
.wd-search-results b { color: var(--wd-plum); font-size: 13px; }
.wd-no-search-results { display: none; grid-column: 1 / -1; margin: 40px 0 0; color: var(--wd-muted); text-align: center; }
.wd-no-search-results.is-visible { display: block; }
.wd-cart-panel { display: flex; flex-direction: column; }
.wd-cart-empty { display: grid; flex: 1; align-content: center; justify-items: center; text-align: center; }
.wd-cart-empty > span { display: grid; width: 80px; height: 80px; place-items: center; margin-bottom: 24px; background: var(--wd-lilac-soft); border-radius: 50%; color: var(--wd-plum); font-size: 34px; }
.wd-cart-empty h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.04em; }
.wd-cart-empty p { max-width: 260px; margin-bottom: 24px; color: var(--wd-muted); }
.wd-cart-filled { display: flex; min-height: 0; flex: 1; flex-direction: column; padding-top: 20px; }
.wd-cart-items { flex: 1; overflow: auto; }
.wd-cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--wd-line); }
.wd-cart-item img { width: 74px; height: 82px; padding: 8px; object-fit: contain; background: #fff; border-radius: 12px; }
.wd-cart-item div { display: grid; align-content: center; }
.wd-cart-item small { color: var(--wd-apricot); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.wd-cart-item a { font-size: 13px; font-weight: 700; line-height: 1.35; }
.wd-cart-item p { margin: 5px 0 0; color: var(--wd-muted); font-size: 12px; }
.wd-cart-item > button { align-self: center; padding: 7px; background: transparent; color: var(--wd-muted); font-size: 17px; }
.wd-cart-summary { padding-top: 20px; border-top: 1px solid var(--wd-line); }
.wd-cart-summary p { display: flex; justify-content: space-between; margin: 0 0 2px; font-size: 18px; }
.wd-cart-summary small { display: block; margin-bottom: 18px; color: var(--wd-muted); font-size: 11px; }
.wd-cart-summary .wd-button { width: 100%; }

.wd-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	transition: color .28s ease, background .28s ease, border .28s ease, transform .28s ease, box-shadow .28s ease;
}
.wd-button svg { width: 18px; transition: transform .25s ease; }
.wd-button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(45, 12, 36, .12); }
.wd-button:hover svg, .wd-button:hover > span { transform: translateX(4px); }
.wd-button-primary { background: var(--wd-apricot); color: #2b0c24; }
.wd-button-primary:hover { background: var(--wd-plum); color: #fff; }
.wd-button-secondary { border-color: var(--wd-plum); color: var(--wd-plum); }
.wd-button-secondary:hover { background: var(--wd-plum); color: #fff; }
.wd-button-light { background: #fff; color: var(--wd-plum); }
.wd-button-light:hover { background: var(--wd-apricot); }
.wd-button-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.wd-button-outline-light:hover { background: #fff; color: var(--wd-plum); }
.wd-text-link, .wd-detail-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--wd-plum);
	font-size: 13px;
	font-weight: 800;
}
.wd-text-link span, .wd-detail-link span { transition: transform .25s ease; }
.wd-text-link:hover span, .wd-detail-link:hover span { transform: translateX(5px); }
.wd-eyebrow {
	margin-bottom: 18px;
	color: var(--wd-apricot);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.wd-eyebrow-light { color: var(--wd-apricot-soft); }

.wd-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
	min-height: 690px;
	align-items: center;
	gap: 40px;
	padding: 62px max(32px, calc((100vw - 1400px) / 2)) 78px;
	background:
		radial-gradient(circle at 11% 78%, rgba(220,204,248,.42), transparent 22%),
		linear-gradient(145deg, #fffaf0 0%, #fff5e7 56%, #f9ebdf 100%);
}
.wd-hero::before { position: absolute; top: 14%; left: 43%; width: 330px; height: 330px; border: 1px solid rgba(255,128,86,.36); border-radius: 50%; content: ""; }
.wd-hero-copy { position: relative; z-index: 4; max-width: 670px; }
.wd-hero h1 {
	margin: 0 0 26px;
	color: var(--wd-plum);
	font-size: clamp(55px, 5.6vw, 92px);
	font-weight: 500;
	letter-spacing: -.075em;
	line-height: .95;
}
.wd-hero-lede { max-width: 540px; margin-bottom: 31px; color: #584651; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65; }
.wd-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.wd-hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.wd-hero-proof > div { display: flex; }
.wd-hero-proof > div span { display: grid; width: 33px; height: 33px; place-items: center; margin-left: -7px; background: var(--wd-plum); border: 2px solid var(--wd-cream); border-radius: 50%; color: #fff; font-size: 9px; font-weight: 800; }
.wd-hero-proof > div span:nth-child(2) { background: var(--wd-apricot); }
.wd-hero-proof > div span:nth-child(3) { background: var(--wd-lilac); color: var(--wd-plum); }
.wd-hero-proof p { display: grid; margin: 0; line-height: 1.3; }
.wd-hero-proof strong { font-size: 11px; }
.wd-hero-proof small { color: var(--wd-muted); font-size: 10px; }
.wd-product-stage { position: relative; min-height: 540px; perspective: 1000px; isolation: isolate; }
.wd-stage-blob { position: absolute; border-radius: 50% 44% 48% 53%; filter: saturate(.9); }
.wd-stage-lilac { top: 2%; left: 10%; width: 54%; aspect-ratio: 1; background: linear-gradient(145deg, var(--wd-lilac), #f1eaff); animation: wd-float 7s ease-in-out infinite; }
.wd-stage-apricot { top: 0; right: 1%; width: 55%; aspect-ratio: 1; background: linear-gradient(145deg, #ff9a70, var(--wd-apricot)); animation: wd-float 8.5s ease-in-out -2s infinite reverse; }
.wd-stage-orbit { position: absolute; border: 1px solid rgba(75,22,63,.19); border-radius: 50%; }
.wd-orbit-one { right: 1%; bottom: 3%; width: 74%; aspect-ratio: 1; }
.wd-orbit-two { top: 18%; left: 2%; width: 51%; aspect-ratio: 1; border-color: rgba(255,128,86,.6); }
.wd-plinth { position: absolute; bottom: 3%; height: 110px; border-radius: 50%; box-shadow: 0 34px 43px rgba(42,11,36,.2); }
.wd-plinth-back { right: 0; width: 44%; background: #bc9ed8; transform: translateY(-45px); }
.wd-plinth-front { right: 25%; left: 10%; height: 135px; background: linear-gradient(180deg, #e8dafa, #cbb4e7); }
.wd-hero-product { position: absolute; z-index: 4; transition: transform .35s ease, filter .35s ease; filter: drop-shadow(0 18px 22px rgba(44,15,36,.2)); }
.wd-hero-product img { width: 100%; height: 100%; object-fit: contain; }
.wd-hero-product:hover { z-index: 7; transform: translateY(-12px) rotate(1deg) !important; filter: drop-shadow(0 28px 28px rgba(44,15,36,.28)); }
.wd-hero-product-1 { bottom: 12%; left: 22%; width: 32%; height: 74%; transform: rotate(-3deg); animation: wd-product-in .9s .3s both cubic-bezier(.2,.8,.2,1); }
.wd-hero-product-2 { right: 7%; bottom: 10%; width: 25%; height: 61%; transform: rotate(3deg); animation: wd-product-in .9s .42s both cubic-bezier(.2,.8,.2,1); }
.wd-hero-product-3 { right: 28%; bottom: 7%; width: 24%; height: 46%; animation: wd-product-in .9s .54s both cubic-bezier(.2,.8,.2,1); }
.wd-hero-product-4 { left: 2%; bottom: 8%; width: 23%; height: 43%; transform: rotate(-5deg); animation: wd-product-in .9s .66s both cubic-bezier(.2,.8,.2,1); }
.wd-stage-note { position: absolute; z-index: 6; display: flex; align-items: center; gap: 9px; padding: 12px 16px; background: rgba(255,253,247,.92); border: 1px solid rgba(75,22,63,.09); border-radius: 50px; box-shadow: 0 12px 28px rgba(53,14,42,.1); backdrop-filter: blur(9px); animation: wd-pulse-float 5s ease-in-out infinite; }
.wd-stage-note b { color: var(--wd-apricot); font-size: 20px; }
.wd-stage-note span { font-size: 8px; font-weight: 800; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.wd-stage-note-top { top: 9%; right: 3%; }
.wd-stage-note-bottom { bottom: 0; left: 2%; animation-delay: -2.2s; }

.wd-reveal { animation: wd-reveal .8s both cubic-bezier(.2,.8,.2,1); }
.wd-delay-1 { animation-delay: .05s; } .wd-delay-2 { animation-delay: .14s; } .wd-delay-3 { animation-delay: .23s; } .wd-delay-4 { animation-delay: .32s; } .wd-delay-5 { animation-delay: .41s; }
@keyframes wd-reveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wd-product-in { from { opacity: 0; translate: 0 48px; scale: .92; } to { opacity: 1; translate: 0; scale: 1; } }
@keyframes wd-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-15px) rotate(2deg); } }
@keyframes wd-pulse-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.wd-category-rail { position: relative; z-index: 10; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -34px; background: var(--wd-paper); border: 1px solid rgba(75,22,63,.08); border-radius: 20px; box-shadow: var(--wd-shadow); overflow: hidden; }
.wd-category-rail > a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-height: 112px; padding: 22px; border-right: 1px solid var(--wd-line); transition: background .28s ease; }
.wd-category-rail > a:last-child { border-right: 0; }
.wd-category-rail > a:hover { background: var(--wd-lilac-soft); }
.wd-category-rail > a > svg { width: 17px; transition: transform .25s ease; }
.wd-category-rail > a:hover > svg { transform: translateX(5px); }
.wd-category-icon { display: grid; width: 52px; height: 52px; place-items: center; background: var(--wd-lilac); border-radius: 17px; color: var(--wd-plum); font-size: 19px; transform: rotate(-3deg); }
.wd-category-rail a:nth-child(even) .wd-category-icon { background: var(--wd-apricot-soft); transform: rotate(3deg); }
.wd-category-rail strong, .wd-category-rail small { display: block; }
.wd-category-rail strong { font-size: 14px; }
.wd-category-rail small { color: var(--wd-muted); font-size: 10px; }
.wd-brand-ribbon { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 45px; margin-top: 84px; padding: 27px max(32px, calc((100vw - 1400px) / 2)); border-block: 1px solid var(--wd-line); }
.wd-brand-ribbon > p { margin: 0; color: var(--wd-apricot); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.wd-brand-ribbon > div { display: flex; align-items: center; justify-content: space-between; gap: 27px; overflow: hidden; color: var(--wd-plum); white-space: nowrap; }
.wd-brand-ribbon span { font-size: clamp(15px, 1.5vw, 23px); font-weight: 800; letter-spacing: -.04em; opacity: .74; }
.wd-collection { padding-block: 115px 130px; }
.wd-section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 52px; }
.wd-section-heading h2 { margin: 0; color: var(--wd-plum); font-size: clamp(40px, 4.2vw, 66px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.wd-section-heading > div:last-child { max-width: 440px; justify-self: end; }
.wd-section-heading > div:last-child p { margin-bottom: 18px; color: var(--wd-muted); font-size: 14px; }

.wd-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.wd-product-card { position: relative; min-width: 0; }
.wd-product-image { position: relative; display: grid; aspect-ratio: .92; place-items: center; padding: 36px 26px; background: #fff; border: 1px solid rgba(75,22,63,.09); border-radius: 22px; box-shadow: inset 0 0 0 8px color-mix(in srgb, var(--product-accent) 20%, white); overflow: hidden; isolation: isolate; transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease; }
.wd-product-image::before { position: absolute; width: 78%; aspect-ratio: 1; background: color-mix(in srgb, var(--product-accent) 76%, white); border-radius: 50%; box-shadow: 0 20px 50px rgba(75,22,63,.08); content: ""; transform: scale(.8); transition: transform .5s ease; }
.wd-product-image::after { position: absolute; right: -15%; bottom: -26%; width: 65%; aspect-ratio: 1; border: 1px solid rgba(75,22,63,.12); border-radius: 50%; content: ""; }
.wd-product-image > a { position: relative; z-index: 2; display: grid; width: 100%; height: 100%; place-items: center; }
.wd-product-image img { width: 100%; height: 100%; max-height: 280px; object-fit: contain; filter: drop-shadow(0 16px 15px rgba(58,22,46,.16)); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.wd-product-card:hover .wd-product-image { transform: translateY(-7px); box-shadow: 0 24px 48px rgba(49,17,39,.13); }
.wd-product-card:hover .wd-product-image::before { transform: scale(1.08); }
.wd-product-card:hover .wd-product-image img { transform: scale(1.06) rotate(1deg); }
.wd-badge { position: absolute; top: 14px; left: 14px; z-index: 4; padding: 7px 11px; background: var(--wd-paper); border-radius: 50px; color: var(--wd-plum); font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.wd-product-info { padding: 17px 5px 0; }
.wd-product-info > p { margin: 0 0 5px; color: var(--wd-apricot); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.wd-product-info h3 { min-height: 44px; margin: 0; color: var(--wd-plum); font-size: 15px; line-height: 1.42; transition: color .2s ease; }
.wd-product-info > a:hover h3 { color: var(--wd-apricot); }
.wd-product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.wd-product-meta span { color: var(--wd-muted); font-size: 11px; }
.wd-product-meta strong { font-size: 14px; }
.wd-detail-link { margin-top: 12px; font-size: 10px; }
.wd-add-cart { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-top: 13px; padding: 12px 14px; background: transparent; border: 1px solid var(--wd-line); border-radius: 11px; color: var(--wd-plum); font-size: 11px; font-weight: 800; transition: color .25s ease, background .25s ease, border .25s ease; }
.wd-product-card .wd-add-cart > span { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.wd-add-cart:hover, .wd-add-cart.is-added { background: var(--wd-plum); border-color: var(--wd-plum); color: #fff; }

.wd-feature-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; align-items: center; gap: 7%; margin-bottom: 115px; padding: 70px 8%; background: var(--wd-plum); border-radius: 30px; color: #fff; overflow: hidden; }
.wd-feature-block > div:last-child { position: relative; z-index: 3; }
.wd-feature-block h2 { margin-bottom: 22px; font-size: clamp(43px, 4.7vw, 72px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.wd-feature-block > div:last-child > p:not(.wd-eyebrow) { max-width: 510px; margin-bottom: 30px; color: rgba(255,255,255,.7); }
.wd-feature-art { position: relative; min-height: 410px; }
.wd-feature-art > i { position: absolute; inset: 8% 6% 3%; background: var(--wd-lilac); border-radius: 50%; box-shadow: inset -28px -18px 70px rgba(75,22,63,.25); animation: wd-float 8s ease-in-out infinite; }
.wd-feature-art::before, .wd-feature-art::after { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.wd-feature-art::before { inset: -12% -10%; }
.wd-feature-art::after { inset: 12% -23%; }
.wd-feature-box { position: absolute; z-index: 2; display: grid; width: 38%; height: 40%; place-items: end start; padding: 24px; color: var(--wd-plum); font-size: 17px; font-weight: 800; box-shadow: 0 23px 40px rgba(23,5,18,.18); }
.wd-box-one { top: 22%; left: 0; background: #f8e5bd; transform: rotate(-12deg); }
.wd-box-two { top: 5%; right: 4%; background: var(--wd-lilac-soft); transform: rotate(5deg); }
.wd-box-three { right: -3%; bottom: 2%; background: var(--wd-apricot-soft); transform: rotate(11deg); }
.wd-service-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding-bottom: 115px; }
.wd-service-strip article { padding: 5px 45px 5px 0; border-right: 1px solid var(--wd-line); }
.wd-service-strip article + article { padding-left: 45px; }
.wd-service-strip article:last-child { border-right: 0; }
.wd-service-strip span { color: var(--wd-apricot); font-size: 10px; font-weight: 800; }
.wd-service-strip h3 { margin: 27px 0 8px; color: var(--wd-plum); font-size: 19px; }
.wd-service-strip p { max-width: 300px; margin: 0; color: var(--wd-muted); font-size: 12px; }

.wd-page-hero { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; padding-block: 100px 82px; border-bottom: 1px solid var(--wd-line); }
.wd-page-hero h1, .wd-brands-hero h1, .wd-about-hero h1, .wd-contact-hero h1, .wd-editorial-head h1, .wd-standard-page > header h1 {
	margin: 0;
	color: var(--wd-plum);
	font-size: clamp(55px, 6.5vw, 101px);
	font-weight: 500;
	letter-spacing: -.075em;
	line-height: .94;
}
.wd-page-hero > div:last-child { max-width: 430px; }
.wd-page-hero > div:last-child > p { color: var(--wd-muted); font-size: 15px; }
.wd-page-hero ul { display: flex; gap: 25px; margin: 35px 0 0; padding: 0; list-style: none; }
.wd-page-hero li { display: grid; color: var(--wd-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.wd-page-hero li b { color: var(--wd-plum); font-size: 19px; letter-spacing: -.04em; }
.wd-shop { padding-block: 42px 120px; }
.wd-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wd-filter-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.wd-filter-pills button { padding: 10px 17px; background: transparent; border: 1px solid var(--wd-line); border-radius: 50px; font-size: 11px; font-weight: 700; transition: .25s ease; }
.wd-filter-pills button:hover, .wd-filter-pills button.is-active { background: var(--wd-plum); border-color: var(--wd-plum); color: #fff; }
.wd-catalog-search { display: flex; align-items: center; gap: 8px; min-width: 240px; padding: 10px 14px; border-bottom: 1px solid var(--wd-plum); }
.wd-catalog-search input { width: 100%; background: transparent; border: 0; outline: 0; font-size: 12px; }
.wd-catalog-status { display: flex; justify-content: space-between; margin: 40px 0 18px; color: var(--wd-muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.wd-catalog-status p { margin: 0; }
.wd-catalog-status strong { color: var(--wd-plum); }
.wd-product-card[hidden] { display: none; }
.wd-no-products, .wd-empty-state { padding: 90px 20px; text-align: center; }
.wd-no-products > span, .wd-empty-state > span { color: var(--wd-lilac); font-size: 70px; }
.wd-no-products h2, .wd-empty-state h2 { margin: 3px 0 6px; color: var(--wd-plum); font-size: 30px; }
.wd-no-products p, .wd-empty-state p { color: var(--wd-muted); }

.wd-brands-hero { display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: end; padding-block: 100px 110px; }
.wd-brands-hero > .wd-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.wd-brands-hero h1 span { color: #9b7e95; }
.wd-brands-hero > div { max-width: 460px; justify-self: end; }
.wd-brands-hero > div p { color: var(--wd-muted); font-size: 16px; }
.wd-brands-hero > div small { color: var(--wd-apricot); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.wd-brand-directory { border-top: 1px solid var(--wd-line); }
.wd-brand-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 490px; border-bottom: 1px solid var(--wd-line); }
.wd-brand-card:nth-child(even) .wd-brand-visual { order: 2; }
.wd-brand-card:nth-child(even) .wd-brand-copy { order: 1; border-right: 1px solid var(--wd-line); border-left: 0; }
.wd-brand-visual { position: relative; display: grid; place-items: center; background: #fff; box-shadow: inset 0 0 0 12px color-mix(in srgb, var(--product-accent) 24%, white); overflow: hidden; isolation: isolate; }
.wd-brand-visual::before { position: absolute; width: 360px; aspect-ratio: 1; background: color-mix(in srgb, var(--product-accent) 78%, white); border-radius: 50%; box-shadow: 0 25px 60px rgba(75,22,63,.08); content: ""; transition: transform .5s ease; }
.wd-brand-card:hover .wd-brand-visual::before { transform: scale(1.15); }
.wd-brand-visual img { position: relative; z-index: 2; width: 46%; height: 330px; object-fit: contain; filter: drop-shadow(0 22px 21px rgba(46,12,36,.18)); transition: transform .45s ease; }
.wd-brand-card:hover .wd-brand-visual img { transform: translateY(-9px) rotate(1deg); }
.wd-brand-visual > span { position: absolute; top: 28px; left: 30px; color: var(--wd-plum); font-size: 10px; font-weight: 800; }
.wd-brand-visual > b { position: absolute; right: 30px; bottom: 23px; color: var(--wd-plum); font-size: clamp(27px, 3vw, 48px); letter-spacing: -.06em; opacity: .14; }
.wd-brand-copy { display: grid; align-content: center; justify-items: start; padding: 12%; border-left: 1px solid var(--wd-line); }
.wd-brand-copy > p { color: var(--wd-apricot); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wd-brand-copy h2 { margin: 7px 0 30px; color: var(--wd-plum); font-size: clamp(43px, 5vw, 78px); font-weight: 500; letter-spacing: -.065em; }
.wd-brand-copy a { padding-bottom: 5px; border-bottom: 1px solid var(--wd-plum); font-size: 12px; font-weight: 800; }
.wd-brand-copy a span { display: inline-block; margin-left: 20px; transition: transform .25s ease; }
.wd-brand-copy a:hover span { transform: translateX(5px); }
.wd-brand-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 13%; align-items: end; margin-block: 110px; padding: 75px 8%; background: var(--wd-plum); border-radius: 28px; color: #fff; }
.wd-brand-contact h2 { margin: 0; font-size: clamp(42px, 4.6vw, 70px); font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.wd-brand-contact > div:last-child p { color: rgba(255,255,255,.7); }

.wd-about-hero { position: relative; min-height: 650px; padding: 110px 0 80px; overflow: hidden; }
.wd-about-hero > div:first-child { position: relative; z-index: 4; max-width: 950px; }
.wd-about-hero h1 { max-width: 950px; }
.wd-about-copy { position: absolute; z-index: 5; right: 3%; bottom: 80px; width: 370px; padding: 27px; background: rgba(255,253,247,.92); border: 1px solid var(--wd-line); border-radius: 18px; box-shadow: var(--wd-shadow); backdrop-filter: blur(15px); }
.wd-about-copy > p { color: var(--wd-muted); font-size: 13px; }
.wd-shape { position: absolute; display: block; border-radius: 50%; }
.wd-shape-plum { right: 5%; top: 3%; width: 340px; height: 340px; background: var(--wd-plum); }
.wd-shape-apricot { right: 26%; bottom: 2%; width: 270px; height: 270px; background: var(--wd-apricot); mix-blend-mode: multiply; }
.wd-shape-lilac { right: 2%; bottom: -13%; width: 310px; height: 310px; background: var(--wd-lilac); opacity: .88; }
.wd-story { display: grid; grid-template-columns: .34fr .66fr; gap: 8%; padding-block: 110px; border-top: 1px solid var(--wd-line); }
.wd-story > div:first-child span { color: var(--wd-apricot); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.wd-story > div:first-child i { display: block; width: 1px; height: 170px; margin: 24px 0 0 4px; background: var(--wd-line); }
.wd-story h2 { margin-bottom: 35px; color: var(--wd-plum); font-size: clamp(45px, 5vw, 76px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.wd-story > div:last-child p { max-width: 760px; color: var(--wd-muted); font-size: 16px; }
.wd-numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--wd-line); }
.wd-numbers article { display: grid; min-height: 220px; align-content: center; padding: 33px; border-right: 1px solid var(--wd-line); }
.wd-numbers article:last-child { border: 0; }
.wd-numbers strong { color: var(--wd-plum); font-size: clamp(52px, 5.5vw, 82px); font-weight: 500; letter-spacing: -.08em; }
.wd-numbers span { max-width: 150px; color: var(--wd-muted); font-size: 10px; line-height: 1.5; text-transform: uppercase; }
.wd-values { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; padding-block: 115px; }
.wd-values > div:first-child h2 { margin: 0; color: var(--wd-plum); font-size: clamp(48px, 5vw, 75px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.wd-values > div:last-child { display: grid; gap: 0; }
.wd-values article { display: grid; grid-template-columns: 46px .8fr 1.2fr; gap: 25px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--wd-line); }
.wd-values article > span { display: grid; width: 40px; height: 40px; place-items: center; background: var(--wd-lilac-soft); border-radius: 50%; color: var(--wd-plum); }
.wd-values h3 { margin: 5px 0 0; color: var(--wd-plum); font-size: 15px; }
.wd-values article p { margin: 3px 0 0; color: var(--wd-muted); font-size: 12px; }
.wd-about-cta { margin-bottom: 115px; padding: 85px 8%; background: var(--wd-plum); border-radius: 28px; color: #fff; text-align: center; }
.wd-about-cta h2 { margin: 0 0 35px; font-size: clamp(45px, 5.7vw, 85px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.wd-about-cta > div { display: flex; justify-content: center; gap: 10px; }

.wd-contact-hero { position: relative; display: grid; grid-template-columns: 1fr .55fr; min-height: 570px; align-items: center; gap: 80px; }
.wd-contact-hero > div { position: relative; z-index: 4; }
.wd-contact-hero > div:nth-child(2) { max-width: 380px; }
.wd-contact-hero > div:nth-child(2) p { color: var(--wd-muted); font-size: 15px; }
.wd-contact-hero > div:nth-child(2) a { display: inline-flex; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid var(--wd-plum); color: var(--wd-plum); font-size: 13px; font-weight: 800; }
.wd-contact-orbit { position: absolute; right: -14%; width: 460px; height: 460px; border: 1px solid rgba(75,22,63,.14); border-radius: 50%; animation: wd-orbit 18s linear infinite; }
.wd-contact-orbit::before { position: absolute; inset: 15%; background: var(--wd-lilac); border-radius: 50%; content: ""; }
.wd-contact-orbit span { position: absolute; z-index: 2; top: 4%; left: 17%; display: grid; width: 88px; height: 88px; place-items: center; padding: 12px; background: var(--wd-apricot); border-radius: 50%; color: var(--wd-plum); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .035em; line-height: 1.15; text-align: center; transform: rotate(-9deg); }
@keyframes wd-orbit { to { transform: rotate(360deg); } }
.wd-contact-content { display: grid; grid-template-columns: .7fr 1.3fr; border-top: 1px solid var(--wd-line); }
.wd-contact-details { padding: 78px 8% 78px 0; }
.wd-contact-details article { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 26px 0; border-bottom: 1px solid var(--wd-line); }
.wd-contact-details article > span { color: var(--wd-apricot); font-size: 9px; font-weight: 800; }
.wd-contact-details h2 { margin: 0 0 7px; color: var(--wd-plum); font-size: 14px; }
.wd-contact-details a, .wd-contact-details address, .wd-contact-details article div > p:first-of-type { color: var(--wd-plum); font-size: 13px; font-weight: 700; }
.wd-contact-details p { margin: 3px 0 0; color: var(--wd-muted); font-size: 10px; }
.wd-contact-form { padding: 78px 0 78px 9%; border-left: 1px solid var(--wd-line); }
.wd-contact-form > h2 { margin-bottom: 38px; color: var(--wd-plum); font-size: clamp(37px, 4vw, 60px); font-weight: 500; letter-spacing: -.06em; }
.wd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 27px 20px; }
.wd-form-grid label { display: grid; gap: 8px; }
.wd-form-grid label > span { color: var(--wd-plum); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.wd-form-grid input, .wd-form-grid select, .wd-form-grid textarea { width: 100%; padding: 12px 2px; background: transparent; border: 0; border-bottom: 1px solid rgba(75,22,63,.35); border-radius: 0; outline: 0; transition: border .2s ease; }
.wd-form-grid textarea { resize: vertical; }
.wd-form-grid input:focus, .wd-form-grid select:focus, .wd-form-grid textarea:focus { border-color: var(--wd-apricot); }
.wd-field-full { grid-column: 1 / -1; }
.wd-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 32px; }
.wd-form-submit p { max-width: 270px; margin: 0; color: var(--wd-muted); font-size: 10px; }
.wd-map { position: relative; min-height: 430px; margin-bottom: 115px; background: #efe8da; border-radius: 26px; overflow: hidden; }
.wd-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(75,22,63,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(75,22,63,.06) 1px, transparent 1px); background-size: 53px 53px; transform: rotate(-5deg) scale(1.2); }
.wd-map-road { position: absolute; width: 120%; height: 30px; background: rgba(255,255,255,.68); border: 1px solid rgba(75,22,63,.08); transform-origin: center; }
.wd-road-one { top: 40%; left: -10%; transform: rotate(15deg); }
.wd-road-two { top: 50%; left: -8%; transform: rotate(-24deg); }
.wd-map-pin { position: absolute; z-index: 3; top: 42%; left: 55%; display: flex; align-items: center; gap: 12px; }
.wd-map-pin > span { position: relative; display: grid; width: 66px; height: 66px; place-items: center; background: var(--wd-plum); border: 5px solid #fff; border-radius: 50% 50% 50% 8%; box-shadow: 0 13px 24px rgba(48,13,38,.24); color: #fff; font-size: 10px; font-weight: 800; transform: rotate(-45deg); }
.wd-map-pin > span::first-letter { transform: rotate(45deg); }
.wd-map-pin p { margin: 0; padding: 10px 14px; background: rgba(255,255,255,.9); border-radius: 9px; color: var(--wd-muted); font-size: 9px; line-height: 1.4; text-transform: uppercase; }
.wd-map-pin b { color: var(--wd-plum); }
.wd-map-caption { position: absolute; z-index: 3; bottom: 30px; left: 30px; max-width: 330px; padding: 18px 20px; background: var(--wd-paper); border-radius: 13px; box-shadow: var(--wd-shadow); }
.wd-map-caption span { color: var(--wd-apricot); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.wd-map-caption p { margin: 6px 0 0; color: var(--wd-muted); font-size: 11px; }

.wd-breadcrumb { display: flex; gap: 10px; padding-block: 28px; color: var(--wd-muted); font-size: 10px; }
.wd-breadcrumb a:hover { color: var(--wd-apricot); }
.wd-breadcrumb strong { color: var(--wd-plum); font-weight: 700; }
.wd-product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7%; padding-bottom: 115px; }
.wd-product-gallery { position: sticky; top: 128px; display: grid; height: min(700px, calc(100vh - 160px)); min-height: 570px; place-items: center; align-self: start; padding: 60px; background: #fff; border: 1px solid rgba(75,22,63,.1); border-radius: 28px; box-shadow: inset 0 0 0 14px color-mix(in srgb, var(--product-accent) 24%, white), 0 28px 65px rgba(75,22,63,.08); overflow: hidden; isolation: isolate; }
.wd-product-gallery > i { position: absolute; width: 76%; aspect-ratio: 1; background: color-mix(in srgb, var(--product-accent) 78%, white); border-radius: 50%; box-shadow: 0 28px 65px rgba(75,22,63,.09); }
.wd-product-gallery::before, .wd-product-gallery::after { position: absolute; border: 1px solid rgba(75,22,63,.13); border-radius: 50%; content: ""; }
.wd-product-gallery::before { top: -18%; right: -13%; width: 55%; aspect-ratio: 1; }
.wd-product-gallery::after { bottom: -23%; left: -15%; width: 65%; aspect-ratio: 1; }
.wd-product-gallery img { position: relative; z-index: 2; width: 85%; height: 85%; object-fit: contain; filter: drop-shadow(0 28px 28px rgba(47,15,37,.2)); animation: wd-detail-in .8s both cubic-bezier(.2,.8,.2,1); }
.wd-product-cutout { background: transparent !important; mix-blend-mode: darken; }
@keyframes wd-detail-in { from { opacity: 0; transform: translateY(30px) scale(.94) rotate(-2deg); } to { opacity: 1; transform: none; } }
.wd-detail-badge { position: absolute; z-index: 4; top: 24px; left: 24px; padding: 9px 13px; background: #fff; border-radius: 50px; color: var(--wd-plum); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.wd-product-gallery small { position: absolute; z-index: 3; right: 24px; bottom: 20px; color: var(--wd-muted); font-size: 8px; text-transform: uppercase; }
.wd-product-copy { padding: 45px 0 0; }
.wd-product-brand { margin-bottom: 14px; color: var(--wd-apricot); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.wd-product-copy h1 { margin-bottom: 18px; color: var(--wd-plum); font-size: clamp(46px, 5vw, 75px); font-weight: 500; letter-spacing: -.07em; line-height: 1; }
.wd-product-summary { display: flex; align-items: center; gap: 11px; color: var(--wd-muted); font-size: 11px; }
.wd-product-summary i { width: 3px; height: 3px; background: var(--wd-apricot); border-radius: 50%; }
.wd-product-price { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 35px 0 24px; padding-block: 20px; border-block: 1px solid var(--wd-line); }
.wd-product-price strong { color: var(--wd-plum); font-size: 30px; letter-spacing: -.05em; }
.wd-product-price span { padding: 7px 11px; background: var(--wd-lilac-soft); border-radius: 50px; color: var(--wd-plum); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.wd-product-description { color: var(--wd-muted); font-size: 15px; }
.wd-highlights { display: grid; gap: 9px; margin: 25px 0 31px; padding: 0; list-style: none; }
.wd-highlights li { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.wd-highlights li span { display: grid; width: 21px; height: 21px; place-items: center; background: var(--wd-lilac-soft); border-radius: 50%; color: var(--wd-plum); font-size: 9px; }
.wd-purchase { display: grid; grid-template-columns: 118px 1fr; gap: 10px; }
.wd-quantity { display: grid; grid-template-columns: 35px 1fr 35px; align-items: center; border: 1px solid var(--wd-line); border-radius: 999px; overflow: hidden; }
.wd-quantity button { height: 100%; padding: 0; background: transparent; font-size: 17px; }
.wd-quantity input { width: 100%; padding: 0; background: transparent; border: 0; outline: 0; font-size: 12px; font-weight: 800; text-align: center; -moz-appearance: textfield; }
.wd-quantity input::-webkit-inner-spin-button { -webkit-appearance: none; }
.wd-detail-add { display: flex; min-height: 58px; align-items: center; justify-content: space-between; margin: 0; padding: 16px 24px; background: var(--wd-apricot); border: 0; border-radius: 999px; }
.wd-detail-add > .wd-detail-add-label { display: block !important; width: auto !important; min-width: max-content; height: auto !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; line-height: 1.2; white-space: nowrap; }
.wd-detail-add b { font-size: 12px; }
.wd-assurances { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 27px 0 34px; }
.wd-assurances article { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 16px; background: rgba(255,255,255,.45); border: 1px solid var(--wd-line); border-radius: 12px; }
.wd-assurances article > span { display: grid; width: 30px; height: 30px; place-items: center; background: var(--wd-lilac-soft); border-radius: 50%; font-size: 10px; }
.wd-assurances strong { font-size: 10px; }
.wd-assurances p { margin: 2px 0 0; color: var(--wd-muted); font-size: 8px; line-height: 1.5; }
.wd-accordions details { border-top: 1px solid var(--wd-line); }
.wd-accordions details:last-child { border-bottom: 1px solid var(--wd-line); }
.wd-accordions summary { display: flex; align-items: center; justify-content: space-between; padding: 19px 0; cursor: pointer; color: var(--wd-plum); font-size: 11px; font-weight: 800; list-style: none; }
.wd-accordions summary::-webkit-details-marker { display: none; }
.wd-accordions details[open] summary span { transform: rotate(45deg); }
.wd-accordions summary span { transition: transform .2s ease; }
.wd-accordions dl { margin: -3px 0 20px; }
.wd-accordions dl div { display: flex; justify-content: space-between; gap: 25px; padding: 7px 0; color: var(--wd-muted); font-size: 10px; }
.wd-accordions dd { margin: 0; color: var(--wd-plum); font-weight: 700; }
.wd-accordions details > p { padding-bottom: 20px; color: var(--wd-muted); font-size: 10px; }
.wd-related { padding-bottom: 120px; }

.wd-editorial, .wd-standard-page, .wd-woocommerce { padding-block: 95px 120px; }
.wd-editorial-head, .wd-standard-page > header { max-width: 950px; margin-bottom: 70px; }
.wd-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.wd-post-card { padding: 24px; background: var(--wd-paper); border: 1px solid var(--wd-line); border-radius: 18px; }
.wd-post-card > a:first-child img { width: 100%; aspect-ratio: 1.4; margin-bottom: 20px; object-fit: cover; border-radius: 12px; }
.wd-post-card > p { color: var(--wd-apricot); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.wd-post-card h2 { margin-bottom: 12px; color: var(--wd-plum); font-size: 23px; line-height: 1.2; }
.wd-post-card > p:not(:first-of-type), .wd-post-card .entry-summary { color: var(--wd-muted); font-size: 13px; }
.wd-standard-page > header h1 { font-size: clamp(55px, 6vw, 90px); }
.wd-prose { max-width: 820px; }
.wd-prose > * { margin-bottom: 1.4em; }
.wd-prose h2, .wd-prose h3 { color: var(--wd-plum); letter-spacing: -.04em; }
.wd-prose a { color: var(--wd-apricot); text-decoration: underline; }
.wd-not-found { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; align-items: center; gap: 80px; padding-block: 80px; }
.wd-not-found h1 { margin-bottom: 20px; color: var(--wd-plum); font-size: clamp(55px, 7vw, 105px); font-weight: 500; letter-spacing: -.08em; line-height: .9; }
.wd-not-found > div:first-child > p:not(.wd-eyebrow) { max-width: 480px; margin-bottom: 30px; color: var(--wd-muted); }
.wd-404-mark { display: flex; align-items: center; justify-content: center; color: var(--wd-plum); font-size: clamp(100px, 13vw, 210px); font-weight: 500; letter-spacing: -.12em; }
.wd-404-mark i { display: grid; width: .7em; height: .7em; place-items: center; background: var(--wd-lilac); border-radius: 50%; color: var(--wd-apricot); font-size: .45em; }

.wd-woocommerce .woocommerce-breadcrumb { color: var(--wd-muted); font-size: 11px; }
.wd-woocommerce .woocommerce-products-header__title, .wd-woocommerce div.product .product_title { color: var(--wd-plum); font-size: clamp(42px, 5vw, 72px); font-weight: 500; letter-spacing: -.06em; }
.wd-woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wd-woocommerce ul.products::before, .wd-woocommerce ul.products::after { display: none; }
.wd-woocommerce ul.products li.product { width: auto !important; margin: 0 !important; padding: 18px; background: var(--wd-paper); border: 1px solid var(--wd-line); border-radius: 18px; }
.wd-woocommerce ul.products li.product img { aspect-ratio: 1; padding: 18px; object-fit: contain; background: var(--wd-lilac-soft); border-radius: 13px; }
.wd-woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--wd-plum); font-size: 15px; }
.wd-woocommerce .price { color: var(--wd-plum) !important; font-weight: 800; }
.wd-woocommerce .button, .wd-woocommerce button.button, .wd-woocommerce input.button { padding: 13px 19px !important; background: var(--wd-apricot) !important; border-radius: 999px !important; color: var(--wd-plum) !important; font-weight: 800 !important; }
.wd-woocommerce div.product { display: flow-root; }
.wd-woocommerce div.product div.images img { border-radius: 22px; }
.wd-woocommerce div.product .woocommerce-tabs { clear: both; padding-top: 45px; }
.wd-woocommerce table.shop_table { border-color: var(--wd-line); border-radius: 14px; overflow: hidden; }

.wd-footer { padding: 80px max(32px, calc((100vw - 1400px) / 2)) 25px; background: var(--wd-plum-dark); color: #fff; }
.wd-footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 7%; padding-bottom: 70px; }
.wd-footer .wd-wordmark { color: #fff; }
.wd-footer-intro p { max-width: 330px; margin-top: 24px; color: rgba(255,255,255,.6); font-size: 12px; }
.wd-footer h3 { margin-bottom: 19px; color: var(--wd-apricot-soft); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.wd-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.wd-footer-grid > div:not(:first-child) a { margin-bottom: 9px; color: rgba(255,255,255,.82); font-size: 12px; }
.wd-footer-grid > div:not(:first-child) a:hover { color: var(--wd-apricot); }
.wd-footer-contact address { color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.7; }
.wd-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); font-size: 9px; }
.wd-footer-bottom p { margin: 0; }

@media (max-width: 1120px) {
	:root { --wd-wrap: min(100% - 44px, 1080px); }
	.wd-header { grid-template-columns: 1fr auto; min-height: 82px; padding-inline: 24px; }
	.wd-desktop-nav { display: none; }
	.wd-menu-button { display: grid; }
	.wd-hero { grid-template-columns: .95fr 1.05fr; min-height: 640px; }
	.wd-hero h1 { font-size: clamp(52px, 6.6vw, 75px); }
	.wd-product-stage { min-height: 460px; }
	.wd-category-rail { grid-template-columns: 1fr 1fr; }
	.wd-category-rail > a:nth-child(2) { border-right: 0; }
	.wd-category-rail > a:nth-child(-n+2) { border-bottom: 1px solid var(--wd-line); }
	.wd-product-grid { grid-template-columns: repeat(3, 1fr); }
	.wd-product-grid .wd-product-card:nth-child(4) { display: none; }
	.wd-shop-grid .wd-product-card:nth-child(4) { display: block; }
	.wd-shop-grid { grid-template-columns: repeat(3, 1fr); }
	.wd-brand-visual img { width: 57%; }
	.wd-contact-orbit { opacity: .55; }
	.wd-footer-grid { grid-template-columns: 1.2fr .6fr .7fr 1fr; gap: 4%; }
}

@media (max-width: 820px) {
	:root { --wd-wrap: calc(100vw - 36px); }
	.admin-bar .wd-header, .admin-bar .wd-search-panel { top: 46px; }
	.wd-announcement { min-height: 31px; font-size: 9px; }
	.wd-announcement span:last-child, .wd-announcement i { display: none; }
	.wd-header { min-height: 72px; padding-inline: 18px; }
	.wd-wordmark { font-size: 27px; }
	.wd-icon-button { width: 41px; height: 41px; }
	.wd-header-tools { gap: 6px; }
	.wd-hero { display: block; min-height: auto; padding: 62px 18px 90px; }
	.wd-hero::before { top: 37%; left: -15%; }
	.wd-hero-copy { text-align: center; }
	.wd-hero h1 { font-size: clamp(53px, 13vw, 82px); }
	.wd-hero-lede { margin-inline: auto; }
	.wd-hero-actions, .wd-hero-proof { justify-content: center; }
	.wd-product-stage { min-height: 500px; margin-top: 45px; }
	.wd-category-rail { margin-top: -30px; }
	.wd-brand-ribbon { display: block; margin-top: 60px; padding-block: 22px; }
	.wd-brand-ribbon > p { margin-bottom: 14px; }
	.wd-brand-ribbon > div { gap: 32px; overflow-x: auto; scrollbar-width: none; }
	.wd-collection { padding-block: 85px; }
	.wd-section-heading { display: block; margin-bottom: 36px; }
	.wd-section-heading > div:last-child { margin-top: 24px; justify-self: auto; }
	.wd-product-grid, .wd-shop-grid { grid-template-columns: repeat(2, 1fr); }
	.wd-product-grid .wd-product-card:nth-child(4) { display: block; }
	.wd-feature-block { grid-template-columns: 1fr; padding: 45px; }
	.wd-feature-art { min-height: 340px; }
	.wd-feature-block > div:last-child { text-align: center; }
	.wd-feature-block > div:last-child > p:not(.wd-eyebrow) { margin-inline: auto; }
	.wd-service-strip { grid-template-columns: 1fr; }
	.wd-service-strip article, .wd-service-strip article + article { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--wd-line); }
	.wd-service-strip article:last-child { border-bottom: 0; }
	.wd-service-strip h3 { margin-top: 10px; }
	.wd-page-hero, .wd-brands-hero { display: block; padding-block: 75px 60px; }
	.wd-page-hero > div:last-child, .wd-brands-hero > div { max-width: 570px; margin-top: 30px; justify-self: auto; }
	.wd-shop-toolbar { align-items: stretch; flex-direction: column; }
	.wd-catalog-search { width: 100%; }
	.wd-brand-card { grid-template-columns: 1fr; min-height: 0; }
	.wd-brand-card:nth-child(even) .wd-brand-visual, .wd-brand-card:nth-child(even) .wd-brand-copy { order: initial; }
	.wd-brand-card:nth-child(even) .wd-brand-copy, .wd-brand-copy { border: 0; }
	.wd-brand-visual { min-height: 400px; }
	.wd-brand-copy { min-height: 290px; padding: 60px 30px; }
	.wd-brand-contact { grid-template-columns: 1fr; gap: 30px; }
	.wd-about-hero { min-height: 730px; }
	.wd-about-copy { right: 3%; bottom: 40px; }
	.wd-story, .wd-values { grid-template-columns: 1fr; gap: 45px; }
	.wd-story > div:first-child i { height: 70px; }
	.wd-numbers { grid-template-columns: 1fr 1fr; }
	.wd-numbers article:nth-child(2) { border-right: 0; }
	.wd-numbers article:nth-child(-n+2) { border-bottom: 1px solid var(--wd-line); }
	.wd-values article { grid-template-columns: 46px 1fr; }
	.wd-values article p { grid-column: 2; }
	.wd-contact-hero { grid-template-columns: 1fr; align-content: center; gap: 35px; }
	.wd-contact-orbit { right: -38%; }
	.wd-contact-content { grid-template-columns: 1fr; }
	.wd-contact-details { padding-right: 0; }
	.wd-contact-form { padding: 70px 0; border-top: 1px solid var(--wd-line); border-left: 0; }
	.wd-product-detail { grid-template-columns: 1fr; }
	.wd-product-gallery { position: relative; top: 0; height: 620px; }
	.wd-product-copy { padding-top: 15px; }
	.wd-post-grid { grid-template-columns: 1fr 1fr; }
	.wd-not-found { grid-template-columns: 1fr; text-align: center; }
	.wd-not-found > div:first-child > p:not(.wd-eyebrow) { margin-inline: auto; }
	.wd-404-mark { order: -1; }
	.wd-woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
	.wd-footer-grid { grid-template-columns: 1fr 1fr; }
	.wd-footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
	:root { --wd-wrap: calc(100vw - 28px); }
	.wd-header-tools .wd-icon-button:first-child { display: none; }
	.wd-mobile-panel, .wd-cart-panel { padding: 24px; }
	.wd-search-panel { padding: 24px 16px; }
	.wd-search-results { grid-template-columns: 1fr; }
	.wd-hero { padding-inline: 14px; }
	.wd-hero h1 { font-size: clamp(48px, 14.2vw, 69px); }
	.wd-hero-actions { align-items: stretch; flex-direction: column; }
	.wd-hero-actions .wd-button { width: 100%; }
	.wd-product-stage { min-height: 380px; margin-inline: -15px; }
	.wd-stage-note { padding: 8px 10px; }
	.wd-stage-note b { font-size: 15px; }
	.wd-category-rail { grid-template-columns: 1fr; }
	.wd-category-rail > a { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--wd-line); }
	.wd-category-rail > a:last-child { border-bottom: 0; }
	.wd-product-grid, .wd-shop-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.wd-product-image { padding: 22px 13px; border-radius: 15px; }
	.wd-product-image img { max-height: 210px; }
	.wd-product-info { padding-inline: 1px; }
	.wd-product-info h3 { min-height: 52px; font-size: 12px; }
	.wd-product-meta { display: grid; }
	.wd-product-meta strong { font-size: 13px; }
	.wd-detail-link { align-items: flex-start; min-height: 34px; }
	.wd-add-cart { font-size: 10px; }
	.wd-feature-block { padding: 32px 22px; border-radius: 21px; }
	.wd-feature-art { min-height: 280px; }
	.wd-feature-box { padding: 14px; font-size: 12px; }
	.wd-page-hero h1, .wd-brands-hero h1, .wd-about-hero h1, .wd-contact-hero h1 { font-size: clamp(50px, 14vw, 69px); }
	.wd-page-hero ul { gap: 15px; }
	.wd-filter-pills { display: grid; grid-template-columns: repeat(3, 1fr); }
	.wd-filter-pills button { padding-inline: 8px; }
	.wd-catalog-status p:last-child { display: none; }
	.wd-brand-visual { min-height: 330px; }
	.wd-brand-visual img { width: 67%; height: 260px; }
	.wd-brand-contact { margin-block: 70px; padding: 50px 26px; }
	.wd-about-hero { min-height: 700px; padding-top: 78px; }
	.wd-about-copy { right: 0; bottom: 35px; width: 93%; }
	.wd-shape-plum { right: -35%; width: 290px; height: 290px; }
	.wd-shape-apricot { right: 12%; width: 210px; height: 210px; }
	.wd-shape-lilac { right: -25%; width: 280px; height: 280px; }
	.wd-story { padding-block: 75px; }
	.wd-numbers article { min-height: 170px; padding: 20px; }
	.wd-values { padding-block: 75px; }
	.wd-about-cta { padding: 55px 20px; }
	.wd-about-cta > div { align-items: stretch; flex-direction: column; }
	.wd-contact-hero { min-height: 620px; }
	.wd-contact-orbit { right: -70%; }
	.wd-form-grid { grid-template-columns: 1fr; }
	.wd-field-full { grid-column: auto; }
	.wd-form-submit { align-items: stretch; flex-direction: column; }
	.wd-product-gallery { min-height: 430px; height: 500px; padding: 35px; border-radius: 20px; }
	.wd-product-copy h1 { font-size: 46px; }
	.wd-purchase { grid-template-columns: 1fr; }
	.wd-quantity { min-height: 48px; }
	.wd-assurances { grid-template-columns: 1fr; }
	.wd-post-grid { grid-template-columns: 1fr; }
	.wd-woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 9px; }
	.wd-woocommerce ul.products li.product { padding: 10px; }
	.wd-footer { padding-inline: 25px; }
	.wd-footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
	.wd-footer-contact { grid-column: 1 / -1; }
	.wd-footer-bottom { flex-direction: column; }
}

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