:root {
	--ivory: #fbf7f1;
	--ivory-deep: #f4ece3;
	--champagne: #e8ceaa;
	--champagne-soft: #f0ddc3;
	--blush: #ead5cc;
	--rose: #d5ad9a;
	--terracotta: #a26350;
	--gold: #b7893d;
	--cocoa: #402528;
	--cocoa-soft: #6c4843;
	--ink: #322527;
	--white: #fffdf9;
	--line: rgba(64, 37, 40, 0.16);
	--shadow: 0 24px 70px rgba(91, 56, 47, 0.13);
	--serif: "Bodoni Moda", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
	--container: min(1320px, calc(100vw - 96px));
	--header-height: 82px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

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

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

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

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

::selection {
	background: var(--rose);
	color: var(--cocoa);
}

:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--cocoa);
}

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

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 12px 18px;
	background: var(--cocoa);
	color: var(--white);
	font-size: 0.82rem;
	transform: translateY(-180%);
	transition: transform 180ms ease;
}

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

.site-announcement {
	display: grid;
	place-items: center;
	min-height: 32px;
	padding: 6px 24px;
	background: var(--cocoa);
	color: var(--white);
	text-align: center;
}

.site-announcement p {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.17em;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(251, 247, 241, 0.86);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: height 300ms var(--ease), background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
	height: 70px;
	background: rgba(251, 247, 241, 0.96);
	border-color: var(--line);
	box-shadow: 0 10px 34px rgba(64, 37, 40, 0.06);
}

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

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: var(--container);
	height: 100%;
	margin: 0 auto;
}

.site-header__brand {
	justify-self: start;
}

.brand-mark {
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	color: var(--cocoa);
}

.brand-mark__name,
.footer-brand {
	font-family: var(--serif);
	font-size: 2.25rem;
	font-weight: 500;
	letter-spacing: -0.075em;
	line-height: 1;
}

.brand-mark__diamond {
	width: 8px;
	height: 8px;
	margin: 0.12rem 0 0 0.38rem;
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

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

.custom-logo {
	width: auto;
	max-width: 180px;
	max-height: 54px;
}

.site-nav {
	justify-self: center;
}

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

.site-nav li {
	position: relative;
}

.site-nav a,
.header-collection-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 0.69rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: 1px;
	background: var(--gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 350ms var(--ease);
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	min-width: 190px;
	padding: 12px;
	margin: 0;
	background: var(--white);
	box-shadow: var(--shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.site-header__actions {
	justify-self: end;
}

.header-collection-link {
	padding: 0 17px;
	border: 1px solid var(--cocoa);
	transition: color 220ms ease, background 220ms ease;
}

.header-collection-link:hover {
	background: var(--cocoa);
	color: var(--white);
}

.zelya-cart {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
}

.zelya-cart__icon {
	position: relative;
	width: 21px;
	height: 18px;
	border: 1.5px solid currentColor;
	border-radius: 2px 2px 5px 5px;
}

.zelya-cart__icon::before {
	position: absolute;
	top: -7px;
	left: 5px;
	width: 8px;
	height: 8px;
	border: 1.5px solid currentColor;
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	content: "";
}

.zelya-cart__count {
	position: absolute;
	top: 2px;
	right: 0;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--terracotta);
	border-radius: 50%;
	color: var(--white);
	font-size: 0.6rem;
	font-weight: 600;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 24px;
	height: 1px;
	margin: 6px auto;
	background: currentColor;
	transition: transform 250ms var(--ease);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 13px 27px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 0.71rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-align: center;
	text-transform: uppercase;
	transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms var(--ease), box-shadow 260ms ease;
}

.button:hover {
	transform: translateY(-3px);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--cocoa);
	border-color: var(--cocoa);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(64, 37, 40, 0.16);
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--terracotta);
	border-color: var(--terracotta);
	color: var(--white);
	box-shadow: 0 16px 34px rgba(162, 99, 80, 0.2);
}

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

.button--outline:hover {
	background: var(--cocoa);
	color: var(--white);
}

.text-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.text-link::after {
	position: absolute;
	left: 0;
	bottom: 5px;
	width: calc(100% - 28px);
	height: 1px;
	background: currentColor;
	content: "";
	transform-origin: left;
	transition: transform 250ms ease;
}

.text-link:hover::after {
	transform: scaleX(0.55);
}

.text-link span {
	font-size: 1.05rem;
	transition: transform 260ms var(--ease);
}

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

.eyebrow,
.section-kicker,
.section-index {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.19em;
	line-height: 1.5;
	text-transform: uppercase;
}

.section-index {
	color: #795148;
}

.section-pad {
	padding: clamp(96px, 11vw, 170px) 0;
}

.section-heading {
	width: var(--container);
	margin: 0 auto clamp(50px, 7vw, 92px);
}

.section-heading h2,
.story__content h2,
.promises__heading h2,
.final-cta h2,
.parallax-quote h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3rem, 5.4vw, 6.1rem);
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.section-heading h2 em,
.story__content h2 em,
.promises__heading h2 em,
.final-cta h2 em,
.parallax-quote h2 em {
	color: var(--terracotta);
	font-weight: 400;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.55fr);
	gap: 9vw;
	align-items: end;
}

.section-heading--split .section-index {
	margin-bottom: 22px;
}

.section-heading__copy {
	max-width: 35ch;
	margin: 0 0 9px;
	color: var(--cocoa-soft);
	font-size: 1.02rem;
}

.section-heading--center {
	max-width: 760px;
	text-align: center;
}

.section-heading--center .section-index {
	margin-bottom: 20px;
}

.section-heading--center p:last-child {
	max-width: 48ch;
	margin: 24px auto 0;
	color: var(--cocoa-soft);
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 44% 56%;
	min-height: calc(100svh - var(--header-height) - 32px);
	background: linear-gradient(135deg, #f2e2da 0%, #f7ede7 44%, #c99b85 44%, #8b513f 100%);
	overflow: hidden;
}

.hero__wash {
	position: absolute;
	top: -32%;
	left: -14%;
	z-index: 0;
	width: 62vw;
	height: 118%;
	background: radial-gradient(circle at center, rgba(232, 206, 170, 0.55), rgba(232, 206, 170, 0) 69%);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	padding: clamp(64px, 8vw, 125px) clamp(34px, 5vw, 88px) clamp(88px, 10vw, 140px) max(48px, calc((100vw - 1320px) / 2));
}

.hero__content .eyebrow {
	margin-bottom: 30px;
	color: var(--cocoa-soft);
}

.hero__title {
	max-width: 7ch;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.65rem, 6.2vw, 7.3rem);
	font-weight: 400;
	letter-spacing: -0.075em;
	line-height: 0.88;
}

.hero__title span,
.hero__title em {
	display: block;
}

.hero__title em {
	margin-left: 0.42em;
	color: var(--terracotta);
	font-weight: 400;
}

.hero__intro {
	max-width: 39ch;
	margin: 34px 0 32px;
	color: var(--cocoa-soft);
	font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 29px;
}

.hero__media {
	position: relative;
	z-index: 1;
	grid-column: 2;
	grid-row: 1;
	min-height: inherit;
	overflow: hidden;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(64, 37, 40, 0.13), transparent 18%), linear-gradient(180deg, transparent 60%, rgba(64, 37, 40, 0.16));
	content: "";
	pointer-events: none;
}

.hero__media img {
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: calc(100% + 140px);
	object-fit: cover;
	object-position: 50% 50%;
	transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
	will-change: transform;
}

.hero__seal {
	position: absolute;
	left: 44%;
	bottom: clamp(48px, 7vw, 96px);
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 108px;
	height: 108px;
	background: rgba(251, 247, 241, 0.92);
	border: 1px solid rgba(183, 137, 61, 0.55);
	border-radius: 50%;
	box-shadow: 0 18px 50px rgba(64, 37, 40, 0.16);
	color: var(--cocoa);
	transform: translateX(-50%) rotate(-7deg);
}

.hero__seal::before {
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(183, 137, 61, 0.35);
	border-radius: inherit;
	content: "";
}

.hero__seal span {
	font-size: 0.54rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero__seal strong {
	font-family: var(--serif);
	font-size: 1.18rem;
	font-weight: 500;
}

.hero__scroll {
	position: absolute;
	left: max(48px, calc((100vw - 1320px) / 2));
	bottom: 28px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	padding: 8px 0;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.hero__scroll i {
	position: relative;
	display: block;
	width: 36px;
	height: 1px;
	background: currentColor;
}

.hero__scroll i::after {
	position: absolute;
	top: -3px;
	right: 0;
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	content: "";
	transform: rotate(-45deg);
}

.ribbon {
	position: relative;
	z-index: 2;
	padding: 18px 0;
	background: var(--cocoa);
	color: var(--champagne-soft);
	overflow: hidden;
}

.ribbon__track {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 38px;
	width: var(--container);
	margin: 0 auto;
}

.ribbon span {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	white-space: nowrap;
}

.ribbon i {
	color: var(--gold);
	font-size: 0.68rem;
	font-style: normal;
}

.signature {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 24px;
	padding-right: 24px;
	background: var(--ivory);
	text-align: center;
	overflow: hidden;
}

.signature::before,
.signature::after {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	content: "";
	filter: blur(2px);
	pointer-events: none;
}

.signature::before {
	top: -140px;
	left: -120px;
	background: radial-gradient(circle, rgba(213, 173, 154, 0.2), transparent 69%);
}

.signature::after {
	right: -120px;
	bottom: -160px;
	background: radial-gradient(circle, rgba(232, 206, 170, 0.26), transparent 69%);
}

.signature__ornament {
	position: relative;
	width: 41px;
	height: 41px;
	margin-bottom: 29px;
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

.signature__ornament::after {
	position: absolute;
	inset: 8px;
	border: 1px solid var(--rose);
	content: "";
}

.signature__ornament span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 3px;
	background: var(--gold);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.signature .section-kicker {
	margin-bottom: 23px;
	color: #765047;
}

.signature__title {
	max-width: 11ch;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.6rem, 7.8vw, 8.8rem);
	font-weight: 400;
	letter-spacing: -0.075em;
	line-height: 0.9;
}

.signature__title em {
	display: block;
	margin-left: 0.45em;
	color: var(--terracotta);
	font-weight: 400;
}

.signature__copy {
	max-width: 56ch;
	margin: 43px auto 0;
	color: var(--cocoa-soft);
	font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.collections {
	background: var(--ivory-deep);
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, minmax(360px, 43vw));
	gap: 22px;
	width: var(--container);
	max-height: 1040px;
	margin: 0 auto;
}

.collection-card {
	position: relative;
	min-height: 0;
	background: var(--champagne);
	border-radius: 24px;
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}

.collection-card--tall {
	grid-column: 1 / span 7;
	grid-row: 1 / span 2;
}

.collection-card--wide,
.collection-card--small {
	grid-column: 8 / -1;
}

.collection-card__media,
.collection-card__media::after {
	position: absolute;
	inset: 0;
}

.collection-card__media {
	transition: transform 800ms var(--ease);
}

.collection-card__media::after {
	background: linear-gradient(180deg, transparent 42%, rgba(53, 29, 30, 0.72) 100%);
	content: "";
}

.collection-card__media img {
	position: absolute;
	top: -45px;
	left: 0;
	width: 100%;
	height: calc(100% + 90px);
	object-fit: cover;
	transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
	will-change: transform;
}

.collection-card--tall img {
	object-position: 50% 50%;
}

.collection-card--wide img {
	object-position: 50% 49%;
}

.collection-card--small img {
	object-position: 50% 49%;
}

.collection-card:hover .collection-card__media {
	transform: scale(1.025);
}

.collection-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: clamp(24px, 4vw, 48px);
}

.collection-card__content > span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.61rem;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.collection-card__content h3 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2.1rem, 3.5vw, 4.2rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1;
}

.collection-card__content p {
	margin: 11px 44px 0 0;
	font-size: 0.86rem;
}

.collection-card__content i {
	position: absolute;
	right: clamp(24px, 3vw, 45px);
	bottom: clamp(28px, 3vw, 49px);
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 253, 249, 0.58);
	border-radius: 50%;
	font-size: 1rem;
	font-style: normal;
	transition: color 250ms ease, background 250ms ease, transform 300ms var(--ease);
}

.collection-card:hover .collection-card__content i {
	background: var(--white);
	color: var(--cocoa);
	transform: rotate(45deg);
}

.featured-products {
	position: relative;
	background: var(--ivory);
	overflow: hidden;
}

.featured-products::before {
	position: absolute;
	top: 11%;
	right: -8%;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(213, 173, 154, 0.21), transparent 68%);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.zelya-product-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(18px, 2.1vw, 32px);
	width: var(--container);
	margin: 0 auto;
}

.zelya-product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	background: var(--ivory-deep);
	border-radius: 18px;
	overflow: hidden;
}

.zelya-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease);
}

.zelya-product-card:hover .zelya-product-card__image img {
	transform: scale(1.035);
}

.product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 6px 11px;
	background: rgba(251, 247, 241, 0.92);
	border-radius: 20px;
	color: var(--cocoa);
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.zelya-product-card__body {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 4px 0;
}

.zelya-product-card__body h3 {
	margin: 0 0 3px;
	font-family: var(--serif);
	font-size: clamp(1.35rem, 1.7vw, 1.7rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.25;
}

.zelya-product-card .price {
	margin: 0;
	color: var(--cocoa-soft);
	font-size: 0.82rem;
}

.product-arrow {
	display: grid;
	place-items: center;
	flex: 0 0 43px;
	width: 43px;
	height: 43px;
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.product-arrow:hover {
	background: var(--cocoa);
	border-color: var(--cocoa);
	color: var(--white);
}

.section-action {
	margin-top: 58px;
	text-align: center;
}

.collection-preview {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: var(--container);
	min-height: 390px;
	padding: 64px 28px;
	margin: 0 auto;
	background: linear-gradient(135deg, #ead5cc, #f2e1d6 55%, #e9c9b7);
	border: 1px solid rgba(162, 99, 80, 0.18);
	border-radius: 26px;
	text-align: center;
	overflow: hidden;
}

.collection-preview::before,
.collection-preview::after {
	position: absolute;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(183, 137, 61, 0.35);
	content: "";
	transform: rotate(45deg);
}

.collection-preview::before {
	top: -120px;
	left: -80px;
}

.collection-preview::after {
	right: -80px;
	bottom: -120px;
}

.collection-preview__halo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 560px;
	height: 320px;
	background: radial-gradient(ellipse, rgba(255, 253, 249, 0.7), rgba(255, 253, 249, 0));
	transform: translate(-50%, -50%);
}

.collection-preview > *:not(.collection-preview__halo) {
	position: relative;
	z-index: 1;
}

.collection-preview .eyebrow {
	margin-bottom: 18px;
	color: #765047;
}

.collection-preview h3 {
	max-width: 16ch;
	margin: 0 auto 18px;
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4.5vw, 4.9rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 1;
}

.collection-preview > p:not(.eyebrow) {
	max-width: 45ch;
	margin-bottom: 23px;
	color: var(--cocoa-soft);
}

.story {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
	min-height: 900px;
	background: var(--champagne-soft);
	overflow: hidden;
}

.story__media {
	position: relative;
	min-height: 900px;
	overflow: hidden;
}

.story__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 72%, rgba(64, 37, 40, 0.28));
	content: "";
}

.story__media img {
	position: absolute;
	top: -60px;
	left: 0;
	width: 100%;
	height: calc(100% + 120px);
	object-fit: cover;
	transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
	will-change: transform;
}

.story__caption {
	position: absolute;
	right: 34px;
	bottom: 28px;
	z-index: 2;
	color: var(--white);
	font-size: 0.57rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.story__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(80px, 9vw, 150px) max(48px, calc((100vw - 1320px) / 2)) clamp(80px, 9vw, 150px) clamp(58px, 7vw, 110px);
}

.story__content .section-index {
	margin-bottom: 25px;
}

.story__content h2 {
	max-width: 8ch;
}

.story__lead {
	max-width: 37ch;
	margin: 39px 0 13px;
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2.15vw, 2.1rem);
	letter-spacing: -0.03em;
	line-height: 1.35;
}

.story__content > p:not(.section-index, .story__lead) {
	max-width: 46ch;
	margin-bottom: 34px;
	color: var(--cocoa-soft);
}

.story__number {
	position: absolute;
	right: -0.06em;
	bottom: -0.39em;
	color: rgba(255, 253, 249, 0.25);
	font-family: var(--serif);
	font-size: clamp(18rem, 34vw, 36rem);
	line-height: 1;
	pointer-events: none;
}

.parallax-quote {
	position: relative;
	display: grid;
	place-items: center;
	min-height: min(86svh, 960px);
	color: var(--white);
	overflow: hidden;
}

.parallax-quote__media,
.parallax-quote__veil {
	position: absolute;
	inset: 0;
}

.parallax-quote__media img {
	position: absolute;
	top: -110px;
	left: 0;
	width: 100%;
	height: calc(100% + 220px);
	object-fit: cover;
	object-position: 50% 47%;
	transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
	will-change: transform;
}

.parallax-quote__veil {
	z-index: 1;
	background: linear-gradient(135deg, rgba(54, 30, 31, 0.52), rgba(107, 58, 43, 0.26)), linear-gradient(180deg, rgba(64, 37, 40, 0.08), rgba(64, 37, 40, 0.48));
}

.parallax-quote__content {
	position: relative;
	z-index: 2;
	max-width: 980px;
	padding: 100px 24px;
	text-align: center;
}

.parallax-quote__content .eyebrow {
	margin-bottom: 27px;
	color: var(--champagne-soft);
}

.parallax-quote h2 {
	font-size: clamp(3.8rem, 8.7vw, 9.2rem);
	text-shadow: 0 8px 40px rgba(64, 37, 40, 0.25);
}

.parallax-quote h2 em {
	display: block;
	color: var(--white);
	font-weight: 400;
}

.parallax-quote__content > p:last-child {
	margin: 35px auto 0;
	font-size: clamp(0.95rem, 1.3vw, 1.12rem);
}

.promises {
	background: var(--ivory);
}

.promises__heading {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
	width: var(--container);
	margin: 0 auto clamp(58px, 7vw, 96px);
}

.promises__heading h2 {
	max-width: 10ch;
}

.promises__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: var(--container);
	margin: 0 auto;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.promise {
	position: relative;
	min-height: 360px;
	padding: 36px clamp(28px, 3vw, 48px) 44px;
}

.promise + .promise {
	border-left: 1px solid var(--line);
}

.promise__number {
	position: absolute;
	top: 26px;
	right: 28px;
	color: #795148;
	font-size: 0.59rem;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.promise__icon {
	position: relative;
	width: 62px;
	height: 62px;
	margin: 42px 0 52px;
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

.promise__icon i {
	position: absolute;
	inset: 12px;
	border: 1px solid var(--rose);
}

.promise__icon--sun {
	border-radius: 50%;
	transform: none;
}

.promise__icon--sun i {
	border-radius: 50%;
}

.promise__icon--petal {
	border-radius: 50% 0 50% 50%;
}

.promise h3 {
	margin: 0 0 12px;
	font-family: var(--serif);
	font-size: clamp(1.55rem, 2vw, 2rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.25;
}

.promise p {
	max-width: 31ch;
	margin: 0;
	color: var(--cocoa-soft);
	font-size: 0.9rem;
}

.final-cta {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: clamp(100px, 12vw, 185px) 24px;
	background: linear-gradient(145deg, #ecd4c8, #f5e6dd 54%, #e8c7b5);
	text-align: center;
	overflow: hidden;
}

.final-cta::before,
.final-cta::after {
	position: absolute;
	width: min(42vw, 600px);
	height: min(42vw, 600px);
	border: 1px solid rgba(183, 137, 61, 0.25);
	border-radius: 50%;
	content: "";
}

.final-cta::before {
	top: -56%;
	left: -13%;
}

.final-cta::after {
	right: -14%;
	bottom: -58%;
}

.final-cta__sparkle {
	position: relative;
	width: 24px;
	height: 24px;
	margin-bottom: 28px;
	transform: rotate(45deg);
}

.final-cta__sparkle::before,
.final-cta__sparkle::after {
	position: absolute;
	background: var(--gold);
	content: "";
}

.final-cta__sparkle::before {
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
}

.final-cta__sparkle::after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
}

.final-cta > * {
	position: relative;
	z-index: 1;
}

.final-cta .section-kicker {
	margin-bottom: 25px;
	color: #765047;
}

.final-cta h2 {
	max-width: 11ch;
}

.final-cta h2 em {
	display: block;
}

.final-cta > p:not(.section-kicker) {
	max-width: 48ch;
	margin: 29px auto 34px;
	color: var(--cocoa-soft);
}

.site-footer {
	position: relative;
	padding: clamp(76px, 9vw, 130px) 0 26px;
	background: var(--cocoa);
	color: var(--white);
	overflow: hidden;
}

.site-footer__glow {
	position: absolute;
	top: -50%;
	left: -7%;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(162, 99, 80, 0.35), transparent 68%);
	border-radius: 50%;
}

.site-footer__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 1fr;
	gap: clamp(48px, 8vw, 130px);
	width: var(--container);
	margin: 0 auto 82px;
}

.footer-brand {
	display: inline-flex;
	font-size: clamp(4.2rem, 7.3vw, 8rem);
	color: var(--champagne-soft);
}

.footer-brand span {
	margin: 0.16em 0 0 0.1em;
	color: var(--gold);
	font-family: var(--sans);
	font-size: 0.15em;
}

.site-footer__lead p {
	margin: 13px 0 0;
	color: var(--rose);
	font-family: var(--serif);
	font-size: 1.25rem;
}

.footer-label {
	margin-bottom: 24px;
	color: var(--champagne);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.footer-menu,
.site-footer__nav .site-nav__list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li,
.site-footer__nav .site-nav__list li {
	margin-bottom: 10px;
}

.footer-menu a,
.site-footer__nav .site-nav__list a,
.site-footer__note a {
	color: rgba(255, 253, 249, 0.82);
	font-size: 0.85rem;
	transition: color 180ms ease;
}

.footer-menu a:hover,
.site-footer__nav .site-nav__list a:hover,
.site-footer__note a:hover {
	color: var(--champagne);
}

.site-footer__note > p:not(.footer-label) {
	max-width: 34ch;
	margin-bottom: 20px;
	color: rgba(255, 253, 249, 0.72);
	font-size: 0.84rem;
}

.site-footer__note a {
	display: inline-block;
	border-bottom: 1px solid rgba(232, 206, 170, 0.6);
}

.site-footer__bottom {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: var(--container);
	padding-top: 25px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 253, 249, 0.13);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 253, 249, 0.5);
	font-size: 0.62rem;
	letter-spacing: 0.05em;
}

.site-footer__bottom p:nth-child(2) {
	justify-self: center;
}

.back-to-top {
	justify-self: end;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(255, 253, 249, 0.28);
	border-radius: 50%;
	color: var(--white);
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease;
}

.back-to-top:hover {
	background: var(--white);
	color: var(--cocoa);
}

.zelya-motion .reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 680ms var(--ease) var(--reveal-delay, 0ms), transform 680ms var(--ease) var(--reveal-delay, 0ms);
}

.zelya-motion .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Standard WordPress content */
.zelya-standard {
	min-height: 62vh;
	padding-bottom: clamp(80px, 10vw, 150px);
}

.standard-hero {
	padding: clamp(95px, 12vw, 170px) max(48px, calc((100vw - 1320px) / 2));
	background: linear-gradient(135deg, var(--blush), var(--ivory-deep));
}

.standard-hero--compact {
	padding-top: clamp(74px, 9vw, 125px);
	padding-bottom: clamp(74px, 9vw, 125px);
}

.standard-hero h1,
.not-found h1,
.shop-shell .page-title,
.woocommerce-products-header__title {
	max-width: 12ch;
	margin: 18px 0 0;
	font-family: var(--serif);
	font-size: clamp(3.2rem, 7vw, 7.5rem);
	font-weight: 400;
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.standard-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
	width: var(--container);
	padding-top: 80px;
	margin: 0 auto;
}

.journal-card__image {
	display: block;
	aspect-ratio: 4 / 5;
	margin-bottom: 24px;
	background: var(--ivory-deep);
	overflow: hidden;
}

.journal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.journal-card:hover .journal-card__image img {
	transform: scale(1.03);
}

.journal-card__date {
	margin-bottom: 9px;
	color: var(--cocoa-soft);
	font-size: 0.66rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.journal-card h2 {
	margin: 0 0 10px;
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.journal-card > p:not(.journal-card__date) {
	color: var(--cocoa-soft);
	font-size: 0.9rem;
}

.pagination {
	grid-column: 1 / -1;
}

.content-article__image,
.entry-content,
.post-navigation {
	width: min(850px, calc(100vw - 48px));
	margin-right: auto;
	margin-left: auto;
}

.content-article__image {
	margin-top: 72px;
	margin-bottom: 55px;
}

.entry-content {
	padding-top: 70px;
}

.content-article__image + .entry-content {
	padding-top: 0;
}

.entry-content h2,
.entry-content h3 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.entry-content h2 {
	margin-top: 2em;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.entry-content h3 {
	margin-top: 1.8em;
	font-size: 1.8rem;
}

.entry-content a {
	color: var(--terracotta);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 24px 0 24px 35px;
	margin: 45px 0;
	border-left: 1px solid var(--gold);
	font-family: var(--serif);
	font-size: 1.55rem;
}

.post-navigation {
	padding-top: 50px;
	margin-top: 65px;
	border-top: 1px solid var(--line);
}

.not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 72vh;
	padding: 100px 24px;
	background: linear-gradient(135deg, var(--blush), var(--ivory));
	text-align: center;
}

.not-found__code {
	margin: 0 0 -0.22em;
	color: rgba(162, 99, 80, 0.16);
	font-family: var(--serif);
	font-size: clamp(9rem, 25vw, 23rem);
	line-height: 0.8;
}

.not-found h1 {
	max-width: 12ch;
	margin: 18px auto 40px;
}

/* WooCommerce */
.shop-shell {
	min-height: 70vh;
	padding: clamp(70px, 8vw, 120px) 0 clamp(90px, 10vw, 150px);
}

.shop-shell__inner {
	width: var(--container);
	margin: 0 auto;
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 28px;
	color: var(--cocoa-soft);
	font-size: 0.7rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.woocommerce-products-header {
	padding: 48px 0 72px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 42px;
	font-size: 0.78rem;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty {
	min-height: 48px;
	padding: 10px 14px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 52px clamp(18px, 2.1vw, 32px);
	margin: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 5;
	margin-bottom: 19px;
	background: var(--ivory-deep);
	border-radius: 18px;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: -0.035em;
}

.woocommerce ul.products li.product .price {
	color: var(--cocoa-soft);
	font-size: 0.82rem;
}

.woocommerce ul.products li.product .button {
	margin-top: 10px;
	font-size: 0.65rem;
}

.woocommerce span.onsale {
	top: 14px;
	right: auto;
	left: 14px;
	z-index: 2;
	min-width: 0;
	min-height: 0;
	padding: 7px 12px;
	background: var(--terracotta);
	border-radius: 20px;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.3;
	text-transform: uppercase;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 20px 22px 20px 54px;
	background: var(--ivory-deep);
	border-top-color: var(--terracotta);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--terracotta);
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product .product_title {
	font-family: var(--serif);
	font-size: clamp(3rem, 5vw, 5.8rem);
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 1.45rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--ivory-deep);
	border-color: var(--line);
	border-radius: 0;
}

.woocommerce table.shop_table {
	border-color: var(--line);
	border-radius: 0;
}

.woocommerce-checkout #payment {
	background: var(--ivory-deep);
	border-radius: 0;
}

/* WooCommerce Cart, Checkout and Product Collection blocks */
.wc-block-cart,
.wc-block-checkout,
.wc-block-components-sidebar-layout,
.wp-block-woocommerce-product-collection {
	font-family: var(--sans);
	color: var(--ink);
}

.wc-block-cart,
.wc-block-checkout {
	width: var(--container);
	max-width: 1320px;
	padding-top: clamp(55px, 7vw, 105px);
	padding-bottom: clamp(80px, 9vw, 135px);
	margin-right: auto;
	margin-left: auto;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
	width: var(--container);
	max-width: 1320px;
}

.woocommerce-cart .entry-content > .wc-block-cart,
.woocommerce-checkout .entry-content > .wc-block-checkout {
	width: 100%;
	padding-top: 0;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-cart__totals-title,
.wc-block-components-order-summary-item__description .wc-block-components-product-name,
.wc-block-components-product-name,
.wc-block-grid__product-title,
.wc-block-components-product-title {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.2;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title {
	color: var(--cocoa);
}

.wc-block-components-button:not(.is-link),
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	min-height: 54px;
	background: var(--cocoa);
	border: 1px solid var(--cocoa);
	border-radius: 2px;
	color: var(--white);
	font-size: 0.71rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(64, 37, 40, 0.14);
	transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
	background: var(--terracotta);
	border-color: var(--terracotta);
	color: var(--white);
	transform: translateY(-2px);
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-address-form__country .components-combobox-control__input,
.wc-block-components-country-input input,
.wc-block-components-state-input input {
	min-height: 52px;
	background: var(--white);
	border: 1px solid var(--line) !important;
	border-radius: 2px !important;
	color: var(--ink);
	box-shadow: none !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-textarea:focus {
	border-color: var(--terracotta) !important;
	box-shadow: 0 0 0 1px var(--terracotta) !important;
}

.wc-block-components-sidebar,
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	padding: 28px !important;
	background: var(--ivory-deep);
	border: 1px solid var(--line);
}

.wc-block-cart-items,
.wc-block-components-order-summary-item,
.wc-block-components-totals-wrapper,
.wc-block-components-checkout-step {
	border-color: var(--line) !important;
}

.wc-block-components-quantity-selector {
	min-height: 44px;
	background: var(--white);
	border-color: var(--line) !important;
	border-radius: 22px !important;
}

.wc-block-components-product-price,
.wc-block-grid__product-price {
	color: var(--cocoa-soft);
	font-family: var(--serif);
}

.wc-block-grid__products,
.wc-block-product-template {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 52px clamp(18px, 2.1vw, 32px);
	padding: 0;
	margin: 0;
}

.wc-block-grid__product,
.wc-block-product {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
}

.wc-block-grid__product-image,
.wc-block-components-product-image,
.wc-block-product .wc-block-components-product-image {
	aspect-ratio: 4 / 5;
	background: var(--ivory-deep);
	border-radius: 18px;
	overflow: hidden;
}

.wc-block-grid__product-image img,
.wc-block-components-product-image img,
.wc-block-product .wc-block-components-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.wc-block-grid__product:hover img,
.wc-block-product:hover .wc-block-components-product-image img {
	transform: scale(1.03);
}

.wc-block-components-notice-banner {
	background: var(--ivory-deep) !important;
	border: 1px solid var(--line) !important;
	border-left: 3px solid var(--terracotta) !important;
	border-radius: 0 !important;
	color: var(--ink) !important;
}

.wc-block-components-validation-error,
.wc-block-components-form .wc-block-components-validation-error > p {
	color: #8b352f;
}

@media (max-width: 1180px) {
	:root {
		--container: min(100% - 56px, 1120px);
	}

	.site-nav__list,
	.site-nav .menu {
		gap: 20px;
	}

	.hero {
		grid-template-columns: 47% 53%;
	}

	.hero__seal {
		left: 47%;
	}

	.hero__content {
		padding-left: 38px;
		padding-right: 35px;
	}

	.hero__scroll {
		left: 38px;
	}

	.collection-grid {
		grid-template-rows: repeat(2, minmax(340px, 42vw));
	}

	.story__content {
		padding-right: 48px;
		padding-left: 60px;
	}
}

@media (max-width: 900px) {
	:root {
		--container: calc(100% - 40px);
		--header-height: 72px;
	}

	.site-header__inner {
		grid-template-columns: 52px 1fr 52px;
	}

	.site-header__brand {
		grid-column: 2;
		justify-self: center;
	}

	.brand-mark__name {
		font-size: 2rem;
	}

	.menu-toggle {
		display: block;
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-of-type {
		transform: translateY(3.5px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-of-type {
		transform: translateY(-3.5px) rotate(-45deg);
	}

	.site-header__actions {
		grid-column: 3;
		grid-row: 1;
	}

	.header-collection-link {
		width: 46px;
		height: 46px;
		padding: 0;
		border: 0;
		font-size: 0;
	}

	.header-collection-link::before {
		position: absolute;
		top: 14px;
		left: 15px;
		width: 17px;
		height: 17px;
		border: 1px solid currentColor;
		content: "";
		transform: rotate(45deg);
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		height: calc(100vh - var(--header-height));
		height: calc(100dvh - var(--header-height));
		padding: 40px;
		background: rgba(251, 247, 241, 0.985);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-16px);
		transition: opacity 260ms ease, visibility 260ms ease, transform 260ms var(--ease);
	}

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

	.site-nav__list,
	.site-nav .menu {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.site-nav a {
		font-family: var(--serif);
		font-size: clamp(2.4rem, 8vw, 4rem);
		font-weight: 400;
		letter-spacing: -0.04em;
		text-transform: none;
	}

	.site-nav a::after {
		bottom: 2px;
	}

	.site-nav .sub-menu {
		position: static;
		display: block;
		padding: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.site-nav .sub-menu a {
		font-family: var(--sans);
		font-size: 0.8rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	.section-heading--split,
	.promises__heading {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.section-heading__copy {
		max-width: 52ch;
	}

	.zelya-product-grid,
	.woocommerce ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		grid-template-columns: repeat(2, 1fr);
	}

	.story {
		grid-template-columns: 1fr 1fr;
		min-height: 760px;
	}

	.story__media {
		min-height: 760px;
	}

	.story__content {
		padding: 70px 36px;
	}

	.promises__grid {
		grid-template-columns: 1fr;
	}

	.promise {
		display: grid;
		grid-template-columns: 100px 1fr;
		min-height: 0;
		padding: 34px;
	}

	.promise + .promise {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.promise__number {
		top: 20px;
	}

	.promise__icon {
		grid-row: 1 / span 2;
		margin: 12px 0 0;
	}

	.promise h3 {
		align-self: end;
	}

	.site-footer__inner {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.site-footer__note {
		grid-column: 1 / -1;
	}

	.standard-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 780px) {
	:root {
		--container: calc(100% - 32px);
	}

	html {
		scroll-padding-top: 80px;
	}

	.site-announcement {
		min-height: 34px;
	}

	.site-announcement p {
		font-size: 0.58rem;
		letter-spacing: 0.12em;
	}

	.hero {
		display: flex;
		flex-direction: column-reverse;
		min-height: auto;
		background: #f2e2da;
	}

	.hero__media {
		width: 100%;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.hero__media img {
		top: 0;
		height: 100%;
		object-position: 50% 50%;
		transform: none !important;
	}

	.hero__media::after {
		background: linear-gradient(180deg, transparent 70%, rgba(64, 37, 40, 0.18));
	}

	.hero__content {
		width: 100%;
		padding: 64px 24px 76px;
	}

	.hero__title {
		max-width: 8ch;
		font-size: clamp(3.45rem, 15vw, 5.8rem);
	}

	.hero__intro {
		margin-top: 28px;
	}

	.hero__seal {
		left: auto;
		right: 19px;
		bottom: auto;
		top: calc(75vw - 18px);
		width: 88px;
		height: 88px;
		transform: translateY(-50%) rotate(-7deg);
	}

	.hero__seal strong {
		font-size: 1rem;
	}

	.hero__scroll {
		display: none;
	}

	.section-pad {
		padding-top: 92px;
		padding-bottom: 92px;
	}

	.signature__title {
		font-size: clamp(3.5rem, 16vw, 6.6rem);
	}

	.signature__copy {
		margin-top: 32px;
	}

	.section-heading h2,
	.story__content h2,
	.promises__heading h2,
	.final-cta h2,
	.parallax-quote h2 {
		font-size: clamp(3rem, 13vw, 5.2rem);
	}

	.collection-grid {
		display: flex;
		width: 100%;
		max-height: none;
		padding: 0 16px 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 16px;
		scrollbar-width: none;
	}

	.collection-grid::-webkit-scrollbar {
		display: none;
	}

	.collection-card {
		flex: 0 0 min(82vw, 450px);
		min-height: 590px;
		scroll-snap-align: start;
	}

	.collection-card__media img {
		top: 0;
		height: 100%;
		transform: scale(1.02) !important;
	}

	.collection-card__content {
		padding: 29px;
	}

	.collection-card__content h3 {
		font-size: 2.8rem;
	}

	.featured-products::before {
		display: none;
	}

	.collection-preview {
		min-height: 420px;
	}

	.story {
		display: flex;
		flex-direction: column;
		min-height: auto;
	}

	.story__media {
		min-height: 72svh;
	}

	.story__media img {
		top: 0;
		height: 100%;
		transform: none !important;
	}

	.story__content {
		padding: 84px 24px 100px;
	}

	.story__content h2 {
		max-width: 9ch;
	}

	.story__number {
		display: none;
	}

	.parallax-quote {
		min-height: 74svh;
	}

	.parallax-quote__media img {
		top: 0;
		height: 100%;
		object-position: 50% 50%;
		transform: none !important;
	}

	.parallax-quote__content {
		padding-right: 20px;
		padding-left: 20px;
	}

	.parallax-quote h2 {
		font-size: clamp(3.6rem, 15vw, 6.5rem);
	}

	.promises__heading {
		gap: 20px;
	}

	.final-cta h2 {
		font-size: clamp(3.4rem, 14vw, 5.8rem);
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 48px;
		margin-bottom: 60px;
	}

	.site-footer__note {
		grid-column: auto;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr auto;
		gap: 17px;
	}

	.site-footer__bottom p:nth-child(2) {
		display: none;
	}

	.standard-hero {
		padding-right: 24px;
		padding-left: 24px;
	}

	.standard-grid {
		grid-template-columns: 1fr;
		padding-top: 60px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		float: none;
		width: 100%;
	}

	.woocommerce div.product div.summary {
		margin-top: 45px;
	}
}

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

@media (max-width: 540px) {
	.hero__actions {
		align-items: stretch;
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__actions .text-link {
		justify-content: center;
	}

	.collection-card {
		flex-basis: 87vw;
		min-height: 530px;
	}

	.zelya-product-grid,
	.woocommerce ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		gap: 34px 12px;
	}

	.zelya-product-card__image,
	.woocommerce ul.products li.product a img {
		border-radius: 11px;
	}

	.zelya-product-card__body {
		padding-top: 13px;
	}

	.zelya-product-card__body h3,
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 1.2rem;
	}

	.product-arrow {
		display: none;
	}

	.promise {
		grid-template-columns: 82px 1fr;
		padding: 29px 20px;
	}

	.promise__icon {
		width: 52px;
		height: 52px;
	}

	.promise__number {
		right: 18px;
	}

	.footer-brand {
		font-size: 4.7rem;
	}
}

@media (max-width: 359px) {
	.zelya-product-grid,
	.woocommerce ul.products,
	.wc-block-grid__products,
	.wc-block-product-template {
		grid-template-columns: 1fr;
	}
}

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

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

	[data-parallax] {
		transform: none !important;
		will-change: auto !important;
	}

	.reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}

@media print {
	.site-announcement,
	.site-header,
	.ribbon,
	.site-footer,
	.hero__seal,
	.hero__scroll,
	.back-to-top {
		display: none !important;
	}

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