	:root {
			--paper: #f4f1eb;
			--paper-dark: #e7e2d7;
			--ink: #2f2b2a;
			--soft-ink: #5a5653;
			--sage: #9cb78f;
			--sky: #a2b1dd;
			--rose: #ecbfd4;
			--berry: #9c2e3b;
			--card-shadow: 0 18px 36px rgba(46, 41, 36, 0.12);
			--edge-shadow: 0 8px 14px rgba(52, 45, 39, 0.1);
			--radius-soft: 20px;
		}

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

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: "Work Sans", "Segoe UI", sans-serif;
			color: var(--ink);
			background: linear-gradient(160deg, #f9f6f1 0%, var(--paper) 60%, #efe9dc 100%);
			min-height: 100vh;
			line-height: 1.55;
			position: relative;
			overflow-x: hidden;
		}

		body::before {
			content: "";
			position: fixed;
			inset: 0;
			pointer-events: none;
			z-index: -2;
			background:
				radial-gradient(circle at 15% 12%, rgba(156, 183, 143, 0.24) 0, transparent 34%),
				radial-gradient(circle at 88% 8%, rgba(236, 191, 212, 0.28) 0, transparent 38%),
				radial-gradient(circle at 78% 84%, rgba(162, 177, 221, 0.2) 0, transparent 30%);
		}

		body::after {
			content: "";
			position: fixed;
			inset: 0;
			pointer-events: none;
			z-index: -1;
			opacity: 0.2;
			background-image:
				radial-gradient(rgba(63, 56, 51, 0.16) 0.7px, transparent 0.7px),
				radial-gradient(rgba(63, 56, 51, 0.1) 0.7px, transparent 0.7px);
			background-size: 3px 3px, 4px 4px;
			background-position: 0 0, 1px 1px;
		}

		img {
			width: 100%;
			display: block;
		}

		.wrap {
			width: min(1120px, 92vw);
			margin: 0 auto;
		}

		.site-header {
			position: sticky;
			top: 0;
			z-index: 20;
			backdrop-filter: blur(8px);
			background: rgba(249, 245, 238, 0.88);
			border-bottom: 1px solid rgba(113, 104, 93, 0.18);
		}

		.header-inner {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 1rem;
			padding: 0.9rem 0;
			position: relative;
		}

		.brand {
			font-family: "Cormorant Garamond", Georgia, serif;
			font-weight: 700;
			font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
			color: var(--ink);
			text-decoration: none;
			letter-spacing: 0.02em;
		}

		.menu-toggle {
			display: none;
			border: 1px solid rgba(90, 86, 83, 0.35);
			background: #fffdf9;
			color: var(--ink);
			border-radius: 999px;
			padding: 0.45rem 0.85rem;
			font-family: inherit;
			font-size: 0.9rem;
			cursor: pointer;
		}

		.site-nav {
			display: flex;
			align-items: center;
			gap: 1rem;
			flex-wrap: wrap;
			justify-content: flex-end;
		}

		.site-nav a {
			color: var(--soft-ink);
			text-decoration: none;
			font-size: 0.95rem;
			font-weight: 500;
			border-bottom: 1px solid transparent;
			transition: border-color 0.2s ease, color 0.2s ease;
		}

		.site-nav a:hover,
		.site-nav a:focus-visible {
			color: var(--ink);
			border-color: rgba(90, 86, 83, 0.45);
			outline: none;
		}

		.hero {
			padding: clamp(2.4rem, 2rem + 2vw, 4rem) 0 2.2rem;
			display: grid;
			grid-template-columns: 1.1fr 1fr;
			gap: 2rem;
			align-items: center;
		}

		.hero-copy h1 {
			font-family: "Cormorant Garamond", Georgia, serif;
			font-weight: 700;
			font-size: clamp(2.2rem, 1.65rem + 2.4vw, 4rem);
			line-height: 0.95;
			margin-bottom: 1rem;
			max-width: 15ch;
		}

		.hero-copy p {
			color: var(--soft-ink);
			font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
			max-width: 52ch;
			margin-bottom: 1.2rem;
		}

		.hero-note {
			display: inline-block;
			font-size: 0.84rem;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: #6d655f;
			border: 1px dashed rgba(90, 86, 83, 0.34);
			border-radius: 999px;
			padding: 0.35rem 0.8rem;
			margin-bottom: 0.9rem;
			background: rgba(255, 255, 255, 0.6);
		}

		.button-row {
			display: flex;
			flex-wrap: wrap;
			gap: 0.7rem;
			margin-top: 1.2rem;
		}

		.btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 0.65rem 1rem;
			border-radius: 999px;
			text-decoration: none;
			font-size: 0.92rem;
			font-weight: 600;
			transition: transform 0.2s ease, box-shadow 0.2s ease;
		}

		.btn:hover,
		.btn:focus-visible {
			transform: translateY(-2px);
			box-shadow: var(--edge-shadow);
			outline: none;
		}

		.btn-primary {
			background: var(--ink);
			color: #fff;
		}

		.btn-soft {
			background: #fffdf9;
			color: var(--ink);
			border: 1px solid rgba(90, 86, 83, 0.35);
		}

		.hero-art {
			position: relative;
			min-height: 460px;
		}

		.hero-piece {
			position: absolute;
			width: clamp(190px, 31vw, 320px);
			border-radius: 18px;
			overflow: hidden;
			border: 10px solid #fffaf1;
			box-shadow: var(--card-shadow);
			background: #f5f1e8;
		}

		.hero-piece img {
			height: 100%;
			object-fit: cover;
			aspect-ratio: 3 / 4;
		}

		.hero-piece.one {
			left: 0;
			top: 0;
			transform: rotate(-3deg);
		}

		.hero-piece.two {
			right: 0;
			top: 20%;
			transform: rotate(3deg);
		}

		.hero-piece.three {
			left: 20%;
			bottom: 0;
			transform: rotate(-1deg);
		}

		.section {
			padding: 2.5rem 0;
		}

		.section-head {
			display: flex;
			flex-wrap: wrap;
			align-items: flex-end;
			justify-content: space-between;
			gap: 0.8rem;
			margin-bottom: 1.1rem;
		}

		.section h2 {
			font-family: "Cormorant Garamond", Georgia, serif;
			font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.8rem);
			line-height: 1;
		}

		.section-intro {
			color: var(--soft-ink);
			max-width: 58ch;
			font-size: 1rem;
		}

		.samples-grid {
			display: grid;
			grid-template-columns: repeat(12, 1fr);
			gap: 1rem;
		}

		.sample-card {
			grid-column: span 4;
			background: rgba(255, 252, 245, 0.82);
			border-radius: var(--radius-soft);
			border: 1px solid rgba(116, 106, 96, 0.18);
			overflow: hidden;
			box-shadow: var(--edge-shadow);
		}

		.sample-card img {
			height: clamp(190px, 25vw, 320px);
			object-fit: cover;
		}

		.sample-card figcaption {
			padding: 0.9rem 1rem 1rem;
		}

		.sample-card h3 {
			font-size: 1.02rem;
			margin-bottom: 0.25rem;
			font-weight: 600;
			color: #2f2b2a;
		}

		.sample-card p {
			font-size: 0.9rem;
			color: #625c57;
		}

		.sample-card:nth-child(2n) {
			transform: rotate(-0.45deg);
		}

		.sample-card:nth-child(2n + 1) {
			transform: rotate(0.45deg);
		}

		.shop-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 1rem;
		}

		.shop-card {
			background: #fffef9;
			border-radius: var(--radius-soft);
			border: 1px solid rgba(116, 106, 96, 0.22);
			box-shadow: var(--edge-shadow);
			display: grid;
			grid-template-rows: auto 1fr;
			overflow: hidden;
		}

		.shop-card img {
			aspect-ratio: 4 / 3;
			object-fit: cover;
		}

		.shop-content {
			padding: 0.85rem 0.95rem 1rem;
			display: grid;
			gap: 0.55rem;
		}

		.shop-title {
			font-size: 1rem;
			font-weight: 600;
		}

		.shop-desc {
			color: #5f5954;
			font-size: 0.9rem;
		}

		.shop-meta {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 0.7rem;
			margin-top: 0.2rem;
		}

		.price {
			font-size: 1.02rem;
			font-weight: 700;
			color: #2f2a27;
		}

		.shop-link {
			text-decoration: none;
			font-size: 0.84rem;
			color: #2f2a27;
			border-bottom: 1px dashed rgba(47, 42, 39, 0.6);
		}

		.pricing-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1rem;
		}

		.price-card {
			background: #fffefb;
			border: 1px solid rgba(116, 106, 96, 0.2);
			border-radius: var(--radius-soft);
			box-shadow: var(--edge-shadow);
			padding: 1.1rem;
			display: grid;
			gap: 0.65rem;
		}

		.price-card h3 {
			font-size: 1.08rem;
			font-weight: 600;
		}

		.price-tag {
			display: inline-flex;
			align-items: center;
			width: fit-content;
			background: rgba(162, 177, 221, 0.22);
			border: 1px solid rgba(90, 86, 83, 0.2);
			border-radius: 999px;
			padding: 0.3rem 0.7rem;
			font-size: 0.94rem;
			font-weight: 600;
		}

		.price-list {
			padding-left: 1rem;
			color: #5f5954;
			font-size: 0.92rem;
			display: grid;
			gap: 0.26rem;
		}

		.pricing-note {
			margin-top: 0.9rem;
			color: #5c5651;
			font-size: 0.92rem;
			max-width: 70ch;
			border-left: 3px solid rgba(156, 183, 143, 0.7);
			padding-left: 0.8rem;
		}

		.mailing {
			background: linear-gradient(140deg, rgba(255, 253, 247, 0.9), rgba(238, 233, 220, 0.8));
			border: 1px solid rgba(116, 106, 96, 0.2);
			border-radius: 24px;
			box-shadow: var(--card-shadow);
			padding: clamp(1.2rem, 1rem + 1vw, 1.8rem);
		}

		.mailing-grid {
			display: grid;
			grid-template-columns: 1fr 1.15fr;
			gap: 1.2rem;
			align-items: start;
		}

		.mailing-copy h3 {
			font-family: "Cormorant Garamond", Georgia, serif;
			font-size: clamp(1.6rem, 1.3rem + 0.9vw, 2.2rem);
			margin-bottom: 0.55rem;
		}

		.mailing-copy p {
			color: #5e5853;
			font-size: 0.95rem;
			margin-bottom: 0.6rem;
		}

		.mailing-form {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 0.75rem;
		}

		.field {
			display: grid;
			gap: 0.25rem;
		}

		.field.full {
			grid-column: 1 / -1;
		}

		label {
			font-size: 0.84rem;
			color: #5f5954;
			font-weight: 500;
		}

		input,
		select {
			border: 1px solid rgba(116, 106, 96, 0.4);
			background: rgba(255, 255, 255, 0.82);
			border-radius: 10px;
			padding: 0.58rem 0.64rem;
			font-family: inherit;
			font-size: 0.95rem;
			color: var(--ink);
		}

		input:focus,
		select:focus {
			outline: 2px solid rgba(162, 177, 221, 0.5);
			outline-offset: 1px;
			border-color: rgba(90, 86, 83, 0.48);
		}

		.mailing-button {
			grid-column: 1 / -1;
			margin-top: 0.1rem;
			border: none;
			cursor: pointer;
			width: fit-content;
		}

		.mailing-status {
			grid-column: 1 / -1;
			font-size: 0.9rem;
			color: #4d5f43;
			min-height: 1.2rem;
		}

		.market-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1rem;
		}

		.market-card {
			background: rgba(255, 254, 250, 0.88);
			border: 1px solid rgba(116, 106, 96, 0.2);
			border-radius: 18px;
			box-shadow: var(--edge-shadow);
			padding: 1rem;
			display: grid;
			gap: 0.45rem;
		}

		.market-card h3 {
			font-size: 1rem;
			font-weight: 600;
		}

		.market-card p {
			font-size: 0.91rem;
			color: #5d5752;
		}

		.market-link {
			text-decoration: none;
			color: #2f2a27;
			font-size: 0.86rem;
			border-bottom: 1px dashed rgba(47, 42, 39, 0.55);
			width: fit-content;
		}

		.contact-band {
			margin: 1.8rem 0 3rem;
			border: 1px solid rgba(116, 106, 96, 0.22);
			border-radius: 20px;
			padding: 1rem;
			background: linear-gradient(130deg, rgba(255, 251, 243, 0.9), rgba(231, 226, 215, 0.75));
			display: flex;
			flex-wrap: wrap;
			gap: 0.7rem 1rem;
			align-items: center;
			justify-content: space-between;
		}

		.contact-band p {
			color: #534d49;
			font-size: 0.94rem;
		}

		.contact-links {
			display: flex;
			gap: 0.8rem;
			flex-wrap: wrap;
		}

		.contact-links a {
			color: #2f2a27;
			text-decoration: none;
			border-bottom: 1px dashed rgba(47, 42, 39, 0.6);
			font-size: 0.9rem;
			font-weight: 500;
		}

		footer {
			border-top: 1px solid rgba(116, 106, 96, 0.25);
			padding: 1rem 0 1.4rem;
			color: #6b645f;
			font-size: 0.85rem;
			text-align: center;
		}

		.reveal {
			opacity: 0;
			transform: translateY(16px);
			transition: opacity 0.55s ease, transform 0.55s ease;
		}

		.reveal.visible {
			opacity: 1;
			transform: translateY(0);
		}

		@media (max-width: 1000px) {
			.hero {
				grid-template-columns: 1fr;
				gap: 1.5rem;
			}

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

			.hero-piece {
				width: min(40vw, 290px);
			}

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

			.sample-card {
				grid-column: auto;
				transform: none;
			}

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

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

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

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

		@media (max-width: 760px) {
			.menu-toggle {
				display: inline-flex;
			}

			.site-nav {
				position: absolute;
				top: calc(100% + 6px);
				right: 0;
				width: min(88vw, 300px);
				background: rgba(255, 252, 246, 0.97);
				border: 1px solid rgba(116, 106, 96, 0.26);
				border-radius: 14px;
				box-shadow: var(--edge-shadow);
				padding: 0.8rem;
				display: none;
				flex-direction: column;
				align-items: flex-start;
				gap: 0.6rem;
			}

			.site-nav.open {
				display: flex;
			}

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

			.hero-piece {
				width: min(56vw, 250px);
			}

			.hero-piece.two {
				top: 18%;
			}

			.hero-piece.three {
				left: 10%;
			}

			.samples-grid,
			.shop-grid,
			.market-grid {
				grid-template-columns: 1fr;
			}

			.mailing-form {
				grid-template-columns: 1fr;
			}
		}