@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 100 1000;
	font-display: swap;
	src: url('/assets/dm-sans.woff2') format('woff2');
}

:root {
	color-scheme: light;
	--paper: #f7f6f2;
	--ink: #282923;
	--muted: #6c6d63;
	--line: #deded5;
	--accent: #b4482c;
	--media: #efeee8;
	font-family: 'DM Sans', sans-serif;
	font-synthesis: none;
	color: var(--ink);
	background: var(--paper);
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
}
a {
	color: inherit;
}
button {
	font: inherit;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}
button {
	cursor: pointer;
}
button:disabled {
	cursor: default;
}
svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
img {
	max-width: 100%;
}
[hidden] {
	display: none !important;
}
::selection {
	background: #e7bca8;
	color: #282923;
}
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 5px;
}
.shell {
	max-width: 1536px;
	margin: 0 auto;
	padding-left: 56px;
	padding-right: 56px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	left: 16px;
	top: -100px;
	background: var(--ink);
	color: white;
	padding: 14px 20px;
	z-index: 10;
	border-radius: 6px;
}
.skip-link:focus {
	top: 16px;
}
.site-header {
	border-bottom: 1px solid var(--line);
}
.header-inner {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.wordmark {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	font-size: 30px;
	font-weight: 650;
	letter-spacing: -1.3px;
}
.brand-mark {
	color: var(--accent);
	display: flex;
}
.brand-mark svg {
	width: 29px;
	height: 32px;
}
.wordmark-dot {
	color: var(--accent);
}
.header-byline {
	font-size: 12px;
	letter-spacing: 0.01em;
	color: var(--muted);
}
.header-byline > span {
	color: var(--ink);
	margin-left: 4px;
}
.intro {
	padding: 57px 0 47px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.eyebrow {
	font-size: 10px;
	letter-spacing: 1.6px;
	font-weight: 650;
	margin: 0 0 19px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.tiny-star {
	font-size: 17px;
	color: var(--accent);
	line-height: 1;
}
h1 {
	font-size: clamp(36px, 4.1vw, 62px);
	font-weight: 450;
	line-height: 1.09;
	letter-spacing: -2.7px;
	margin: 0;
}
.intro h1 span {
	color: #85867c;
}
.intro-description {
	font-size: 14px;
	line-height: 1.7;
	color: var(--muted);
	margin: 20px 0 0;
}
.collection-stamp {
	width: 110px;
	height: 110px;
	border: 1px solid #c8c5b7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	color: #787765;
	transform: rotate(12deg);
	margin-right: 25px;
	flex-shrink: 0;
}
.collection-stamp svg {
	width: 28px;
	height: 28px;
}
.collection-stamp span {
	text-align: center;
	font-size: 8px;
	letter-spacing: 1.6px;
	line-height: 1.55;
	font-weight: 600;
}
.collection-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 23px;
}
.filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.filter-chip {
	display: flex;
	gap: 11px;
	align-items: center;
	padding: 11px 17px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: transparent;
	color: #57594f;
	font-size: 12px;
	min-height: 42px;
	transition:
		background 0.18s,
		border-color 0.18s,
		color 0.18s;
}
.filter-chip:not(:disabled):hover {
	background: #eae9e1;
	border-color: #c1c1b5;
}
.filter-chip.is-active,
.filter-chip.is-active:not(:disabled):hover {
	background: var(--ink);
	border-color: var(--ink);
	color: #fffdf5;
}
.filter-count {
	font-size: 10px;
	opacity: 1;
}
.filter-chip.is-active .filter-count {
	color: #e6c4a3;
	opacity: 1;
}
.sort-caption {
	font-size: 11px;
	color: var(--muted);
	white-space: nowrap;
	display: flex;
	gap: 15px;
}
.sort-caption > span {
	font-size: 19px;
}
.collection-status {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 10px;
	letter-spacing: 0.6px;
	color: var(--muted);
	padding: 22px 0 17px;
}
.collection-status p {
	margin: 0;
}
.collection-status > span {
	font-size: 9px;
	letter-spacing: 1.5px;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.product-card {
	min-width: 0;
}
.product-link {
	display: block;
	text-decoration: none;
	border-radius: 10px;
}
.card-media {
	position: relative;
	aspect-ratio: 1/1.13;
	background: var(--media);
	border-radius: 9px;
	overflow: hidden;
	isolation: isolate;
}
.product-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.4s ease;
}
.card-media .product-image {
	padding: 24px;
}
.product-link:hover .product-image {
	transform: scale(1.035);
}
.card-number {
	position: absolute;
	top: 15px;
	left: 17px;
	z-index: 1;
	font-size: 9px;
	letter-spacing: 1px;
	color: #57594f;
	background: #efeee8d9;
	border-radius: 3px;
	padding: 3px 4px;
}
.card-arrow {
	position: absolute;
	right: 13px;
	bottom: 13px;
	background: #faf9f4ed;
	border: 1px solid #e1e0d5;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition:
		background 0.2s,
		transform 0.2s;
}
.card-arrow svg {
	width: 13px;
	height: 13px;
}
.product-link:hover .card-arrow {
	background: var(--ink);
	color: var(--paper);
	transform: rotate(45deg);
}
.card-copy {
	padding: 16px 1px 0;
}
.card-meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
	font-size: 10px;
	line-height: 1.45;
	color: var(--muted);
}
.product-brand {
	min-width: 0;
	overflow-wrap: anywhere;
}
.card-group {
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: right;
	flex-shrink: 0;
	max-width: 45%;
}
.card-copy h2 {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: -0.25px;
	margin: 0;
	max-width: 95%;
}
.image-placeholder {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	color: var(--muted);
}
.image-placeholder > svg {
	width: 43px;
	height: 43px;
	opacity: 0.55;
}
.image-placeholder > span {
	font-size: 11px;
	letter-spacing: 0.5px;
}
.empty-state {
	min-height: 300px;
	border: 1px dashed var(--line);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	padding: 50px 24px;
}
.empty-state > svg {
	color: var(--accent);
	width: 36px;
	height: 36px;
	margin-bottom: 15px;
}
.empty-state h2 {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.5px;
	margin: 10px 0;
}
.empty-state p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}
.text-button {
	background: none;
	border: 0;
	text-decoration: underline;
	text-underline-offset: 4px;
	font-size: 13px;
	margin-top: 22px;
	color: var(--ink);
	min-height: 44px;
}
.helper-text {
	font-size: 12px;
	color: var(--muted);
	margin: 0 0 20px;
}
.end-note {
	text-align: center;
	font-size: 12px;
	color: var(--muted);
	margin: 65px 0 60px;
}
.end-note span {
	display: block;
	font-size: 22px;
	color: var(--accent);
	margin-bottom: 13px;
}
.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--line);
	padding-top: 25px;
	padding-bottom: 30px;
	margin-top: 28px;
	font-size: 11px;
	color: var(--muted);
}
.site-footer > span:last-child {
	display: flex;
	align-items: center;
	gap: 13px;
}
.footer-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
}
.back-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 32px 0;
	color: var(--muted);
	font-size: 11px;
}
.back-nav a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	min-height: 32px;
}
.back-nav a:hover {
	color: var(--accent);
}
.back-nav svg {
	width: 16px;
	height: 16px;
}
.back-nav > span {
	font-size: 10px;
	letter-spacing: 1px;
}
.product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 80px;
	padding-bottom: 60px;
	align-items: start;
}
.detail-media {
	aspect-ratio: 1/1.05;
	border-radius: 12px;
	background: var(--media);
	overflow: hidden;
}
.detail-media > .product-image {
	padding: 40px;
}
.detail-copy {
	padding-top: 21px;
}
.detail-copy .eyebrow {
	color: var(--accent);
	font-size: 9px;
	letter-spacing: 1.4px;
	margin-bottom: 22px;
}
.detail-copy h1 {
	font-size: clamp(30px, 3vw, 46px);
	line-height: 1.14;
	letter-spacing: -1.4px;
	max-width: 550px;
}
.detail-brand {
	font-size: 16px;
	margin: 18px 0 25px;
	color: var(--muted);
}
.detail-brand > span {
	color: var(--ink);
}
.detail-groups {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.detail-groups > a,
.detail-groups > span {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 9px 15px;
	font-size: 11px;
	min-height: 36px;
	text-decoration: none;
	color: #57594f;
}
.detail-groups > a:hover {
	border-color: var(--ink);
}
.personal-note {
	border-top: 1px solid var(--line);
	padding-top: 26px;
	margin-top: 33px;
	margin-bottom: 34px;
}
.personal-note h2 {
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 13px;
}
.missing-note {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0;
}
.prose {
	font-size: 15px;
	line-height: 1.75;
	overflow-wrap: anywhere;
}
.prose p {
	margin: 0 0 15px;
}
.prose a {
	color: var(--accent);
	text-underline-offset: 3px;
}
.prose img {
	max-width: 100%;
	height: auto;
}
.seller-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	background: var(--ink);
	color: #fffdf5;
	padding: 18px 21px;
	border-radius: 6px;
	font-size: 13px;
	transition: background 0.2s;
}
.seller-link svg {
	width: 17px;
	height: 17px;
}
.seller-link:hover {
	background: var(--accent);
}
.seller-domain {
	text-align: center;
	font-size: 11px;
	color: var(--muted);
	margin: 13px 0 29px;
}
.saved-date {
	border-top: 1px solid var(--line);
	padding-top: 21px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 10px;
	color: var(--muted);
}
.not-found {
	min-height: 65vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 70px 0;
}
.not-found > p:not(.eyebrow) {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
}
.back-home {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	font-size: 14px;
	text-underline-offset: 5px;
}
.back-home svg {
	width: 17px;
}
@media (min-width: 1600px) {
	.intro {
		padding-top: 68px;
		padding-bottom: 58px;
	}
}
@media (max-width: 1100px) {
	.shell {
		padding-left: 32px;
		padding-right: 32px;
	}
	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.collection-stamp {
		margin-right: 8px;
		width: 92px;
		height: 92px;
	}
	.product-detail {
		gap: 42px;
	}
	.detail-copy {
		padding-top: 5px;
	}
	.detail-media > .product-image {
		padding: 26px;
	}
}
@media (max-width: 760px) {
	.shell {
		padding-left: 22px;
		padding-right: 22px;
	}
	.header-inner {
		height: 79px;
	}
	.wordmark {
		font-size: 26px;
	}
	.brand-mark svg {
		width: 25px;
		height: 28px;
	}
	.header-byline {
		font-size: 10px;
		max-width: 100px;
		text-align: right;
		line-height: 1.6;
	}
	.header-byline > span {
		display: block;
		margin: 0;
	}
	.intro {
		padding: 38px 0 31px;
	}
	.intro h1 {
		font-size: 39px;
		letter-spacing: -1.7px;
		max-width: 480px;
	}
	.intro h1 span {
		display: block;
	}
	.intro-description {
		font-size: 13px;
		max-width: 295px;
		line-height: 1.7;
		margin-top: 16px;
	}
	.collection-stamp {
		width: 75px;
		height: 75px;
		margin: 0;
	}
	.collection-stamp svg {
		width: 22px;
		height: 22px;
	}
	.collection-stamp span {
		font-size: 6px;
		letter-spacing: 1px;
	}
	.collection-toolbar {
		gap: 12px;
		padding-bottom: 18px;
		align-items: flex-start;
	}
	.filters {
		gap: 6px;
	}
	.filter-chip {
		font-size: 11px;
		padding: 9px 13px;
		gap: 9px;
		min-height: 40px;
	}
	.sort-caption {
		display: none;
	}
	.collection-status {
		padding-top: 19px;
	}
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 14px;
	}
	.card-media .product-image {
		padding: 12px;
	}
	.card-media {
		border-radius: 7px;
		aspect-ratio: 1/1.2;
	}
	.card-number {
		top: 10px;
		left: 9px;
		font-size: 8px;
	}
	.card-arrow {
		width: 27px;
		height: 27px;
		bottom: 9px;
		right: 9px;
	}
	.card-arrow svg {
		width: 11px;
		height: 11px;
	}
	.card-copy {
		padding-top: 12px;
	}
	.card-meta {
		flex-direction: column;
		gap: 4px;
		margin-bottom: 7px;
		font-size: 10px;
	}
	.card-group {
		text-align: left;
		max-width: none;
		font-size: 7px;
		letter-spacing: 0.8px;
	}
	.card-copy h2 {
		font-size: 13px;
		line-height: 1.4;
		letter-spacing: -0.1px;
		max-width: 100%;
	}
	.end-note {
		margin: 42px 0;
	}
	.site-footer {
		font-size: 10px;
		padding-top: 20px;
		padding-bottom: 25px;
		line-height: 1.6;
	}
	.site-footer > span:last-child {
		max-width: 150px;
		text-align: right;
		gap: 9px;
	}
	.product-detail {
		grid-template-columns: 1fr;
		gap: 31px;
		padding-bottom: 35px;
	}
	.back-nav {
		margin: 19px 0;
	}
	.detail-media {
		aspect-ratio: 1/1;
		max-height: 590px;
	}
	.detail-media > .product-image {
		padding: 28px;
	}
	.detail-copy h1 {
		font-size: 35px;
		letter-spacing: -1.2px;
		max-width: 540px;
	}
	.detail-copy .eyebrow {
		margin-bottom: 17px;
	}
	.detail-brand {
		margin-top: 14px;
	}
	.personal-note {
		margin-top: 26px;
		padding-top: 23px;
	}
	.saved-date {
		font-size: 11px;
	}
	.not-found h1 {
		font-size: 42px;
	}
	.not-found > p:not(.eyebrow) {
		font-size: 14px;
	}
}
@media (max-width: 380px) {
	.shell {
		padding-left: 16px;
		padding-right: 16px;
	}
	.intro h1 {
		font-size: 34px;
	}
	.collection-stamp {
		display: none;
	}
	.product-grid {
		gap: 25px 12px;
	}
	.filter-chip {
		padding: 9px 11px;
	}
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
