/* ===================================================
   WarmWhim Storefront
   Full-bleed editorial retail layout inspired by
   cenee-paris.com with motion-first presentation
   =================================================== */

:root {
	--paper: #f4ede3;
	--paper-deep: #e9ddce;
	--paper-bright: #fbf7f0;
	--ink: #181410;
	--ink-soft: #4e473e;
	--ink-faint: #7f766b;
	--line: rgba(24, 20, 16, 0.14);
	--line-strong: rgba(24, 20, 16, 0.26);
	--accent: #b88a58;
	--accent-soft: rgba(184, 138, 88, 0.18);
	--shadow-soft: 0 30px 80px rgba(24, 20, 16, 0.08);
	--shadow-strong: 0 22px 56px rgba(24, 20, 16, 0.14);
	--radius-sm: 3px;
	--radius-md: 18px;
	--radius-lg: 34px;
	--edge-pad: clamp(1rem, 2.3vw, 2rem);
	--section-gap: clamp(4rem, 8vw, 8rem);
	--section-copy-shift: clamp(4.5rem, 6vw, 7rem);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 24%),
		linear-gradient(180deg, #f7f0e7 0%, var(--paper) 46%, #efe5d7 100%);
	color: var(--ink);
	font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

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

main {
	display: grid;
	gap: 0;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 50;
	background: var(--ink);
	color: var(--paper-bright);
	padding: 0.75rem 1rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.9rem;
}

.skip-link:focus {
	top: 1rem;
}

body.checkout-view .checkout-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1060px;
	margin: 0 auto;
	padding: 1rem var(--edge-pad);
	border-bottom: 1px solid var(--line);
}

body.checkout-view .checkout-header .brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size: 1.125rem;
}

body.checkout-view .brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 2px;
	background: var(--ink);
	color: var(--paper-bright);
	font-size: 0.875rem;
	font-weight: 700;
}

body.checkout-view .checkout-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-sm);
	background: var(--paper-bright);
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ink-soft);
}

body.checkout-view .checkout-layout {
	max-width: 1060px;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 4.5rem) var(--edge-pad) 5rem;
}

body.checkout-view .checkout-intro {
	display: grid;
	justify-items: center;
	gap: 0.75rem;
	max-width: 680px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}

body.checkout-view .checkout-intro h1 {
	max-width: 11ch;
}

body.checkout-view .checkout-intro p:last-child {
	max-width: 58rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ink-soft);
}

body.checkout-view .checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: 2rem;
	align-items: start;
}

body.checkout-view .checkout-panel {
	padding: 1.25rem;
	border: 1px solid var(--line);
	background: rgba(251, 247, 240, 0.82);
}

body.checkout-view .summary-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.875rem;
	align-items: start;
}

@media (max-width: 760px) {
	body.checkout-view .checkout-header {
		align-items: flex-start;
		flex-direction: column;
	}

	body.checkout-view .checkout-grid {
		grid-template-columns: 1fr;
	}

	body.checkout-view .summary-product {
		grid-template-columns: 1fr;
	}
}

.eyebrow,
.section-index,
.color-card-kicker,
.hero-ledger-item,
.trust-list li,
.site-nav a,
.nav-contact-button,
.header-cta,
.footer-nav a,
.site-footer p,
.hero-footnote,
.reviews-intro,
.section-caption,
.craft-item h4,
.occasion-item span,
.review-meta,
.button,
.hero-art-caption,
.brand-note {
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

h1,
h2,
h3,
h4 {
	font-family: "Playfair Display", "Iowan Old Style", Georgia, serif;
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

h1 {
	font-size: clamp(3.4rem, 7.2vw, 6.35rem);
	max-width: 8ch;
}

h2 {
	font-size: clamp(2.7rem, 5.7vw, 5.4rem);
	max-width: 12ch;
}

h3 {
	font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.hero-text,
.body-text,
.faq-answer .body-text,
.color-card-body .body-text,
.craft-item .body-text,
.final-cta p,
.section-caption,
.reviews-intro,
.hero-footnote {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1rem, 1.45vw, 1.08rem);
	line-height: 1.78;
	color: var(--ink-soft);
}

.section-index {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(24, 20, 16, 0.42);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	min-width: 0;
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	border: 1px solid var(--line-strong);
	background: rgba(255, 255, 255, 0.52);
	color: var(--ink);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--ink);
	color: var(--paper-bright);
	border-color: var(--ink);
}

.button-primary {
	box-shadow: none;
}

.button-ghost {
	box-shadow: none;
}

.button-text {
	box-shadow: none;
}

.site-header,
.ww-editable-section,
.site-footer {
	padding-inline: var(--edge-pad);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	background: rgba(244, 237, 227, 0.72);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(24, 20, 16, 0.08);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	flex-wrap: wrap;
}

.brand-logo {
	display: block;
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 auto;
	object-fit: contain;
}

body.checkout-view .brand-logo,
.lookup-brand-logo {
	width: 2.25rem;
	height: 2.25rem;
}

.brand-wordmark {
	font-size: 1.08rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-note {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.site-nav a,
.nav-contact-button {
	position: relative;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-faint);
	cursor: pointer;
}

.site-nav a::after,
.nav-contact-button::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 100%;
	height: 1px;
	background: var(--ink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.site-nav a:hover,
.nav-contact-button:hover,
.nav-contact-button[aria-expanded="true"] {
	color: var(--ink);
}

.site-nav a:hover::after,
.nav-contact-button:hover::after,
.nav-contact-button[aria-expanded="true"]::after {
	transform: scaleX(1);
}

.contact-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	max-height: min(78vh, 34rem);
	overflow-y: auto;
	padding: clamp(4.5rem, 6vw, 6.25rem) var(--edge-pad) clamp(2.2rem, 5vw, 5rem);
	border-bottom: 1px solid rgba(24, 20, 16, 0.1);
	background:
		linear-gradient(90deg, rgba(24, 20, 16, 0.03) 1px, transparent 1px),
		linear-gradient(180deg, #ead5cf 0%, #efdcd5 100%);
	background-size: 42px 42px, auto;
	box-shadow: 0 24px 70px rgba(24, 20, 16, 0.18);
	color: var(--ink);
}

.contact-drawer-close {
	position: fixed;
	top: 1rem;
	right: var(--edge-pad);
	z-index: 90;
	min-height: 2.35rem;
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(24, 20, 16, 0.22);
	border-radius: 999px;
	background: rgba(255, 252, 247, 0.86);
	box-shadow: 0 10px 24px rgba(24, 20, 16, 0.12);
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
}

.contact-drawer-close:hover {
	background: var(--ink);
	color: var(--paper-bright);
}

.contact-drawer-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(16rem, 1.2fr);
	gap: clamp(2rem, 12vw, 16rem);
	max-width: 1180px;
	margin: 0 auto;
	min-height: clamp(10rem, 22vw, 18rem);
	align-items: center;
}

.contact-drawer-block {
	display: grid;
	gap: 0.45rem;
	align-content: start;
}

.contact-drawer-block span {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.contact-drawer-block a,
.contact-drawer-block p {
	max-width: 30rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	font-weight: 700;
	line-height: 1.5;
	color: var(--ink);
}

.contact-drawer-block a {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.header-cta {
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	border: 1px solid var(--line-strong);
	background: rgba(255, 255, 255, 0.52);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.header-cta:hover {
	background: var(--ink);
	color: var(--paper-bright);
	border-color: var(--ink);
}

.hero {
	display: grid;
	grid-template-columns: minmax(23rem, 0.41fr) minmax(0, 1fr);
	column-gap: 10px;
	min-height: calc(100svh - 5rem);
	align-items: stretch;
	padding-top: 0.35rem;
	padding-bottom: clamp(5rem, 10vw, 9rem);
	overflow: clip;
}

.hero-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 1.05rem;
	padding: clamp(2.4rem, 5vw, 5.2rem) 0 clamp(2.4rem, 6vw, 4.4rem) 0;
	max-width: min(29.5rem, 100%);
	transform: translateX(100px);
	z-index: 2;
	text-align: right;
}

.hero-copy::before {
	content: "";
	position: absolute;
	top: clamp(1.2rem, 2vw, 2rem);
	left: -3vw;
	width: 32vw;
	height: 32vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 68%);
	filter: blur(10px);
	pointer-events: none;
	z-index: -1;
}

.hero-ledger {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-end;
}

.hero-ledger-item {
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(24, 20, 16, 0.12);
	background: rgba(255, 255, 255, 0.46);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.hero-text {
	max-width: 35ch;
	margin-left: auto;
}

.hero-actions {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
}

.hero-action-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: auto;
	width: auto;
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	border: 1px solid var(--line-strong);
	background: rgba(255, 255, 255, 0.52);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero-buy-cta {
	padding: 1rem 1.55rem;
	border-color: var(--ink);
	background: var(--ink);
	color: var(--paper-bright);
	box-shadow: 0 18px 42px rgba(24, 20, 16, 0.18);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
}

.hero-buy-cta:hover {
	background: #2a2118;
	border-color: #2a2118;
	transform: translateY(-1px);
}

.trust-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	width: min(100%, 38rem);
	list-style: none;
	margin-top: 0.55rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	text-align: right;
}

.trust-list li {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.hero-footnote {
	max-width: 31ch;
	padding-top: 0.75rem;
	margin-left: auto;
}

.hero-art {
	position: relative;
	min-height: calc(100svh - 5rem);
	margin: 0 clamp(1.15rem, 2vw, 2rem) 0 0;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.hero-media-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	transform-origin: center;
	will-change: transform;
}

.hero-art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(24, 20, 16, 0.02), rgba(24, 20, 16, 0.18));
	pointer-events: none;
}

.hero-art-caption {
	position: absolute;
	left: clamp(1.35rem, 2.5vw, 2.2rem);
	right: clamp(1.35rem, 2.5vw, 2.2rem);
	bottom: clamp(1.4rem, 3vw, 2.2rem);
	z-index: 2;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.34);
	color: #f9f5ee;
}

.hero-art-caption span {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-art-caption p {
	max-width: 28ch;
	font-size: 0.82rem;
	line-height: 1.6;
	text-align: right;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
	min-height: 100svh;
	align-items: stretch;
	padding-top: calc(var(--section-gap) * 1.15);
	padding-bottom: var(--section-gap);
	column-gap: clamp(2rem, 4vw, 4.75rem);
}

.split-media {
	position: relative;
	overflow: hidden;
	margin-left: 0;
	padding-left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.split-media img {
	width: min(76%, 42rem);
	height: auto;
	max-height: 76svh;
	min-height: 0;
	object-fit: contain;
	border-radius: 0;
	transform: scale(1.02);
	will-change: transform;
}

.split-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.15rem;
	padding: clamp(1.5rem, 3vw, 3rem) clamp(1.2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem) clamp(2rem, 6vw, 6rem);
}

.split-content h2 {
	max-width: 10ch;
}

.craft-section,
.reviews-section,
.faq-section,
.after-buy-section {
	display: grid;
	grid-template-columns: 35vw 1fr;
	gap: clamp(1.6rem, 3vw, 3rem);
	padding-top: var(--section-gap);
	padding-bottom: var(--section-gap);
}

.craft-section > .section-index,
.craft-section > .eyebrow,
.craft-section > h2,
.craft-section > .body-text,
.reviews-header,
.faq-header,
.after-buy-header {
	grid-column: 1;
}

.craft-section > .section-index,
.craft-section > .eyebrow,
.craft-section > h2,
.craft-section > .body-text,
.color-section-header > div,
.reviews-header,
.faq-header,
.after-buy-header {
	padding-left: var(--section-copy-shift);
}

.craft-grid,
.reviews-list,
.faq-list,
.after-buy-list {
	grid-column: 2;
}

.section-caption,
.reviews-intro {
	max-width: 32ch;
}

.craft-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1.25rem, 1.9vw, 2.1rem);
	align-self: start;
	margin-left: clamp(-3.5rem, -4vw, -1.4rem);
	width: calc(100% + clamp(1.4rem, 4vw, 3.5rem));
}

.craft-item {
	position: relative;
	padding: 0 0 1rem;
	border-radius: 0;
	background: transparent;
	border: 1px solid var(--line);
	box-shadow: none;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	max-width: 19rem;
}

.craft-item:hover,
.review-card:hover,
.color-card:hover {
	transform: translateY(-4px);
	border-color: rgba(24, 20, 16, 0.22);
}

.craft-item-media {
	margin-bottom: 1rem;
}

.craft-item-media img {
	width: 100%;
	aspect-ratio: 0.88;
	object-fit: cover;
}

.craft-item h4,
.craft-item .body-text {
	padding-inline: 1rem;
}

.craft-item h4 {
	margin-bottom: 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.color-section {
	padding-top: var(--section-gap);
	padding-bottom: calc(var(--section-gap) * 0.75);
}

.color-section-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem 2rem;
	align-items: end;
	margin-bottom: 2rem;
}

.color-section-header > div {
	max-width: 40rem;
}

.color-section-header h2 {
	margin-top: 0.3rem;
}

.section-caption {
	margin-top: 0.95rem;
}

.color-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 3.6vw, 4rem);
	max-width: min(100%, 120rem);
	margin: 0 auto;
	align-items: start;
}

.color-card {
	display: grid;
	grid-template-rows: auto 1fr;
	padding: 0;
	border-radius: 0;
	border: none;
	background: transparent;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ww-media-slot {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 0;
}

.color-card .ww-media-slot {
	width: min(100%, 34rem);
	margin: 0 auto;
	aspect-ratio: 744 / 928;
}

.color-card-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 420ms ease;
	will-change: transform;
}

.color-card:hover .color-card-media {
	transform: scale(1.04);
}

.color-card-body {
	padding: 0.9rem 0.2rem 0.1rem;
}

.color-card-kicker {
	margin-bottom: 0.55rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.color-card-body h4 {
	font-size: 1.26rem;
	margin-bottom: 0.45rem;
	letter-spacing: -0.02em;
}

.reviews-header {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.reviews-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-self: start;
}

.review-card {
	padding: 1.65rem 1.5rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.48);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-stars {
	display: flex;
	gap: 0.24rem;
	margin-bottom: 0.9rem;
}

.review-stars span {
	font-size: 0.8rem;
	color: var(--accent);
}

.review-quote {
	font-size: clamp(1.18rem, 1.9vw, 1.48rem);
	line-height: 1.48;
	margin-bottom: 1.05rem;
	font-style: italic;
}

.review-meta {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.faq-header,
.after-buy-header {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.faq-list,
.after-buy-list {
	align-self: start;
}

.faq-item {
	border-top: 1px solid var(--line);
}

.faq-item:last-child {
	border-bottom: 1px solid var(--line);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 0;
	list-style: none;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.after-buy-section {
	padding-top: 0;
}

.after-buy-video {
	width: min(100%, 38rem);
	margin-bottom: 1.4rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.34);
}

.after-buy-video video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.after-buy-reference {
	width: min(100%, 22rem);
	margin-top: 1.1rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.34);
}

.after-buy-reference img {
	width: 100%;
	aspect-ratio: 639 / 889;
	object-fit: cover;
}

.faq-item summary::after {
	content: "+";
	font-size: 1.28rem;
	font-weight: 300;
	color: var(--ink-faint);
	transition: transform 180ms ease;
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 0 1.45rem;
}

.final-cta {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 70svh;
	padding-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
	margin-inline: var(--edge-pad);
	margin-bottom: clamp(2rem, 4vw, 3rem);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(24, 20, 16, 0.98), rgba(38, 31, 24, 0.95));
	color: var(--paper-bright);
	overflow: hidden;
}

.final-cta::before,
.final-cta::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184, 138, 88, 0.2), transparent 65%);
	filter: blur(6px);
	pointer-events: none;
}

.final-cta::before {
	width: 32vw;
	height: 32vw;
	left: -6vw;
	top: -6vw;
}

.final-cta::after {
	width: 26vw;
	height: 26vw;
	right: -4vw;
	bottom: -8vw;
}

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

.final-cta .eyebrow {
	color: rgba(251, 247, 240, 0.56);
}

.final-cta h2 {
	max-width: none;
	margin: 1rem auto 1.4rem;
	font-size: clamp(4rem, 12vw, 9rem);
	color: var(--paper-bright);
}

.final-cta p {
	max-width: 38ch;
	margin: 0 auto 2rem;
	color: rgba(251, 247, 240, 0.72);
	text-align: center;
}

.final-cta .button-primary {
	background: var(--paper-bright);
	color: var(--ink);
	border-color: var(--paper-bright);
}

.final-cta .button-primary:hover {
	background: #ffffff;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 2.5rem;
	border-top: 1px solid rgba(24, 20, 16, 0.08);
}

.site-footer p,
.footer-nav a {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
}

.footer-nav a:hover {
	color: var(--ink);
}

body.order-lookup-view {
	min-height: 100vh;
	background:
		linear-gradient(90deg, rgba(24, 20, 16, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 32rem),
		linear-gradient(180deg, #f6efe5 0%, #ece0d0 100%);
	background-size: 42px 42px, auto, auto;
	color: var(--ink);
}

.lookup-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem var(--edge-pad);
	border-bottom: 1px solid rgba(24, 20, 16, 0.1);
	background: rgba(246, 239, 229, 0.76);
	backdrop-filter: blur(18px);
}

.lookup-brand,
.lookup-nav {
	display: inline-flex;
	align-items: center;
}

.lookup-brand {
	gap: 0.65rem;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.16rem;
}

.lookup-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 1.7rem;
	height: 1.7rem;
	background: var(--ink);
	color: var(--paper-bright);
	font-family: Georgia, serif;
	font-size: 0.86rem;
}

.lookup-nav {
	gap: 1.45rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.lookup-nav .nav-contact-button {
	font-weight: 800;
}

.lookup-nav a:hover,
.lookup-nav .nav-contact-button:hover,
.lookup-nav .nav-contact-button[aria-expanded="true"] {
	color: var(--ink);
}

.lookup-page {
	display: grid;
	gap: clamp(2rem, 4vw, 3.25rem);
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 5rem) var(--edge-pad) clamp(4rem, 8vw, 7rem);
}

.lookup-hero {
	display: grid;
	gap: 0.9rem;
	max-width: 780px;
}

.lookup-kicker,
.order-lookup-kicker,
.lookup-panel-heading span,
.order-lookup-block h4,
.order-lookup-meta span,
.order-lookup-grid span,
.order-lookup-form label span {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.lookup-hero h1 {
	max-width: 12ch;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(4rem, 9vw, 7.8rem);
	font-weight: 400;
	line-height: 0.9;
}

.lookup-hero p:last-child {
	max-width: 48rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	line-height: 1.8;
	color: var(--ink-soft);
}

.lookup-workbench {
	display: grid;
	grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: start;
}

.lookup-form-panel,
.lookup-result-panel {
	border: 1px solid rgba(24, 20, 16, 0.13);
	background: rgba(251, 247, 240, 0.82);
	box-shadow: 0 24px 70px rgba(24, 20, 16, 0.08);
}

.lookup-form-panel {
	position: sticky;
	top: 6rem;
	padding: clamp(1.25rem, 2.5vw, 2rem);
}

.lookup-result-panel {
	min-height: 34rem;
	padding: clamp(1.25rem, 2.5vw, 2.2rem);
}

.lookup-panel-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.1rem;
	margin-bottom: 1.35rem;
	border-bottom: 1px solid rgba(24, 20, 16, 0.1);
}

.lookup-panel-heading h2 {
	max-width: none;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.6rem, 2.5vw, 2.45rem);
	font-weight: 400;
}

.order-lookup-form {
	display: grid;
	gap: 1rem;
}

.order-lookup-form label,
.order-selection label {
	display: grid;
	gap: 0.45rem;
}

.order-lookup-form input,
.order-selection select {
	width: 100%;
	min-height: 3.45rem;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(24, 20, 16, 0.18);
	border-radius: var(--radius-sm);
	background: rgba(255, 252, 247, 0.74);
	color: var(--ink);
	font: 1rem ui-sans-serif, system-ui, sans-serif;
}

.order-lookup-form input:focus,
.order-selection select:focus {
	outline: none;
	border-color: var(--ink);
	background: #fffaf2;
	box-shadow: 0 0 0 3px rgba(24, 20, 16, 0.08);
}

.order-lookup-form .button {
	width: 100%;
	min-height: 3.4rem;
	margin-top: 0.3rem;
	background: var(--ink);
	color: var(--paper-bright);
	border-color: var(--ink);
}

.order-lookup-form.is-loading .button {
	opacity: 0.68;
	pointer-events: none;
}

.order-lookup-status {
	min-height: 1.4rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.order-lookup-status[data-state="success"] {
	color: #476344;
}

.order-lookup-status[data-state="error"] {
	color: #9e2f32;
}

.order-selection {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.15rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(24, 20, 16, 0.1);
}

.order-selection label span {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.order-option-list {
	display: grid;
	gap: 0.65rem;
}

.order-option {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
	width: 100%;
	padding: 0.75rem;
	border: 1px solid rgba(24, 20, 16, 0.12);
	background: rgba(255, 252, 247, 0.52);
	color: var(--ink);
	text-align: left;
	cursor: pointer;
}

.order-option:hover,
.order-option.is-selected {
	border-color: rgba(24, 20, 16, 0.42);
	background: rgba(255, 252, 247, 0.86);
}

.order-option-body strong,
.order-option-body span {
	display: block;
	font-family: ui-sans-serif, system-ui, sans-serif;
}

.order-option-body strong {
	font-size: 1rem;
}

.order-option-body span {
	margin-top: 0.2rem;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--ink-soft);
}

.order-option-thumbs {
	display: flex;
	justify-content: flex-end;
	min-width: 5.6rem;
}

.order-option-thumbs img {
	width: 2.35rem;
	height: 2.35rem;
	margin-left: -0.5rem;
	border: 2px solid #fffaf2;
	background: #fffaf2;
	object-fit: cover;
	box-shadow: 0 8px 18px rgba(24, 20, 16, 0.12);
}

.order-lookup-empty {
	display: grid;
	place-items: center;
	min-height: 22rem;
	border: 1px dashed rgba(24, 20, 16, 0.2);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
		rgba(255, 252, 247, 0.36);
	text-align: center;
}

.order-lookup-empty[hidden],
.order-lookup-card[hidden] {
	display: none;
}

.order-lookup-empty p {
	max-width: 24ch;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.6rem, 2.8vw, 2.35rem);
	line-height: 1.08;
	color: rgba(24, 20, 16, 0.56);
}

.order-lookup-card {
	display: grid;
	gap: 1rem;
}

.order-lookup-card-head,
.order-lookup-meta,
.order-lookup-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.order-lookup-card-head {
	align-items: start;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(24, 20, 16, 0.1);
}

.order-lookup-card-head h3 {
	margin-top: 0.25rem;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2.6rem, 5vw, 4.4rem);
	line-height: 0.9;
}

.order-status-pill {
	justify-self: end;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(24, 20, 16, 0.16);
	border-radius: 999px;
	background: rgba(184, 138, 88, 0.15);
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
}

.order-lookup-meta > div,
.order-lookup-grid > div,
.order-lookup-item {
	padding: 0.95rem;
	border: 1px solid rgba(24, 20, 16, 0.1);
	background: rgba(255, 252, 247, 0.5);
}

.order-lookup-item {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	align-items: center;
	gap: 0.9rem;
}

.order-lookup-item img {
	width: 4.5rem;
	aspect-ratio: 1;
	background: #fffaf2;
	object-fit: cover;
}

.order-lookup-meta strong,
.order-lookup-grid strong,
.order-lookup-item strong {
	display: block;
	margin-top: 0.24rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 1rem;
	color: var(--ink);
}

.order-lookup-grid strong {
	white-space: pre-line;
	line-height: 1.45;
}

.order-lookup-block {
	display: grid;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(24, 20, 16, 0.1);
}

.order-lookup-items {
	display: grid;
	gap: 0.65rem;
}

.order-lookup-item span {
	display: block;
	margin-top: 0.25rem;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.order-tracking-link {
	justify-self: start;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: underline;
	color: var(--ink);
}

.order-lookup-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid rgba(24, 20, 16, 0.12);
	background: rgba(255, 250, 241, 0.72);
}

.order-lookup-actions[data-state="shipped"] {
	border-color: rgba(112, 82, 45, 0.22);
	background: rgba(244, 236, 222, 0.72);
}

.order-lookup-actions h4 {
	margin: 0 0 0.35rem;
}

.order-lookup-actions p {
	margin: 0;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

.order-lookup-action-note {
	margin-top: 0.4rem !important;
	color: var(--ink) !important;
}

.order-cancel-button {
	flex: 0 0 auto;
	min-height: 2.8rem;
	padding: 0 1.1rem;
	border: 1px solid rgba(120, 43, 28, 0.34);
	border-radius: 999px;
	background: #7b2e21;
	color: #fffaf2;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.order-cancel-button:hover {
	background: #5f2118;
}

.order-cancel-button:disabled {
	cursor: wait;
	opacity: 0.62;
}

.reveal-item,
.ww-reveal {
	opacity: 0;
	transform: translate3d(0, 54px, 0) scale(0.985);
	filter: blur(10px);
	transition:
		opacity 800ms cubic-bezier(0.2, 0.7, 0.15, 1),
		transform 1000ms cubic-bezier(0.2, 0.7, 0.15, 1),
		filter 900ms cubic-bezier(0.2, 0.7, 0.15, 1);
	will-change: opacity, transform, filter;
}

.reveal-item.is-visible,
.ww-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
}

[data-parallax] {
	will-change: transform;
	transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(var(--parallax-scale, 1));
}

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

	.reveal-item,
	.ww-reveal,
	[data-parallax] {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}
}

@media (max-width: 1200px) {
	.split-section {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.split-media {
		margin-left: 0;
		padding-left: 0;
	}

	.split-media img {
		min-height: 62svh;
		border-radius: 0;
	}

	.split-content {
		padding-left: 0;
	}

	.craft-section > .section-index,
	.craft-section > .eyebrow,
	.craft-section > h2,
	.craft-section > .body-text,
	.color-section-header > div,
	.reviews-header,
	.faq-header,
	.after-buy-header {
		padding-left: 0;
	}

	.craft-section,
	.reviews-section,
	.faq-section,
	.after-buy-section {
		grid-template-columns: 1fr;
	}

	.craft-grid {
		margin-left: 0;
		width: 100%;
	}

	.craft-grid,
	.reviews-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 960px) {
	.site-nav {
		display: none;
	}

	.lookup-workbench {
		grid-template-columns: 1fr;
	}

	.lookup-form-panel {
		position: static;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-bottom: clamp(4rem, 9vw, 6rem);
	}

	.hero-art {
		order: -1;
		min-height: 68svh;
	}

	.hero-copy {
		padding-inline: 0;
		max-width: min(36rem, 100%);
		margin-top: 0;
		padding-bottom: 0;
		padding-left: 0;
		transform: none;
		text-align: left;
		align-items: flex-start;
	}

	.hero-ledger,
	.hero-actions {
		justify-content: flex-start;
	}

	.hero-actions {
		flex-wrap: wrap;
	}

	.trust-list {
		text-align: left;
	}

	.hero-text,
	.hero-footnote {
		margin-left: 0;
	}

	.color-section-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.reviews-list,
	.color-options,
	.craft-grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.lookup-header,
	.site-header,
	.ww-editable-section,
	.site-footer {
		padding-inline: 1rem;
	}

	.lookup-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.lookup-nav {
		width: 100%;
		justify-content: space-between;
	}

	.contact-drawer {
		padding: 5rem 1rem 2.5rem;
	}

	.contact-drawer-close {
		right: 1rem;
	}

	.contact-drawer-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		min-height: auto;
	}

	.lookup-hero h1 {
		font-size: clamp(3.4rem, 18vw, 4.6rem);
	}

	.lookup-form-panel,
	.lookup-result-panel {
		padding: 1rem;
	}

	.order-lookup-card-head,
	.order-lookup-meta,
	.order-lookup-grid {
		grid-template-columns: 1fr;
	}

	.order-option {
		grid-template-columns: 1fr;
	}

	.order-option-thumbs {
		justify-content: flex-start;
		padding-left: 0.5rem;
	}

	.order-lookup-item {
		grid-template-columns: 3.75rem minmax(0, 1fr);
	}

	.order-lookup-item img {
		width: 3.75rem;
	}

	.order-status-pill {
		justify-self: start;
	}

	.order-lookup-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.order-cancel-button {
		width: 100%;
	}

	.hero-art {
		min-height: 58svh;
	}

	.button {
		min-width: 0;
		width: auto;
	}

	.hero-art-caption {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-art-caption p {
		text-align: left;
	}

	.trust-list,
	.reviews-list,
	.color-options,
	.craft-grid {
		grid-template-columns: 1fr;
	}

	.final-cta {
		margin-inline: 1rem;
		min-height: 56svh;
	}
}
