@font-face {
  font-family: "Tenor Sans";
  src: url("/assets/fonts/tenor-sans-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-800.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  color-scheme: light;
  --noir: #080706;
  --black-olive: #11100d;
  --emerald: #082e28;
  --emerald-soft: #123e36;
  --ivory: #fffaf1;
  --paper: #f9f2e8;
  --champagne: #ead8b8;
  --linen: #f2e6d5;
  --gold: #c79a4b;
  --gold-bright: #f0d28a;
  --bronze: #8b6028;
  --wine: #702033;
  --ink: #201b16;
  --muted: #7c6f62;
  --line: rgba(139, 96, 40, 0.28);
  --line-strong: rgba(240, 210, 138, 0.42);
  --radius: 6px;
  --page: min(1220px, calc(100vw - 40px));
  --display: "Tenor Sans", "Avenir Next", "Optima", "Manrope", "Segoe UI", sans-serif;
  --text: "Manrope", "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --shadow-deep: 0 28px 90px rgba(8, 7, 6, 0.26);
  --shadow-gold: 0 18px 60px rgba(139, 96, 40, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--noir) 0 790px, var(--paper) 790px),
    var(--paper);
  color: var(--ink);
  font-family: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(240, 210, 138, 0.45);
  outline-offset: 3px;
}

.luxury-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  padding: 8px 18px;
  border-bottom: 1px solid rgba(240, 210, 138, 0.18);
  background: #050403;
  color: var(--champagne);
  font-family: var(--text);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.luxury-strip span {
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px max(20px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid rgba(240, 210, 138, 0.2);
  background: rgba(8, 7, 6, 0.88);
  color: var(--ivory);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  min-width: 252px;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(145deg, #1b1712, #090806);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 26px;
  box-shadow: inset 0 0 0 7px rgba(240, 210, 138, 0.08), 0 0 28px rgba(199, 154, 75, 0.18);
}

.brand-logo {
  width: 220px;
  height: 58px;
  flex: 0 0 220px;
  object-fit: contain;
  object-position: left center;
}

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

.brand strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
}

.brand small {
  max-width: 230px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 11px;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-block: 9px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.icon-button {
  display: inline-flex;
  min-width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.06);
  color: var(--ivory);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.icon-button:hover {
  border-color: var(--gold-bright);
  background: rgba(240, 210, 138, 0.12);
  box-shadow: 0 12px 32px rgba(8, 7, 6, 0.22);
  transform: translateY(-1px);
}

.cart-button strong {
  min-width: 23px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--noir);
  font-size: 12px;
  line-height: 23px;
  text-align: center;
}

.storefront {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.74fr);
  width: var(--page);
  min-height: clamp(650px, 79vh, 790px);
  margin: 0 auto;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(42px, 5vw, 72px) 0 58px;
  color: var(--ivory);
}

.storefront::before {
  position: absolute;
  inset: 20px -80px auto auto;
  width: min(420px, 40vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 210, 138, 0.52), transparent);
  content: "";
}

.storefront-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  color: inherit;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
}

.storefront p:not(.eyebrow) {
  max-width: 54ch;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 42px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
  background: var(--ivory);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 180ms ease, transform 360ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.button.primary {
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--bronze));
  color: #110d08;
}

.button.primary:hover {
  border-color: #fff0bf;
}

.button.subtle {
  border-color: rgba(240, 210, 138, 0.42);
  background: rgba(255, 250, 241, 0.06);
  color: var(--ivory);
}

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

.button.full {
  width: 100%;
}

.button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  margin: 46px 0 0;
  border: 1px solid rgba(240, 210, 138, 0.22);
  background: rgba(8, 7, 6, 0.72);
  box-shadow: 0 18px 44px rgba(8, 7, 6, 0.22);
  backdrop-filter: blur(8px);
}

.hero-metrics div {
  padding: 18px;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(240, 210, 138, 0.18);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 210, 138, 0.36);
  border-radius: var(--radius);
  background: #0b0907;
  box-shadow: var(--shadow-deep), 0 0 0 10px rgba(255, 250, 241, 0.03);
}

.showcase::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(240, 210, 138, 0.36);
  content: "";
  pointer-events: none;
}

.showcase::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.34));
  content: "";
  pointer-events: none;
}

.showcase img {
  width: 100%;
  min-height: 560px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  padding: 18px 20px;
  border: 1px solid rgba(240, 210, 138, 0.42);
  border-radius: var(--radius);
  background: rgba(8, 7, 6, 0.76);
  color: var(--ivory);
  box-shadow: 0 18px 42px rgba(8, 7, 6, 0.24);
  backdrop-filter: blur(12px);
}

.showcase strong,
.showcase span {
  display: block;
}

.showcase strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.showcase span {
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--page);
  margin: -18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow-gold);
}

.trust-strip div {
  padding: 24px 26px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--emerald);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.atelier-section {
  width: var(--page);
  margin: 56px auto 0;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(240, 210, 138, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 210, 138, 0.08), transparent 38%),
    linear-gradient(180deg, var(--emerald), #071f1b);
  color: var(--ivory);
  box-shadow: var(--shadow-deep);
}

.atelier-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.atelier-copy h2 {
  max-width: 760px;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(240, 210, 138, 0.22);
}

.atelier-grid article {
  padding: 24px;
}

.atelier-grid article + article {
  border-left: 1px solid rgba(240, 210, 138, 0.18);
}

.atelier-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 30px;
}

.atelier-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.atelier-grid p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 14px;
}

.catalog-section {
  width: var(--page);
  margin: 0 auto;
  padding: 76px 0 94px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}

.catalog-section .eyebrow,
.legal-page .eyebrow,
.admin-main .eyebrow {
  color: var(--bronze);
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(160px, 210px);
  gap: 12px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(139, 96, 40, 0.3);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 250, 241, 0.76);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover,
select:hover,
input:focus,
select:focus {
  border-color: rgba(199, 154, 75, 0.72);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(199, 154, 75, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  width: var(--page);
  margin: 68px auto 0;
  gap: 34px;
  align-items: start;
}

.visual-proof-heading {
  position: sticky;
  top: 110px;
  padding: 20px 0;
}

.visual-proof-heading h2 {
  margin-bottom: 18px;
  color: var(--emerald);
}

.visual-proof-heading > p:last-child {
  max-width: 34ch;
  color: var(--muted);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-proof figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 96, 40, 0.25);
  background: var(--noir);
}

.visual-proof figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-proof .visual-proof-feature {
  grid-row: span 2;
}

.visual-proof .visual-proof-feature img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.visual-proof figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  background: rgba(8, 7, 6, 0.72);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
}

.visual-proof {
  display: block;
  margin-bottom: 72px;
}

.carousel {
  position: relative;
  width: var(--page);
  max-width: 980px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(139, 96, 40, 0.28);
  border-radius: var(--radius);
  background: var(--noir);
  box-shadow: var(--shadow-deep);
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px 24px;
  background: linear-gradient(135deg, #11100d, #071f1b);
  color: var(--ivory);
}

.carousel-heading h2 {
  max-width: 20ch;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  color: var(--ivory);
}

.carousel-heading > p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 250, 241, 0.68);
}

.carousel-viewport {
  overflow: hidden;
  background: #050403;
}

.carousel-track {
  display: flex;
  align-items: flex-start;
  transition: transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: auto;
  align-self: flex-start;
  margin: 0;
  background: #050403;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
}

.carousel-slide figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 12px 14px;
  background: rgba(8, 7, 6, 0.72);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.carousel-arrow {
  position: absolute;
  top: 58%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 210, 138, 0.54);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.64);
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  background: rgba(240, 210, 138, 0.16);
}

.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: #050403;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.36);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.carousel-dots button[aria-selected="true"] {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-bright);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(139, 96, 40, 0.24);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(199, 154, 75, 0.16);
  content: "";
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(199, 154, 75, 0.58);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, 0.96), rgba(8, 46, 40, 0.9));
  padding: 14px;
}

.product-media img,
.product-card > img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border: 1px solid rgba(240, 210, 138, 0.2);
  background:
    radial-gradient(circle at 50% 45%, rgba(240, 210, 138, 0.24), transparent 36%),
    var(--ivory);
}

.product-media img[src$=".svg"],
.product-card > img[src$=".svg"] {
  padding: 26px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(82, 53, 18, 0.22));
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(240, 210, 138, 0.48);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.78);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 274px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
}

.category {
  margin-bottom: 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.26;
  text-transform: uppercase;
}

.product-tags {
  display: flex;
  min-height: 28px;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.product-tags span {
  padding: 4px 8px;
  border: 1px solid rgba(139, 96, 40, 0.22);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-footer strong {
  color: var(--emerald);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.product-footer .button {
  border-color: rgba(8, 46, 40, 0.85);
  background: var(--emerald);
  color: var(--ivory);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  width: min(540px, 100vw);
  height: 100dvh;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--line-strong);
  background: var(--ivory);
  box-shadow: var(--shadow-deep);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 210, 138, 0.12), transparent),
    var(--noir);
  color: var(--ivory);
}

.cart-header h2 {
  font-size: 40px;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 20px 24px;
}

.cart-line {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 96, 40, 0.2);
}

.cart-line img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(139, 96, 40, 0.28);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--black-olive);
}

.cart-line strong {
  display: block;
  line-height: 1.2;
}

.cart-line span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.qty {
  display: grid;
  grid-template-columns: 34px 28px 34px;
  align-items: center;
  text-align: center;
}

.qty button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(139, 96, 40, 0.28);
  border-radius: var(--radius);
  background: #fffaf1;
  color: var(--ink);
  cursor: pointer;
}

.totals {
  display: grid;
  gap: 9px;
  padding: 20px 24px;
  border-top: 1px solid rgba(139, 96, 40, 0.24);
  border-bottom: 1px solid rgba(139, 96, 40, 0.24);
  background: #fffdf8;
}

.totals div {
  display: flex;
  justify-content: space-between;
}

.grand-total {
  color: var(--emerald);
  font-size: 22px;
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.checkout-form h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.checkout-form .button.primary {
  color: #110d08;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wide {
  grid-column: 1 / -1;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.check-row input {
  min-height: auto;
  margin-top: 3px;
}

.form-note,
.empty {
  color: var(--muted);
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(3px);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  max-width: 560px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow-deep);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner .button {
  flex: none;
  border-color: rgba(139, 96, 40, 0.38);
  background: #fffaf1;
  color: var(--bronze);
}

.site-footer {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  gap: 18px;
}

.site-footer strong {
  color: var(--emerald);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-site {
  background: var(--paper);
}

.legal-site .topbar {
  background: var(--noir);
}

.legal-page {
  width: min(900px, calc(100vw - 40px));
  margin: 58px auto 86px;
  padding: 54px 64px 68px;
  border: 1px solid rgba(139, 96, 40, 0.2);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 20px 60px rgba(82, 53, 18, 0.1);
}

.legal-page h1 {
  color: var(--emerald);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.legal-page h2 {
  margin-top: 38px;
  margin-bottom: 8px;
  color: var(--emerald);
  font-size: clamp(23px, 3vw, 30px);
}

.legal-page p {
  max-width: 70ch;
  color: var(--muted);
}

.legal-lead {
  max-width: 62ch !important;
  font-size: 18px;
  line-height: 1.7;
}

.legal-meta {
  margin-top: -8px;
  color: var(--bronze) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-list {
  display: grid;
  gap: 10px;
  max-width: 70ch;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li::marker {
  color: var(--gold);
}

.legal-list strong {
  color: var(--ink);
}

.legal-highlight,
.legal-note {
  display: grid;
  gap: 6px;
  margin: 32px 0 40px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(234, 216, 184, 0.3);
}

.legal-highlight strong,
.legal-note strong {
  color: var(--emerald);
  font-size: 15px;
}

.legal-highlight span {
  color: var(--muted);
  font-size: 14px;
}

.legal-steps {
  display: grid;
  gap: 12px;
  max-width: 70ch;
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
}

.legal-steps li::marker {
  color: var(--bronze);
  font-weight: 800;
}

.legal-note {
  margin: 40px 0 0;
  background: rgba(8, 46, 40, 0.07);
}

.legal-note p {
  margin: 0;
}

.admin-main {
  width: var(--page);
  margin: 0 auto;
  padding: 42px 0 92px;
}

.admin-main h1 {
  color: var(--emerald);
  font-size: clamp(40px, 6.5vw, 66px);
}

.admin-toolbar,
.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-toolbar {
  max-width: 620px;
  margin-bottom: 36px;
}

.admin-card {
  display: grid;
  grid-template-columns: 1fr 130px 96px 96px 120px;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(139, 96, 40, 0.24);
  border-radius: var(--radius);
  background: var(--ivory);
}

@media (max-width: 1060px) {
  body {
    background:
      linear-gradient(180deg, var(--noir) 0 980px, var(--paper) 980px),
      var(--paper);
  }

  .storefront {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .showcase {
    max-width: 660px;
  }

  .atelier-copy,
  .section-heading,
  .visual-proof {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .visual-proof-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 28px);
  }

  body {
    background:
      linear-gradient(180deg, var(--noir) 0 760px, var(--paper) 760px),
      var(--paper);
  }

  .luxury-strip {
    justify-content: center;
    overflow: hidden;
  }

  .luxury-strip span:nth-child(n + 2) {
    display: none;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 14px 74px 14px 14px;
  }

  .legal-page {
    width: calc(100vw - 28px);
    margin: 32px auto 56px;
    padding: 34px 24px 46px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    max-width: 180px;
  }

  .cart-button {
    position: absolute;
    top: 20px;
    left: min(calc(100vw - 62px), 330px);
    right: auto;
  }

  .nav {
    grid-row: 2;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 11px;
  }

  .storefront {
    gap: 24px;
    padding-top: 32px;
  }

  .storefront::before {
    display: none;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .storefront p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .button {
    min-height: 46px;
    padding-inline: 15px;
  }

  .hero-metrics,
  .atelier-grid,
  .trust-strip,
  .product-grid,
  .filters,
  .form-grid,
  .admin-card {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .hero-metrics div + div,
  .trust-strip div + div,
  .atelier-grid article + article {
    border-top: 1px solid rgba(139, 96, 40, 0.22);
    border-left: 0;
  }

  .showcase img {
    min-height: 360px;
    aspect-ratio: 4 / 4.6;
  }

  .showcase::before {
    inset: 10px;
  }

  .showcase-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .trust-strip {
    margin-top: 18px;
  }

  .atelier-section {
    margin-top: 36px;
    padding: 28px 20px;
  }

  .catalog-section {
    padding-top: 54px;
  }

  .product-body {
    min-height: 226px;
  }

  .visual-proof {
    margin-top: 42px;
    margin-bottom: 52px;
  }

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

  .cart-panel {
    width: 100vw;
  }

  .cart-line {
    grid-template-columns: 58px 1fr;
  }

  .qty {
    grid-column: 2;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: min(366px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner p {
    max-width: 32ch;
  }

  .site-footer {
    flex-direction: column;
  }
}
