:root {
  --font-inter: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --background: 30 15% 96%;
  --foreground: 25 20% 12%;
  --muted-foreground: 25 10% 48%;
  --border: 30 10% 84%;
  --light-x: .5;
  --light-y: .28;
  --shadow-x: 0px;
  --shadow-y: 24px;
  --art-c1: rgb(217 155 47);
  --art-c2: rgb(31 141 138);
  --art-c3: rgb(110 106 168);
  --cursor-art-close: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='36'%20height='36'%20viewBox='0%200%2036%2036'%3E%3Ccircle%20cx='18'%20cy='18'%20r='14'%20fill='%23f5f2ed'%20fill-opacity='.88'%20stroke='%23211916'%20stroke-width='1.8'/%3E%3Cpath%20d='M13%2013l10%2010M23%2013L13%2023'%20stroke='%23211916'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E") 18 18, zoom-out;
  --cursor-art-zoom: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='36'%20height='36'%20viewBox='0%200%2036%2036'%3E%3Ccircle%20cx='18'%20cy='18'%20r='14'%20fill='%23f5f2ed'%20fill-opacity='.88'%20stroke='%23211916'%20stroke-width='1.8'/%3E%3Cpath%20d='M18%2012v12M12%2018h12'%20stroke='%23211916'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E") 18 18, zoom-in;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: auto;
  background: #f5f2ed;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: #f5f2ed;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
  transition: background .45s ease, color .45s ease;
  user-select: none;
  overflow-x: hidden;
}

.local-preview-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: #171512;
  color: #fffaf1;
  font: 700 11px/1.4 var(--font-mono);
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.local-preview-warning:not([hidden]) ~ .nav {
  top: 34px;
}

button,
a,
img,
.passport-mount,
.art-button,
.art-card {
  -webkit-user-select: none;
  user-select: none;
}

button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
.art-button:focus,
.art-button:focus-visible {
  outline: none;
}

body.dark-site {
  --foreground: 35 18% 91%;
  --muted-foreground: 35 8% 66%;
  --border: 35 7% 28%;
  background: #1d1f20;
  color: rgb(235 232 226);
}

body.camera-travel,
body.unit-mode {
  overflow: hidden;
}

html.unit-mode-lock,
html.unit-mode-lock body {
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.zoom-mode .art-card.is-selected {
  z-index: 60;
}

body.zoom-mode .art-card.is-selected .passport-mount {
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .12s linear;
}

body.unit-mode {
  cursor: var(--cursor-art-close);
}

body.unit-mode.can-zoom {
  cursor: var(--cursor-art-zoom);
}

body.zoom-mode,
body.zoom-mode.can-zoom {
  cursor: grabbing;
}

@media (hover: hover) and (pointer: fine) {
  body.unit-mode.can-zoom,
  body.unit-mode.can-zoom .art-card.is-selected,
  body.unit-mode.can-zoom .art-card.is-selected *,
  body.unit-mode.can-zoom .art-dialog.canvas-unit,
  body.unit-mode.can-zoom .art-dialog.canvas-unit *,
  body.unit-mode.can-close,
  body.unit-mode.can-close .art-dialog.canvas-unit,
  body.unit-mode.can-close .art-dialog.canvas-unit * {
    cursor: none !important;
  }
}

body.unit-mode.can-zoom .art-card.is-selected,
body.unit-mode.can-zoom .art-card.is-selected *,
body.unit-mode.can-zoom .art-dialog.canvas-unit,
body.unit-mode.can-zoom .art-dialog.canvas-unit * {
  cursor: var(--cursor-art-zoom);
}

body.zoom-mode .art-card.is-selected,
body.zoom-mode .art-card.is-selected *,
body.zoom-mode .art-dialog.canvas-unit,
body.zoom-mode .art-dialog.canvas-unit * {
  cursor: grabbing;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, color-mix(in srgb, var(--art-c1) 34%, transparent), transparent 34vw),
    radial-gradient(circle at 78% 46%, color-mix(in srgb, var(--art-c2) 28%, transparent), transparent 38vw),
    radial-gradient(circle at 18% 84%, color-mix(in srgb, var(--art-c3) 22%, transparent), transparent 32vw);
  background-size: 120% 120%, 130% 130%, 110% 110%;
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

body.dark-site:before {
  opacity: .42;
}

body.camera-travel:before,
body.unit-mode:before {
  z-index: 0;
  opacity: 1;
}

body.dark-site.camera-travel:before,
body.dark-site.unit-mode:before {
  opacity: .42;
}

main {
  position: relative;
  z-index: 1;
}

button,
dialog {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.corner-frame {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
}

.corner:before,
.corner:after {
  content: "";
  position: absolute;
  background: hsl(var(--foreground) / .15);
}

.corner:before {
  width: 20px;
  height: .5px;
}

.corner:after {
  width: .5px;
  height: 20px;
}

.top-left {
  top: 20px;
  left: 20px;
}

.top-right {
  top: 20px;
  right: 20px;
}

.top-right:before,
.top-right:after,
.bottom-right:before,
.bottom-right:after {
  right: 0;
}

.bottom-left {
  bottom: 20px;
  left: 20px;
}

.bottom-left:after,
.bottom-right:after {
  bottom: 0;
}

.bottom-left:before,
.bottom-right:before {
  bottom: 0;
}

.bottom-right {
  right: 20px;
  bottom: 20px;
}

.scroll-track {
  position: fixed;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 40;
  display: block;
  width: .5px;
  background: hsl(var(--foreground) / .10);
}

.scroll-track span {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: hsl(var(--foreground) / .40);
  transform: translateX(-50%);
  transition: top .15s ease;
}

.scroll-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 45;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid hsl(var(--foreground) / .16);
  border-radius: 999px;
  background: rgb(245 242 237 / .78);
  box-shadow: 0 16px 42px hsl(var(--foreground) / .12);
  backdrop-filter: blur(16px);
  color: hsl(var(--foreground) / .72);
  font-family: var(--font-inter);
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity .22s ease, transform .28s cubic-bezier(.16, 1, .3, 1), color .2s ease, background .2s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.scroll-top-button:hover {
  background: rgb(245 242 237 / .94);
  color: hsl(var(--foreground));
}

.viewer-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1.8px solid hsl(var(--foreground));
  border-radius: 999px;
  background: rgb(245 242 237 / .88);
  box-shadow: 0 8px 24px hsl(var(--foreground) / .14);
  color: hsl(var(--foreground));
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(.82);
  transition: opacity .12s ease, transform .12s ease, background .12s ease, color .12s ease;
}

.viewer-cursor::before,
.viewer-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
}

.viewer-cursor.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.viewer-cursor.is-zoom::after {
  width: 2px;
  height: 14px;
}

.viewer-cursor.is-close::before {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.viewer-cursor.is-close::after {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

body.dark-site .viewer-cursor {
  border-color: rgb(235 232 226 / .88);
  background: rgb(29 31 32 / .88);
  color: rgb(235 232 226);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity .42s ease,
    transform .56s cubic-bezier(.16, 1, .3, 1),
    background .5s ease,
    border-color .5s ease,
    backdrop-filter .5s ease;
  will-change: opacity, transform;
}

body.camera-travel .nav,
body.camera-arriving .nav,
body.unit-mode .nav {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
}

.nav.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  border-bottom: 1px solid hsl(var(--border) / .50);
  background: rgb(245 242 237 / .90);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .2s ease;
}

.nav-brand:hover {
  opacity: .6;
}

.nav-brand img {
  width: auto;
  height: 28px;
  object-fit: contain;
}

.nav-brand span {
  display: none;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 40px;
  white-space: nowrap;
}

.nav-links a,
.nav-links button {
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .35em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-links button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-collections {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-collections > button::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .72;
}

.collections-menu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  display: grid;
  min-width: 280px;
  padding: 8px;
  border: 1px solid hsl(var(--border) / .62);
  background: rgb(245 242 237 / .96);
  box-shadow: 0 22px 70px rgb(38 31 24 / .14);
  backdrop-filter: blur(16px);
}

.collections-menu[hidden] {
  display: none;
}

.collections-menu a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  padding: 0 10px;
  letter-spacing: .18em;
}

.collections-menu a:hover {
  background: hsl(var(--foreground) / .055);
}

.collections-menu span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.collections-menu small {
  color: hsl(var(--muted-foreground));
  font-size: 9px;
  letter-spacing: .08em;
}

body.dark-site .nav.is-scrolled {
  border-bottom-color: rgb(255 255 255 / .10);
  background: rgb(29 31 32 / .90);
}

body.dark-site .nav-links a,
body.dark-site .nav-links button,
body.dark-site .nav-brand span {
  color: rgb(235 232 226 / .52);
}

body.dark-site .collections-menu {
  border-color: rgb(255 255 255 / .12);
  background: rgb(29 31 32 / .96);
  box-shadow: 0 22px 70px rgb(0 0 0 / .26);
}

body.dark-site .nav-links a:hover,
body.dark-site .nav-links button:hover {
  color: rgb(235 232 226);
}

body.dark-site .scroll-top-button {
  border-color: rgb(255 255 255 / .12);
  background: rgb(29 31 32 / .78);
  color: rgb(235 232 226 / .68);
}

body.dark-site .scroll-top-button:hover {
  background: rgb(29 31 32 / .94);
  color: rgb(235 232 226);
}

.nav-links a:hover,
.nav-links button:hover {
  color: hsl(var(--foreground));
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.entry-slideshow {
  position: absolute;
  inset: 0;
}

.entry-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1.65s cubic-bezier(.16, 1, .3, 1),
    transform 7.2s ease;
  will-change: opacity, transform;
}

.entry-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.entry-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / .18) 0%, rgb(0 0 0 / .04) 42%, rgb(0 0 0 / .50) 100%),
    radial-gradient(ellipse 76% 46% at 50% 100%, rgb(0 0 0 / .52), transparent 64%);
  pointer-events: none;
}

.entry-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 100vh;
  min-height: 100svh;
  padding: 96px 24px 54px;
}

.entry-content img {
  width: min(17vw, 240px);
  min-width: 150px;
  height: auto;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 10px 26px rgb(0 0 0 / .40));
}

.entry-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.entry-actions a,
.entry-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / .82);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgb(0 0 0 / .45);
  transition: color .22s ease, opacity .22s ease;
}

.entry-actions a:hover,
.entry-actions button:hover {
  color: #fff;
}

.collection-jump {
  position: relative;
  z-index: 2;
  padding: 18px clamp(16px, 4vw, 56px) 22px;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border) / .72);
}

.collection-jump-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  max-width: 1440px;
  margin: 0 auto;
}

.collection-jump-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 7px;
  color: inherit;
  text-decoration: none;
  border: 1px solid hsl(var(--border) / .76);
  background: hsl(var(--card) / .72);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.collection-jump-card:hover {
  border-color: hsl(var(--foreground) / .42);
  background: hsl(var(--card));
  transform: translateY(-1px);
}

.collection-jump-card img,
.collection-jump-empty {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: hsl(var(--border) / .55);
}

.collection-jump-card b,
.collection-jump-card small {
  display: block;
}

.collection-jump-card b {
  color: hsl(var(--foreground));
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collection-jump-card small {
  margin-top: 5px;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .entry-slide {
    transition: opacity .35s ease;
    transform: none;
  }
}

.archive {
  position: relative;
  padding: 128px 24px;
  background: #f5f2ed;
  isolation: isolate;
  transition: background .45s ease;
}

body.dark-site .archive {
  background: #1d1f20;
}

.artist-statement {
  position: relative;
  padding: 128px 24px 112px;
  overflow: hidden;
  background: #f7f5f0;
  isolation: isolate;
  transition: background .45s ease;
  scroll-margin-top: 82px;
}

body.dark-site .artist-statement {
  background: #202223;
}

.artist-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--art-c2) 16%, transparent), transparent 30vw),
    radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--art-c1) 16%, transparent), transparent 34vw);
  opacity: .78;
}

.statement-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  align-items: start;
  gap: clamp(44px, 7vw, 112px);
  max-width: 1320px;
  margin: 0 auto;
}

.statement-main,
.statement-copy,
.statement-heading {
  min-width: 0;
}

.statement-main {
  display: grid;
  gap: clamp(28px, 3.2vw, 46px);
}

.statement-heading h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
  font-size: clamp(2.25rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
}

.statement-copy {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  max-width: 78ch;
}

.statement-copy p {
  margin: 0;
  color: hsl(var(--foreground) / .72);
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.03vw, 1.13rem);
  line-height: 1.82;
  letter-spacing: 0;
}

.statement-portrait {
  margin: 4px 0 0;
}

.statement-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid hsl(var(--border));
  object-fit: cover;
  box-shadow:
    0 1px 0 hsl(var(--foreground) / .08),
    0 26px 72px hsl(var(--foreground) / .14);
}

.statement-contact-block {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: clamp(.92rem, 1vw, 1.05rem);
  letter-spacing: 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.statement-contact-block p {
  margin: 0;
}

.statement-contact-block span {
  color: hsl(var(--foreground));
}

.statement-contact-block a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
}

.statement-contact-block a:hover {
  color: hsl(var(--foreground));
}

.archive:before,
.origin:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 16%, color-mix(in srgb, var(--art-c1) 24%, transparent), transparent 36vw),
    radial-gradient(circle at 84% 76%, color-mix(in srgb, var(--art-c2) 20%, transparent), transparent 34vw),
    radial-gradient(circle at 14% 92%, color-mix(in srgb, var(--art-c3) 18%, transparent), transparent 28vw);
  background-size: 128% 128%, 120% 120%, 112% 112%;
  animation: ambient-drift 22s ease-in-out infinite alternate;
}

body.dark-site .archive:before,
body.dark-site .origin:before {
  opacity: .38;
}

.section-intro {
  position: relative;
  z-index: 1;
}

.section-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-kicker span {
  width: 40px;
  height: 1px;
  background: hsl(var(--foreground) / .25);
}

.section-kicker p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .6em;
  text-transform: uppercase;
}

.archive-count {
  position: relative;
  z-index: 1;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .42em;
  line-height: 1.7;
  text-transform: uppercase;
}

.archive-grid {
  display: grid;
  gap: 82px;
  max-width: 1440px;
  margin: 28px auto 0;
}

.collection-section {
  display: grid;
  gap: 36px;
  scroll-margin-top: 92px;
}

.collection-header {
  display: block;
  padding-top: 18px;
  border-top: 1px solid hsl(var(--border) / .78);
}

.collection-copy {
  display: grid;
  gap: 12px;
  max-width: 1120px;
}

.collection-copy > p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  line-height: 1.7;
  text-transform: uppercase;
}

.collection-description {
  max-width: 1040px;
  margin: 4px 0 0;
}

.collection-description-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: end;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid hsl(var(--foreground) / .12);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.collection-description-preview {
  display: grid;
  max-width: 920px;
  max-height: 8.8em;
  overflow: hidden;
  margin: 0;
  padding: 0 0 12px;
  color: hsl(var(--foreground) / .68);
  font-family: var(--font-mono);
  font-size: clamp(.98rem, 1.18vw, 1.2rem);
  letter-spacing: 0;
  line-height: 1.72;
  text-transform: none;
  transition:
    max-height .36s cubic-bezier(.16, 1, .3, 1),
    padding .36s cubic-bezier(.16, 1, .3, 1),
    color .26s ease,
    transform .36s cubic-bezier(.16, 1, .3, 1),
    opacity .24s ease;
}

.collection-description-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 14px;
  color: hsl(var(--foreground) / .66);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .26s ease;
}

.collection-description-action::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid hsl(var(--foreground) / .18);
  border-radius: 999px;
  background:
    linear-gradient(hsl(var(--foreground) / .72), hsl(var(--foreground) / .72)) center / 8px 1px no-repeat,
    linear-gradient(hsl(var(--foreground) / .72), hsl(var(--foreground) / .72)) center / 1px 8px no-repeat;
  transition: transform .36s cubic-bezier(.16, 1, .3, 1), border-color .26s ease;
}

.collection-description-toggle:hover .collection-description-preview {
  color: hsl(var(--foreground) / .82);
}

.collection-description-toggle:hover .collection-description-action {
  color: hsl(var(--foreground));
}

.collection-description.is-open .collection-description-preview {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-4px);
}

.collection-description.is-open .collection-description-action::after {
  transform: rotate(135deg);
  border-color: hsl(var(--foreground) / .32);
}

.collection-description-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .42s cubic-bezier(.16, 1, .3, 1),
    opacity .28s ease;
}

.collection-description.is-open .collection-description-body {
  opacity: 1;
}

.collection-description-inner {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  max-width: 980px;
  padding: clamp(18px, 2.2vw, 30px) 0 clamp(6px, 1vw, 12px);
  border-bottom: 1px solid hsl(var(--foreground) / .08);
}

.collection-description-body p {
  margin: 0;
  color: hsl(var(--foreground) / .70);
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.16vw, 1.2rem);
  letter-spacing: 0;
  line-height: 1.8;
  text-transform: none;
}

.collection-copy h3 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
  font-size: clamp(2.25rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
}

.collection-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 40px;
  align-items: start;
}

[data-collection-id="gravity-desire"] .collection-work-grid {
  gap: 68px 44px;
}

.collection-empty {
  margin: 0;
  padding: 24px 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  line-height: 1.7;
  text-transform: uppercase;
}

.art-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  --glass-alpha: 0;
  --glass-alpha-soft: 0;
  --glass-alpha-line: 0;
  --glass-x: 50%;
  --glass-y: 50%;
  cursor: pointer;
  transition: opacity .42s ease, transform .7s ease;
}

.art-card.is-loading {
  opacity: .01;
  transform: translateY(18px);
}

.art-card.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.lazy-art-image {
  opacity: 0;
  transition: opacity .72s ease;
}

.art-card.is-loaded .lazy-art-image {
  opacity: 1;
}

body.camera-arriving .art-card:not(.is-selected),
body.unit-mode .art-card:not(.is-selected) {
  opacity: 0;
  pointer-events: none;
}

body.camera-arriving .art-card.is-selected,
body.unit-mode .art-card.is-selected {
  opacity: 1;
}

.art-button {
  display: block;
  width: min(100%, var(--work-display-width, 100%));
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.art-image-wrap {
  position: relative;
  width: 100%;
  container-type: inline-size;
  transition: transform .7s ease;
}

.art-button:hover .art-image-wrap {
  transform: translateY(-4px);
}

.art-glow {
  position: absolute;
  inset: -30px;
  z-index: 0;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease, filter .65s ease, transform .65s ease;
  filter: blur(18px) saturate(1.2);
  transform: translate3d(calc(var(--shadow-x) * .25), calc(var(--shadow-y) * .18), 0);
}

.art-button:hover .art-glow {
  opacity: 1;
  filter: blur(24px) saturate(1.45);
}

.art-glow {
  background:
    radial-gradient(circle at 28% 22%, color-mix(in srgb, var(--art-c1) 72%, transparent), transparent 58%),
    radial-gradient(circle at 76% 72%, color-mix(in srgb, var(--art-c2) 58%, transparent), transparent 60%),
    linear-gradient(to bottom right, color-mix(in srgb, var(--art-c3) 38%, transparent), transparent);
}

.passport-mount {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: var(--mat-pad, clamp(28px, 4.6vw, 58px));
  border: 1px solid rgb(255 255 255 / .9);
  outline: 1px solid rgb(35 28 22 / .10);
  outline-offset: -8px;
  background:
    linear-gradient(135deg, var(--mat-hi, rgb(255 255 255 / .98)), var(--mat-lo, rgb(242 239 232 / .92))),
    linear-gradient(to bottom right, rgb(255 255 255 / .9), rgb(221 216 204 / .55)),
    var(--mat-base, #fff);
  box-shadow:
    calc(var(--shadow-x) * .18) calc(var(--shadow-y) * .15) 2px rgb(255 255 255 / .55) inset,
    calc(var(--shadow-x) * -.12) calc(var(--shadow-y) * -.10) 3px rgb(40 31 24 / .10) inset,
    calc(var(--shadow-x) * .42) calc(var(--shadow-y) * .42) 9px rgb(42 34 26 / .16),
    calc(var(--shadow-x) * .85) calc(var(--shadow-y) * .95) 28px rgb(42 34 26 / .20),
    calc(var(--shadow-x) * 1.4) calc(var(--shadow-y) * 1.55) 72px rgb(42 34 26 / .16),
    inset 0 0 0 1px rgb(0 0 0 / .045);
  transition: transform .2s ease;
}

.passport-mount:before {
  content: "";
  position: absolute;
  inset: var(--groove-inset, clamp(15px, 2.2vw, 28px));
  border: 1px solid rgb(25 20 16 / .10);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / .54),
    0 0 0 1px rgb(255 255 255 / .34);
  pointer-events: none;
}

.passport-mount.no-groove:before {
  display: none;
}

.passport-mount.saved-frame {
  --saved-bevel: 4px;
  --rendered-frame-size: calc(var(--frame-size, 16px) * .62);
  --frame-cast-shadow:
    inset 0 6px 10px -11px rgb(28 23 18 / .22),
    inset 6px 0 10px -12px rgb(28 23 18 / .12),
    inset 0 -1px 1px rgb(255 255 255 / .14);
  --frame-inner-shadow:
    inset 0 6px 10px -11px rgb(28 23 18 / .24),
    inset 6px 0 10px -12px rgb(28 23 18 / .14),
    inset 0 -1px 1px rgb(255 255 255 / .18);
  padding:
    max(16px, calc(var(--mat-pad-y, 72px) * .62))
    max(16px, calc(var(--mat-pad-x, 72px) * .62));
  border: var(--rendered-frame-size) solid var(--frame-color, #51483c);
  outline: 0;
  background: var(--mat-color, #f8f2e7);
  box-shadow:
    var(--frame-inner-shadow),
    calc(var(--shadow-x) * .42) calc(var(--shadow-y) * .42) 9px rgb(42 34 26 / .16),
    calc(var(--shadow-x) * .85) calc(var(--shadow-y) * .95) 28px rgb(42 34 26 / .20),
    calc(var(--shadow-x) * 1.4) calc(var(--shadow-y) * 1.55) 72px rgb(42 34 26 / .16);
}

.passport-mount.saved-frame.no-frame {
  --rendered-frame-size: 0px;
  --frame-cast-shadow: 0 0 0 transparent;
  --frame-inner-shadow: 0 0 0 transparent;
  border-width: 0;
  border-color: transparent;
}

.passport-mount.saved-frame.profile-flat {
  --frame-cast-shadow:
    inset 0 0 0 .5px rgb(28 23 18 / .035);
  --frame-inner-shadow:
    inset 0 0 0 .5px rgb(255 255 255 / .36),
    inset 0 0 0 1px rgb(28 23 18 / .055);
}

.passport-mount.saved-frame.profile-soft-bevel {
  --soft-frame: var(--rendered-frame-size);
  --soft-hi: color-mix(in srgb, var(--frame-color, #51483c) 42%, white);
  --soft-mid-hi: color-mix(in srgb, var(--frame-color, #51483c) 68%, white);
  --soft-mid: var(--frame-color, #51483c);
  --soft-mid-lo: color-mix(in srgb, var(--frame-color, #51483c) 78%, black);
  --soft-lo: color-mix(in srgb, var(--frame-color, #51483c) 52%, black);
  --frame-cast-shadow:
    0 0 0 transparent;
  --frame-inner-shadow:
    0 0 0 transparent;
  border-color: transparent;
  border-radius: 0;
  background: var(--mat-color, #f8f2e7);
}

.passport-mount.saved-frame.profile-deep-box {
  --frame-cast-shadow:
    inset 0 22px 28px -22px rgb(20 16 12 / .46),
    inset 20px 0 28px -24px rgb(20 16 12 / .30),
    inset 0 -2px 4px rgb(255 255 255 / .12);
  --frame-inner-shadow:
    inset 0 18px 24px -20px rgb(20 16 12 / .42),
    inset 18px 0 24px -22px rgb(20 16 12 / .28),
    inset 0 -3px 5px rgb(255 255 255 / .16),
    inset -2px 0 4px rgb(255 255 255 / .12);
}

.passport-mount.saved-frame.profile-shadow-gap {
  --frame-cast-shadow:
    inset 0 30px 36px -28px rgb(20 16 12 / .56),
    inset 26px 0 34px -29px rgb(20 16 12 / .36);
  --frame-inner-shadow:
    inset 0 24px 30px -24px rgb(20 16 12 / .50),
    inset 22px 0 28px -25px rgb(20 16 12 / .32),
    inset 0 0 0 1px rgb(20 16 12 / .10);
}

.passport-mount.saved-frame.profile-triangular-bevel {
  --tri-frame: var(--rendered-frame-size);
  --tri-top-hi: color-mix(in srgb, var(--frame-color, #b99b61) 34%, white);
  --tri-top-mid: color-mix(in srgb, var(--frame-color, #b99b61) 86%, #fff36a);
  --tri-top-lo: color-mix(in srgb, var(--frame-color, #b99b61) 82%, black);
  --tri-left: color-mix(in srgb, var(--frame-color, #b99b61) 74%, black);
  --tri-left-edge: color-mix(in srgb, var(--frame-color, #b99b61) 72%, white);
  --tri-right: color-mix(in srgb, var(--frame-color, #b99b61) 54%, black);
  --tri-right-edge: color-mix(in srgb, var(--frame-color, #b99b61) 86%, black);
  --tri-bottom: color-mix(in srgb, var(--frame-color, #b99b61) 44%, black);
  --tri-bottom-edge: color-mix(in srgb, var(--frame-color, #b99b61) 70%, black);
  --tri-seam: color-mix(in srgb, var(--frame-color, #b99b61) 58%, black);
  --frame-cast-shadow:
    0 0 0 transparent;
  --frame-inner-shadow:
    0 0 0 transparent;
  border-color: transparent;
  border-image: none;
  border-radius: 0;
  background: var(--mat-color, #f8f2e7);
}

.passport-mount.saved-frame.profile-triangular-bevel.mode-window-mat .mat-window {
  box-shadow: none;
}

.passport-mount.saved-frame.profile-knife-edge {
  --frame-cast-shadow:
    inset 0 3px 5px -7px rgb(20 16 12 / .22),
    inset 3px 0 5px -8px rgb(20 16 12 / .14);
  --frame-inner-shadow:
    inset 0 1px 0 rgb(255 255 255 / .42),
    inset 0 4px 6px -8px rgb(20 16 12 / .24),
    inset 4px 0 6px -9px rgb(20 16 12 / .16);
}

.passport-mount.saved-frame:before {
  display: none;
}

.passport-mount.saved-frame.mode-window-mat:before {
  z-index: 2;
  display: block;
  inset: 0;
  border: 0;
  box-shadow: var(--frame-cast-shadow);
}

.passport-mount.saved-frame.no-frame.mode-window-mat:before {
  display: none;
}

.passport-mount.saved-frame.profile-triangular-bevel.mode-window-mat:before {
  display: none;
}

.frame-side {
  display: none;
}

.passport-mount.saved-frame.profile-triangular-bevel .frame-side {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
  box-shadow:
    0 1px 0 rgb(255 255 255 / .20) inset,
    0 calc(var(--tri-frame) * .42) calc(var(--tri-frame) * .8) rgb(28 23 18 / .18);
}

.passport-mount.saved-frame.profile-triangular-bevel .frame-side-top {
  top: calc(var(--tri-frame) * -1);
  right: calc(var(--tri-frame) * -1);
  left: calc(var(--tri-frame) * -1);
  height: var(--tri-frame);
  background: linear-gradient(180deg, var(--tri-top-hi), var(--tri-top-mid) 45%, var(--tri-top-lo));
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--tri-frame)) 100%, var(--tri-frame) 100%);
}

.passport-mount.saved-frame.profile-triangular-bevel .frame-side-right {
  top: calc(var(--tri-frame) * -1);
  right: calc(var(--tri-frame) * -1);
  bottom: calc(var(--tri-frame) * -1);
  width: var(--tri-frame);
  background: linear-gradient(90deg, var(--tri-top-lo), var(--tri-right) 46%, var(--tri-right-edge));
  clip-path: polygon(0 var(--tri-frame), 100% 0, 100% 100%, 0 calc(100% - var(--tri-frame)));
}

.passport-mount.saved-frame.profile-triangular-bevel .frame-side-bottom {
  right: calc(var(--tri-frame) * -1);
  bottom: calc(var(--tri-frame) * -1);
  left: calc(var(--tri-frame) * -1);
  height: var(--tri-frame);
  background: linear-gradient(180deg, var(--tri-bottom-edge), var(--tri-bottom) 70%, color-mix(in srgb, var(--tri-bottom) 72%, black));
  clip-path: polygon(var(--tri-frame) 0, calc(100% - var(--tri-frame)) 0, 100% 100%, 0 100%);
}

.passport-mount.saved-frame.profile-triangular-bevel .frame-side-left {
  top: calc(var(--tri-frame) * -1);
  bottom: calc(var(--tri-frame) * -1);
  left: calc(var(--tri-frame) * -1);
  width: var(--tri-frame);
  background: linear-gradient(90deg, var(--tri-left), var(--tri-left-edge) 78%, var(--tri-top-mid));
  clip-path: polygon(0 0, 100% var(--tri-frame), 100% calc(100% - var(--tri-frame)), 0 100%);
}

.passport-mount.saved-frame.profile-soft-bevel.mode-window-mat:before {
  display: none;
}

.passport-mount.saved-frame.profile-soft-bevel .frame-side {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.passport-mount.saved-frame.profile-soft-bevel .frame-side-top {
  top: calc(var(--soft-frame) * -1);
  right: calc(var(--soft-frame) * -1);
  left: calc(var(--soft-frame) * -1);
  height: var(--soft-frame);
  background:
    linear-gradient(180deg, rgb(255 255 255 / .26), transparent 28%, rgb(0 0 0 / .18) 100%),
    linear-gradient(180deg, var(--soft-hi), var(--soft-mid-hi) 18%, var(--soft-mid) 58%, var(--soft-mid-lo));
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--soft-frame)) 100%, var(--soft-frame) 100%);
  box-shadow:
    inset 0 1px 2px rgb(255 255 255 / .22),
    inset 0 -10px 18px rgb(0 0 0 / .16);
}

.passport-mount.saved-frame.profile-soft-bevel .frame-side-right {
  top: calc(var(--soft-frame) * -1);
  right: calc(var(--soft-frame) * -1);
  bottom: calc(var(--soft-frame) * -1);
  width: var(--soft-frame);
  background:
    linear-gradient(90deg, rgb(255 255 255 / .10), transparent 42%, rgb(0 0 0 / .22)),
    linear-gradient(90deg, var(--soft-mid-hi), var(--soft-mid) 38%, var(--soft-mid-lo) 72%, var(--soft-lo));
  clip-path: polygon(0 var(--soft-frame), 100% 0, 100% 100%, 0 calc(100% - var(--soft-frame)));
  box-shadow:
    inset 8px 0 16px rgb(255 255 255 / .08),
    inset -12px 0 20px rgb(0 0 0 / .22);
}

.passport-mount.saved-frame.profile-soft-bevel .frame-side-bottom {
  right: calc(var(--soft-frame) * -1);
  bottom: calc(var(--soft-frame) * -1);
  left: calc(var(--soft-frame) * -1);
  height: var(--soft-frame);
  background:
    linear-gradient(180deg, rgb(255 255 255 / .16), transparent 24%, rgb(0 0 0 / .28)),
    linear-gradient(180deg, var(--soft-mid-hi), var(--soft-mid) 30%, var(--soft-mid-lo) 64%, var(--soft-lo));
  clip-path: polygon(var(--soft-frame) 0, calc(100% - var(--soft-frame)) 0, 100% 100%, 0 100%);
  box-shadow:
    inset 0 8px 18px rgb(255 255 255 / .08),
    inset 0 -14px 22px rgb(0 0 0 / .26);
}

.passport-mount.saved-frame.profile-soft-bevel .frame-side-left {
  top: calc(var(--soft-frame) * -1);
  bottom: calc(var(--soft-frame) * -1);
  left: calc(var(--soft-frame) * -1);
  width: var(--soft-frame);
  background:
    linear-gradient(90deg, rgb(0 0 0 / .16), transparent 38%, rgb(255 255 255 / .16)),
    linear-gradient(90deg, var(--soft-mid-lo), var(--soft-mid) 42%, var(--soft-mid-hi) 82%, var(--soft-hi));
  clip-path: polygon(0 0, 100% var(--soft-frame), 100% calc(100% - var(--soft-frame)), 0 100%);
  box-shadow:
    inset 10px 0 20px rgb(0 0 0 / .20),
    inset -8px 0 16px rgb(255 255 255 / .10);
}

.passport-mount.saved-frame.no-frame .frame-side {
  display: none !important;
}

.passport-mount.saved-frame.profile-triangular-bevel.has-glass:after {
  background: none !important;
  opacity: 0 !important;
}

.mat-window {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.mat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

.passport-mount.saved-frame.mode-window-mat .mat-window {
  padding: var(--saved-bevel);
  background: var(--mat-color, #f8f2e7);
  box-shadow: 0 0 0 .12px color-mix(in srgb, var(--mat-color, #f8f2e7) 97%, black);
}

.passport-mount.saved-frame.mode-window-mat .mat-window::before {
  display: block;
  box-sizing: border-box;
  border: var(--saved-bevel) solid transparent;
  border-top-color: color-mix(in srgb, var(--mat-color, #f8f2e7) 94%, black);
  border-left-color: color-mix(in srgb, var(--mat-color, #f8f2e7) 96%, black);
  border-right-color: color-mix(in srgb, var(--mat-color, #f8f2e7) 97%, white);
  border-bottom-color: color-mix(in srgb, var(--mat-color, #f8f2e7) 95%, white);
  box-shadow:
    inset 0 .18px 0 rgb(255 255 255 / .16),
    0 0 0 .18px rgb(20 17 13 / .025);
}

.passport-mount.saved-frame.mode-window-mat img {
  display: block;
  outline: 0;
  box-shadow: none;
  filter: none;
}

.passport-mount.saved-frame.mode-bare-work {
  --rendered-frame-size: 0px;
  --frame-cast-shadow: 0 0 0 transparent;
  --frame-inner-shadow: 0 0 0 transparent;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow:
    calc(var(--shadow-x) * .55) calc(var(--shadow-y) * .60) 18px rgb(42 34 26 / .18),
    calc(var(--shadow-x) * 1.05) calc(var(--shadow-y) * 1.12) 44px rgb(42 34 26 / .18);
}

.passport-mount.saved-frame.mode-bare-work .mat-window {
  display: contents;
  overflow: visible;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.passport-mount.saved-frame.mode-bare-work img {
  border: 0;
  outline: 0;
  background: transparent;
  object-fit: fill;
  box-shadow: calc(var(--shadow-x) * .72) calc(var(--shadow-y) * .78) 30px rgb(26 20 15 / .22);
}

.passport-mount.saved-frame.mode-bare-work:before,
.passport-mount.saved-frame.mode-bare-work:after,
.passport-mount.saved-frame.mode-bare-work .mat-window::before,
.passport-mount.saved-frame.mode-bare-work .frame-side {
  display: none !important;
}

.dialog-image .passport-mount.saved-frame {
  --rendered-frame-size: var(--frame-size, 16px);
  padding:
    clamp(18px, var(--mat-pad-y, 72px), 132px)
    clamp(18px, var(--mat-pad-x, 72px), 132px);
  border-width: var(--rendered-frame-size);
}

.dialog-image .passport-mount.saved-frame.mode-bare-work {
  padding: 0;
  border-width: 0;
}

.passport-mount:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: none;
  opacity: 0;
  mix-blend-mode: normal;
  transition: opacity .85s ease;
}

.passport-mount.has-glass:after {
  background:
    linear-gradient(
      72deg,
      transparent 0 calc(var(--glass-x) - 24%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .72)) calc(var(--glass-x) - 24%) calc(var(--glass-x) - 17%),
      rgb(255 255 255 / calc(var(--glass-alpha-line) * .68)) calc(var(--glass-x) - 17%) calc(var(--glass-x) - 8%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .58)) calc(var(--glass-x) - 8%) calc(var(--glass-x) - 2%),
      transparent calc(var(--glass-x) - 2%) 100%
    ),
    linear-gradient(
      72deg,
      transparent 0 calc(var(--glass-x) + 10%),
      rgb(255 255 255 / calc(var(--glass-alpha-line) * .48)) calc(var(--glass-x) + 10%) calc(var(--glass-x) + 11.5%),
      transparent calc(var(--glass-x) + 11.5%) 100%
    ),
    linear-gradient(
      108deg,
      transparent 0 calc(var(--glass-y) + 5%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .55)) calc(var(--glass-y) + 5%) calc(var(--glass-y) + 12%),
      rgb(255 255 255 / calc(var(--glass-alpha-line) * .38)) calc(var(--glass-y) + 12%) calc(var(--glass-y) + 13%),
      transparent calc(var(--glass-y) + 13%) 100%
    ),
    linear-gradient(
      135deg,
      rgb(255 255 255 / calc(.18 + var(--light-y) * .12)),
      transparent 42%,
      rgb(34 25 18 / calc(.08 + (1 - var(--light-y)) * .08))
    );
  opacity: .98;
}

body.unit-mode .passport-mount.has-glass:after {
  background: none;
  opacity: 0;
}

.passport-mount.saved-frame.has-glass:after {
  background:
    linear-gradient(
      72deg,
      transparent 0 calc(var(--glass-x) - 24%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .52)) calc(var(--glass-x) - 24%) calc(var(--glass-x) - 16%),
      rgb(255 255 255 / calc(var(--glass-alpha-line) * .48)) calc(var(--glass-x) - 16%) calc(var(--glass-x) - 7%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .34)) calc(var(--glass-x) - 7%) calc(var(--glass-x) - 1%),
      transparent calc(var(--glass-x) - 1%) 100%
    ),
    linear-gradient(
      72deg,
      transparent 0 calc(var(--glass-x) + 9%),
      rgb(255 255 255 / calc(var(--glass-alpha-line) * .32)) calc(var(--glass-x) + 9%) calc(var(--glass-x) + 10.2%),
      transparent calc(var(--glass-x) + 10.2%) 100%
    ),
    linear-gradient(
      108deg,
      transparent 0 calc(var(--glass-y) + 7%),
      rgb(255 255 255 / calc(var(--glass-alpha-soft) * .32)) calc(var(--glass-y) + 7%) calc(var(--glass-y) + 12%),
      transparent calc(var(--glass-y) + 12%) 100%
    );
  opacity: .55;
}

body.camera-travel .passport-mount.has-glass:after,
body.camera-arriving .passport-mount.has-glass:after,
body.unit-mode .passport-mount.has-glass:after,
.art-dialog.canvas-unit .passport-mount.has-glass:after {
  background: none !important;
  opacity: 0 !important;
}

.passport-mount.saved-frame:not(.has-glass):after {
  background: transparent;
}

.passport-mount img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow:
    0 1px 1px rgb(0 0 0 / .14),
    0 10px 18px rgb(25 20 16 / .10);
}

.passport-mount.saved-frame.mode-surface-mount img {
  box-shadow:
    0 1px 2px rgb(255 255 255 / .42) inset,
    4px 7px 12px rgb(26 20 15 / .18);
}

.passport-mount.saved-frame.mode-foamboard img {
  transform: translateY(-2px);
  box-shadow:
    0 1px 1px rgb(255 255 255 / .40) inset,
    10px 18px 28px rgb(26 20 15 / .26);
}

.passport-mount.saved-frame.mode-surface-mount.has-torn img,
.passport-mount.saved-frame.mode-foamboard.has-torn img {
  clip-path: polygon(
    1% 3%, 6% 1%, 13% 2%, 21% 0, 29% 2%, 38% 1%, 48% 2%, 57% 0,
    66% 2%, 76% 1%, 86% 3%, 97% 1%, 100% 6%, 98% 17%, 100% 27%,
    98% 39%, 99% 51%, 97% 63%, 100% 76%, 98% 90%, 94% 99%, 82% 97%,
    70% 99%, 58% 97%, 45% 100%, 31% 98%, 20% 100%, 9% 98%, 0 94%,
    2% 79%, 0 64%, 1% 49%, 0 34%, 2% 19%
  );
}

.passport-mount.frame-0 {
  border-color: rgb(255 255 255 / .95);
  background:
    linear-gradient(135deg, #fffefa, #ece8de),
    #fff;
}

.passport-mount.mat-narrow {
  --mat-pad: clamp(16px, 6cqw, 54px);
  --groove-inset: clamp(8px, 3cqw, 26px);
}

.passport-mount.mat-medium {
  --mat-pad: clamp(22px, 8cqw, 74px);
  --groove-inset: clamp(12px, 4cqw, 36px);
}

.passport-mount.mat-wide {
  --mat-pad: clamp(30px, 11cqw, 104px);
  --groove-inset: clamp(16px, 5.6cqw, 52px);
}

.passport-mount.mat-gallery {
  --mat-pad: clamp(36px, 13cqw, 128px);
  --groove-inset: clamp(20px, 6.5cqw, 64px);
}

.passport-mount.mat-xl {
  --mat-pad: clamp(44px, 16cqw, 164px);
  --groove-inset: clamp(24px, 8cqw, 82px);
}

.passport-mount.mat-white {
  --mat-base: #fffdfa;
  --mat-hi: #ffffff;
  --mat-lo: #f1eee7;
}

.passport-mount.mat-warm {
  --mat-base: #f7f0e2;
  --mat-hi: #fff9ed;
  --mat-lo: #e8dcc6;
}

.passport-mount.mat-cool {
  --mat-base: #f3f5f2;
  --mat-hi: #ffffff;
  --mat-lo: #dde4df;
}

.passport-mount.mat-ivory {
  --mat-base: #fbf4e8;
  --mat-hi: #fffaf0;
  --mat-lo: #e6d7bf;
}

.passport-mount.mat-linen {
  --mat-base: #eee5d5;
  --mat-hi: #f9f2e6;
  --mat-lo: #d7c7b1;
}

.passport-mount.frame-1 {
  border: 10px solid #2b2823;
  outline: 1px solid rgb(255 255 255 / .20);
  outline-offset: -16px;
  background:
    linear-gradient(135deg, #f7f3ea, #dfd7c8),
    #f6f1e6;
}

.passport-mount.frame-1:before {
  inset: clamp(18px, 2.4vw, 32px);
  border-color: rgb(43 40 35 / .26);
}

.passport-mount.frame-2 {
  border: 8px solid #b9a071;
  outline: 1px solid rgb(65 48 26 / .22);
  outline-offset: -14px;
  background:
    linear-gradient(135deg, #fff9ee, #e8ddc7),
    #f7f0e1;
}

.passport-mount.frame-2:before {
  border-color: rgb(117 84 38 / .24);
}

.passport-mount.frame-3 {
  border: 12px solid #f6f4ef;
  outline: 1px solid rgb(16 16 15 / .18);
  outline-offset: -18px;
  background:
    linear-gradient(135deg, #ffffff, #e9e8e3),
    #fbfaf6;
}

.passport-mount.frame-3:before {
  inset: clamp(20px, 2.8vw, 36px);
}

.passport-mount.frame-4 {
  border: 9px solid #5f574d;
  outline: 1px solid rgb(255 255 255 / .18);
  outline-offset: -15px;
  background:
    linear-gradient(135deg, #f4eee2, #d8cbb8),
    #efe5d6;
}

.passport-mount.frame-4:before {
  border-color: rgb(55 45 36 / .24);
}

.passport-mount.frame-paper {
  border: 1px solid rgb(255 255 255 / .95);
  outline: 1px solid rgb(35 28 22 / .08);
  outline-offset: -8px;
  background:
    linear-gradient(135deg, var(--mat-hi, #fff), var(--mat-lo, #eee9df)),
    var(--mat-base, #fff);
}

.art-meta {
  width: 100%;
  margin-top: 16px;
  padding: 0 4px;
  opacity: .70;
  transition: opacity .32s ease;
}

.art-button:hover .art-meta {
  opacity: 1;
}

body.camera-arriving .art-meta,
body.unit-mode .art-meta,
body.zoom-mode .art-meta {
  opacity: 0;
  visibility: hidden;
}

.art-meta h3 {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.art-meta p {
  margin: 4px 0 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .025em;
}

.origin {
  position: relative;
  overflow: hidden;
  padding: 128px 24px;
  background: #edeae4;
  isolation: isolate;
  transition: background .45s ease;
}

body.dark-site .origin {
  background: #191b1c;
}

.origin-ghost {
  position: absolute;
  right: 0;
  bottom: 0;
  color: hsl(var(--foreground) / .04);
  font-family: var(--font-inter);
  font-size: clamp(5rem, 16vw, 20rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.origin-intro {
  margin-bottom: 80px;
}

.origin-intro img {
  width: auto;
  height: 96px;
  max-width: 60vw;
  object-fit: contain;
}

.origin-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.origin-copy {
  min-width: 0;
}

.origin-copy > p {
  margin: 0;
  color: hsl(var(--foreground) / .60);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 2;
  text-align: justify;
}

.origin-copy > p + p {
  margin-top: 20px;
}

.facts {
  display: grid;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(var(--border));
}

.facts dt,
.facts dd {
  margin: 0;
  font-family: var(--font-mono);
}

.facts dt {
  color: hsl(var(--muted-foreground));
  font-size: 8px;
  letter-spacing: .4em;
}

.facts dd {
  color: hsl(var(--foreground) / .70);
  font-size: 10px;
  text-align: right;
}

.origin-art {
  margin: 0;
}

.origin-art .passport-mount {
  padding-bottom: clamp(32px, 4.8vw, 62px);
}

.origin-art figcaption {
  margin-top: 20px;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .3em;
  text-align: center;
}

.origin-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .3em;
}

.art-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
}

.art-dialog::backdrop {
  background: transparent;
}

.art-dialog.preopen .dialog-image .passport-mount,
.art-dialog.preclose .dialog-image .passport-mount {
  opacity: 0;
}

.art-dialog.canvas-unit .dialog-image {
  display: none;
}

.art-dialog.canvas-unit .dialog-card {
  justify-content: flex-start;
  min-height: 100vh;
  width: 100vw;
  pointer-events: none;
}

.art-dialog.canvas-unit .dialog-copy,
.art-dialog.canvas-unit .gallery-exit {
  pointer-events: auto;
}

.art-dialog.canvas-unit,
.art-dialog.canvas-unit .dialog-card {
  pointer-events: none;
  cursor: var(--cursor-art-close);
}

body.unit-mode.can-zoom .art-dialog.canvas-unit {
  cursor: var(--cursor-art-zoom);
}

body.zoom-mode .art-dialog.canvas-unit {
  cursor: grabbing;
}

.art-dialog.canvas-unit .dialog-copy {
  position: fixed;
  top: 96px;
  right: 24px;
  width: min(250px, 18vw);
  max-height: calc(100vh - 136px);
  overflow: auto;
  padding: 20px;
  background: rgb(245 242 237 / .82);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgb(25 20 16 / .12);
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.art-dialog.canvas-unit .dialog-copy,
.art-dialog.canvas-unit .dialog-copy * {
  cursor: auto;
}

@media (hover: hover) and (pointer: fine) {
  .art-dialog.canvas-unit .gallery-exit {
    display: none;
  }
}

body.dark-site .art-dialog.canvas-unit .dialog-copy {
  background: rgb(29 31 32 / .82);
}

body.zoom-mode .art-dialog.canvas-unit .dialog-copy {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 0, 0);
}

.art-dialog.preopen .dialog-backdrop {
  opacity: 0;
}

.art-dialog.preclose .dialog-backdrop {
  opacity: 0;
  transition: opacity .28s ease;
}

.art-dialog.preopen .dialog-copy,
.art-dialog.preclose .dialog-copy {
  opacity: 0;
  transform: translate3d(30px, 0, 0) scale(.98);
}

.art-dialog.preopen .gallery-exit,
.art-dialog.preclose .gallery-exit {
  opacity: 0;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, color-mix(in srgb, var(--art-c1) 52%, transparent), transparent 34vw),
    radial-gradient(circle at 78% 34%, color-mix(in srgb, var(--art-c2) 46%, transparent), transparent 38vw),
    radial-gradient(circle at 46% 88%, color-mix(in srgb, var(--art-c3) 34%, transparent), transparent 28vw),
    linear-gradient(to bottom right, color-mix(in srgb, var(--art-c1) 22%, transparent), color-mix(in srgb, var(--art-c2) 20%, transparent), color-mix(in srgb, var(--art-c3) 18%, transparent)),
    rgb(245 242 237 / .94);
  background-size: 125% 125%, 135% 135%, 118% 118%, auto;
  backdrop-filter: blur(40px);
  animation: ambient-drift 10s ease-in-out infinite alternate;
  opacity: 1;
  transition: opacity .34s ease;
}

.art-dialog.canvas-unit .dialog-backdrop {
  display: none;
  background: transparent;
  backdrop-filter: none;
  animation: none;
  opacity: 0;
}

body.dark-site .art-dialog.canvas-unit .dialog-backdrop {
  background: transparent;
  opacity: 0;
}

body.dark-site .dialog-backdrop {
  background:
    radial-gradient(circle at 24% 18%, color-mix(in srgb, var(--art-c1) 22%, transparent), transparent 34vw),
    radial-gradient(circle at 78% 34%, color-mix(in srgb, var(--art-c2) 18%, transparent), transparent 38vw),
    radial-gradient(circle at 46% 88%, color-mix(in srgb, var(--art-c3) 14%, transparent), transparent 28vw),
    #1d1f20;
}

.gallery-exit {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 96px;
  height: 38px;
  padding: 0 16px 0 12px;
  border: 0;
  background: rgb(245 242 237 / .74);
  backdrop-filter: blur(16px);
  color: hsl(var(--foreground) / .50);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.gallery-exit span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.gallery-exit b {
  font: inherit;
  font-weight: 500;
}

.gallery-exit:hover {
  color: hsl(var(--foreground));
  background: rgb(245 242 237 / .92);
}

body.dark-site .gallery-exit {
  background: rgb(29 31 32 / .74);
  color: rgb(235 232 226 / .62);
}

body.dark-site .gallery-exit:hover {
  color: rgb(235 232 226);
}

.dialog-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  width: min(1024px, calc(100vw - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 80px 0;
}

.dialog-copy,
.gallery-exit,
.dialog-image .passport-mount {
  transition: opacity .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .12s linear;
}

.flight-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  display: none;
}

.flight-layer.is-active {
  display: block;
}

.flight-card {
  position: fixed;
  margin: 0;
  box-sizing: border-box;
  transform-origin: center center;
  will-change: left, top, width, height, transform;
}

.flight-card img {
  width: 100%;
  height: auto;
}

.dialog-image {
  flex: 1 1 auto;
  width: 100%;
  container-type: inline-size;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.dialog-image.is-inspecting {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: clamp(18px, 4vw, 56px);
  cursor: grabbing;
  container-type: size;
}

.art-dialog:has(.dialog-image.is-inspecting) .dialog-copy,
.art-dialog:has(.dialog-image.is-inspecting) .gallery-exit {
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.dialog-image .passport-mount {
  transform-origin: center center;
  transition: opacity .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .12s linear;
  will-change: transform;
}

.dialog-image.is-inspecting .passport-mount {
  max-width: min(88vw, 1500px);
  max-height: min(88vh, 1100px);
}

.dialog-copy {
  width: 100%;
  flex-shrink: 0;
  contain: layout style paint;
}

.dialog-serial {
  margin: 0 0 24px;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .5em;
}

.dialog-copy h2 {
  margin: 0 0 32px;
  color: hsl(var(--foreground));
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.dialog-facts {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.dialog-facts div {
  margin: 0;
}

.dialog-facts dt,
.dialog-facts dd {
  margin: 0;
  font-family: var(--font-mono);
}

.dialog-facts dt {
  margin-bottom: 2px;
  color: hsl(var(--muted-foreground));
  font-size: 8px;
  letter-spacing: .4em;
}

.dialog-facts dd {
  color: hsl(var(--foreground) / .80);
  font-size: 11px;
}

.dialog-share {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
}

.dialog-share button,
.dialog-share-options button {
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card) / .62);
  color: hsl(var(--foreground));
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.dialog-share button:hover,
.dialog-share-options button:hover {
  border-color: hsl(var(--foreground) / .38);
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.dialog-share-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  transform-origin: left center;
  animation: share-options-in .18s ease both;
}

.dialog-share-options[hidden] {
  display: none;
}

.dialog-share span {
  flex-basis: 100%;
  min-width: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes share-options-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dialog-rule {
  height: 1px;
  margin-bottom: 24px;
  background: hsl(var(--border));
}

.dialog-copy > p:last-child {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.9;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ambient-drift {
  0% {
    background-position: 0% 0%, 100% 40%, 18% 100%, 0 0;
  }
  50% {
    background-position: 32% 18%, 68% 64%, 44% 82%, 0 0;
  }
  100% {
    background-position: 58% 30%, 42% 20%, 74% 70%, 0 0;
  }
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

@media (min-width: 640px) {
  .collection-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .nav {
    padding: 20px 56px;
  }

  .nav-brand span {
    display: block;
  }

  .entry-content {
    padding: 56px;
  }

  .archive,
  .artist-statement,
  .origin {
    padding: 128px 56px;
  }

  .collection-work-grid {
    gap: 80px 56px;
  }

  .origin-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .archive,
  .artist-statement,
  .origin {
    padding-right: 80px;
    padding-left: 80px;
  }

  .collection-work-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 112px 48px;
  }

  .art-card {
    width: 100%;
    margin-top: var(--work-offset-y, 0);
  }

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

  .origin-copy {
    grid-column: span 5;
  }

  .origin-art {
    grid-column: 7 / span 6;
  }

  .dialog-card {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1024px;
  }

  .dialog-copy {
    width: 256px;
    padding-top: 8px;
  }
}

@media (max-width: 767px) {
  .nav,
  .collection-jump,
  .dialog-copy {
    backdrop-filter: none;
  }

  .archive:before,
  .artist-statement::before,
  .art-glow,
  .passport-mount.has-glass:after,
  .passport-mount.saved-frame.has-glass:after {
    display: none !important;
  }

  .art-card {
    content-visibility: visible;
    contain: none;
    contain-intrinsic-size: auto;
  }

  .art-card.is-loading {
    opacity: .18;
    transform: none;
  }

  .art-card.is-loaded {
    opacity: 1;
  }

  .art-image-wrap {
    transition: none;
  }

  .art-button:hover .art-image-wrap {
    transform: none;
  }

  .passport-mount,
  .passport-mount.saved-frame,
  .passport-mount.saved-frame.mode-bare-work {
    box-shadow:
      calc(var(--shadow-x) * .34) calc(var(--shadow-y) * .36) 16px rgb(42 34 26 / .13),
      calc(var(--shadow-x) * .72) calc(var(--shadow-y) * .78) 34px rgb(42 34 26 / .12);
  }

  .passport-mount:before,
  .passport-mount.saved-frame.mode-window-mat .mat-window::before {
    box-shadow: none;
  }

  .passport-mount img,
  .passport-mount.saved-frame.mode-surface-mount img,
  .passport-mount.saved-frame.mode-foamboard img,
  .passport-mount.saved-frame.mode-bare-work img {
    box-shadow: none;
    filter: none;
  }

  .passport-mount.saved-frame.profile-soft-bevel .frame-side,
  .passport-mount.saved-frame.profile-triangular-bevel .frame-side {
    box-shadow: none;
  }

  .scroll-track {
    display: none;
  }

  .nav {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .nav-brand img {
    height: 22px;
  }

  .nav-links {
    max-width: min(68vw, 320px);
    gap: 16px;
  }

  .nav-links a,
  .nav-links button {
    font-size: 8px;
    letter-spacing: .2em;
  }

  .collections-menu {
    right: auto;
    left: 0;
    min-width: min(76vw, 300px);
  }

  .entry-content {
    min-height: 100vh;
    min-height: 100svh;
    padding: 84px 20px 48px;
  }

  .entry-content img {
    width: 38vw;
    min-width: 138px;
  }

  .entry-actions {
    gap: 24px;
  }

  .entry-actions a {
    font-size: 10px;
    letter-spacing: .24em;
  }

  .archive,
  .artist-statement,
  .origin {
    padding: 84px 18px;
    overflow-x: clip;
  }

  .archive-grid,
  .collection-section,
  .collection-header,
  .collection-copy,
  .collection-description,
  .collection-description-toggle,
  .statement-layout,
  .statement-heading,
  .statement-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .statement-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement-main {
    display: contents;
  }

  .statement-heading {
    order: 1;
  }

  .statement-portrait {
    order: 2;
    width: min(100%, 360px);
    max-width: none;
    margin: 0;
  }

  .statement-copy {
    order: 3;
    gap: 18px;
    max-width: none;
  }

  .statement-contact-block {
    order: 4;
    font-size: 15px;
  }

  .statement-heading h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: .94;
    overflow-wrap: normal;
    text-wrap: auto;
  }

  .statement-copy p {
    font-size: 15px;
    line-height: 1.72;
  }

  .collection-work-grid {
    gap: 56px;
  }

  .collection-jump {
    padding: 14px 12px;
  }

  .collection-jump-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }

  .collection-jump-card {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
  }

  .collection-copy > p {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .collection-copy h3 {
    max-width: 100%;
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: .94;
    overflow-wrap: normal;
    text-wrap: auto;
  }

  .collection-description {
    margin-top: 8px;
  }

  .collection-description-toggle {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .collection-description-preview {
    max-width: 100%;
    padding-bottom: 0;
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: break-word;
  }

  .collection-description-action {
    justify-content: space-between;
    width: 100%;
    padding-bottom: 12px;
    font-size: 8px;
    letter-spacing: .28em;
  }

  .collection-description-inner {
    gap: 16px;
    padding: 18px 0 6px;
  }

  .collection-description-body p {
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .passport-mount.saved-frame {
    --rendered-frame-size: calc(var(--frame-size, 16px) * .46);
    padding:
      max(14px, calc(var(--mat-pad-y, 72px) * .46))
      max(14px, calc(var(--mat-pad-x, 72px) * .46));
    border-width: var(--rendered-frame-size);
  }

  .gallery-exit {
    top: 14px;
    right: 14px;
  }

  .dialog-card {
    width: min(100vw - 28px, 1024px);
    min-height: 100svh;
    padding: 64px 0 32px;
  }

  .dialog-image.is-inspecting {
    height: 100svh;
  }

  .art-dialog.canvas-unit .dialog-copy {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: 25vh;
    max-height: 25svh;
    padding: 10px 12px 11px;
    box-shadow: 0 12px 36px rgb(25 20 16 / .12);
  }

  .dialog-serial {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .34em;
  }

  .dialog-copy h2 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.08;
  }

  .dialog-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
  }

  .dialog-facts dt {
    font-size: 10px;
    letter-spacing: .26em;
  }

  .dialog-facts dd {
    font-size: 14px;
    line-height: 1.25;
  }

  .dialog-rule {
    margin-bottom: 8px;
  }

  .dialog-copy > p:last-child {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 1023px) {
  .art-card {
    grid-column: auto !important;
  }
}

@media (max-width: 1180px) {
  .art-dialog.canvas-unit .dialog-copy {
    width: min(220px, 24vw);
    right: 16px;
    padding: 16px;
  }
}

@media (max-width: 900px) {
  .art-dialog.canvas-unit .dialog-copy {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    max-height: 34vh;
    max-height: 34svh;
  }
}

@media (max-width: 767px) {
  .dialog-image {
    cursor: default;
    touch-action: manipulation;
  }

  body.unit-mode .art-card.is-selected .mat-window {
    overflow: visible;
  }

  body.unit-mode .art-card.is-selected .mat-window::before {
    display: none;
  }

  body.unit-mode .art-card.is-selected .passport-mount img {
    clip-path: none;
  }

  .dialog-image .passport-mount {
    will-change: auto;
  }

  .art-dialog.canvas-unit .dialog-copy {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: 25vh;
    max-height: 25svh;
    padding: 10px 12px 11px;
  }
}

@media (pointer: coarse) {
  .dialog-image {
    touch-action: manipulation;
  }

  body.unit-mode .art-card.is-selected .mat-window {
    overflow: visible;
  }

  body.unit-mode .art-card.is-selected .mat-window::before {
    display: none;
  }

  body.unit-mode .art-card.is-selected .passport-mount img {
    clip-path: none;
  }

  .dialog-image .passport-mount,
  body.zoom-mode .art-card.is-selected .passport-mount {
    will-change: auto;
    transition: opacity .24s ease, box-shadow .12s linear;
  }

  .viewer-cursor {
    display: none;
  }

  body.unit-mode,
  body.unit-mode.can-zoom,
  body.zoom-mode,
  body.zoom-mode.can-zoom {
    cursor: default;
  }

  body.unit-mode.can-zoom .art-card.is-selected,
  body.unit-mode.can-zoom .art-card.is-selected *,
  body.unit-mode.can-zoom .art-dialog.canvas-unit,
  body.unit-mode.can-zoom .art-dialog.canvas-unit *,
  body.zoom-mode .art-card.is-selected,
  body.zoom-mode .art-card.is-selected *,
  body.zoom-mode .art-dialog.canvas-unit,
  body.zoom-mode .art-dialog.canvas-unit * {
    cursor: default;
  }

  body.unit-mode .art-card.is-selected,
  body.unit-mode .art-card.is-selected .passport-mount,
  body.unit-mode .art-card.is-selected .passport-mount img {
    touch-action: none;
  }
}

@media (pointer: coarse) and (orientation: landscape) and (max-height: 560px) {
  body.unit-mode .art-card.is-selected {
    opacity: 0;
    pointer-events: none;
  }

  .art-dialog.canvas-unit .dialog-image {
    position: fixed;
    top: 0;
    right: min(360px, max(250px, 36vw));
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: auto;
    height: auto;
    padding: max(14px, env(safe-area-inset-top)) 24px max(14px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    pointer-events: auto;
    cursor: default;
  }

  .art-dialog.canvas-unit.preopen .dialog-image .passport-mount,
  .art-dialog.canvas-unit.preclose .dialog-image .passport-mount {
    opacity: 0;
  }

  .art-dialog.canvas-unit .dialog-image .passport-mount {
    box-sizing: border-box;
    width: min(calc(100% - 48px), calc((100vh - 28px) * var(--viewer-frame-aspect, var(--viewer-work-aspect, .72))));
    aspect-ratio: var(--viewer-frame-aspect, var(--viewer-work-aspect, .72));
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    opacity: 1;
    transform-origin: center center;
  }

  .art-dialog.canvas-unit .dialog-image .passport-mount .mat-window {
    box-sizing: border-box;
    height: 100%;
  }

  .art-dialog.canvas-unit .dialog-image .passport-mount img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .art-dialog.canvas-unit .dialog-image .passport-mount.mode-bare-work .mat-window {
    display: block;
    height: 100%;
  }

  body.zoom-mode .art-dialog.canvas-unit .dialog-image {
    z-index: 8;
  }

  .artist-statement {
    padding: 72px max(18px, env(safe-area-inset-right)) 40px max(18px, env(safe-area-inset-left));
  }

  .statement-layout {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 28vw);
    gap: 22px;
    max-width: none;
  }

  .statement-main {
    display: grid;
    gap: 14px;
  }

  .statement-heading h2 {
    font-size: clamp(2.1rem, 7vw, 3.8rem);
    line-height: .9;
  }

  .statement-copy {
    display: block;
    max-width: none;
    column-count: 2;
    column-gap: 22px;
  }

  .statement-copy p {
    margin: 0 0 12px;
    font-size: 12.5px;
    line-height: 1.55;
    break-inside: avoid;
  }

  .statement-portrait {
    width: min(28vw, 220px);
    justify-self: end;
    margin: 0;
  }

  .statement-contact-block {
    grid-column: 1 / -1;
    font-size: 12px;
    line-height: 1.45;
  }

  .gallery-exit {
    top: max(10px, env(safe-area-inset-top));
    right: auto;
    left: max(10px, env(safe-area-inset-left));
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .gallery-exit b {
    display: none;
  }

  .gallery-exit span {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .art-dialog.canvas-unit .dialog-copy {
    top: max(28px, calc(env(safe-area-inset-top) + 8px));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: auto;
    display: block;
    width: clamp(250px, 35vw, 360px);
    max-height: calc(100svh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 14px 16px 15px;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-serial {
    margin-bottom: 7px;
    font-size: 8px;
    letter-spacing: .32em;
  }

  .art-dialog.canvas-unit .dialog-copy h2 {
    margin-bottom: 9px;
    font-size: clamp(18px, 3.7vw, 24px);
    line-height: 1.06;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-facts {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-facts dt {
    font-size: 8px;
    letter-spacing: .24em;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-facts dd {
    font-size: clamp(12px, 2.5vw, 15px);
    line-height: 1.22;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-share {
    margin-bottom: 10px;
  }

  .art-dialog.canvas-unit .dialog-copy .dialog-rule {
    margin-bottom: 9px;
  }

  .art-dialog.canvas-unit .dialog-copy > p:last-child {
    display: block;
    font-size: clamp(11px, 2.2vw, 13px);
    line-height: 1.42;
  }

  .art-dialog.canvas-unit .dialog-share-options {
    justify-content: flex-start;
  }
}

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

  .passport-mount,
  .dialog-image .passport-mount,
  .art-card,
  .dialog-backdrop {
    transition-duration: .001ms !important;
  }
}
