:root {
	--ink: #252823;
	--muted: #64675f;
	--paper: #fbf8f2;
	--sand: #f1e9de;
	--cream: #f6f0e7;
	--terracotta: #a94f35;
	--terracotta-dark: #873c29;
	--forest: #253f35;
	--line: rgba(37, 40, 35, .14);
	--white: #fffdf9;
	--serif: "Newsreader", Georgia, serif;
	--sans: "DM Sans", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.page-loader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(246, 240, 231, .94);
	backdrop-filter: blur(9px);
	opacity: 1;
	visibility: visible;
	transition: opacity .24s ease, visibility .24s ease;
}

body.is-page-ready .page-loader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-loader-card {
	display: grid;
	justify-items: center;
	gap: 13px;
	color: var(--forest);
	text-align: center;
}

.page-loader-mark {
	display: block;
	width: 82px;
	height: 82px;
	object-fit: contain;
	filter: drop-shadow(0 10px 18px rgba(37, 63, 53, .14));
}

.page-loader-copy {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.page-loader-dots {
	display: flex;
	gap: 7px;
}

.page-loader-dots i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--terracotta);
	animation: page-loader-pulse .9s ease-in-out infinite alternate;
}

.page-loader-dots i:nth-child(2) {
	animation-delay: .16s;
}

.page-loader-dots i:nth-child(3) {
	animation-delay: .32s;
}

@keyframes page-loader-pulse {
	from {
		opacity: .25;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(-4px);
	}
}

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

button,
input,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

.shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.page-soft {
	background: var(--cream);
}

.site-header {
	position: relative;
	z-index: 10;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 248, 242, .94);
	backdrop-filter: blur(12px);
}

.header-inner {
	min-height: 104px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	line-height: 1.1;
}

.brand-logo {
	display: block;
	width: auto;
	height: 96px;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid currentColor;
	border-radius: 50% 50% 46% 54%;
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 23px;
	transform: rotate(-5deg);
}

.brand strong {
	display: block;
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.01em;
}

.brand small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.main-nav,
.main-nav form {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
}

.main-nav > a:not(.button),
.nav-button {
	position: relative;
	border: 0;
	background: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.main-nav > a:not(.button)::after,
.nav-button::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -5px;
	height: 1px;
	background: currentColor;
	transition: right .2s ease;
}

.main-nav > a:hover::after,
.nav-button:hover::after {
	right: 0;
}

.cart-link span {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	margin-left: 5px;
	padding: 0 6px;
	border-radius: 20px;
	background: var(--forest);
	color: white;
	font-size: 11px;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border: 1px solid var(--terracotta);
	border-radius: 2px;
	background: var(--terracotta);
	color: white;
	font-weight: 600;
	letter-spacing: .01em;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.button:hover {
	background: var(--terracotta-dark);
	transform: translateY(-1px);
}

.button-small {
	min-height: 40px;
	padding: 8px 17px;
	font-size: 13px;
}

.button-full {
	width: 100%;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--terracotta);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	font-family: var(--serif);
	font-weight: 400;
	line-height: 1.05;
}

/* Editorial landing page */

.landing-page {
	background: #f8f3eb;
}

.landing-page .site-header {
	position: sticky;
	top: 0;
	transition: background-color .35s ease, box-shadow .35s ease;
}

.landing-page .site-header::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--terracotta);
	transform: scaleX(var(--page-progress, 0));
	transform-origin: left;
}

.landing-page .site-header.is-scrolled {
	background: rgba(251, 248, 242, .88);
	box-shadow: 0 12px 32px rgba(48, 37, 25, .08);
}

.landing-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 88%, rgba(169, 79, 53, .10), transparent 28%),
		linear-gradient(115deg, #fbf8f2 0%, #f7f0e6 58%, #eee2d3 100%);
}

.hero-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .16;
	background:
		repeating-radial-gradient(circle at 17% 23%, rgba(72, 51, 31, .28) 0 1px, transparent 1px 5px);
	background-size: 11px 13px;
}

.landing-hero-grid {
	position: relative;
	min-height: 720px;
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
	padding-block: 72px 48px;
}

.landing-hero-copy {
	position: relative;
	z-index: 2;
	padding-bottom: 35px;
}

.landing-hero-copy h1 {
	margin: 0;
	font-size: clamp(66px, 7.3vw, 106px);
	letter-spacing: -.06em;
	line-height: .84;
}

.landing-hero-copy h1 em {
	display: inline-block;
	margin-left: .32em;
	color: var(--terracotta);
	font-weight: 400;
}

.landing-hero-copy .hero-lede {
	max-width: 510px;
	margin: 34px 0;
	font-size: 18px;
}

.button-arrow {
	gap: 28px;
}

.button-arrow span {
	font-size: 20px;
	line-height: 1;
	transition: transform .2s ease;
}

.button-arrow:hover span {
	transform: translateX(4px);
}

.hero-signature {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 56px;
}

.signature-line {
	width: 42px;
	height: 1px;
	background: var(--terracotta);
}

.hero-signature p {
	margin: 0;
	color: var(--muted);
	font-family: var(--serif);
	font-size: 15px;
	font-style: italic;
}

.hero-signature strong {
	color: var(--ink);
	font-weight: 500;
}

.hero-editorial {
	position: relative;
	min-height: 610px;
	isolation: isolate;
}

.hero-product-main,
.hero-product-inset {
	margin: 0;
}

.hero-product-main {
	position: absolute;
	inset: 0 118px 20px 38px;
	overflow: hidden;
	background: #c7ae8c;
	box-shadow: 0 36px 82px rgba(57, 39, 24, .24);
	transform: translate3d(var(--hero-main-x, 0), var(--hero-main-y, 0), 0) rotate(1.2deg);
	transition: transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .8s ease;
}

.hero-product-main::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 58%, rgba(34, 24, 17, .27));
	pointer-events: none;
}

.hero-product-main img,
.hero-product-inset img,
.craft-study-primary,
.craft-study-inset {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.hero-product-main img {
	object-position: center 44%;
	transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.hero-product-inset {
	position: absolute;
	z-index: 2;
	right: -14px;
	bottom: -8px;
	width: 190px;
	height: 255px;
	padding: 8px;
	background: var(--paper);
	box-shadow: 0 24px 52px rgba(49, 34, 22, .26);
	transform: translate3d(var(--hero-inset-x, 0), var(--hero-inset-y, 0), 0) rotate(3.2deg);
	transition: transform .9s cubic-bezier(.22, 1, .36, 1), box-shadow .8s ease;
}

.hero-product-inset img {
	object-position: center 50%;
}

.hero-product-inset figcaption {
	position: absolute;
	right: 8px;
	bottom: 8px;
	left: 8px;
	padding: 10px 8px 8px;
	background: linear-gradient(transparent, rgba(27, 22, 17, .78));
	color: white;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: center;
	text-transform: uppercase;
}

.collection-label {
	position: absolute;
	z-index: 2;
	left: -22px;
	bottom: 18px;
	width: 205px;
	padding: 22px 24px;
	border-top: 3px solid var(--terracotta);
	background: var(--white);
	box-shadow: 0 18px 42px rgba(48, 37, 25, .15);
	transform: translate3d(var(--hero-label-x, 0), var(--hero-label-y, 0), 0);
	transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.collection-label span,
.collection-label small {
	display: block;
	color: var(--muted);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.collection-label strong {
	display: block;
	margin: 8px 0 15px;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.05;
}

.maker-seal {
	position: absolute;
	z-index: 3;
	top: 28px;
	left: -8px;
	width: 90px;
	height: 90px;
	display: grid;
	place-content: center;
	border: 1px solid rgba(37, 40, 35, .48);
	border-radius: 50%;
	background: rgba(251, 248, 242, .78);
	text-align: center;
	transform: translate3d(var(--hero-seal-x, 0), var(--hero-seal-y, 0), 0) rotate(-9deg);
	transition: transform 1.05s cubic-bezier(.22, 1, .36, 1);
	backdrop-filter: blur(5px);
}

.maker-seal span {
	font-family: var(--serif);
	font-size: 24px;
	line-height: 1;
}

.maker-seal small {
	margin-top: 5px;
	font-size: 7px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.hero-index {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-block: 19px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero-index span:nth-child(2) {
	text-align: center;
}

.hero-index span:last-child {
	text-align: right;
}

.editorial-intro {
	padding: 128px 0;
	background: var(--paper);
}

.editorial-intro-grid {
	display: grid;
	grid-template-columns: .42fr 1.25fr .55fr;
	align-items: start;
	gap: clamp(35px, 6vw, 90px);
}

.editorial-intro blockquote {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(40px, 4.4vw, 62px);
	line-height: 1.08;
	letter-spacing: -.035em;
}

.editorial-intro-copy {
	padding-top: 10px;
	color: var(--muted);
	font-size: 13px;
}

.editorial-intro-copy p {
	margin: 0 0 22px;
}

.craft-story {
	padding: 120px 0;
	background: #ece3d7;
}

.craft-story-grid {
	display: grid;
	grid-template-columns: 1fr .8fr;
	align-items: center;
	gap: clamp(60px, 10vw, 145px);
}

.craft-study {
	position: relative;
	min-height: 580px;
	margin: 0;
}

.craft-study-primary {
	position: absolute;
	inset: 0 14% 7% 0;
	object-position: center;
	box-shadow: 0 28px 68px rgba(57, 45, 31, .16);
}

.craft-study-inset {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58%;
	height: 42%;
	border: 10px solid #ece3d7;
	object-position: center;
	box-shadow: 0 26px 50px rgba(57, 39, 26, .21);
	transform: rotate(1.5deg);
}

.craft-study figcaption {
	position: absolute;
	left: 26px;
	bottom: 31px;
	z-index: 2;
	margin: 0;
	padding: 16px 18px;
	background: rgba(255, 253, 249, .92);
	box-shadow: 0 12px 30px rgba(55, 43, 29, .12);
}

.craft-study figcaption span,
.craft-study figcaption strong {
	display: block;
}

.craft-study figcaption span {
	color: var(--terracotta);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.craft-study figcaption strong {
	margin-top: 3px;
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 500;
}

.craft-story-copy h2,
.section-heading h2,
.invitation-inner h2 {
	margin: 0;
	font-size: clamp(48px, 5vw, 72px);
	letter-spacing: -.045em;
}

.craft-story-copy > p:not(.eyebrow) {
	margin: 30px 0 42px;
	color: var(--muted);
}

.material-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.material-list li {
	display: flex;
	gap: 22px;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
	font-size: 13px;
	font-weight: 500;
}

.material-list span {
	color: var(--terracotta);
	font-family: var(--serif);
}

.private-experience {
	padding: 125px 0 135px;
	background: var(--paper);
}

.section-heading {
	display: grid;
	grid-template-columns: 1.2fr .5fr;
	align-items: end;
	gap: 90px;
}

.section-heading > p {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 13px;
}

.experience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 62px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.experience-grid article {
	position: relative;
	min-height: 330px;
	padding: 30px 44px 42px 0;
	transition: color .4s ease, padding .4s cubic-bezier(.22, 1, .36, 1);
}

.experience-grid article + article {
	padding-left: 44px;
	border-left: 1px solid var(--line);
}

.step-number {
	color: var(--muted);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
}

.step-icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	margin: 54px 0 30px;
	border: 1px solid var(--terracotta);
	border-radius: 50% 46% 52% 48%;
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 24px;
	transform: rotate(-4deg);
	transition: transform .55s cubic-bezier(.22, 1, .36, 1), background-color .4s ease,
		color .4s ease;
}

.experience-grid article:nth-child(2) .step-icon {
	border-radius: 2px;
	transform: rotate(3deg);
}

.experience-grid article:nth-child(3) .step-icon {
	border-radius: 50%;
	transform: none;
}

.experience-grid h3 {
	margin: 0 0 13px;
	font-size: 29px;
}

.experience-grid p {
	max-width: 270px;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.invitation-band {
	position: relative;
	overflow: hidden;
	padding: 110px 0;
	background: var(--forest);
	color: white;
}

.invitation-band::after {
	content: "H";
	position: absolute;
	right: 4vw;
	top: 50%;
	color: rgba(255, 255, 255, .035);
	font-family: var(--serif);
	font-size: 420px;
	line-height: .7;
	transform: translateY(-50%) rotate(-7deg);
}

.invitation-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr .55fr;
	align-items: end;
	gap: 100px;
}

.invitation-action {
	display: grid;
	gap: 20px;
}

.invitation-action > p {
	margin: 0 0 5px;
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
}

.invitation-action > a:last-child {
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.button-light {
	border-color: #f0e5d7;
	background: #f0e5d7;
	color: var(--forest);
}

.button-light:hover {
	background: white;
}

/* Landing-page motion and responsive interactions */

.landing-page.has-motion .reveal-pending {
	opacity: 0;
	filter: blur(3px);
	transition:
		opacity .8s cubic-bezier(.22, 1, .36, 1),
		transform .8s cubic-bezier(.22, 1, .36, 1),
		filter .8s cubic-bezier(.22, 1, .36, 1);
}

.landing-page.has-motion .reveal-pending[data-reveal="up"] {
	transform: translate3d(0, 34px, 0);
}

.landing-page.has-motion .reveal-pending[data-reveal="left"] {
	transform: translate3d(-38px, 16px, 0);
}

.landing-page.has-motion .reveal-pending[data-reveal="right"] {
	transform: translate3d(38px, 16px, 0);
}

.landing-page.has-motion .reveal-pending.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0);
}

.landing-page.has-motion .experience-grid article:nth-child(2) {
	transition-delay: .09s;
}

.landing-page.has-motion .experience-grid article:nth-child(3) {
	transition-delay: .18s;
}

@keyframes landing-rise {
	from {
		opacity: 0;
		transform: translate3d(0, 24px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes landing-art-arrive {
	from {
		opacity: 0;
		transform: translate3d(28px, 30px, 0) scale(.975);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes landing-index-arrive {
	from {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.landing-hero-copy > * {
		opacity: 0;
		animation: landing-rise .75s cubic-bezier(.22, 1, .36, 1) forwards;
	}

	.landing-hero-copy > :nth-child(1) {
		animation-delay: .08s;
	}

	.landing-hero-copy > :nth-child(2) {
		animation-delay: .16s;
	}

	.landing-hero-copy > :nth-child(3) {
		animation-delay: .27s;
	}

	.landing-hero-copy > :nth-child(4) {
		animation-delay: .38s;
	}

	.landing-hero-copy > :nth-child(5) {
		animation-delay: .49s;
	}

	.hero-editorial {
		opacity: 0;
		animation: landing-art-arrive 1.05s .22s cubic-bezier(.22, 1, .36, 1) forwards;
	}

	.hero-index {
		opacity: 0;
		animation: landing-index-arrive .7s .72s cubic-bezier(.22, 1, .36, 1) forwards;
	}
}

@media (hover: hover) and (pointer: fine) {
	.hero-editorial:hover .hero-product-main {
		box-shadow: 0 42px 94px rgba(57, 39, 24, .29);
	}

	.hero-editorial:hover .hero-product-main img {
		transform: scale(1.035);
	}

	.hero-editorial:hover .hero-product-inset {
		box-shadow: 0 30px 62px rgba(49, 34, 22, .31);
	}

	.craft-study-primary,
	.craft-study-inset {
		transition: transform .9s cubic-bezier(.22, 1, .36, 1), box-shadow .8s ease;
	}

	.craft-study:hover .craft-study-primary {
		transform: translate3d(-5px, -4px, 0) scale(1.012);
		box-shadow: 0 34px 78px rgba(57, 45, 31, .21);
	}

	.craft-study:hover .craft-study-inset {
		transform: translate3d(7px, -7px, 0) rotate(2.2deg);
		box-shadow: 0 32px 62px rgba(57, 39, 26, .26);
	}

	.experience-grid article:hover .step-icon {
		background: var(--terracotta);
		color: var(--white);
		transform: translateY(-6px) rotate(2deg) scale(1.05);
	}

	.material-list li {
		transition: padding-left .35s cubic-bezier(.22, 1, .36, 1), color .35s ease;
	}

	.material-list li:hover {
		padding-left: 10px;
		color: var(--terracotta-dark);
	}
}

.hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 90%, rgba(169, 79, 53, .08), transparent 28%),
		var(--paper);
}

.hero-grid {
	min-height: 680px;
	display: grid;
	grid-template-columns: 1fr .9fr;
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
	padding-block: 72px;
}

.hero-copy h1 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(54px, 6.2vw, 88px);
	letter-spacing: -.045em;
}

.hero-copy h1 em {
	display: block;
	color: var(--terracotta);
	font-weight: 400;
}

.hero-lede,
.large-copy {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.hero-lede {
	max-width: 540px;
	margin: 28px 0 34px;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 26px;
}

.text-link {
	font-size: 14px;
	font-weight: 600;
}

.text-link span {
	margin-left: 7px;
	transition: margin .2s ease;
}

.text-link:hover span {
	margin-left: 12px;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 44px;
	color: var(--muted);
	font-size: 12px;
}

.trust-row span::before {
	content: "·";
	margin-right: 8px;
	color: var(--terracotta);
	font-size: 20px;
	vertical-align: -2px;
}

.hero-art {
	position: relative;
	min-height: 500px;
	isolation: isolate;
}

.sun-disc {
	position: absolute;
	width: 260px;
	height: 260px;
	top: 12px;
	right: 0;
	border-radius: 50%;
	background: #ddb788;
	opacity: .8;
}

.woven-panel {
	position: absolute;
	inset: 80px 46px 42px 20px;
	z-index: -1;
	background-color: #d8c5a7;
	background-image:
		linear-gradient(45deg, rgba(60, 62, 52, .08) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(60, 62, 52, .08) 25%, transparent 25%);
	background-size: 18px 18px;
	box-shadow: 0 26px 70px rgba(55, 42, 27, .14);
	transform: rotate(2deg);
}

.vessel {
	position: absolute;
	bottom: 42px;
	box-shadow: inset -24px -15px 45px rgba(73, 38, 20, .22), 0 20px 35px rgba(50, 38, 24, .18);
}

.vessel::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -18px;
	width: 50%;
	height: 28px;
	border-radius: 50%;
	background: #a95237;
	transform: translateX(-50%);
}

.vessel-tall {
	right: 52px;
	width: 180px;
	height: 340px;
	border-radius: 46% 46% 28% 28% / 28% 28% 16% 16%;
	background: linear-gradient(120deg, #d27b55, #97432e);
	transform: rotate(4deg);
}

.vessel-round {
	left: 14px;
	width: 245px;
	height: 210px;
	border-radius: 48% 52% 32% 34%;
	background: linear-gradient(120deg, #67766d, #2e483d);
	transform: rotate(-3deg);
}

.hero-note {
	position: absolute;
	left: -18px;
	bottom: 8px;
	width: 195px;
	padding: 18px 20px;
	border-left: 3px solid var(--terracotta);
	background: var(--white);
	box-shadow: 0 14px 32px rgba(45, 38, 29, .12);
}

.hero-note span {
	display: block;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero-note strong {
	display: block;
	margin-top: 4px;
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 500;
}

.intro-band {
	padding: 110px 0;
	background: var(--forest);
	color: white;
}

.intro-grid {
	display: grid;
	grid-template-columns: .6fr 1.3fr .8fr;
	align-items: start;
	gap: 50px;
}

.intro-grid h2 {
	margin: 0;
	font-size: clamp(38px, 4.2vw, 60px);
	letter-spacing: -.03em;
}

.intro-grid > p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, .68);
}

.process {
	padding: 110px 0 120px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 35px;
	border-top: 1px solid var(--line);
}

.process-grid article {
	padding: 36px 42px 20px 0;
}

.process-grid article + article {
	padding-left: 42px;
	border-left: 1px solid var(--line);
}

.process-grid span {
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 18px;
}

.process-grid h3 {
	margin: 45px 0 12px;
	font-size: 30px;
}

.process-grid p {
	max-width: 270px;
	margin: 0;
	color: var(--muted);
}

.site-footer {
	padding: 45px 0;
	border-top: 1px solid var(--line);
	background: #ede4d8;
}

.footer-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	color: var(--muted);
	font-size: 12px;
}

.footer-inner strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 500;
}

.footer-logo {
	display: block;
	width: auto;
	height: 94px;
}

.footer-inner p {
	margin: 6px 0 0;
}

.access-page {
	min-height: calc(100vh - 104px);
	padding: 90px 0 110px;
}

.access-grid {
	display: grid;
	grid-template-columns: .85fr 1fr;
	gap: clamp(50px, 9vw, 130px);
	align-items: start;
}

.access-grid-compact {
	align-items: center;
}

.access-grid h1,
.cart-page h1,
.checkout-heading h1 {
	margin: 0 0 25px;
	font-size: clamp(46px, 5.5vw, 72px);
	letter-spacing: -.035em;
}

.privacy-note {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	max-width: 430px;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.privacy-note > span {
	color: var(--terracotta);
}

.privacy-note p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.privacy-note strong {
	color: var(--ink);
}

.form-card {
	padding: clamp(26px, 5vw, 52px);
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 24px 70px rgba(55, 45, 31, .08);
}

.form-card form {
	display: grid;
	gap: 24px;
}

.help-page {
	padding: 82px 0 110px;
}

.help-hero {
	max-width: 920px;
	padding-bottom: 64px;
}

.help-hero h1 {
	max-width: 780px;
	margin: 0 0 22px;
	font-size: clamp(54px, 7vw, 92px);
	letter-spacing: -.045em;
}

.help-hero > p:last-child {
	max-width: 720px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.help-steps,
.help-faq {
	padding-top: 58px;
	border-top: 1px solid var(--line);
}

.help-faq {
	margin-top: 82px;
}

.help-section-head {
	display: grid;
	grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
	gap: 30px;
	align-items: end;
	margin-bottom: 34px;
}

.help-section-head p {
	margin: 0;
}

.help-section-head h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
}

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

.help-grid article {
	min-height: 245px;
	padding: 30px;
	background: var(--white);
}

.help-grid article > span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 30px;
	background: var(--forest);
	color: white;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
}

.help-grid h3 {
	margin: 0 0 12px;
	font-size: 25px;
}

.help-grid p,
.help-faq-list p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75;
}

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

.help-faq-list details {
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.help-faq-list summary {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 23px;
	cursor: pointer;
}

.help-faq-list p {
	max-width: 780px;
	padding: 15px 28px 0 0;
}

@media (max-width: 900px) {
	.help-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 650px) {
	.help-section-head,
	.help-grid {
		grid-template-columns: 1fr;
	}
}

label {
	display: grid;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
}

input,
textarea {
	width: 100%;
	border: 1px solid #cfc8bd;
	border-radius: 2px;
	outline: none;
	background: #fffefa;
	color: var(--ink);
	padding: 13px 14px;
	transition: border-color .2s, box-shadow .2s;
}

textarea {
	resize: vertical;
}

input:focus,
textarea:focus {
	border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(169, 79, 53, .12);
}

.field-error {
	min-height: 4px;
	color: #a32e2e;
	font-size: 11px;
	font-weight: 500;
}

.form-foot {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	text-align: center;
}

.form-foot a {
	color: var(--terracotta);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.notice {
	margin-bottom: 22px;
	padding: 13px 15px;
	border-left: 3px solid;
	font-size: 13px;
}

.notice.success {
	border-color: #4f795d;
	background: #edf5ef;
	color: #2d5939;
}

.notice.danger {
	border-color: #ac4540;
	background: #faedeb;
	color: #7e2926;
}

.dev-code {
	margin-bottom: 26px;
	padding: 18px;
	border: 1px dashed #c59963;
	background: #fff8e9;
	text-align: center;
}

.dev-code span,
.dev-code small {
	display: block;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.dev-code strong {
	display: block;
	margin: 4px 0;
	font-family: var(--serif);
	font-size: 30px;
	letter-spacing: .12em;
}

.code-input {
	font-size: 22px;
	letter-spacing: .25em;
	text-align: center;
}

.catalog-hero {
	padding: 82px 0 74px;
	background: var(--forest);
	color: white;
}

.catalog-heading {
	display: grid;
	grid-template-columns: 1.4fr .6fr;
	align-items: end;
	gap: 80px;
}

.catalog-heading h1 {
	margin: 0;
	font-size: clamp(48px, 6vw, 76px);
	letter-spacing: -.04em;
}

.catalog-heading > p {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, .68);
}

.catalog-tools {
	display: flex;
	justify-content: space-between;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 12px;
}

.catalog-tools p {
	margin: 0;
}

.catalog-tools strong {
	color: var(--ink);
}

.catalog-back-link {
	display: inline-block;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
}

.store-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 42px 0 110px;
}

.store-category-card {
	position: relative;
	min-height: 390px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background:
		radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .25), transparent 24%),
		linear-gradient(145deg, #8c5f43, #d0a271);
	color: white;
}

.store-category-card:nth-child(3n + 2) {
	background:
		radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .2), transparent 24%),
		linear-gradient(145deg, #304b40, #78917b);
}

.store-category-card:nth-child(3n + 3) {
	background:
		radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .22), transparent 24%),
		linear-gradient(145deg, #7b4b3b, #b98568);
}

.store-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 28, 23, .03) 25%, rgba(20, 28, 23, .82) 100%);
	pointer-events: none;
}

.store-category-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.store-category-card:hover > img {
	transform: scale(1.035);
}

.store-category-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: var(--serif);
	font-size: 120px;
	opacity: .42;
	transform: translate(-50%, -58%);
}

.store-category-copy {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 28px;
}

.store-category-copy p {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, .72);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.store-category-copy h2 {
	margin: 0 0 18px;
	font-size: 34px;
}

.store-category-copy > span {
	font-size: 11px;
	font-weight: 600;
}

.category-empty-state {
	margin-bottom: 110px;
}

.floating-notice {
	margin: 24px 0 0;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 58px 24px;
	padding: 42px 0 110px;
}

.product-visual,
.product-detail-art,
.cart-thumb {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 68% 28%, rgba(255,255,255,.32), transparent 22%),
		linear-gradient(140deg, var(--art-start), var(--art-end));
}

.product-visual {
	aspect-ratio: 4 / 5;
}

.product-visual > img,
.product-detail-art > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.product-visual.has-photo::after,
.product-detail-art.has-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 62%, rgba(22, 28, 24, .38));
	pointer-events: none;
}

.product-visual.has-photo:hover > img {
	transform: scale(1.025);
}

.product-visual::before,
.product-detail-art::before {
	content: "";
	position: absolute;
	width: 64%;
	height: 64%;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 50% 43% 47% 38%;
	transform: rotate(-9deg);
}

.product-visual.has-photo::before,
.product-detail-art.has-photo::before {
	display: none;
}

.product-visual > span,
.product-detail-art > span {
	z-index: 1;
	color: rgba(255,255,255,.88);
	font-family: var(--serif);
	font-size: 86px;
	text-shadow: 0 8px 25px rgba(30,20,10,.2);
	transition: transform .35s ease;
}

.product-visual:hover > span {
	transform: scale(1.06) rotate(3deg);
}

.product-visual small {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 1;
	color: rgba(255,255,255,.92);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.product-info {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
	margin-top: 19px;
}

.product-category {
	margin: 0 0 5px;
	color: var(--terracotta);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.product-info h2 {
	margin: 0;
	font-size: 25px;
	line-height: 1.15;
}

.price,
.line-price {
	margin: 3px 0 0;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
}

.product-summary {
	margin: 13px 0 17px;
	color: var(--muted);
	font-size: 13px;
}

.add-button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	border: 0;
	border-top: 1px solid var(--line);
	background: none;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

.add-button .add-symbol {
	margin-left: auto;
	font-size: 18px;
	transition: transform .2s ease;
}

.add-button:hover .add-symbol {
	transform: rotate(90deg);
}

.selected-quantity {
	margin-left: 12px;
	padding: 3px 8px;
	border-radius: 20px;
	background: var(--sand);
	color: var(--terracotta-dark);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .04em;
}

.selected-quantity strong,
.detail-selected-count strong {
	font-weight: 700;
}

.is-hidden {
	display: none !important;
}

.add-button:disabled,
.product-add-button:disabled {
	cursor: wait;
	opacity: .72;
}

.add-button.is-loading .add-symbol {
	animation: cart-spin .7s linear infinite;
}

.product-add-button {
	justify-content: space-between;
	gap: 18px;
}

.detail-selected-count {
	padding-left: 18px;
	border-left: 1px solid rgba(255, 255, 255, .32);
	font-size: 10px;
	letter-spacing: .04em;
	white-space: nowrap;
}

.cart-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	max-width: min(390px, calc(100% - 32px));
	padding: 15px 19px;
	background: var(--forest);
	color: white;
	box-shadow: 0 18px 45px rgba(25, 42, 34, .28);
	font-size: 12px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(15px);
	pointer-events: none;
	transition: opacity .22s ease, transform .22s ease;
}

.cart-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.count-bump {
	animation: count-bump .32s ease;
}

@keyframes cart-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes count-bump {
	50% {
		transform: scale(1.22);
	}
}

.product-page {
	padding: 42px 0 100px;
}

.back-link {
	display: inline-block;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
}

.product-detail {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(45px, 8vw, 100px);
	align-items: start;
}

.product-detail-art {
	min-height: 650px;
}

.product-gallery {
	min-width: 0;
}

.product-gallery-viewer {
	position: relative;
	background: #eee7dc;
}

.product-gallery-viewport {
	display: flex;
	min-height: 650px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.product-gallery-viewport::-webkit-scrollbar {
	display: none;
}

.product-gallery-viewport:focus-visible {
	outline: 2px solid var(--terracotta);
	outline-offset: 3px;
}

.product-gallery-slide {
	min-width: 100%;
	min-height: 650px;
	margin: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.product-gallery-slide img {
	width: 100%;
	height: 100%;
	min-height: 650px;
	display: block;
	object-fit: cover;
}

.product-gallery-controls {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px;
	background: rgba(250, 247, 241, .94);
	box-shadow: 0 8px 25px rgba(34, 28, 22, .12);
	backdrop-filter: blur(8px);
}

.product-gallery-controls button {
	width: 35px;
	height: 35px;
	border: 0;
	background: var(--forest);
	color: white;
	cursor: pointer;
}

.product-gallery-controls button:disabled {
	opacity: .35;
	cursor: default;
}

.product-gallery-controls > span {
	min-width: 36px;
	color: var(--muted);
	font-size: 9px;
	text-align: center;
}

.product-gallery-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	overflow-x: auto;
	padding: 2px 2px 6px;
	scrollbar-width: thin;
}

.product-gallery-thumbnails button {
	width: 70px;
	height: 82px;
	flex: 0 0 auto;
	padding: 3px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	opacity: .62;
	transition: border-color .2s ease, opacity .2s ease;
}

.product-gallery-thumbnails button:hover,
.product-gallery-thumbnails button.is-active {
	border-color: var(--terracotta);
	opacity: 1;
}

.product-gallery-thumbnails img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.product-detail-art > span {
	font-size: 150px;
}

.product-detail-art small {
	position: absolute;
	bottom: 20px;
	color: rgba(255,255,255,.7);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.product-detail-copy {
	padding-top: 50px;
}

.product-detail-copy h1 {
	margin: 0;
	font-size: clamp(48px, 5vw, 70px);
	letter-spacing: -.04em;
}

.detail-price {
	margin: 19px 0 30px;
	font-size: 18px;
	font-weight: 600;
}

.product-detail-copy > p:not(.eyebrow):not(.detail-price):not(.large-copy) {
	color: var(--muted);
}

.stock-note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 27px 0 22px;
	font-size: 12px;
}

.stock-note span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #5c8a68;
}

.detail-meta {
	display: grid;
	gap: 14px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.detail-meta div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 11px;
}

.detail-meta span {
	color: var(--muted);
}

.mobile-cart {
	display: none;
}

.cart-page,
.checkout-page {
	min-height: 75vh;
	padding: 74px 0 110px;
}

.cart-layout,
.checkout-layout {
	display: grid;
	grid-template-columns: 1.4fr .7fr;
	gap: clamp(45px, 7vw, 90px);
	align-items: start;
}

.cart-line {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 22px 0;
	border-top: 1px solid var(--line);
}

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

.cart-thumb {
	width: 110px;
	aspect-ratio: 1;
}

.cart-thumb span {
	color: rgba(255,255,255,.85);
	font-family: var(--serif);
	font-size: 35px;
}

.cart-thumb > img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.cart-thumb.has-photo span {
	display: none;
}

.cart-line-copy h2 {
	margin: 0 0 8px;
	font-size: 24px;
}

.cart-line-copy p {
	margin: 0 0 7px;
	color: var(--muted);
	font-size: 11px;
}

.text-button {
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: none;
	color: var(--terracotta);
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
}

.order-summary,
.checkout-summary {
	position: sticky;
	top: 25px;
	padding: 32px;
	border: 1px solid var(--line);
	background: var(--white);
}

.order-summary > div,
.summary-total {
	display: flex;
	justify-content: space-between;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	font-size: 13px;
}

.order-summary .summary-total,
.summary-total {
	padding: 20px 0;
	font-size: 18px;
}

.order-summary > p:not(.eyebrow) {
	margin: 20px 0;
	color: var(--muted);
	font-size: 11px;
}

.continue-link {
	display: block;
	margin-top: 16px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.empty-state {
	max-width: 620px;
	margin: 40px auto 0;
	padding: 70px 25px;
	border: 1px solid var(--line);
	background: var(--white);
	text-align: center;
}

.empty-state > span {
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 52px;
}

.empty-state h2 {
	margin: 8px 0;
	font-size: 38px;
}

.empty-state p {
	margin: 0 0 25px;
	color: var(--muted);
}

.checkout-heading {
	display: grid;
	grid-template-columns: 1fr .45fr;
	align-items: end;
	gap: 70px;
	margin-bottom: 45px;
}

.checkout-heading h1 {
	margin-bottom: 0;
}

.checkout-heading > p {
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 13px;
}

.checkout-form {
	box-shadow: none;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.consent-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 500;
}

.consent-row input {
	width: auto;
	margin-top: 3px;
}

.checkout-item {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	font-size: 12px;
}

.checkout-item span,
.checkout-item small {
	display: block;
}

.checkout-item small {
	margin-top: 3px;
	color: var(--muted);
}

.secure-note {
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 10px;
}

.confirmation-page {
	min-height: 75vh;
	display: grid;
	place-items: center;
	padding: 80px 20px;
}

.confirmation-card {
	width: min(680px, 100%);
	padding: clamp(38px, 7vw, 75px);
	border: 1px solid var(--line);
	background: var(--white);
	text-align: center;
	box-shadow: 0 28px 80px rgba(55, 45, 31, .08);
}

.confirmation-mark {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 28px;
	border-radius: 50%;
	background: var(--forest);
	color: white;
	font-size: 24px;
}

.confirmation-card h1 {
	margin: 0;
	font-size: clamp(45px, 6vw, 66px);
}

.order-number {
	display: inline-grid;
	gap: 3px;
	margin: 25px 0 32px;
	padding: 15px 25px;
	background: var(--sand);
}

.order-number span {
	color: var(--muted);
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.order-number strong {
	font-size: 16px;
	letter-spacing: .05em;
}

.confirmation-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

/* Owner workspace */

.admin-body {
	background: #f3eee6;
}

.admin-layout {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 310px 1fr;
}

.admin-sidebar {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 31px 18px 25px;
	background: var(--forest);
	color: white;
}

.admin-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 29px;
	padding: 8px 9px;
	border: 1px solid rgba(169, 79, 53, .14);
	border-radius: 4px;
	background: #eadfce;
}

.admin-brand > img {
	display: block;
	width: 100%;
	height: auto;
}

.admin-brand > span {
	width: 37px;
	height: 37px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 50% 46% 52% 48%;
	font-family: var(--serif);
	font-size: 20px;
	transform: rotate(-5deg);
}

.admin-brand strong,
.admin-brand small {
	display: block;
}

.admin-brand strong {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 500;
}

.admin-brand small,
.admin-mobile-brand span {
	margin-top: 3px;
	color: rgba(255, 255, 255, .52);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.admin-sidebar nav {
	display: grid;
	gap: 5px;
	margin-top: 5px;
}

.admin-sidebar nav a {
	position: relative;
	padding: 11px 13px;
	border-radius: 2px;
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
	font-weight: 600;
	transition: color .2s, background .2s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
	background: rgba(255, 255, 255, .10);
	color: white;
}

.admin-sidebar nav a.active::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;
	width: 2px;
	background: #d69b77;
}

.admin-sidebar-foot {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding: 20px 8px 0;
	border-top: 1px solid rgba(255, 255, 255, .13);
}

.admin-sidebar-foot a,
.admin-sidebar-foot button {
	padding: 0;
	border: 0;
	background: none;
	color: rgba(255, 255, 255, .62);
	font-size: 10px;
	font-weight: 600;
	cursor: pointer;
}

.admin-sidebar-foot a:hover,
.admin-sidebar-foot button:hover {
	color: white;
}

.admin-main {
	min-width: 0;
	padding: 58px clamp(30px, 5vw, 76px) 80px;
}

.admin-mobile-brand {
	display: none;
}

.admin-mobile-brand > a {
	display: block;
	width: min(270px, 72vw);
}

.admin-mobile-brand img {
	display: block;
	width: 100%;
	height: auto;
}

.admin-page-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 35px;
	margin-bottom: 36px;
}

.admin-page-head h1 {
	margin: 0;
	font-size: clamp(48px, 5.3vw, 72px);
	letter-spacing: -.045em;
}

.admin-page-head > div > p:last-child {
	margin: 13px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.admin-eyebrow {
	margin: 0 0 9px;
	color: var(--terracotta);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.admin-alert {
	margin: 0 0 25px;
	padding: 13px 16px;
	border-left: 3px solid;
	font-size: 12px;
}

.admin-alert.success {
	border-color: #4f795d;
	background: #e4efe7;
	color: #2d5939;
}

.admin-alert.danger {
	border-color: #ac4540;
	background: #f6e4e1;
	color: #7e2926;
}

.admin-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 28px;
	border: 1px solid var(--line);
	background: var(--white);
}

.admin-metrics > * {
	min-width: 0;
	display: grid;
	padding: 24px;
}

.admin-metrics > * + * {
	border-left: 1px solid var(--line);
}

.admin-metrics span {
	color: var(--muted);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.admin-metrics strong {
	margin: 20px 0 7px;
	font-family: var(--serif);
	font-size: 43px;
	font-weight: 400;
	line-height: 1;
}

.admin-metrics small {
	overflow: hidden;
	color: var(--muted);
	font-size: 9px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-panel {
	border: 1px solid var(--line);
	background: var(--white);
}

.admin-analytics-panel {
	margin-bottom: 28px;
	border: 1px solid var(--line);
	background: var(--white);
}

.analytics-panel-head > p {
	max-width: 390px;
	margin: 0;
	color: var(--muted);
	font-size: 10px;
	text-align: right;
}

.admin-analytics-grid {
	display: grid;
	grid-template-columns: minmax(220px, .72fr) repeat(2, minmax(0, 1fr));
}

.admin-analytics-grid > article + article {
	border-left: 1px solid var(--line);
}

.visitor-total-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 31px 28px;
	background: var(--forest);
	color: white;
}

.visitor-total-icon {
	position: relative;
	display: block;
	width: 39px;
	height: 25px;
	margin-bottom: 44px;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 70% 30% 70% 30%;
	transform: rotate(45deg);
}

.visitor-total-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border: 2px solid #e4a27c;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.visitor-total-card p {
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.visitor-total-card > strong {
	margin: 8px 0 18px;
	font-family: var(--serif);
	font-size: clamp(54px, 5vw, 76px);
	font-weight: 400;
	line-height: .95;
}

.visitor-total-card > small {
	margin-top: auto;
	color: rgba(255, 255, 255, .58);
	font-size: 9px;
	line-height: 1.65;
}

.analytics-breakdown-card {
	min-width: 0;
}

.analytics-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 23px 24px 19px;
	border-bottom: 1px solid var(--line);
}

.analytics-card-heading span,
.analytics-card-heading > small {
	color: var(--terracotta);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.analytics-card-heading h3 {
	margin: 4px 0 0;
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.1;
}

.analytics-card-heading > small {
	color: var(--muted);
}

.analytics-row-list {
	max-height: 330px;
	overflow-y: auto;
}

.analytics-data-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 24px;
}

.analytics-data-row + .analytics-data-row {
	border-top: 1px solid rgba(37, 40, 35, .08);
}

.analytics-data-row > div {
	min-width: 0;
	display: grid;
	gap: 2px;
}

.analytics-data-row > div strong {
	overflow: hidden;
	font-size: 11px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.analytics-data-row small {
	color: var(--muted);
	font-size: 8px;
}

.analytics-data-row > span {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: 8px;
	text-align: right;
	text-transform: uppercase;
}

.analytics-data-row > span b {
	display: block;
	color: var(--ink);
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	line-height: .95;
}

.analytics-empty-row {
	padding: 45px 24px;
	color: var(--muted);
	font-size: 10px;
	text-align: center;
}

.analytics-footnote {
	margin: 0;
	padding: 12px 24px;
	border-top: 1px solid var(--line);
	background: #f8f3eb;
	color: var(--muted);
	font-size: 8px;
	letter-spacing: .02em;
}

.admin-panel-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	padding: 25px 28px;
	border-bottom: 1px solid var(--line);
}

.admin-panel-head h2,
.category-create h2 {
	margin: 0;
	font-size: 29px;
}

.admin-panel-head > a {
	color: var(--terracotta);
	font-size: 10px;
	font-weight: 600;
}

.access-admin-panel .admin-panel-head {
	align-items: center;
}

.access-admin-panel .admin-panel-head > p {
	max-width: 320px;
	margin: 0;
	color: var(--muted);
	font-size: 11px;
	text-align: right;
}

.access-request-list {
	display: grid;
}

.access-request-card {
	display: grid;
	grid-template-columns: minmax(230px, 1.2fr) minmax(175px, .8fr) minmax(155px, .75fr) minmax(130px, .65fr);
	align-items: center;
	gap: 24px;
	padding: 22px 28px;
	border-bottom: 1px solid var(--line);
}

.access-request-card:last-child {
	border-bottom: 0;
}

.access-request-card:hover {
	background: #faf6f0;
}

.access-request-client {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 14px;
}

.client-initial {
	flex: 0 0 auto;
	width: 43px;
	height: 43px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--forest);
	color: white;
	font-family: var(--serif);
	font-size: 21px;
	text-transform: uppercase;
}

.access-request-client strong,
.access-request-client a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.access-request-client strong {
	margin-bottom: 3px;
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 500;
}

.access-request-client a {
	color: var(--muted);
	font-size: 9px;
}

.access-code-block > span {
	display: block;
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.access-code-block > div {
	display: flex;
	align-items: center;
	gap: 9px;
}

.access-code-block > div strong {
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 500;
	letter-spacing: .08em;
}

.access-code-block button {
	padding: 3px 7px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--terracotta);
	font-size: 8px;
	font-weight: 700;
	cursor: pointer;
}

.access-code-block em,
.code-unavailable {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-size: 8px;
	font-style: normal;
	font-weight: 500;
}

.code-unavailable {
	margin-top: 9px;
	font-size: 11px;
}

.access-request-state {
	display: grid;
	justify-items: start;
	gap: 4px;
}

.access-status {
	padding: 4px 8px;
	border-radius: 20px;
	background: #eee6d9;
	color: #665d50;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .08em;
}

.access-pending {
	background: #fff0d5;
	color: #80591e;
}

.access-active {
	background: #e3efe6;
	color: #315c3d;
}

.access-locked,
.access-expired,
.access-revoked {
	background: #f5e2df;
	color: #812e29;
}

.access-request-state small {
	color: var(--muted);
	font-size: 8px;
}

.access-request-action {
	justify-self: end;
	text-align: right;
}

.access-request-action form {
	margin: 0;
}

.access-request-action > span {
	color: var(--muted);
	font-size: 8px;
}

.danger-action {
	max-width: 125px;
	padding: 8px 10px;
	border: 1px solid #b84f47;
	background: transparent;
	color: #96352f;
	font-size: 8px;
	font-weight: 700;
	cursor: pointer;
}

.danger-action:hover {
	background: #96352f;
	color: white;
}

.admin-empty {
	padding: 65px 25px;
	color: var(--muted);
	text-align: center;
}

.admin-empty h2,
.admin-empty p {
	margin: 0;
}

.admin-empty h2 {
	color: var(--ink);
	font-size: 32px;
}

.admin-order-row {
	display: grid;
	grid-template-columns: 1.1fr .8fr .55fr .5fr;
	align-items: center;
	gap: 25px;
	padding: 18px 28px;
	border-bottom: 1px solid var(--line);
	font-size: 11px;
}

.admin-order-row:last-child {
	border-bottom: 0;
}

.admin-order-row:hover {
	background: #faf6f0;
}

.admin-order-row > div strong,
.admin-order-row > div span {
	display: block;
}

.admin-order-row > div span,
.admin-order-row > span {
	margin-top: 2px;
	color: var(--muted);
	font-size: 9px;
}

.status-pill {
	justify-self: end;
	padding: 4px 9px;
	border-radius: 20px;
	background: #eee6d9;
	color: #665d50;
	font-size: 8px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .06em;
}

.status-placed {
	background: #fff0d5;
	color: #80591e;
}

.status-completed,
.status-shipped {
	background: #e3efe6;
	color: #315c3d;
}

.status-cancelled {
	background: #f5e2df;
	color: #812e29;
}

.admin-table-panel {
	overflow: hidden;
}

.admin-table-scroll {
	overflow-x: auto;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 11px;
}

.admin-table th {
	padding: 14px 18px;
	background: #f7f2ea;
	color: var(--muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
}

.admin-table td {
	padding: 17px 18px;
	border-top: 1px solid var(--line);
	vertical-align: middle;
}

.admin-table tbody tr:hover {
	background: #fbf8f3;
}

.admin-product-cell {
	min-width: 235px;
	display: flex;
	align-items: center;
	gap: 13px;
}

.admin-product-swatch {
	width: 44px;
	height: 48px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	background: linear-gradient(140deg, var(--art-start), var(--art-end));
	color: rgba(255, 255, 255, .9);
	font-family: var(--serif);
	font-size: 19px;
}

.admin-product-photo {
	object-fit: cover;
}

.admin-product-cell strong,
.admin-product-cell small,
.order-table td > strong,
.order-table td > small,
.order-table td > span {
	display: block;
}

.admin-product-cell small,
.order-table td > small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 8px;
}

.low-stock {
	color: #a33f2e;
}

.visibility-pill {
	padding: 4px 8px;
	border-radius: 20px;
	font-size: 8px;
	font-weight: 700;
}

.visibility-pill.visible {
	background: #e3efe6;
	color: #315c3d;
}

.visibility-pill.hidden {
	background: #ece8e1;
	color: #706a61;
}

.row-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.row-actions form {
	margin: 0;
}

.row-actions a,
.row-actions button,
.category-pdf-link,
.category-row button,
.status-form button {
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: none;
	color: var(--terracotta);
	font-size: 9px;
	font-weight: 600;
	cursor: pointer;
}

.admin-editor {
	max-width: 1050px;
}

.admin-form-panel {
	border: 1px solid var(--line);
	background: var(--white);
}

.admin-form-section {
	display: grid;
	grid-template-columns: .6fr 1.4fr;
	gap: clamp(35px, 6vw, 80px);
	padding: 35px;
	border-bottom: 1px solid var(--line);
}

.admin-form-section:last-child {
	border-bottom: 0;
}

.admin-form-section > div:first-child > span {
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 14px;
}

.admin-form-section h2 {
	margin: 15px 0 8px;
	font-size: 25px;
}

.admin-form-section > div:first-child p {
	margin: 0;
	color: var(--muted);
	font-size: 10px;
}

.admin-fields {
	display: grid;
	gap: 20px;
}

.admin-current-image {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px;
	border: 1px solid var(--line);
	background: #fbf7f1;
}

.admin-current-image img {
	width: 76px;
	height: 88px;
	flex: 0 0 auto;
	object-fit: cover;
}

.admin-current-image strong,
.admin-current-image small {
	display: block;
}

.admin-current-image small,
.admin-field-note {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 9px;
	line-height: 1.55;
}

.admin-gallery {
	border: 1px solid var(--line);
	background: #fbf7f1;
}

.admin-gallery-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
}

.admin-gallery-head strong,
.admin-gallery-head small {
	display: block;
}

.admin-gallery-head small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 9px;
}

.admin-gallery-head > span {
	color: var(--muted);
	font-size: 10px;
}

.admin-gallery-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 14px;
}

.admin-gallery-card {
	display: grid;
	grid-template-columns: 86px 1fr;
	min-width: 0;
	border: 1px solid var(--line);
	background: white;
}

.admin-gallery-card > img {
	width: 86px;
	height: 112px;
	display: block;
	object-fit: cover;
}

.admin-gallery-card-main {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 9px;
	padding: 10px;
}

.admin-cover-choice,
.admin-remove-image {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 7px;
	color: var(--ink);
	font-size: 8px;
	font-weight: 600;
}

.admin-cover-choice input,
.admin-remove-image input {
	width: 14px;
	height: 14px;
	min-height: 0;
	padding: 0;
}

.admin-gallery-order {
	display: flex;
	gap: 6px;
	margin-top: auto;
}

.admin-gallery-order button {
	width: 30px;
	height: 27px;
	border: 1px solid var(--line);
	background: #f8f3eb;
	color: var(--ink);
	cursor: pointer;
}

.admin-gallery-order button:disabled {
	opacity: .35;
	cursor: default;
}

.admin-remove-image {
	color: #9c3d2e;
}

.admin-file-field input[type="file"] {
	padding: 8px;
	background: white;
}

.admin-file-field input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 9px 13px;
	border: 0;
	background: var(--forest);
	color: white;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.admin-subheading {
	margin: 13px 0 -8px;
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.admin-fields label > span small {
	color: var(--muted);
	font-weight: 400;
}

select {
	width: 100%;
	min-height: 48px;
	padding: 11px 36px 11px 13px;
	border: 1px solid #cfc8bd;
	border-radius: 2px;
	outline: none;
	background: #fffefa;
	color: var(--ink);
	font: inherit;
}

select:focus {
	border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(169, 79, 53, .12);
}

.field-row-three {
	grid-template-columns: .55fr 1fr 1fr;
}

.admin-check {
	display: flex;
	align-items: center;
	gap: 10px;
}

.admin-check input {
	width: 17px;
	height: 17px;
}

.admin-form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	padding: 25px 0;
}

.admin-form-actions > a {
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

.admin-split {
	display: grid;
	grid-template-columns: 1.25fr .65fr;
	align-items: start;
	gap: 28px;
}

.category-list {
	padding: 4px 28px;
}

.category-row {
	display: grid;
	grid-template-columns: minmax(200px, .8fr) minmax(280px, 1fr);
	align-items: center;
	gap: 20px;
	padding: 19px 0;
	border-bottom: 1px solid var(--line);
}

.admin-category-summary {
	display: flex;
	align-items: center;
	gap: 13px;
}

.admin-category-summary > img,
.admin-category-summary > span {
	width: 54px;
	height: 58px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, #8c5f43, #d0a271);
	color: white;
	font-family: var(--serif);
	font-size: 22px;
	object-fit: cover;
}

.category-row-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.category-pdf-link {
	white-space: nowrap;
}

.category-image-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
}

.category-image-form input[type="file"] {
	min-width: 0;
	padding: 6px;
	font-size: 8px;
}

.category-row:last-child {
	border-bottom: 0;
}

.category-row strong,
.category-row small {
	display: block;
}

.category-row small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 9px;
}

.category-create {
	padding: 29px;
}

.category-create > p:not(.admin-eyebrow) {
	margin: 12px 0 25px;
	color: var(--muted);
	font-size: 11px;
}

.category-create form {
	display: grid;
	gap: 20px;
}

.order-table {
	min-width: 950px;
}

.order-table td {
	line-height: 1.45;
}

.status-form {
	min-width: 180px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.status-form select {
	min-height: 35px;
	padding-block: 6px;
	font-size: 9px;
}

.clickable-order-row {
	cursor: pointer;
}

.clickable-order-row:focus {
	outline: 2px solid var(--terracotta);
	outline-offset: -2px;
}

.order-number-link {
	display: inline-block;
	border-bottom: 1px solid transparent;
	font-weight: 700;
}

.order-number-link:hover {
	border-color: currentColor;
	color: var(--terracotta);
}

.admin-back {
	display: inline-block;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 600;
}

.order-detail-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 45px;
	margin-bottom: 32px;
}

.order-detail-head h1 {
	margin: 0;
	font-size: clamp(43px, 4.8vw, 65px);
	letter-spacing: -.045em;
}

.order-detail-head > div:first-child > p:last-child {
	margin: 11px 0 0;
	color: var(--muted);
	font-size: 11px;
}

.order-detail-head > div:first-child > p strong {
	color: var(--ink);
	font-weight: 600;
}

.order-detail-actions {
	min-width: 265px;
	display: grid;
	gap: 12px;
}

.button-pdf {
	justify-content: space-between;
	min-height: 44px;
	padding-block: 10px;
	font-size: 11px;
}

.button-pdf span {
	font-size: 16px;
}

.detail-status-form {
	display: flex;
	align-items: end;
	gap: 8px;
}

.detail-status-form label {
	flex: 1;
	gap: 4px;
}

.detail-status-form label > span {
	color: var(--muted);
	font-size: 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.detail-status-form select {
	min-height: 37px;
	padding-block: 6px;
	font-size: 9px;
}

.detail-status-form button {
	min-height: 37px;
	padding: 7px 11px;
	border: 1px solid var(--forest);
	background: var(--forest);
	color: white;
	font-size: 9px;
	font-weight: 600;
	cursor: pointer;
}

.order-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(240px, .55fr);
	align-items: start;
	gap: 26px;
}

.order-items-panel .admin-panel-head > p {
	max-width: 230px;
	margin: 0;
	color: var(--muted);
	font-size: 9px;
	text-align: right;
}

.order-item-editor-head,
.order-item-editor {
	display: grid;
	grid-template-columns: minmax(190px, 1fr) 80px 135px 115px;
	align-items: center;
	gap: 16px;
}

.order-item-editor-head {
	padding: 11px 24px;
	background: #f7f2ea;
	color: var(--muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.order-item-editor-head span:not(:first-child) {
	text-align: right;
}

.order-item-editor {
	padding: 17px 24px;
	border-top: 1px solid var(--line);
	font-size: 11px;
}

.order-product-cell {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.order-product-cell > div {
	min-width: 0;
}

.order-product-image,
.order-product-fallback {
	width: 50px;
	height: 56px;
	flex: 0 0 auto;
}

.order-product-image {
	object-fit: cover;
}

.order-product-fallback {
	display: grid;
	place-items: center;
	background: linear-gradient(140deg, var(--terracotta), #d8b184);
	color: rgba(255,255,255,.9);
	font-family: var(--serif);
	font-size: 22px;
}

.order-product-cell strong,
.order-product-cell small {
	display: block;
}

.order-product-cell small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 8px;
}

.order-item-editor > strong {
	text-align: right;
}

.price-field {
	position: relative;
	display: block;
}

.price-field input {
	height: 38px;
	padding: 7px 9px 7px 25px;
	text-align: right;
}

.currency-prefix {
	position: absolute;
	top: 50%;
	left: 9px;
	z-index: 1;
	color: var(--muted);
	font-size: 10px;
	transform: translateY(-50%);
}

.order-line-total {
	white-space: nowrap;
}

.order-editor-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 25px 24px;
	border-top: 1px solid var(--line);
	background: #fbf7f1;
}

.order-editor-total span,
.order-editor-total small {
	display: block;
}

.order-editor-total span {
	font-size: 11px;
	font-weight: 700;
}

.order-editor-total small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 8px;
}

.order-editor-total > strong {
	font-family: var(--serif);
	font-size: 25px;
	font-weight: 500;
	white-space: nowrap;
}

.concession-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 20px 0 0;
}

.concession-actions p {
	max-width: 430px;
	margin: 0;
	color: var(--muted);
	font-size: 9px;
}

.concession-actions .button {
	min-height: 43px;
	padding-block: 9px;
	font-size: 10px;
}

.order-client-column {
	display: grid;
	gap: 18px;
}

.order-client-card,
.pdf-note-card {
	padding: 25px;
}

.order-client-card h2 {
	margin: 0 0 15px;
	font-size: 26px;
}

.order-client-card > a {
	display: block;
	margin-top: 7px;
	color: var(--muted);
	font-size: 10px;
}

.order-client-card > p:not(.admin-eyebrow) {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 11px;
}

.pdf-note-card {
	position: relative;
	overflow: hidden;
	background: var(--forest);
	color: white;
}

.pdf-note-card > span {
	position: absolute;
	right: -8px;
	top: -20px;
	color: rgba(255, 255, 255, .06);
	font-family: var(--serif);
	font-size: 86px;
}

.pdf-note-card h3 {
	margin: 0;
	font-size: 25px;
}

.pdf-note-card p {
	margin: 12px 0 20px;
	color: rgba(255, 255, 255, .63);
	font-size: 9px;
}

.pdf-note-card a {
	color: #e3b28f;
	font-size: 9px;
	font-weight: 600;
}

.admin-login-page {
	min-height: 100vh;
	background: var(--paper);
}

.admin-login-shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
}

.admin-login-brand {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(38px, 6vw, 80px);
	background:
		radial-gradient(circle at 85% 15%, rgba(216, 168, 117, .2), transparent 24%),
		var(--forest);
	color: white;
}

.admin-login-logo {
	width: min(460px, 84vw);
	display: inline-flex;
	align-self: flex-start;
	padding: 13px 18px;
	border: 1px solid rgba(169, 79, 53, .14);
	border-radius: 5px;
	background: #eadfce;
	box-shadow: 0 20px 50px rgba(13, 29, 23, .22);
}

.admin-login-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.admin-login-brand h1 {
	margin: 0;
	font-size: clamp(55px, 6vw, 84px);
	letter-spacing: -.05em;
}

.admin-login-brand > div > p:last-child {
	max-width: 470px;
	color: rgba(255, 255, 255, .62);
}

.admin-login-brand > small {
	color: rgba(255, 255, 255, .4);
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.admin-login-form {
	width: min(500px, 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	padding: 50px;
}

.admin-login-form h2 {
	margin: 0;
	font-size: 42px;
}

.admin-login-form > div > p:last-child {
	margin: 12px 0 30px;
	color: var(--muted);
	font-size: 12px;
}

.admin-login-form form {
	display: grid;
	gap: 20px;
}

.admin-back-link {
	margin-top: 25px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 600;
	text-align: center;
}

/* Desktop workspace scaling: monitors and scaled laptop displays. */

@media (min-width: 901px) {
	.admin-layout {
		grid-template-columns: clamp(230px, 20vw, 310px) minmax(0, 1fr);
	}

	.admin-main {
		padding: clamp(44px, 4vw, 58px) clamp(28px, 4vw, 64px) 80px;
	}
}

@media (min-width: 901px) and (max-width: 1350px) {
	.admin-sidebar {
		padding: 25px 14px 22px;
	}

	.admin-brand {
		margin-bottom: 23px;
		padding: 7px;
	}

	.admin-sidebar nav a {
		padding: 10px 12px;
		font-size: 11px;
	}

	.admin-main {
		padding: 42px 28px 68px;
	}

	.admin-page-head,
	.order-detail-head {
		gap: 24px;
	}

	.admin-page-head {
		margin-bottom: 30px;
	}

	.admin-page-head h1 {
		font-size: clamp(48px, 5.2vw, 62px);
	}

	.admin-metrics > * {
		padding: 20px;
	}

	.admin-panel-head {
		padding-inline: 22px;
	}

	.access-request-card {
		grid-template-columns: minmax(190px, 1.2fr) minmax(145px, .8fr) minmax(125px, .75fr) minmax(105px, .6fr);
		gap: 14px;
		padding: 20px 18px;
	}

	.danger-action {
		max-width: 110px;
		padding-inline: 8px;
	}

	.admin-table th,
	.admin-table td {
		padding-inline: 12px;
	}

	.admin-product-cell {
		min-width: 190px;
	}

	.admin-form-section {
		grid-template-columns: .55fr 1.45fr;
		gap: 32px;
		padding: 28px;
	}

	.admin-split {
		grid-template-columns: minmax(0, 1.3fr) minmax(245px, .7fr);
		gap: 18px;
	}

	.category-list {
		padding-inline: 18px;
	}

	.category-row {
		grid-template-columns: minmax(145px, .7fr) minmax(0, 1fr);
		gap: 14px;
	}

	.category-row-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
	}

	.category-pdf-link {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.category-row-actions > form:last-child {
		grid-column: 2;
		grid-row: 1;
	}

	.category-image-form {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.category-create {
		padding: 22px;
	}

	.order-table {
		min-width: 800px;
	}

	.status-form {
		min-width: 150px;
	}

	.order-detail-head h1 {
		font-size: clamp(42px, 4.6vw, 56px);
	}

	.order-detail-actions {
		min-width: 240px;
	}

	.order-detail-layout {
		grid-template-columns: minmax(0, 1fr) minmax(210px, .38fr);
		gap: 18px;
	}

	.order-item-editor-head,
	.order-item-editor {
		grid-template-columns: minmax(140px, 1fr) 50px 105px 95px;
		gap: 10px;
	}

	.order-item-editor-head {
		padding-inline: 16px;
	}

	.order-item-editor {
		padding: 16px;
	}

	.order-product-image,
	.order-product-fallback {
		width: 44px;
		height: 50px;
	}

	.order-editor-total {
		padding-inline: 16px;
	}

	.order-client-card,
	.pdf-note-card {
		padding: 20px;
	}

	.order-client-card > a,
	.order-client-card > p {
		overflow-wrap: anywhere;
	}
}

@media (min-width: 901px) and (max-width: 1050px) {
	.admin-split,
	.order-detail-layout {
		grid-template-columns: 1fr;
	}

	.order-client-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pdf-note-card {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.order-detail-head {
		align-items: stretch;
		flex-direction: column;
	}

	.order-detail-actions {
		width: min(420px, 100%);
	}

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

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

	.pdf-note-card {
		grid-column: 1 / -1;
	}

	.admin-layout {
		grid-template-columns: 265px 1fr;
	}

	.admin-sidebar {
		padding-inline: 13px;
	}

	.admin-brand div {
		display: none;
	}

	.admin-metrics {
		grid-template-columns: 1fr 1fr;
	}

	.admin-metrics > *:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--line);
	}

	.admin-metrics > *:nth-child(4) {
		border-top: 1px solid var(--line);
	}

	.admin-order-row {
		grid-template-columns: 1fr .7fr .5fr;
	}

	.admin-order-row > span {
		display: none;
	}

	.admin-form-section,
	.admin-split {
		grid-template-columns: 1fr;
	}

	.access-request-card {
		grid-template-columns: 1.2fr .85fr .8fr;
	}

	.access-request-action {
		grid-column: 1 / -1;
		justify-self: stretch;
		padding-top: 12px;
		border-top: 1px solid var(--line);
		text-align: left;
	}

	.danger-action {
		max-width: none;
	}

	.admin-form-section {
		gap: 28px;
	}

	.admin-login-shell {
		grid-template-columns: .8fr 1fr;
	}

	.landing-hero-grid {
		grid-template-columns: 1fr;
		padding-top: 72px;
	}

	.landing-hero-copy {
		max-width: 680px;
	}

	.hero-editorial {
		width: min(620px, 100%);
		margin-inline: auto;
	}

	.editorial-intro-grid {
		grid-template-columns: .45fr 1.25fr;
	}

	.editorial-intro-copy {
		grid-column: 2;
	}

	.craft-story-grid {
		grid-template-columns: 1fr;
	}

	.craft-study {
		width: min(650px, 100%);
	}

	.section-heading,
	.invitation-inner {
		grid-template-columns: 1fr .65fr;
		gap: 55px;
	}

	.hero-grid,
	.access-grid,
	.product-detail,
	.cart-layout,
	.checkout-layout {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		padding-top: 60px;
	}

	.hero-art {
		width: min(560px, 100%);
		margin-inline: auto;
	}

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

	.intro-grid > p:last-child {
		grid-column: 2;
	}

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

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

	.catalog-heading {
		grid-template-columns: 1fr .65fr;
	}

	.product-detail-art {
		min-height: 520px;
	}

	.product-gallery-viewport,
	.product-gallery-slide,
	.product-gallery-slide img {
		min-height: 520px;
	}

	.product-detail-copy {
		padding-top: 0;
	}

	.order-summary,
	.checkout-summary {
		position: static;
	}

	.checkout-heading {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (max-width: 650px) {
	.order-detail-head h1 {
		font-size: 39px;
		overflow-wrap: anywhere;
	}

	.order-item-editor-head {
		display: none;
	}

	.order-item-editor {
		grid-template-columns: 1fr auto;
		gap: 13px 18px;
		padding: 20px 17px;
	}

	.order-product-cell {
		grid-column: 1 / -1;
	}

	.order-item-editor > strong:nth-of-type(1)::before {
		content: "Qty ";
		color: var(--muted);
		font-size: 8px;
		font-weight: 500;
	}

	.price-field {
		grid-column: 1;
	}

	.order-line-total {
		grid-column: 2;
		align-self: center;
	}

	.order-editor-total {
		align-items: flex-end;
		padding-inline: 17px;
	}

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

	.concession-actions .button {
		width: 100%;
	}

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

	.pdf-note-card {
		grid-column: auto;
	}

	.admin-layout {
		display: block;
	}

	.admin-sidebar {
		position: fixed;
		inset: auto 0 0;
		z-index: 60;
		width: auto;
		height: auto;
		display: block;
		padding: 8px 10px max(8px, env(safe-area-inset-bottom));
		box-shadow: 0 -8px 28px rgba(24, 40, 33, .2);
	}

	.admin-brand,
	.admin-sidebar-foot {
		display: none;
	}

	.admin-sidebar nav {
		grid-template-columns: repeat(5, 1fr);
		gap: 2px;
		margin: 0;
	}

	.admin-sidebar nav a {
		padding: 10px 4px;
		font-size: 9px;
		text-align: center;
	}

	.admin-sidebar nav a.active::before {
		inset: 0 25% auto;
		width: auto;
		height: 2px;
	}

	.admin-main {
		padding: 25px 14px 95px;
	}

	.admin-mobile-brand {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		margin-bottom: 38px;
	}

	.admin-mobile-brand span {
		color: var(--muted);
		font-family: var(--sans);
	}

	.admin-page-head,
	.admin-page-head.with-action {
		align-items: stretch;
		flex-direction: column;
		margin-bottom: 28px;
	}

	.admin-page-head.with-action .button {
		width: 100%;
	}

	.admin-page-head h1 {
		font-size: 48px;
	}

	.admin-metrics {
		grid-template-columns: 1fr 1fr;
	}

	.admin-metrics > * {
		padding: 18px;
	}

	.admin-metrics strong {
		font-size: 35px;
	}

	.admin-order-row {
		grid-template-columns: 1fr auto;
		gap: 12px;
		padding: 16px;
	}

	.admin-order-row > strong {
		display: none;
	}

	.admin-panel-head {
		padding: 20px;
	}

	.access-admin-panel .admin-panel-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.access-admin-panel .admin-panel-head > p {
		text-align: left;
	}

	.access-request-card {
		grid-template-columns: 1fr 1fr;
		gap: 20px 14px;
		padding: 20px;
	}

	.access-request-client,
	.access-request-action {
		grid-column: 1 / -1;
	}

	.access-request-state {
		justify-self: end;
		text-align: right;
	}

	.access-request-state .access-status {
		justify-self: end;
	}

	.admin-table th,
	.admin-table td {
		padding-inline: 13px;
	}

	.admin-form-section {
		padding: 24px 18px;
	}

	.field-row-three {
		grid-template-columns: 1fr;
	}

	.admin-gallery-list {
		grid-template-columns: 1fr;
	}

	.category-list,
	.category-create {
		padding-inline: 19px;
	}

	.admin-login-shell {
		display: block;
	}

	.admin-login-brand {
		min-height: 340px;
		padding: 28px 20px 45px;
	}

	.admin-login-brand h1 {
		font-size: 52px;
	}

	.admin-login-brand > small {
		display: none;
	}

	.admin-login-form {
		padding: 55px 20px 70px;
	}

	.cart-toast {
		right: 16px;
		bottom: 78px;
		left: 16px;
	}

	.landing-hero-grid {
		min-height: auto;
		gap: 25px;
		padding-block: 55px 28px;
	}

	.landing-hero-copy {
		padding-bottom: 10px;
	}

	.landing-hero-copy h1 {
		font-size: clamp(58px, 19vw, 78px);
	}

	.landing-hero-copy h1 em {
		margin-left: .14em;
	}

	.landing-hero-copy .hero-lede {
		font-size: 16px;
	}

	.hero-signature {
		margin-top: 36px;
	}

	.hero-editorial {
		min-height: 480px;
	}

	.hero-product-main {
		inset: 12px 54px 24px 16px;
	}

	.hero-product-inset {
		right: 0;
		bottom: 2px;
		width: 138px;
		height: 188px;
		padding: 6px;
	}

	.maker-seal {
		top: 35px;
		left: 3px;
		width: 72px;
		height: 72px;
	}

	.collection-label {
		left: 0;
		bottom: 21px;
		width: 168px;
		padding: 17px 18px;
	}

	.hero-index {
		grid-template-columns: 1fr;
		gap: 7px;
		padding-bottom: 18px;
	}

	.hero-index span:nth-child(2),
	.hero-index span:last-child {
		text-align: left;
	}

	.editorial-intro,
	.craft-story,
	.private-experience,
	.invitation-band {
		padding: 78px 0;
	}

	.editorial-intro-grid,
	.section-heading,
	.invitation-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.editorial-intro-copy {
		grid-column: auto;
	}

	.editorial-intro blockquote {
		font-size: 39px;
	}

	.craft-study {
		min-height: 450px;
	}

	.craft-study-primary {
		inset: 0 9% 7% 0;
	}

	.craft-study-inset {
		width: 55%;
		height: 37%;
		border-width: 7px;
	}

	.craft-story-copy h2,
	.section-heading h2,
	.invitation-inner h2 {
		font-size: 46px;
	}

	.experience-grid {
		grid-template-columns: 1fr;
		margin-top: 40px;
	}

	.experience-grid article,
	.experience-grid article + article {
		min-height: auto;
		padding: 28px 0 34px;
		border-left: 0;
		border-bottom: 1px solid var(--line);
	}

	.experience-grid article:last-child {
		border-bottom: 0;
	}

	.step-icon {
		margin: 28px 0 22px;
	}

	.invitation-inner {
		align-items: start;
	}

	.shell {
		width: min(100% - 28px, 1180px);
	}

	.header-inner {
		min-height: 88px;
	}

	.brand-logo {
		width: auto;
		height: 64px;
	}

	.brand small,
	.main-nav > a:not(.button),
	.nav-button {
		display: none;
	}

	.main-nav {
		gap: 10px;
	}

	.main-nav form {
		display: none;
	}

	.hero-grid {
		min-height: auto;
		padding-block: 52px 65px;
		gap: 30px;
	}

	.hero-copy h1 {
		font-size: 50px;
	}

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

	.text-link {
		padding: 7px 0;
	}

	.trust-row {
		gap: 4px 14px;
		margin-top: 30px;
	}

	.hero-art {
		min-height: 390px;
	}

	.woven-panel {
		inset: 55px 18px 35px 18px;
	}

	.sun-disc {
		width: 190px;
		height: 190px;
	}

	.vessel-tall {
		right: 25px;
		width: 130px;
		height: 260px;
	}

	.vessel-round {
		left: 8px;
		width: 190px;
		height: 165px;
	}

	.hero-note {
		left: 0;
	}

	.intro-band,
	.process {
		padding: 72px 0;
	}

	.intro-grid,
	.process-grid,
	.catalog-heading,
	.field-row {
		grid-template-columns: 1fr;
	}

	.intro-grid {
		gap: 24px;
	}

	.intro-grid > p:last-child {
		grid-column: auto;
	}

	.process-grid article,
	.process-grid article + article {
		padding: 27px 0;
		border-left: 0;
		border-bottom: 1px solid var(--line);
	}

	.process-grid h3 {
		margin: 20px 0 8px;
	}

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

	.access-page,
	.cart-page,
	.checkout-page {
		padding: 58px 0 80px;
	}

	.form-card {
		padding: 24px 19px;
	}

	.catalog-hero {
		padding: 58px 0;
	}

	.catalog-heading {
		gap: 25px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 44px;
		padding-bottom: 90px;
	}

	.store-category-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		padding-bottom: 90px;
	}

	.store-category-card {
		min-height: 330px;
	}

	.category-row {
		grid-template-columns: 1fr;
	}

	.category-row-actions,
	.category-image-form {
		align-items: stretch;
		grid-template-columns: 1fr;
	}

	.category-row-actions {
		flex-direction: column;
	}

	.category-row-actions form {
		width: 100%;
	}

	.product-visual {
		aspect-ratio: 5 / 5.7;
	}

	.catalog-tools p:last-child {
		display: none;
	}

	.mobile-cart {
		position: fixed;
		right: 14px;
		bottom: 14px;
		left: 14px;
		z-index: 20;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 18px;
		background: var(--forest);
		color: white;
		box-shadow: 0 12px 35px rgba(27,43,35,.28);
		font-size: 13px;
		font-weight: 600;
	}

	.mobile-cart strong {
		display: grid;
		place-items: center;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: white;
		color: var(--forest);
		font-size: 11px;
	}

	.product-page {
		padding-top: 25px;
	}

	.product-detail-art {
		min-height: 420px;
	}

	.product-gallery-viewport,
	.product-gallery-slide,
	.product-gallery-slide img {
		min-height: 420px;
	}

	.product-gallery-controls {
		right: 10px;
		bottom: 10px;
	}

	.product-gallery-thumbnails button {
		width: 61px;
		height: 70px;
	}

	.product-detail-art > span {
		font-size: 105px;
	}

	.cart-line {
		grid-template-columns: 80px 1fr;
		gap: 15px;
	}

	.cart-thumb {
		width: 80px;
	}

	.line-price {
		grid-column: 2;
		margin-top: -12px;
	}

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

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}

@media (min-width: 901px) and (max-width: 1200px) {
	.admin-analytics-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.visitor-total-card {
		grid-column: 1 / -1;
		min-height: 210px;
	}

	.admin-analytics-grid > article:nth-child(2) {
		border-left: 0;
		border-top: 1px solid var(--line);
	}

	.admin-analytics-grid > article:nth-child(3) {
		border-top: 1px solid var(--line);
	}

	.visitor-total-icon {
		margin-bottom: 25px;
	}
}

@media (max-width: 900px) {
	.analytics-panel-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.analytics-panel-head > p {
		text-align: left;
	}

	.admin-analytics-grid {
		grid-template-columns: 1fr;
	}

	.admin-analytics-grid > article + article {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.visitor-total-card {
		min-height: 240px;
	}
}
