:root {
  --ink: #111111;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #e9edf0;
  --stone: #b8b3aa;
  --linen: #d7d0c1;
  --blue: #486275;
  --red: #b88745;
  --clay: #8d5f52;
  --silver: #d4d7d6;
  --muted: rgba(17, 17, 17, 0.66);
  --line: rgba(17, 17, 17, 0.1);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

.notice {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(112px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 66px;
  padding: 0 clamp(18px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: clamp(210px, 21vw, 300px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 14px;
  font-weight: 720;
}

.nav-links a {
  padding: 22px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--red);
}

.header-actions {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.header-link,
.button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.cart-open span {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.cart-open.is-bumping span {
  animation: cart-count-bump 520ms cubic-bezier(0.18, 0.72, 0.22, 1);
}

.header-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-link:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.button.is-added,
.button.is-loading {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button.is-added {
  animation: button-added-pulse 620ms ease;
}

.button.is-loading {
  position: relative;
  overflow: hidden;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  animation: checkout-sheen 940ms ease-in-out infinite;
}

.cart-flyer {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.22);
  will-change: transform, opacity;
}

@keyframes cart-count-bump {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(1.28);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes button-added-pulse {
  0% {
    transform: scale(0.98);
  }

  48% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes checkout-sheen {
  100% {
    transform: translateX(120%);
  }
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.light {
  border-color: var(--white);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 800px);
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.76), rgba(17, 17, 17, 0.36) 48%, rgba(17, 17, 17, 0.08));
}

.hero > img {
  width: 100%;
  max-width: 100%;
  height: clamp(620px, 84vh, 800px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.02);
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: clamp(20px, 7vw, 96px);
  width: min(730px, calc(100% - 40px));
  transform: translateY(-50%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.drop-band .eyebrow {
  color: var(--white);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.92;
}

.hero-line {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-item {
  min-height: 118px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.category-item:last-child {
  border-right: 0;
}

.category-item span {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 880;
}

.category-item strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.section-shell,
.edition-section,
.route-section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1;
}

.section-heading a,
.journal-copy a,
.site-footer a,
.edition-grid a,
.route-card a,
.product-copy a {
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.product-media img {
  width: 145%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.crop-one img {
  object-position: 18% 72%;
}

.crop-two img {
  object-position: 52% 78%;
}

.crop-three img {
  object-position: 72% 74%;
}

.crop-four img {
  object-position: 88% 76%;
}

.crop-dream-thief img {
  width: 100%;
  object-position: center center;
}

.crop-king-aster img {
  width: 100%;
  object-position: center center;
}

.crop-tick-tock img {
  width: 100%;
  object-position: center center;
}

.crop-zhuang-sheng img {
  width: 100%;
  object-position: center center;
}

.crop-broken-jar img {
  width: 100%;
  object-position: center center;
}

.product-info {
  min-height: 214px;
  padding: 18px 18px 20px;
}

.product-info p {
  margin-bottom: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 10px 0 10px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
}

.card-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.status,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.status.available {
  border-color: rgba(72, 98, 117, 0.25);
  color: var(--blue);
}

.status.reserved {
  border-color: rgba(141, 95, 82, 0.25);
  color: var(--clay);
}

.status.coming-soon {
  border-color: rgba(215, 40, 50, 0.2);
  color: var(--red);
}

.status.archive {
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--muted);
}

.tag {
  background: var(--paper);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}

.product-info .production-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.price {
  font-size: 17px;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
}

.product-meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
}

.product-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.card-actions .button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 11px;
}

.card-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 840;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.available-now {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.available-now .eyebrow {
  color: var(--red);
}

.available-now h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.available-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.available-list a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 20px;
  background: var(--ink);
}

.available-list span,
.available-list strong,
.available-list em {
  display: block;
}

.available-list span {
  font-size: 20px;
  font-weight: 840;
  line-height: 1.05;
}

.available-list strong {
  font-size: 18px;
}

.available-list em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.98;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.trust-grid div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid div:nth-child(2n) {
  border-right: 0;
}

.trust-grid div:nth-last-child(-n + 1) {
  border-bottom: 0;
}

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

.trust-grid strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.edition-section {
  background: var(--paper);
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.edition-grid article,
.route-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.edition-grid span,
.route-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.edition-grid h3,
.route-card h3 {
  max-width: 460px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.archive-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 108px) 0 clamp(48px, 7vw, 86px);
  background:
    radial-gradient(circle at 14% 14%, rgba(141, 95, 82, 0.1), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(72, 98, 117, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f2e7, var(--paper));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-heading {
  max-width: 940px;
  margin: 0 auto 34px;
  padding: 0 18px;
  text-align: center;
}

.archive-heading h2 {
  margin-bottom: 14px;
  color: #203426;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 420;
  line-height: 1.02;
}

.archive-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(17, 17, 17, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 23px);
  font-style: italic;
  line-height: 1.6;
}

.archive-controls {
  position: absolute;
  z-index: 2;
  top: clamp(118px, 15vw, 188px);
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.archive-arrow {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
  color: var(--ink);
  font: inherit;
  font-size: 28px;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(14px);
}

.archive-track {
  display: grid;
  grid-auto-columns: clamp(190px, 15vw, 270px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  max-width: 100%;
  padding: 0 clamp(18px, 4vw, 48px) 18px;
  scroll-padding-left: clamp(18px, 4vw, 48px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.archive-track::-webkit-scrollbar {
  display: none;
}

.archive-card {
  scroll-snap-align: start;
}

.archive-card img {
  width: 100%;
  height: clamp(310px, 28vw, 420px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.11);
}

.archive-card.wide {
  grid-column: span 2;
}

.archive-card.wide img {
  object-position: center;
}

.archive-card div {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding-top: 14px;
  color: rgba(17, 17, 17, 0.72);
  font-family: Georgia, "Times New Roman", serif;
}

.archive-card strong {
  max-width: 100%;
  font-size: 16px;
  font-weight: 420;
  line-height: 1.15;
  text-align: center;
}

.archive-card span {
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
}

.archive-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 18px;
}

.archive-footer span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
}

.archive-footer span:first-child {
  background: #765a1f;
  border-color: #765a1f;
}

.archive-footer a {
  margin-left: 16px;
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.lightbox-source {
  cursor: zoom-in;
}

.lightbox-source:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(16, 14, 12, 0.88);
  opacity: 0;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
}

.image-lightbox-close {
  position: fixed;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.image-lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  margin: 0;
}

.image-lightbox-image {
  display: block;
  max-width: min(1120px, 92vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform-origin: center;
  transition: transform 120ms ease;
  cursor: zoom-out;
  touch-action: none;
  will-change: transform;
}

.image-lightbox-image[data-zoomed="true"] {
  cursor: zoom-out;
}

.image-lightbox-caption {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 22px);
  text-align: center;
}

.drop-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.drop-band h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
}

.drop-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.journal-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.journal-image {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.journal-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}

.journal-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.newsletter-section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 8vw, 120px);
  background: linear-gradient(135deg, var(--white), var(--mist));
}

.newsletter-section h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.06;
}

.newsletter-form {
  max-width: 760px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.route-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 96px);
}

.route-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.route-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.collection-landing {
  background: var(--paper);
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 146px);
  padding: clamp(56px, 8vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.collection-hero-copy {
  max-width: 780px;
}

.collection-hero h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(56px, 8.4vw, 124px);
  line-height: 0.92;
}

.collection-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.58;
}

.collection-hero figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.collection-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-talismans-charms .collection-hero h1 {
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 1;
}

.collection-talismans-charms .collection-hero img {
  object-position: center;
}

.collection-soft-sculpture .collection-hero img {
  object-position: center;
}

.collection-world {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.collection-world > * {
  max-width: 720px;
}

.collection-world .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.collection-world h2 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 0.98;
}

.collection-world p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.collection-story {
  display: grid;
  gap: 16px;
}

.collection-story p {
  margin: 0;
}

.collection-world dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.collection-world dl div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.collection-world dl div:last-child {
  border-right: 0;
}

.collection-world dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.collection-world dd {
  margin: 0;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
}

.collection-featured {
  background: var(--white);
}

.collection-coming-soon {
  display: grid;
  gap: 14px;
  max-width: 1320px;
  min-height: 300px;
  align-content: center;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--paper), var(--white));
}

.collection-coming-soon span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-coming-soon h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.06;
}

.collection-coming-soon p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.collection-coming-soon .button {
  justify-self: start;
  margin-top: 8px;
}

.collection-archive {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.collection-archive > div:first-child,
.collection-archive-grid {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.collection-archive h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.collection-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.collection-archive-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.collection-archive-card strong,
.collection-archive-card span {
  display: block;
  padding: 0 20px;
}

.collection-archive-card strong {
  padding-top: 18px;
  font-size: 21px;
}

.collection-archive-card span {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.collection-newsletter {
  border-top: 1px solid var(--line);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.shop-catalog {
  background: var(--paper);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1320px;
  margin: 0 auto 26px;
}

.filter-tab {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.empty-filter {
  max-width: 1320px;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-card[hidden] {
  display: none;
}

.route-card p {
  color: var(--muted);
  line-height: 1.6;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.product-gallery {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.product-main-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center bottom;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--white);
}

.product-gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
  border-radius: 6px;
}

.product-detail-commerce {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(22px, 4vw, 42px);
  max-width: 1080px;
  margin: 0 auto;
  padding-top: clamp(26px, 4vw, 48px);
  padding-bottom: clamp(34px, 5vw, 72px);
}

.product-media-showcase {
  position: sticky;
  top: 104px;
}

.media-shell {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.media-thumbs {
  display: grid;
  gap: 10px;
}

.media-thumb {
  position: relative;
  width: 56px;
  height: 70px;
  padding: 3px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.media-thumb.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.media-thumb-video {
  position: absolute;
  inset: auto 6px 6px 6px;
  padding: 3px 4px;
  background: rgba(17, 17, 17, 0.72);
  color: var(--white);
  font-size: 9px;
  font-weight: 820;
  text-align: center;
  text-transform: uppercase;
}

.media-viewer {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.media-viewer:focus-visible {
  outline: 3px solid rgba(222, 31, 45, 0.28);
  outline-offset: 4px;
}

.product-media-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
}

.product-media-slide[hidden] {
  display: none;
}

.product-media-slide.is-video {
  position: relative;
}

.product-media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper);
}

.media-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.38);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.media-play span {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
  transform: translateX(2px);
}

.media-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: rgba(17, 17, 17, 0.58);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.media-note {
  margin: 12px 0 0 68px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-purchase-panel {
  position: sticky;
  top: 104px;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.product-release-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.product-purchase-panel h1 {
  max-width: 360px;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
}

.product-purchase-panel .lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.purchase-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 20px 0 14px;
}

.purchase-options,
.purchase-specs,
.purchase-trust {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

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

.purchase-options div,
.purchase-specs div {
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.purchase-options span,
.purchase-specs span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.purchase-options strong,
.purchase-specs strong {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.purchase-actions .button {
  flex: 1 1 100%;
}

.purchase-smallprint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-story-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 5vw, 40px);
  text-align: center;
  border-top: 1px solid var(--line);
}

.product-story-panel h2 {
  max-width: 860px;
  margin: 14px auto 24px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-story-panel p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.48;
}

.product-info-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 40px) clamp(72px, 9vw, 120px);
}

.product-info-panels article {
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-info-panels span,
.product-policy-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.product-info-panels h2 {
  max-width: 470px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
}

.product-info-panels p,
.product-policy-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.product-policy-strip {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 0.9fr 0.7fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto clamp(64px, 8vw, 108px);
  padding: clamp(26px, 4vw, 42px) clamp(18px, 5vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-policy-strip a {
  color: var(--ink);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.product-copy h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 84px);
}

.product-copy .lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.detail-status {
  justify-content: start;
  margin: 20px 0 16px;
}

.detail-section {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

.detail-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  line-height: 1.5;
}

.detail-list dd a {
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.detail-list.compact {
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.artist-card {
  min-height: 330px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artist-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.35;
  text-transform: uppercase;
}

.artist-card h3 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.06;
}

.artist-card p {
  color: var(--muted);
  line-height: 1.62;
}

.artist-card > a {
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.artist-profile h1 {
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 96px);
}

.artist-profile .lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.artist-profile figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.artist-profile img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center bottom;
}

.artist-profile-text-only {
  display: block;
  padding-bottom: clamp(28px, 5vw, 64px);
}

.artist-profile-text-only > div {
  max-width: 980px;
}

.artist-profile-text-only .lead {
  max-width: 760px;
}

.artist-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 24px;
}

.artist-highlights span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.artist-biography {
  max-width: 960px;
  padding: clamp(20px, 4vw, 56px) clamp(18px, 5vw, 72px) clamp(72px, 10vw, 132px);
  background: var(--white);
}

.artist-biography p {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}

.artist-biography p:last-child {
  margin-bottom: 0;
}

.artist-archive {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #f6f1ea;
  border-top: 1px solid var(--line);
}

.artist-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.artist-archive-heading h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.96;
}

.artist-archive-heading p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.62;
}

.artist-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.artist-archive-card {
  min-width: 0;
}

.artist-archive-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 44px rgba(37, 25, 17, 0.1);
}

.artist-archive-card.wide img {
  object-position: center;
}

.artist-archive-card div {
  padding: 14px 4px 0;
  text-align: center;
}

.artist-archive-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 650;
}

.artist-archive-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-section {
  padding-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 510px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  justify-content: end;
  max-width: 720px;
}

.cart-is-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100vh;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(17, 17, 17, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 24px;
}

.cart-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header span,
.cart-line span,
.cart-empty span,
.cart-drawer-footer p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.cart-drawer-header h2 {
  margin: 6px 0 0;
  font-size: 26px;
  line-height: 1.05;
}

.cart-icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.cart-drawer-body {
  min-height: 0;
  overflow-y: auto;
  padding: 12px 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  aspect-ratio: 4 / 5;
  width: 72px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.cart-line strong {
  display: block;
  margin: 4px 0 5px;
  font-size: 15px;
  line-height: 1.2;
}

.cart-line p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.cart-line button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-size: 12px;
  font-weight: 720;
}

.cart-line em {
  font-style: normal;
  font-weight: 760;
}

.cart-empty {
  padding: 46px 12px;
  text-align: center;
}

.cart-empty p {
  margin: 8px auto 0;
  color: var(--muted);
}

.cart-drawer-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}

.cart-total strong {
  font-size: 22px;
}

.cart-drawer-footer p {
  margin: 0;
  line-height: 1.5;
  text-transform: none;
}

.cart-drawer-footer .button {
  width: 100%;
}

.cart-message {
  min-height: 18px;
  color: var(--red) !important;
  text-align: center;
}

.checkout-result {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  padding: clamp(44px, 8vw, 96px);
  background: var(--paper);
}

.checkout-result h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.checkout-result p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: start;
    gap: 18px;
    overflow-x: auto;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 14px 0;
  }

  .header-actions {
    display: flex;
  }

  .header-actions .header-link:not(.cart-open) {
    display: none;
  }

  .category-strip,
  .product-grid,
  .journal-section,
  .trust-section,
  .route-hero,
  .collection-hero,
  .collection-world,
  .product-detail,
  .artist-profile {
    grid-template-columns: 1fr 1fr;
  }

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

  .artist-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .available-now {
    grid-template-columns: 1fr;
  }

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

  .edition-grid,
  .route-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

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

  .product-detail-commerce {
    grid-template-columns: minmax(0, 1.24fr) minmax(250px, 0.76fr);
    gap: 24px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 680px) {
  .notice {
    font-size: 12px;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1;
  }

  .hero,
  .hero > img {
    min-height: 690px;
    height: 690px;
  }

  .hero > img {
    width: 100%;
    max-width: 100%;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.26), rgba(17, 17, 17, 0.82));
  }

  .hero-copy {
    top: auto;
    bottom: 34px;
    left: 20px;
    transform: none;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-line {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100vw;
  }

  .category-strip,
  .product-grid,
  .journal-section,
  .trust-section,
  .trust-grid,
  .route-hero,
  .collection-hero,
  .collection-world,
  .collection-world dl,
  .collection-archive-grid,
  .product-detail,
  .artist-profile {
    grid-template-columns: 1fr;
  }

  .artist-archive-heading {
    display: block;
  }

  .artist-archive-heading h2 {
    margin-bottom: 16px;
  }

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

  .collection-hero {
    min-height: 0;
    padding-top: 24px;
  }

  .collection-hero figure {
    order: -1;
    aspect-ratio: 4 / 3;
  }

  .collection-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .collection-world dl div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-world dl div:last-child {
    border-bottom: 0;
  }

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

  .available-list a {
    min-height: 0;
  }

  .category-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .drop-band,
  .site-footer {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2n),
  .trust-grid div:nth-last-child(-n + 1) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drop-band .button {
    margin-top: 24px;
  }

  .archive-showcase {
    padding-top: 52px;
  }

  .archive-heading {
    text-align: left;
  }

  .archive-controls {
    display: none;
  }

  .archive-track {
    grid-auto-columns: minmax(185px, 68vw);
    padding-left: 18px;
    padding-right: 18px;
  }

  .archive-card.wide {
    grid-column: span 1;
  }

  .archive-card img {
    height: 360px;
  }

  .archive-footer {
    justify-content: start;
    overflow-x: auto;
  }

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

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-tab {
    flex: 0 0 auto;
  }

  .route-hero figure {
    order: -1;
  }

  .product-gallery {
    position: static;
  }

  .product-media-showcase,
  .product-purchase-panel {
    position: static;
  }

  .media-shell {
    grid-template-columns: 1fr;
  }

  .media-thumbs {
    order: 2;
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .media-thumb {
    flex: 0 0 68px;
    width: 68px;
    height: 85px;
  }

  .media-viewer,
  .product-media-slide,
  .product-media-slide video {
    min-height: 0;
    height: auto;
  }

  .media-note {
    margin-left: 0;
  }

  .purchase-options {
    grid-template-columns: 1fr;
  }

  .purchase-options.compact,
  .product-info-panels,
  .product-policy-strip {
    grid-template-columns: 1fr;
  }

  .product-story-panel {
    text-align: left;
  }

  .product-info-panels article {
    min-height: 0;
  }

  .product-main-image {
    min-height: 360px;
  }

  .artist-profile figure {
    order: -1;
  }

  .artist-profile img {
    min-height: 300px;
  }

  .detail-list div,
  .product-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-row .button {
    width: 100%;
  }

  .site-footer nav {
    justify-content: start;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-open.is-bumping span,
  .button.is-added,
  .button.is-loading::after {
    animation: none;
  }

  .cart-flyer {
    display: none;
  }
}

/* Refined global typography and navigation polish */
:root {
  --shadow: 0 18px 44px rgba(17, 17, 17, 0.09);
  --line: rgba(17, 17, 17, 0.085);
}

body {
  font-family: Arial, "Helvetica Neue", Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.notice {
  min-height: 32px;
  font-size: 11px;
  font-weight: 700;
}

.site-header {
  min-height: 58px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(104px, 1fr);
}

.brand-logo {
  width: clamp(188px, 18vw, 260px);
  max-height: 50px;
}

.nav-links {
  gap: clamp(16px, 2vw, 32px);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 20px 0 18px;
  border-bottom: 0;
}

.nav-links a::after,
.category-item::after,
.section-heading a::after,
.journal-copy a::after,
.edition-grid a::after,
.route-card a::after,
.product-copy a::after,
.artist-card > a::after,
.product-policy-strip a::after,
.archive-footer a::after,
.card-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 10px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.category-item:hover::after,
.section-heading a:hover::after,
.journal-copy a:hover::after,
.edition-grid a:hover::after,
.route-card a:hover::after,
.product-copy a:hover::after,
.artist-card > a:hover::after,
.product-policy-strip a:hover::after,
.archive-footer a:hover::after,
.card-cta:hover::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: transparent;
}

.header-link,
.button {
  min-height: 38px;
  padding: 0 17px;
  border-width: 1.5px;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-link:hover,
.button.ghost:hover,
.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.button.primary:hover {
  background: #9a713f;
  border-color: #9a713f;
}

.button.is-added,
.button.is-added:hover,
.button.is-loading,
.button.is-loading:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
}

h1 {
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.96;
}

.hero {
  min-height: clamp(560px, 76vh, 720px);
}

.hero > img {
  height: clamp(560px, 76vh, 720px);
}

.hero-copy {
  width: min(650px, calc(100% - 40px));
}

.hero-line {
  max-width: 620px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
}

.section-shell,
.edition-section,
.route-section {
  padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 690px;
  font-size: clamp(25px, 3.6vw, 46px);
  line-height: 1.08;
}

.section-heading a,
.journal-copy a,
.site-footer a,
.edition-grid a,
.route-card a,
.product-copy a,
.product-policy-strip a,
.artist-card > a,
.archive-footer a,
.card-cta {
  position: relative;
  text-decoration: none;
}

.category-item {
  position: relative;
  min-height: 104px;
  padding: 24px 28px 22px;
  transition: background 160ms ease;
}

.category-item::after {
  left: 28px;
  bottom: 18px;
}

.section-heading a::after,
.journal-copy a::after,
.edition-grid a::after,
.route-card a::after,
.product-copy a::after,
.artist-card > a::after,
.product-policy-strip a::after,
.archive-footer a::after,
.card-cta::after {
  bottom: -5px;
  height: 2px;
}

.category-item:hover {
  background: #f7f7f4;
}

.category-item span {
  margin-bottom: 9px;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 800;
}

.category-item strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-grid {
  gap: 14px;
}

.product-card {
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.product-info {
  min-height: 188px;
  padding: 15px 16px 17px;
}

.product-info p {
  font-size: 10px;
  font-weight: 800;
}

.product-info h3 {
  margin: 8px 0 9px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.12;
}

.status,
.tag {
  min-height: 23px;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 700;
}

.tag-cloud {
  gap: 5px;
  margin-bottom: 13px;
}

.price {
  font-size: 15px;
}

.product-meta {
  gap: 5px;
  margin-bottom: 13px;
}

.product-meta div {
  grid-template-columns: 68px 1fr;
  gap: 9px;
}

.product-meta dt {
  font-size: 10px;
  font-weight: 700;
}

.product-meta dd {
  font-size: 12px;
  line-height: 1.42;
}

.available-now {
  padding: clamp(30px, 4vw, 48px) clamp(18px, 5vw, 72px);
}

.available-now h2 {
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.05;
}

.available-list a {
  min-height: 100px;
  padding: 16px;
}

.available-list span {
  font-size: 17px;
}

.available-list strong {
  font-size: 15px;
}

.trust-heading h2,
.drop-band h2,
.journal-copy h2,
.newsletter-section h2,
.collection-archive h2,
.product-story-panel h2,
.artist-profile h1,
.route-hero h1,
.product-copy h1 {
  line-height: 1.06;
}

.trust-heading h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.trust-grid div {
  min-height: 118px;
  padding: 20px;
}

.trust-grid strong {
  font-size: 17px;
}

.trust-grid span {
  font-size: 14px;
}

.edition-grid article,
.route-card {
  min-height: 230px;
  padding: 23px;
  border-radius: 6px;
}

.edition-grid h3,
.route-card h3 {
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.12;
}

.archive-heading h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.08;
}

.archive-heading p:not(.eyebrow) {
  font-size: clamp(15px, 1.6vw, 19px);
}

.archive-arrow {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.archive-card strong {
  font-size: 14px;
}

.archive-card span {
  letter-spacing: 0;
  font-size: 10px;
}

.drop-band h2 {
  font-size: clamp(28px, 4vw, 54px);
}

.drop-band p:not(.eyebrow),
.journal-copy p:not(.eyebrow) {
  font-size: 15px;
}

.newsletter-section h2 {
  font-size: clamp(30px, 4vw, 58px);
}

.route-hero {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.route-hero h1 {
  font-size: clamp(40px, 5.4vw, 74px);
}

.route-hero p:not(.eyebrow) {
  font-size: clamp(16px, 1.6vw, 20px);
}

.collection-hero {
  min-height: calc(100vh - 128px);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.collection-hero h1 {
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.98;
}

.collection-hero p:not(.eyebrow) {
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.66;
}

.collection-world {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.collection-world h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
}

.collection-world p {
  font-size: clamp(16px, 1.6vw, 20px);
}

.collection-world dl div {
  padding: 18px;
}

.collection-world dd {
  font-size: 15px;
}

.collection-note-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin-top: 12px;
}

.collection-note-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.collection-archive {
  padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.collection-archive h2 {
  font-size: clamp(28px, 3.8vw, 54px);
}

.collection-archive-card strong {
  font-size: 17px;
}

.filter-tab {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 12px;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}

.product-detail-commerce {
  max-width: 1040px;
}

.media-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.media-prev {
  left: 12px;
}

.media-next {
  right: 12px;
}

.media-nav:hover {
  border-color: var(--red);
  color: var(--red);
}

.product-purchase-panel h1 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.product-purchase-panel .lead {
  font-size: 14px;
}

.product-story-panel h2 {
  font-size: clamp(30px, 4.6vw, 58px);
}

.product-story-panel p {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.product-info-panels article {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
}

.product-info-panels h2 {
  font-size: clamp(24px, 2.8vw, 38px);
}

.product-info-panels p,
.product-policy-strip p {
  font-size: 14px;
}

.artist-card h3 {
  font-size: clamp(20px, 2vw, 28px);
}

.artist-card p {
  font-size: 14px;
}

.artist-profile h1 {
  font-size: clamp(40px, 5.4vw, 74px);
}

.artist-profile .lead {
  font-size: clamp(16px, 1.6vw, 20px);
}

.artist-feature-body {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.policy-hero figure img {
  object-position: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.policy-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.policy-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-card h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 13px;
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 56px;
  }

  .brand-logo {
    width: 188px;
  }

  .nav-links {
    gap: 20px;
    font-size: 13px;
  }

  .hero,
  .hero > img {
    min-height: 620px;
    height: 620px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-line {
    font-size: 15px;
  }

  .section-heading h2,
  .collection-hero h1,
  .route-hero h1,
  .artist-profile h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

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

  .collection-hero p:not(.eyebrow),
  .route-hero p:not(.eyebrow),
  .collection-world p,
  .journal-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .product-info h3 {
    font-size: 22px;
  }

  .category-item {
    min-height: 88px;
    padding: 20px 22px;
  }

  .category-item::after {
    left: 22px;
  }
}
