:root {
  --canvas: #ffffff;
  --ink: #090909;
  --muted: rgba(9, 9, 9, 0.66);
  --hairline: rgba(9, 9, 9, 0.08);
  --focus: #111111;
  --max: 1160px;
  --portal-duration: 4000ms;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--canvas);
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 6px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 4vw, 54px);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav div { display: flex; gap: clamp(18px, 3vw, 42px); }

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  opacity: 0.55;
  transition: opacity 260ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.threshold {
  min-height: 100vh;
  min-height: 100svh;
}

.portal {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 64px 24px;
  isolation: isolate;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.eye-button {
  --eye-shine-x: 0px;
  --eye-shine-y: 0px;
  --eye-shadow-x: 0px;
  --eye-shadow-y: 0px;
  position: relative;
  z-index: 4;
  display: grid;
  width: clamp(194px, 24vw, 324px);
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.eye-button:active {
  transform: scale(0.96);
  transition: transform 120ms ease;
}

.eye-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 620ms cubic-bezier(.19, 1, .22, 1), filter 520ms ease;
}

.eye-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(
    var(--eye-shadow-x),
    var(--eye-shadow-y)
  ) scale(0.92);
  opacity: 0;
  filter: blur(5px) brightness(0) opacity(0.22);
  pointer-events: none;
  transition: opacity 520ms ease;
}

.eye-button:hover .eye-svg {
  transform: scale(1.06);
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.10));
}

.eye-button:hover .eye-shadow {
  transform: translate(
    var(--eye-shadow-x),
    var(--eye-shadow-y)
  ) scale(0.96);
  opacity: 1;
}

.sparkle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 16px rgba(255,255,255,0.7));
}

.sparkle::before,
.sparkle::after {
  position: absolute;
  background: #ffffff;
  content: "";
}

.sparkle::before {
  top: 50%;
  left: -6px;
  width: 26px;
  height: 2px;
  transform: translateY(-50%);
}

.sparkle::after {
  top: -6px;
  left: 50%;
  width: 2px;
  height: 26px;
  transform: translateX(-50%);
}

.eye-button:hover .sparkle {
  opacity: 0.92;
  transform: translate(var(--eye-shine-x), var(--eye-shine-y)) scale(0.26);
  animation: sparkle-glow 2.6s ease-in-out infinite;
}

.portal.entering .sparkle {
  animation: sparkle-pop 520ms cubic-bezier(.19, 1, .22, 1) forwards;
}

.white-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, #ffffff 0%, #ffffff 46%, rgba(220,220,224,0.45) 62%, rgba(255,255,255,0) 76%);
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.vortex {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.vortex span {
  position: absolute;
  width: min(80vw, 800px);
  aspect-ratio: 1;
  border: 1px solid rgba(160, 160, 168, 0.35);
  border-radius: 50%;
  transform: scale(0) rotate(0deg);
}

.vortex span:nth-child(2) { width: min(72vw, 700px); opacity: 0.88; }
.vortex span:nth-child(3) { width: min(64vw, 600px); opacity: 0.76; }
.vortex span:nth-child(4) { width: min(56vw, 520px); opacity: 0.64; }
.vortex span:nth-child(5) { width: min(48vw, 440px); opacity: 0.52; }
.vortex span:nth-child(6) { width: min(40vw, 360px); opacity: 0.42; }
.vortex span:nth-child(7) { width: min(32vw, 280px); opacity: 0.32; }
.vortex span:nth-child(8) { width: min(24vw, 200px); opacity: 0.22; }

.world {
  position: absolute;
  z-index: 3;
  display: grid;
  width: min(980px, calc(100vw - 48px));
  place-items: center;
  text-align: center;
  opacity: 0;
  transform: translateZ(-3200px) scale(0.002);
  filter: blur(36px);
  pointer-events: none;
}

.logo-svg {
  display: block;
  width: min(720px, 74vw);
  margin: 0 auto;
  object-fit: contain;
}

.world-actions {
  display: flex;
  gap: clamp(28px, 8vw, 108px);
  margin-top: clamp(42px, 7vw, 82px);
  opacity: 0;
  transform: translateY(20px);
}

.world-actions a {
  position: relative;
  display: inline-flex;
  min-width: 104px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 320ms ease, transform 320ms ease, filter 520ms ease;
}

.world-actions a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--hairline);
  content: "";
  transition: border-color 220ms ease, box-shadow 520ms ease;
}

.world-actions a:hover {
  color: var(--ink);
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 32px rgba(9, 9, 9, 0.18));
  text-shadow: 0 0 24px rgba(9, 9, 9, 0.12);
}

.world-actions a:hover::before {
  border-color: var(--ink);
  box-shadow: 0 -3px 28px rgba(9, 9, 9, 0.16);
}

.world-information {
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 54px);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.world-information a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.world-information a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  border-bottom: 1px solid transparent;
  content: "";
  transform: scaleX(0);
  transition: border-color 260ms ease, transform 360ms cubic-bezier(.19, 1, .22, 1);
}

.world-information a:hover {
  color: var(--ink);
}

.world-information a:hover::after {
  border-color: var(--ink);
  transform: scaleX(1);
}

.link-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: auto;
  transform: translate(-50%, -50%) scale(0.15) rotate(-22deg);
  opacity: 0;
  pointer-events: none;
  transition: transform 560ms cubic-bezier(.19, 1, .22, 1), opacity 400ms ease;
}

@media (hover: hover) {
  .world-actions a:first-child:hover .link-eye {
    transform: translate(-68px, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }

  .world-actions a:last-child:hover .link-eye {
    transform: translate(68px, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.portal.entering .eye-button {
  animation: eye-zoom var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards;
}

.portal.entering .white-field {
  animation: white-expand var(--portal-duration) cubic-bezier(.22, 1, .36, 1) forwards;
}

.portal.entering .vortex {
  animation: vortex-fade var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards;
}

.portal.entering .vortex span:nth-child(1)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 0ms; }
.portal.entering .vortex span:nth-child(2)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 104ms; }
.portal.entering .vortex span:nth-child(3)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 208ms; }
.portal.entering .vortex span:nth-child(4)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 312ms; }
.portal.entering .vortex span:nth-child(5)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 416ms; }
.portal.entering .vortex span:nth-child(6)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 520ms; }
.portal.entering .vortex span:nth-child(7)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 624ms; }
.portal.entering .vortex span:nth-child(8)  { animation: ring-expand var(--portal-duration) cubic-bezier(.19, 1, .22, 1) forwards; animation-delay: 728ms; }

.portal.entering .world {
  animation: world-arrive var(--portal-duration) cubic-bezier(.22, 1, .36, 1) forwards;
}

.portal.entering .world-actions {
  animation: actions-fade 650ms cubic-bezier(.19, 1, .22, 1) forwards;
  animation-delay: calc(var(--portal-duration) - 1200ms);
}

.portal.entering .world-information {
  animation: utility-fade 500ms cubic-bezier(.19, 1, .22, 1) forwards;
  animation-delay: calc(var(--portal-duration) - 500ms);
}

/* ===== ENTERED ===== */
.portal.entered .eye-button,
.portal.entered .white-field,
.portal.entered .vortex {
  opacity: 0;
  pointer-events: none;
}

.portal.entered .world {
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.portal.entered .world-actions {
  opacity: 1;
  transform: translateY(0);
}

.portal.entered .world-information {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== KEYFRAMES ===== */
@keyframes eye-zoom {
  0%   { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(44); filter: blur(4px); }
}

@keyframes white-expand {
  0%   { opacity: 0; transform: scale(0); }
  28%  { opacity: 1; }
  100% { opacity: 0; transform: scale(4); }
}

@keyframes vortex-fade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  58%  { opacity: 0.28; }
  64%, 100% { opacity: 0; }
}

@keyframes ring-expand {
  0%   { transform: scale(0) rotate(0deg); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: scale(5.5) rotate(48deg); opacity: 0; }
}

@keyframes world-arrive {
  0%   { opacity: 0; transform: translateZ(-3200px) scale(0.002); filter: blur(36px); }
  72%, 100% { opacity: 1; transform: translateZ(0) scale(1); filter: blur(0); }
}

@keyframes actions-fade {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes utility-fade {
  0%   { opacity: 0; transform: translateY(14px); pointer-events: none; }
  1%   { pointer-events: auto; }
  100% { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

@keyframes sparkle-hover {
  0%, 100% { transform: scale(0.45) rotate(-10deg); opacity: 0.45; }
  50% { transform: scale(1.05) rotate(6deg); opacity: 0.95; }
}

@keyframes sparkle-glow {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 0.95; }
}

@keyframes sparkle-pop {
  0%   { transform: scale(0) rotate(-12deg); opacity: 0; }
  15%  { transform: scale(1.6) rotate(0deg); opacity: 1; }
  45%  { transform: scale(0.7) rotate(6deg); opacity: 0.85; }
  100% { transform: scale(0) rotate(18deg); opacity: 0; }
}

.listing-page {
  min-height: 100vh;
  padding: 148px clamp(22px, 4vw, 54px) 72px;
}

.listing-header {
  width: min(var(--max), 100%);
  margin: 0 auto 54px;
}

.listing-header h1 {
  margin: 12px 0 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(58px, 11vw, 158px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.listing-header p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.about-header { margin-bottom: 85px; }

.contact-header { margin-bottom: 129px; }

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.empty-catalog {
  display: grid;
  width: min(var(--max), 100%);
  min-height: 44vh;
  margin: 0 auto;
  place-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  text-align: center;
}



.empty-catalog p {
  margin: 24px 0 0;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== INFORMATION CATALOGS ===== */
.information-catalog {
  display: grid;
  width: min(var(--max), 100%);
  min-height: 44vh;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
}

.about-catalog {
  align-items: start;
  padding: clamp(42px, 6vw, 72px) 0;
}

.about-copy {
  width: min(720px, 100%);
}

.about-copy p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: clamp(24px, 3vw, 40px);
}

.about-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-catalog {
  place-items: center;
  text-align: center;
}

.contact-link {
  position: relative;
  display: inline-block;
  min-height: 44px;
  max-width: calc(100% - 36px);
  padding: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 4.1vw, 58px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--ink);
  content: "";
  transform-origin: left center;
  transition: opacity 260ms ease, transform 460ms cubic-bezier(.19, 1, .22, 1);
}

.contact-link:hover::after {
  opacity: 0.35;
  transform: scaleX(0.78);
}

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  :root { --portal-duration: 3200ms; }

  @keyframes eye-zoom {
    0%   { opacity: 1; transform: scale(1); filter: blur(0); }
    100% { opacity: 0; transform: scale(22); filter: blur(4px); }
  }

  @keyframes white-expand {
    0%   { opacity: 0; transform: scale(0); }
    28%  { opacity: 1; }
    100% { opacity: 0; transform: scale(2.8); }
  }

  @keyframes world-arrive {
    0%   { opacity: 0; transform: translateZ(-1200px) scale(0.04); filter: blur(20px); }
    72%, 100% { opacity: 1; transform: translateZ(0) scale(1); filter: blur(0); }
  }

  @keyframes vortex-fade {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    58%  { opacity: 0.28; }
    64%, 100% { opacity: 0; }
  }

  @keyframes ring-expand {
    0%   { transform: scale(0) rotate(0deg); opacity: 0; }
    12%  { opacity: 1; }
    100% { transform: scale(3.5) rotate(48deg); opacity: 0; }
  }

  .sparkle {
    top: 45%;
    left: 49%;
    opacity: 0;
    transform: scale(0.24);
    animation: none;
  }

  .eye-button:active .sparkle {
    opacity: 0.92;
    transform: scale(0.24);
  }

  .portal.entering .sparkle {
    animation: sparkle-pop 620ms cubic-bezier(.19, 1, .22, 1) forwards;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 2px 0;
    padding: 12px 18px 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .site-nav > a {
    width: 100%;
    min-height: 30px;
  }

  .site-nav div {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .site-nav div a {
    min-width: 0;
    min-height: 44px;
    justify-content: center;
  }

  .site-nav div a:first-child { justify-content: flex-start; }
  .site-nav div a:last-child { justify-content: flex-end; }

  .eye-button { width: clamp(172px, 54vw, 232px); }

  .logo-svg { width: min(420px, 78vw); }

  .world-actions {
    width: min(330px, calc(100vw - 52px));
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .world-actions a { font-size: clamp(24px, 8vw, 34px); }

  .world-information {
    right: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    left: 22px;
  }

  .listing-page { padding-top: 116px; }

  .site-nav {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .listing-header h1 {
    font-size: clamp(52px, 16vw, 88px);
  }

  .about-header,
  .contact-header {
    margin-bottom: 54px;
  }

  .about-catalog {
    padding: 36px 0;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===== ART CATALOG ===== */
.art-listing-page {
  padding-top: 126px;
  padding-bottom: clamp(64px, 8vw, 112px);
}

.art-listing-header {
  width: min(var(--max), 100%);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.art-listing-header h1 {
  font-size: clamp(58px, 7vw, 96px);
}

.art-catalog {
  display: grid;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0;
}

.art-card {
  min-width: 0;
  aspect-ratio: 1;
  border: 0;
  background: var(--canvas);
}

.art-card-link {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.art-card-link:focus-visible {
  outline-offset: -6px;
}

.art-card-image {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
}

.art-card-image,
.art-card-empty-visual {
  background: var(--canvas);
}

.art-card-image img {
  position: absolute;
  inset: clamp(8px, 1.8vw, 24px);
  display: block;
  width: calc(100% - clamp(16px, 3.6vw, 48px));
  height: calc(100% - clamp(16px, 3.6vw, 48px));
  object-fit: contain;
  transform: scale(1);
  transition: transform 900ms cubic-bezier(.19, 1, .22, 1);
}

.art-card-caption {
  padding: clamp(10px, 1.6vw, 20px);
}

.art-card-caption,
.art-card-empty-caption {
  height: clamp(56px, 7vw, 86px);
  border: 0;
}

.art-card-caption h2,
.art-card-caption p {
  margin: 0;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.3;
}

.art-card-caption h2 {
  letter-spacing: 0.07em;
}

.art-card-caption p {
  margin-top: 4px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.art-card-empty {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.art-card-empty-caption {
  background: #ffffff;
}

@media (hover: hover) {
  .art-card-link:hover .art-card-image img {
    transform: scale(1.012);
  }
}

/* ===== ARTWORK DETAIL ===== */
.product-page {
  min-height: 100vh;
  min-height: 100svh;
}

.product-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-layout {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.72fr) minmax(340px, 0.78fr);
}

.product-visual {
  display: grid;
  min-width: 0;
  min-height: 100vh;
  padding: 112px clamp(28px, 4.5vw, 76px) clamp(50px, 6vw, 84px);
  place-items: center;
  background: #f7f7f5;
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 178px);
  object-fit: contain;
}

.product-information {
  align-self: start;
  min-width: 0;
  padding: 122px clamp(28px, 3.5vw, 58px) 72px;
}

.product-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(36px, 5vw, 72px);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.product-back span {
  font-size: 15px;
  line-height: 1;
  transition: transform 320ms cubic-bezier(.19, 1, .22, 1);
}

.product-back:hover {
  color: var(--ink);
}

.product-back:hover span {
  transform: translateX(-4px);
}

.product-heading h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.product-price {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.availability-button {
  width: 100%;
  min-height: 54px;
  margin: clamp(38px, 4.5vw, 64px) 0 0;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 1;
  cursor: not-allowed;
}

.product-facts {
  margin-top: clamp(44px, 5vw, 70px);
  border-top: 1px solid var(--hairline);
}

.product-fact {
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--hairline);
}

.product-fact h2,
.product-fact p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 16px);
  letter-spacing: 0.005em;
  line-height: 1.55;
}

.product-fact h2 {
  font-weight: 600;
}

.product-fact p {
  margin-top: 3px;
  color: rgba(9, 9, 9, 0.72);
  font-weight: 300;
}

.shipping-schedule p {
  margin: 12px 0 0;
  color: rgba(9, 9, 9, 0.72);
  font-weight: 300;
  line-height: 1.6;
}

.shipping-schedule p:first-child {
  margin-top: 3px;
}

.shipping-schedule strong {
  font-weight: 600;
  color: var(--ink);
}

.product-fact p + p {
  margin-top: 12px;
}

@media (max-width: 940px) {
  .product-layout {
    display: block;
  }

  .product-visual {
    min-height: auto;
    padding: 110px clamp(18px, 5vw, 44px) clamp(32px, 7vw, 64px);
  }

  .product-visual img {
    max-height: none;
  }

  .product-information {
    padding: 32px clamp(22px, 6vw, 54px) 72px;
  }

  .product-back {
    margin-bottom: 34px;
  }

  .product-heading h1 {
    font-size: clamp(34px, 7vw, 54px);
  }
}

@media (max-width: 760px) {
  .art-listing-page {
    padding-top: 108px;
  }

  .art-listing-header {
    margin-bottom: 30px;
  }

  .art-card-caption {
    padding: 10px;
  }

  .product-visual {
    padding-top: 112px;
    padding-bottom: 20px;
  }

  .product-information {
    padding-top: 18px;
    padding-bottom: 96px;
  }

  .product-back {
    margin-bottom: 20px;
  }

  .product-heading h1 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .product-price {
    margin-top: 10px;
    font-size: 15px;
  }

  .availability-button {
    margin-top: 34px;
  }

  .product-facts {
    margin-top: 42px;
  }

  .product-fact {
    padding: 25px 0;
  }

  .product-fact h2,
  .product-fact p {
    font-size: 14px;
  }
}

.returns-email-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== OBJECTS CATALOG + FIGURINE DETAILS ===== */
.object-card-image img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.object-product-layout .product-visual {
  background: var(--canvas);
}

.object-product-layout .product-information {
  position: sticky;
  top: 0;
}

.product-gallery-shell {
  position: relative;
  min-width: 0;
}

.gallery-position {
  display: none;
  margin: 0;
}

.product-gallery {
  display: grid;
  align-content: start;
  gap: 1px;
  padding-right: 0;
  padding-left: 0;
  background: var(--canvas);
}

.product-gallery figure {
  display: grid;
  width: 100%;
  margin: 0;
  place-items: center;
  overflow: hidden;
}

.product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.cart-link {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin: clamp(38px, 4.5vw, 64px) 0 0;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background-color 260ms ease, color 260ms ease;
}

.cart-link:hover {
  background: var(--ink);
  color: var(--canvas);
}

@media (max-width: 940px) {
  .object-product-layout .product-information {
    position: static;
  }

  .product-gallery {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .product-gallery {
    display: flex;
    padding-top: 104px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  .product-gallery figure {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .gallery-position {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: block;
    min-width: 44px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.82);
    color: rgba(9, 9, 9, 0.72);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .cart-link {
    margin-top: 34px;
  }
}
