:root {
	--ink: #0a0a0a;
	--paper: #f7f7f5;
	--white: #ffffff;
	--accent: #b48a5a;
	--muted: #666666;
	--line: rgba(10, 10, 10, 0.12);
	--line-strong: rgba(10, 10, 10, 0.28);
	--header-height: 92px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	min-height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(circle at 12% -5%, rgba(180, 138, 90, 0.14), transparent 40%),
		radial-gradient(circle at 90% 0%, rgba(10, 10, 10, 0.08), transparent 28%),
		var(--paper);
	color: var(--ink);
}

main {
	width: min(1200px, calc(100% - 3rem));
	margin: 1.4rem auto 5rem;
}

.site-header {
	width: min(1200px, calc(100% - 3rem));
	margin: 1.2rem auto 0;
	position: sticky;
	top: 1rem;
	z-index: 50;
	backdrop-filter: blur(8px);
}

section[id] {
	scroll-margin-top: 10.5rem;
}

.header-topline {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.76rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0.6rem 1rem;
	border: 1px solid var(--line);
	border-bottom: 0;
	border-radius: 1rem 1rem 0 0;
	background: rgba(255, 255, 255, 0.72);
}

.header-topline span {
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
}

.header-slogan {
	font-weight: 600;
	color: var(--ink);
}

.nav-shell {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.4rem;
	padding: 0 1.4rem;
	border: 1px solid var(--line);
	border-radius: 0 0 1rem 1rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled .nav-shell {
	border-color: var(--line-strong);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.96);
}

.brand {
	display: inline-flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--ink);
}

.brand-mark {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 0.88;
}

.brand-sub {
	font-size: 0.68rem;
	letter-spacing: 0.38em;
	text-transform: uppercase;
	margin-left: 0.2rem;
}

.main-nav ul {
	display: flex;
	list-style: none;
	gap: 1.6rem;
}

.main-nav a {
	position: relative;
	text-decoration: none;
	color: var(--ink);
	font-size: 0.84rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.3rem 0;
	transition: color 180ms ease;
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.26rem;
	width: 100%;
	height: 1px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
	color: #000;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-cta {
	text-decoration: none;
	color: var(--white);
	background: linear-gradient(135deg, #161616 0%, #000 100%);
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.74rem 1.3rem;
	font-size: 0.74rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 700;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nav-cta:hover {
	transform: translateY(-1px);
	border-color: var(--accent);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.cart-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.95);
	color: var(--ink);
	border-radius: 999px;
	padding: 0.62rem 0.72rem 0.62rem 1rem;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cart-trigger:hover {
	transform: translateY(-1px);
	border-color: var(--line-strong);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cart-trigger-label {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
}

.cart-count {
	min-width: 1.9rem;
	height: 1.9rem;
	padding: 0 0.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
}

.cart-count.is-bump {
	animation: cartCountBounce 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cartCountBounce {
	0% {
		transform: translateY(0) scale(1);
	}
	35% {
		transform: translateY(-2px) scale(1.14);
	}
	65% {
		transform: translateY(0) scale(0.94);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.menu-toggle span {
	width: 18px;
	height: 1.6px;
	background: var(--ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	align-items: stretch;
	gap: 1.3rem;
	min-height: 74vh;
	padding-top: 0.6rem;
}

.hero-content {
	background: linear-gradient(145deg, #ffffff 0%, #f2f2ef 100%);
	border: 1px solid var(--line);
	border-radius: 1.2rem;
	padding: clamp(1.4rem, 3vw, 3rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hero-kicker {
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.17em;
	color: var(--muted);
	margin-bottom: 1.1rem;
}

.hero-content h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.05rem, 4.8vw, 4.4rem);
	line-height: 0.95;
	letter-spacing: 0.01em;
	max-width: 14ch;
	margin-bottom: 1rem;
	text-wrap: balance;
}

.hero-content p {
	max-width: 52ch;
	color: #2f2f2f;
	font-size: clamp(0.95rem, 1.8vw, 1.08rem);
	line-height: 1.58;
}

.hero-actions {
	margin-top: 1.7rem;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.88rem 1.35rem;
	border-radius: 999px;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-cta-primary {
	background: #111;
	color: #fff;
	border: 1px solid #111;
}

.hero-cta-primary:hover {
	transform: translateY(-1px);
	border-color: var(--accent);
}

.hero-cta-ghost {
	color: #111;
	border: 1px solid var(--line-strong);
	background: transparent;
}

.hero-cta-ghost:hover {
	transform: translateY(-1px);
	border-color: var(--accent);
	color: #000;
	background: rgba(180, 138, 90, 0.08);
}

.hero-image {
	position: relative;
	border-radius: 1.2rem;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
	min-height: 560px;
	background: #111;
}

.hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 35%),
		linear-gradient(to right, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
	pointer-events: none;

}

.hero-image div {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(100%) contrast(1.06);
	transform: scale(1.02);
}

.content-block {
	padding: 4.8rem 1.2rem 1.8rem;
	border-bottom: 1px solid var(--line);
}

.collection {
	padding: 4.8rem 0 2rem;
	border-bottom: 1px solid var(--line);
}

.about-section,
.tailoring-section,
.contact-section {
	padding: 4.8rem 0 2rem;
	border-bottom: 1px solid var(--line);
}

.section-head {
	max-width: 72ch;
	margin-bottom: 1.5rem;
}

.section-kicker {
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 0.45rem;
}

.section-head h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 0.98;
	margin-bottom: 0.5rem;
}

.section-head p {
	max-width: 60ch;
	line-height: 1.62;
	color: #2b2b2b;
}

.eyebrow-label {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 0.5rem;
}

.shop-toolbar {
	display: flex;
	gap: 0.8rem;
	justify-content: space-between;
	align-items: center;
	padding: 0.85rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.72);
	margin-bottom: 1rem;
}

.filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.filter-btn {
	background: transparent;
	border: 1px solid var(--line);
	color: var(--ink);
	padding: 0.56rem 0.9rem;
	border-radius: 999px;
	font-size: 0.68rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-btn:hover {
	border-color: var(--line-strong);
	transform: translateY(-1px);
}

.filter-btn.active {
	background: #111;
	color: #fff;
	border-color: #111;
}

.product-count {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	font-weight: 600;
	white-space: nowrap;
}

.toolbar-right {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-left: auto;
}

.sort-label {
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	white-space: nowrap;
}

.sort-control {
	border: 1px solid var(--line);
	background: #fff;
	color: #111;
	border-radius: 999px;
	padding: 0.54rem 1.85rem 0.54rem 0.8rem;
	font-size: 0.68rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #111 50%),
		linear-gradient(135deg, #111 50%, transparent 50%);
	background-position:
		calc(100% - 15px) calc(50% - 2px),
		calc(100% - 10px) calc(50% - 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.sort-control:hover,
.sort-control:focus-visible {
	border-color: var(--line-strong);
	box-shadow: 0 0 0 3px rgba(180, 138, 90, 0.12);
	outline: none;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.95rem;
}

.product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform-style: preserve-3d;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--lift-y: 0px;
	--img-shift-x: 0px;
	--img-shift-y: 0px;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, opacity 200ms ease;
}

.product-card:hover {
	transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift-y));
	border-color: var(--line-strong);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.product-image-wrap {
	position: relative;
	aspect-ratio: 0.95;
	background: #131313;
	overflow: hidden;
}

.product-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(88%);
	transform: translate3d(var(--img-shift-x), var(--img-shift-y), 0);
	transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover .product-image-wrap img {
	transform: scale(1.04);
	filter: grayscale(60%);
}

.product-badge {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 0.62rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.4rem 0.5rem;
	border-radius: 0.5rem;
}

.product-info {
	padding: 0.75rem 0.82rem 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	height: 100%;
}

.product-category {
	font-size: 0.7rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 700;
}

.product-info h3 {
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.25;
	min-height: 2.2em;
}

.product-insights {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 0.06rem;
}

.product-insights span:last-child {
	padding: 0.2rem 0.45rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(247, 247, 245, 0.75);
}

.product-meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
}

.product-price {
	font-weight: 700;
	font-size: 0.98rem;
}

.product-meta button {
	border: 1px solid var(--line-strong);
	background: transparent;
	color: #111;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	font-size: 0.63rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-meta button:hover {
	background: #111;
	color: #fff;
	border-color: #111;
}

.product-meta button.is-added {
	background: #111;
	color: #fff;
	border-color: #111;
	animation: addConfirmPop 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-meta button.is-added::after {
	content: "✓";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.86rem;
	letter-spacing: normal;
	background: rgba(17, 17, 17, 0.92);
	animation: addConfirmFlash 420ms ease;
}

@keyframes addConfirmPop {
	0% {
		transform: translateY(0) scale(1);
	}
	40% {
		transform: translateY(-1px) scale(1.06);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@keyframes addConfirmFlash {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.no-results {
	margin-top: 1rem;
	padding: 1rem;
	border: 1px dashed var(--line-strong);
	border-radius: 0.85rem;
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
}

.about-layout,
.tailoring-layout,
.contact-layout {
	display: grid;
	gap: 1rem;
}

.about-layout {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.about-story-card,
.about-feature-card,
.about-quote-card,
.tailoring-card,
.tailoring-panel,
.contact-info-panel,
.contact-form-panel,
.site-footer {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--line);
	border-radius: 1.2rem;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.about-story-card,
.tailoring-panel,
.contact-info-panel,
.contact-form-panel {
	padding: 1.35rem;
}

.about-story-card h3,
.about-feature-card h3,
.tailoring-card h3,
.tailoring-panel h3,
.contact-info-panel h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 0.98;
	margin-bottom: 0.75rem;
}

.about-story-card p,
.about-feature-card p,
.tailoring-card p,
.tailoring-panel span,
.contact-info-panel p,
.footer-brand p,
.footer-column p {
	line-height: 1.68;
	color: #353535;
}

.about-metrics {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.about-metrics div {
	padding: 0.95rem;
	border-radius: 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 236, 0.82));
	border: 1px solid var(--line);
	display: grid;
	gap: 0.2rem;
}

.about-metrics strong {
	font-size: 1.15rem;
	font-weight: 800;
}

.about-metrics span {
	font-size: 0.84rem;
	color: var(--muted);
}

.about-side-grid {
	display: grid;
	gap: 1rem;
}

.about-feature-card,
.about-quote-card,
.tailoring-card {
	padding: 1.2rem;
}

.about-quote-card {
	background: linear-gradient(145deg, #111 0%, #1d1d1d 100%);
	color: #fff;
	align-content: end;
}

.about-quote-card p {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	line-height: 1;
	color: #fff;
	margin-bottom: 0.75rem;
}

.about-quote-card span {
	font-size: 0.74rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.tailoring-layout {
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	align-items: start;
}

.tailoring-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.tailoring-panel {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 239, 233, 0.92) 100%);
}

.tailoring-steps {
	list-style: none;
	display: grid;
	gap: 1rem;
	margin: 1.1rem 0 1.3rem;
}

.tailoring-steps li {
	display: grid;
	gap: 0.25rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--line);
}

.tailoring-steps li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.tailoring-steps strong {
	font-size: 0.84rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 800;
}

.tailoring-cta,
.contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.95rem 1.2rem;
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 800;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.contact-layout {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: start;
}

.contact-detail-list {
	margin: 1.2rem 0;
	display: grid;
	gap: 0.9rem;
}

.contact-detail-list div {
	display: grid;
	gap: 0.2rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--line);
}

.contact-detail-list div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.contact-detail-list span {
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.contact-detail-list strong {
	font-size: 1rem;
	line-height: 1.45;
}

.contact-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.contact-tags span {
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.84);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-bottom: 1rem;
}

.contact-field {
	display: grid;
	gap: 0.35rem;
}

.contact-field.full {
	grid-column: 1 / -1;
}

.contact-field label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.contact-field input,
.contact-field textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 1rem;
	padding: 0.9rem 1rem;
	font: inherit;
	background: #fff;
	color: #111;
}

.contact-field textarea {
	min-height: 150px;
	resize: vertical;
}

.site-footer {
	width: min(1200px, calc(100% - 3rem));
	margin: 0 auto 2rem;
	padding: 1.4rem;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 238, 232, 0.92) 100%);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 0.8fr);
	gap: 1.2rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--line);
}

.footer-brand h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 0.98;
	margin-bottom: 0.65rem;
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 0.45rem;
}

.footer-column h3 {
	font-size: 0.76rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--muted);
	margin-bottom: 0.25rem;
}

.footer-column a,
.footer-bottom a {
	color: #111;
	text-decoration: none;
}

.footer-bottom {
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.reveal {
	opacity: 0;
	transform: translateY(34px) scale(0.985);
	filter: blur(10px);
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform, filter;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.hero-content.reveal {
	transform: translateX(-38px) translateY(18px) scale(0.985);
}

.hero-image.reveal {
	transform: translateX(38px) translateY(18px) scale(0.985);
}

.hero-content.reveal.is-visible,
.hero-image.reveal.is-visible {
	transform: translateX(0) translateY(0) scale(1);
}

.product-card.reveal {
	transform: translateY(26px) scale(0.98);
}

.product-card.reveal.is-visible {
	transform: translateY(0) scale(1);
}

body.cart-open .site-header,
body.cart-open main,
body.cart-open .site-footer {
	transform: scale(0.996);
	filter: saturate(0.92);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}

	.product-card,
	.product-card:hover,
	.product-image-wrap img,
	.product-meta button,
	.product-meta button.is-added {
		transition: none;
		animation: none;
		transform: none;
	}

	.product-meta button.is-added::after {
		display: none;
	}

	.cart-count,
	.cart-count.is-bump {
		animation: none;
	}
}

.cart-overlay {
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at 78% 10%, rgba(180, 138, 90, 0.18), rgba(0, 0, 0, 0.58));
	backdrop-filter: blur(6px) saturate(95%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 79;
}

.cart-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 100vw);
	height: 100vh;
	background: rgba(247, 247, 245, 0.98);
	border-left: 1px solid var(--line);
	box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
	display: grid;
	grid-template-rows: auto 1fr auto;
	transform: translateX(108%) scale(0.98);
	opacity: 0;
	transition:
		transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 80;
}

.cart-drawer.is-open {
	transform: translateX(0) scale(1);
	opacity: 1;
}

.cart-drawer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 140px;
	background: linear-gradient(180deg, rgba(180, 138, 90, 0.14), transparent 70%);
	pointer-events: none;
}

.cart-drawer-header,
.cart-footer {
	padding: 1.25rem 1.2rem;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.66);
}

.cart-footer {
	border-bottom: 0;
	border-top: 1px solid var(--line);
	display: grid;
	gap: 0.8rem;
}

.cart-drawer-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.cart-kicker {
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 0.3rem;
}

.cart-drawer-header h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 0.92;
}

.cart-close {
	border: 1px solid var(--line);
	background: #fff;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.cart-body {
	overflow-y: auto;
	padding: 1rem 1.2rem 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.cart-drawer-header,
.cart-body,
.cart-footer {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.cart-drawer.is-open .cart-drawer-header,
.cart-drawer.is-open .cart-body,
.cart-drawer.is-open .cart-footer {
	opacity: 1;
	transform: translateY(0);
}

.cart-drawer.is-open .cart-body {
	transition-delay: 0.05s;
}

.cart-drawer.is-open .cart-footer {
	transition-delay: 0.1s;
}

.cart-empty {
	padding: 1rem;
	border: 1px dashed var(--line-strong);
	border-radius: 0.9rem;
	color: var(--muted);
	line-height: 1.6;
	background: rgba(255, 255, 255, 0.76);
}

.cart-items {
	display: grid;
	gap: 0.85rem;
}

.cart-item {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 0.85rem;
	padding: 0.7rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #fff;
}

.cart-item-media {
	width: 84px;
	height: 104px;
	border-radius: 0.7rem;
	overflow: hidden;
	background: #111;
}

.cart-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(86%);
}

.cart-item-info {
	display: grid;
	gap: 0.38rem;
}

.cart-item-category {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.cart-item-name {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

.cart-item-price {
	font-size: 0.95rem;
	font-weight: 700;
}

.cart-item-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	margin-top: 0.25rem;
}

.cart-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	overflow: hidden;
	background: #fafaf9;
}

.cart-qty button,
.cart-remove {
	border: 0;
	background: transparent;
	font-family: inherit;
	cursor: pointer;
}

.cart-qty button {
	width: 32px;
	height: 32px;
	font-size: 1rem;
}

.cart-qty span {
	min-width: 32px;
	text-align: center;
	font-size: 0.84rem;
	font-weight: 700;
}

.cart-remove {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.cart-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.cart-summary-total {
	color: var(--ink);
}

.cart-primary-action,
.cart-secondary-action {
	width: 100%;
	border-radius: 999px;
	padding: 0.9rem 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.cart-primary-action {
	border: 1px solid #111;
	background: #111;
	color: #fff;
}

.cart-secondary-action {
	border: 1px solid var(--line-strong);
	background: transparent;
	color: #111;
}

.checkout-page main {
	margin-top: 1.8rem;
}

.checkout-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
	gap: 1.2rem;
	align-items: start;
}

.checkout-panel,
.checkout-summary {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--line);
	border-radius: 1.25rem;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.checkout-panel {
	padding: 1.4rem;
	display: grid;
	gap: 1.4rem;
}

.checkout-summary {
	padding: 1.25rem;
	position: sticky;
	top: 8.8rem;
	display: grid;
	gap: 1rem;
}

.checkout-hero {
	display: grid;
	gap: 0.35rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}

.checkout-kicker {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.checkout-hero h1,
.summary-head h2 {
	font-family: "Cormorant Garamond", serif;
	line-height: 0.96;
	letter-spacing: 0.01em;
}

.checkout-hero h1 {
	font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.checkout-hero p,
.summary-head p,
.checkout-note {
	line-height: 1.65;
	color: #343434;
}

.checkout-block {
	display: grid;
	gap: 0.9rem;
}

.checkout-block h2 {
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--muted);
}

.checkout-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.checkout-field {
	display: grid;
	gap: 0.38rem;
}

.checkout-field.full {
	grid-column: 1 / -1;
}

.checkout-field label,
.payment-option span,
.delivery-option span {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 1rem;
	padding: 0.9rem 1rem;
	font: inherit;
	background: #fff;
	color: #111;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.checkout-field textarea {
	resize: vertical;
	min-height: 116px;
}

.checkout-field input:focus-visible,
.checkout-field select:focus-visible,
.checkout-field textarea:focus-visible {
	outline: none;
	border-color: var(--line-strong);
	box-shadow: 0 0 0 3px rgba(180, 138, 90, 0.12);
}

.checkout-field input.is-invalid,
.checkout-field select.is-invalid,
.checkout-field textarea.is-invalid {
	border-color: #b3261e;
	background: rgba(179, 38, 30, 0.05);
	box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.08);
}

.checkout-field input.is-valid,
.checkout-field select.is-valid,
.checkout-field textarea.is-valid {
	border-color: #2d6a4f;
	background: rgba(45, 106, 79, 0.04);
	box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.field-feedback {
	min-height: 1.1rem;
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--muted);
}

.field-feedback.is-invalid {
	color: #b3261e;
	font-weight: 600;
}

.field-feedback.is-valid {
	color: #2d6a4f;
	font-weight: 600;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.payment-option,
.delivery-option {
	position: relative;
	display: grid;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #fff;
	cursor: pointer;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.payment-option:hover,
.delivery-option:hover {
	transform: translateY(-1px);
	border-color: var(--line-strong);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.payment-option input,
.delivery-option input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.payment-option strong,
.delivery-option strong {
	font-size: 1rem;
	line-height: 1.2;
}

.payment-option p,
.delivery-option p {
	color: #444;
	line-height: 1.5;
	font-size: 0.94rem;
}

.payment-option:has(input:checked),
.delivery-option:has(input:checked) {
	border-color: #111;
	box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.06);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 241, 236, 0.9));
}

.summary-head {
	display: grid;
	gap: 0.3rem;
	padding-bottom: 0.9rem;
	border-bottom: 1px solid var(--line);
}

.summary-head h2 {
	font-size: 2.1rem;
}

.checkout-items {
	display: grid;
	gap: 0.8rem;
}

.checkout-item {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 0.75rem;
	padding: 0.7rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #fff;
}

.checkout-item-media {
	width: 74px;
	height: 92px;
	border-radius: 0.8rem;
	overflow: hidden;
	background: #111;
}

.checkout-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(86%);
}

.checkout-item-info {
	display: grid;
	gap: 0.35rem;
}

.checkout-item-category {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
}

.checkout-item-name {
	font-weight: 700;
	line-height: 1.25;
}

.checkout-item-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.92rem;
	color: #333;
}

.checkout-totals {
	display: grid;
	gap: 0.65rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--line);
}

.checkout-total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--muted);
	font-size: 0.84rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.checkout-total-row strong {
	color: #111;
	font-size: 1rem;
}

.checkout-total-row.grand-total {
	padding-top: 0.4rem;
	margin-top: 0.1rem;
	border-top: 1px solid var(--line);
}

.checkout-total-row.grand-total strong {
	font-size: 1.2rem;
}

.checkout-submit,
.checkout-return {
	width: 100%;
	border-radius: 999px;
	padding: 1rem 1.1rem;
	font: inherit;
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.checkout-submit {
	border: 1px solid #111;
	background: #111;
	color: #fff;
}

.checkout-return {
	border: 1px solid var(--line-strong);
	background: transparent;
	color: #111;
}

.checkout-empty-state,
.checkout-success {
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.74);
	border: 1px dashed var(--line-strong);
	color: #383838;
	line-height: 1.7;
}

.checkout-success {
	border-style: solid;
	border-color: rgba(180, 138, 90, 0.45);
	background: rgba(180, 138, 90, 0.1);
}

.content-block h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.85rem, 3.2vw, 2.7rem);
	margin-bottom: 0.55rem;
	letter-spacing: 0.01em;
}

.content-block p {
	max-width: 64ch;
	color: #2f2f2f;
	line-height: 1.65;
}

@media (max-width: 1200px) {
	main,
	.site-header,
	.site-footer {
		width: min(1200px, calc(100% - 2rem));
	}

	.hero {
		gap: 1rem;
	}
}

@media (max-width: 960px) {
	.site-header {
		width: min(1200px, calc(100% - 1.2rem));
		top: 0.6rem;
	}

	main {
		width: min(1200px, calc(100% - 1.2rem));
		margin-top: 1rem;
	}

	.header-topline {
		font-size: 0.65rem;
		letter-spacing: 0.12em;
		padding: 0.55rem 0.7rem;
	}

	.nav-shell {
		height: auto;
		min-height: 78px;
		padding: 0.9rem 1rem;
		position: relative;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.main-nav {
		position: absolute;
		top: calc(100% + 0.5rem);
		right: 0;
		width: min(280px, calc(100vw - 1.2rem));
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 0.9rem;
		padding: 0.8rem;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-6px);
		transition: transform 180ms ease, opacity 180ms ease;
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
	}

	.main-nav ul {
		flex-direction: column;
		gap: 0.6rem;
	}

	.main-nav a {
		display: block;
		padding: 0.55rem 0.3rem;
	}

	.nav-shell.menu-open .main-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav-shell.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(6.8px) rotate(45deg);
	}

	.nav-shell.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.nav-shell.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-6.8px) rotate(-45deg);
	}

	.nav-cta {
		display: none;
	}

	.nav-actions {
		margin-left: auto;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-content {
		height: auto;
	}

	.hero-image {
		height: 430px;
		order: -1;
	}

	.hero-content h1 {
		max-width: 18ch;
	}

	.shop-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.toolbar-right {
		margin-left: 0;
		width: 100%;
		justify-content: space-between;
	}

	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-layout,
	.tailoring-layout,
	.contact-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.tailoring-services {
		grid-template-columns: 1fr;
	}

	.checkout-shell {
		grid-template-columns: 1fr;
	}

	.checkout-summary {
		position: static;
	}
}

@media (max-width: 768px) {
	.shop-toolbar {
		padding: 0.75rem;
		gap: 0.7rem;
	}

	.filter-group {
		width: 100%;
	}

	.filter-btn {
		flex: 1 1 calc(33.333% - 0.55rem);
		text-align: center;
	}

	.toolbar-right {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0.55rem;
	}

	.product-count {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.header-topline {
		flex-wrap: wrap;
		gap: 0.4rem 0.7rem;
		text-align: center;
	}

	.brand-mark {
		font-size: 1.6rem;
	}

	.brand-sub {
		letter-spacing: 0.25em;
	}

	.hero-content {
		padding: 1.25rem;
	}

	.hero-image {
		height: 360px;
	}

	.hero-actions {
		width: 100%;
	}

	.hero-cta-primary,
	.hero-cta-ghost {
		width: 100%;
	}

	.filter-group {
		width: 100%;
	}

	.filter-btn {
		flex: 1 1 auto;
		text-align: center;
	}

	.cart-trigger-label {
		display: none;
	}

	.toolbar-right {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.sort-control {
		width: 100%;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.about-metrics,
	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.site-footer,
	main {
		width: min(1200px, calc(100% - 1.2rem));
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.cart-drawer {
		width: 100vw;
	}

	.checkout-grid,
	.choice-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	main,
	.site-footer,
	.site-header {
		width: min(1200px, calc(100% - 1rem));
	}

	.site-header {
		top: 0.45rem;
	}

	.nav-shell {
		padding: 0.72rem 0.78rem;
		gap: 0.6rem;
	}

	.brand-mark {
		font-size: 1.45rem;
	}

	.hero-content {
		padding: 1.05rem;
	}

	.hero-image {
		height: 310px;
	}

	.section-head h2 {
		font-size: clamp(1.7rem, 8.5vw, 2.1rem);
	}

	.product-info h3 {
		font-size: 0.95rem;
	}

	.filter-btn {
		font-size: 0.63rem;
		padding: 0.5rem 0.65rem;
	}
}
