:root {
  --black: #121212;
  --white: #ffffff;
  --muted: rgba(244, 235, 219, 0.76);
  --line: rgba(225, 198, 143, 0.22);
  --orange: #d8bd82;
  --champagne: #d8bd82;
  --champagne-soft: rgba(216, 189, 130, 0.18);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --blue: #54b9ff;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--serif);
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

body.is-leaving {
  animation: pageExit 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageExit {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(0.992);
    filter: blur(8px);
  }
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 36px;
  height: 42px;
  object-fit: contain;
  background: transparent;
}

.brand span {
  white-space: nowrap;
}

.topbar nav {
  align-items: center;
  display: flex;
  min-width: 0;
  gap: 8px;
}

.topbar nav a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.52);
}

.topbar nav .lang {
  padding-right: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.topbar nav .lang span {
  color: var(--orange);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  background-color: #0d1417;
  background-image: url("assets/home-showcase.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  --spot-x: 62%;
  --spot-y: 46%;
  --breath: 0.16;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.08) 74%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.36)),
    radial-gradient(circle at 58% 58%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.14) 30%, rgba(0, 0, 0, 0) 54%),
    radial-gradient(circle at 64% 48%, rgba(216, 189, 130, 0.13), rgba(18, 18, 18, 0) 28%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(246, 223, 171, var(--breath)), rgba(246, 223, 171, 0.05) 14%, rgba(0, 0, 0, 0) 34%),
    radial-gradient(circle at calc(var(--spot-x) + 9%) calc(var(--spot-y) + 12%), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 22%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: opacity 260ms ease;
  will-change: background;
}

.hero-heading {
  position: absolute;
  top: clamp(128px, 9.8vw, 164px);
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(560px, 82vw);
  transform: translateX(-50%);
  text-align: center;
}

.hero-heading span,
.eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-heading strong {
  display: none;
}

.hero-content {
  position: absolute;
  left: clamp(20px, 4vw, 62px);
  right: clamp(20px, 4vw, 62px);
  top: clamp(312px, 24vw, 392px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-copy {
  position: relative;
  width: min(1060px, 78vw);
  max-width: 1060px;
  align-self: center;
  padding: clamp(28px, 3.2vw, 44px) clamp(20px, 3vw, 42px) clamp(22px, 2.6vw, 34px);
  text-align: center;
}

.hero-copy::before {
  position: absolute;
  inset: -14px -20px -18px;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18));
  filter: blur(1px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 4.3vw, 72px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.56);
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-subtitle span {
  display: block;
}

.hero p:not(.eyebrow),
.section-title p,
.tech-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  font-family: var(--sans);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 300;
  letter-spacing: 0.09em;
}

.hero-copy .product-line {
  display: inline-block;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

@media (min-width: 981px) {
  .hero-actions {
    margin-top: 28px;
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(216, 189, 130, 0.62);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 235, 0.94);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 rgba(216, 189, 130, 0), 0 12px 34px rgba(0, 0, 0, 0.18);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease, transform 260ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  inset: 50%;
  z-index: -1;
  aspect-ratio: 1;
  width: 140%;
  content: "";
  background: radial-gradient(circle, rgba(246, 223, 171, 0.24), rgba(216, 189, 130, 0.08) 52%, rgba(216, 189, 130, 0) 72%);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
  opacity: 0;
}

.button::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(115deg, rgba(246, 223, 171, 0), rgba(246, 223, 171, 0.8), rgba(246, 223, 171, 0));
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity 260ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button.primary {
  border-color: rgba(216, 189, 130, 0.86);
  background: linear-gradient(135deg, rgba(216, 189, 130, 0.92), rgba(175, 144, 88, 0.76));
  color: #1c1710;
  font-weight: 700;
}

.button.ghost {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button:hover {
  border-color: rgba(246, 223, 171, 0.98);
  color: #fff7e6;
  background: rgba(216, 189, 130, 0.14);
  box-shadow: inset 0 0 20px rgba(246, 223, 171, 0.24), 0 16px 42px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.button:hover::after {
  opacity: 0.42;
  transform: translateX(115%);
}

.button.primary:hover {
  color: #18130d;
  background: linear-gradient(135deg, rgba(244, 218, 160, 0.98), rgba(203, 169, 102, 0.9));
  box-shadow: inset 0 0 24px rgba(255, 246, 219, 0.32), 0 18px 46px rgba(30, 22, 10, 0.32);
}

.section {
  padding: clamp(64px, 9vw, 132px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.section-title {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.stats-grid,
.tech-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.stats-grid article,
.tech-grid article,
.timeline li {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.stats-grid strong {
  display: block;
  color: var(--orange);
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1;
}

.stats-grid span,
.timeline span {
  color: var(--muted);
}

.tech-grid span {
  color: var(--blue);
}

.tech-grid h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: 18px;
}

.drop-zone {
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: 28px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.drop-zone.is-active {
  border-color: var(--orange);
  background: rgba(255, 94, 58, 0.1);
}

.drop-zone span {
  display: block;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
}

.drop-zone small {
  color: var(--muted);
}

.preview-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.preview-stage {
  min-height: 480px;
  padding: 24px;
}

.preview-stage img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.submit-form {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.submit-form input,
.submit-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(18, 18, 18, 0.8);
}

.submit-form textarea {
  min-height: 120px;
  resize: vertical;
}

.gallery-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.64);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease, opacity 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
  will-change: transform;
}

.gallery-grid:has(article:hover) article:not(:hover) {
  filter: brightness(0.72) saturate(0.88);
  opacity: 0.68;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-grid article:hover img {
  transform: scale(1.045);
  filter: brightness(0.78);
}

.gallery-grid article:hover {
  border-color: rgba(246, 223, 171, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 40px rgba(246, 223, 171, 0.1);
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 10px), 0);
}

.gallery-grid div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(18, 18, 18, 0.74);
  backdrop-filter: blur(10px);
}

.gallery-grid strong {
  font-size: 22px;
}

.gallery-grid span {
  color: var(--muted);
}

.timeline ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
}

.timeline strong {
  color: var(--orange);
}

.gallery-page {
  background: #0d0d0c;
}

.select-hero {
  position: relative;
  min-height: 18vh;
  padding: 82px clamp(18px, 5vw, 76px) 30px;
  overflow: hidden;
  animation: galleryHeroIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.select-hero-image,
.select-hero-shade {
  position: absolute;
  inset: 0;
}

.select-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select-hero-shade {
  background:
    rgba(0, 0, 0, 0.7),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 62%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.select-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: galleryTitleIn 920ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.select-hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.12em;
}

.gallery-en {
  margin: 10px 0 0;
  color: rgba(244, 235, 219, 0.86);
  font-family: var(--sans);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-section {
  padding: clamp(34px, 4.6vw, 66px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.select-intro {
  max-width: 1180px;
  margin: 0 auto 28px;
  text-align: center;
}

.select-intro span {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.select-intro h2,
.process-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.select-intro p {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.style-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  margin-top: 24px;
  padding: 12px 22px;
  border-top: 1px solid rgba(216, 189, 130, 0.18);
  border-bottom: 1px solid rgba(216, 189, 130, 0.18);
}

.style-filter a {
  color: rgba(244, 235, 219, 0.72);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.16em;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.style-filter a:hover {
  color: var(--champagne);
  text-shadow: 0 0 18px rgba(216, 189, 130, 0.26);
}

.creator-carousel {
  position: relative;
  max-width: min(1500px, calc(100vw - 152px));
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.creator-strip {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0;
  animation: creatorMarquee 32s linear infinite;
  will-change: transform;
}

.creator-carousel:hover .creator-strip {
  animation-play-state: paused;
}

.creator-card {
  position: relative;
  display: block;
  width: clamp(168px, 12vw, 232px);
  height: 292px;
  min-height: 292px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 130, 0.28);
  background: #17130f;
  flex: 0 0 auto;
  animation: galleryCardIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-index, 0) * 90ms + 180ms);
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, filter 360ms ease, opacity 360ms ease;
}

.creator-card-tall {
  min-height: 292px;
}

.creator-card-mid {
  min-height: 292px;
}

.creator-card-short {
  min-height: 292px;
}

.art-surface {
  position: absolute;
  inset: 0;
  transition: transform 620ms ease, filter 520ms ease;
}

.art-abstract .art-surface {
  background:
    radial-gradient(circle at 28% 24%, rgba(217, 189, 129, 0.28), transparent 18%),
    radial-gradient(circle at 72% 36%, rgba(70, 112, 135, 0.36), transparent 22%),
    linear-gradient(135deg, #090b10, #17141e 42%, #2b2117);
}

.art-ink .art-surface {
  background:
    radial-gradient(ellipse at 30% 34%, rgba(248, 244, 229, 0.86), transparent 22%),
    radial-gradient(ellipse at 70% 68%, rgba(18, 18, 18, 0.72), transparent 28%),
    linear-gradient(145deg, #e7dec8, #b9aa89 52%, #25221c);
  filter: grayscale(0.14);
}

.art-line .art-surface {
  background:
    repeating-linear-gradient(135deg, rgba(232, 218, 184, 0.24) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px),
    linear-gradient(150deg, #0d1014, #1f2724);
}

.art-classic .art-surface {
  background:
    radial-gradient(circle at 42% 30%, rgba(245, 219, 150, 0.34), transparent 20%),
    radial-gradient(circle at 72% 62%, rgba(115, 74, 37, 0.58), transparent 28%),
    linear-gradient(160deg, #27190f, #5b3d21 46%, #0f1110);
}

.art-modern .art-surface {
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(223, 196, 135, 0.55) 28% 38%, transparent 38%),
    linear-gradient(35deg, rgba(103, 91, 78, 0.88), transparent 48%),
    linear-gradient(160deg, #101315, #3a342b 48%, #17120f);
}

.artist-avatar {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(246, 223, 171, 0.58);
  border-radius: 999px;
  color: #1a1510;
  background: radial-gradient(circle, #f3dfac, #a98a4e);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.style-tag {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(216, 189, 130, 0.3);
  color: rgba(244, 235, 219, 0.82);
  background: rgba(12, 10, 8, 0.34);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.garment-outline {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 114px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top: 0;
  opacity: 0;
  transform: translate(-50%, -44%) scale(0.92);
  transition: opacity 380ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: polygon(28% 0, 42% 12%, 58% 12%, 72% 0, 100% 24%, 82% 42%, 82% 100%, 18% 100%, 18% 42%, 0 24%);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 255, 255, 0.16);
}

.creator-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 12px;
  background: rgba(12, 10, 8, 0.66);
  border: 1px solid rgba(216, 189, 130, 0.18);
  backdrop-filter: blur(12px);
}

.creator-meta span {
  color: var(--champagne);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.creator-meta strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.creator-meta small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}

.creator-strip:hover .creator-card:not(:hover) {
  filter: brightness(0.76) saturate(0.82);
  opacity: 0.82;
}

.creator-card:hover {
  z-index: 1;
  border-color: rgba(246, 223, 171, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38), inset 0 0 36px rgba(246, 223, 171, 0.08);
  transform: translateY(-6px);
}

.creator-card:hover .art-surface {
  filter: saturate(1.08) brightness(1.02);
  transform: scale(1.05);
}

.creator-card:hover .garment-outline,
.creator-card:hover .bespoke-link {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.bespoke-link {
  justify-self: start;
  margin-top: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(246, 223, 171, 0.5);
  color: #f2dfac;
  background: rgba(216, 189, 130, 0.08);
  box-shadow: inset 0 0 0 rgba(246, 223, 171, 0), 0 0 0 rgba(216, 189, 130, 0);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease, box-shadow 360ms ease, background 360ms ease;
}

@keyframes creatorMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.creator-card:hover .bespoke-link {
  transform: translateY(0);
  box-shadow: inset 0 0 18px rgba(246, 223, 171, 0.12), 0 0 24px rgba(216, 189, 130, 0.18);
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(22px, 5vw, 72px);
}

.process-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-panel li {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-panel strong {
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.08em;
}

.process-panel span {
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
}

.creator-card:nth-child(1) {
  --card-index: 1;
}

.creator-card:nth-child(2) {
  --card-index: 2;
}

.creator-card:nth-child(3) {
  --card-index: 3;
}

.creator-card:nth-child(4) {
  --card-index: 4;
}

.creator-card:nth-child(5) {
  --card-index: 5;
}

@keyframes galleryHeroIn {
  from {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(10px) brightness(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}

@keyframes galleryTitleIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    letter-spacing: 0.2em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px) brightness(0.72);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-leaving,
  .select-hero,
  .select-hero-content,
  .creator-card {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-heading {
    top: 92px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    top: 174px;
  }

  .hero-copy {
    grid-row: 1;
  }

  .stats-grid,
  .tech-grid,
  .submit-layout,
  .preview-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    margin-right: calc(clamp(18px, 5vw, 76px) * -1);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 clamp(18px, 5vw, 76px) 12px 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid article {
    flex: 0 0 min(78vw, 360px);
    min-height: 380px;
    scroll-snap-align: center;
  }

  .gallery-grid img {
    min-height: 380px;
  }

  .submit-form {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .creator-strip {
    grid-auto-columns: minmax(210px, 42vw);
  }

  .process-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .topbar {
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    gap: 0;
  }

  .brand span {
    display: none;
  }

  .topbar nav {
    gap: 0;
  }

  .topbar nav a,
  .topbar nav .lang {
    padding: 6px 7px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
  }

  .brand {
    max-width: 118px;
    font-size: 13px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100vw - 156px);
    gap: 2px;
  }

  .topbar nav a {
    padding: 4px 3px;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .topbar nav a:not(.lang) {
    display: none;
  }

  .topbar nav .lang {
    display: inline-flex;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .hero-copy {
    max-width: calc(100vw - 48px);
  }

  .hero-heading {
    top: 78px;
    width: calc(100vw - 36px);
  }

  .hero-heading span {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-heading strong {
    font-size: 16px;
    line-height: 1.12;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    top: 164px;
    gap: 12px;
  }

  .hero h1 {
    max-width: calc(100vw - 58px);
    font-size: 31px;
    line-height: 1.34;
    letter-spacing: 0.04em;
  }

  .hero-copy .product-line {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .hero-copy > p:not(.eyebrow) {
    display: block;
    width: calc(100vw - 82px);
    max-width: 308px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .gallery-grid {
    margin-right: -18px;
    padding-right: 18px;
  }

  .gallery-grid article {
    flex-basis: 82vw;
  }

  .button {
    min-width: 102px;
    min-height: 48px;
    padding: 11px 16px;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .scroll-cue {
    display: none;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .select-hero {
    min-height: 34vh;
    padding: 96px 18px 36px;
  }

  .select-hero h1 {
    font-size: 34px;
  }

  .gallery-en {
    font-size: 12px;
    line-height: 1.5;
  }

  .select-section {
    padding: 42px 18px;
  }

  .select-intro h2,
  .process-panel h2 {
    font-size: 28px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .select-intro p {
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .creator-strip {
    grid-auto-columns: 78vw;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
  }

  .creator-card,
  .creator-card img {
    min-height: 360px;
  }

  .process-panel li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.artist-library-hero {
  min-height: 260px;
}

.artist-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.artist-filter button {
  appearance: none;
  border: 0;
  border-top: 1px solid rgba(216, 189, 130, 0.18);
  border-bottom: 1px solid rgba(216, 189, 130, 0.18);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.18em;
  padding: 13px 18px;
  transition: color 220ms ease, background 220ms ease;
}

.artist-filter button:hover,
.artist-filter button.is-active {
  background: rgba(216, 189, 130, 0.08);
  color: var(--champagne);
}

.artist-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 50px auto 0;
  max-width: min(1500px, calc(100vw - 120px));
}

.artist-card {
  border: 1px solid rgba(216, 189, 130, 0.16);
  background: rgba(14, 13, 10, 0.78);
  min-width: 0;
  overflow: hidden;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.artist-card:hover {
  border-color: rgba(246, 223, 171, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.artist-card-cover,
.artist-work-image,
.artist-work-thumb,
.artist-detail-cover {
  background:
    radial-gradient(circle at 35% 30%, rgba(246, 223, 171, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(36, 32, 26, 0.96), rgba(9, 10, 10, 0.98));
  background-position: center;
  background-size: cover;
}

.artist-card-cover {
  align-items: center;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 250px;
  text-decoration: none;
}

.artist-card-cover.is-empty {
  display: flex;
  justify-content: center;
}

.artist-card-cover.is-empty span {
  border: 1px solid rgba(216, 189, 130, 0.26);
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 12px 14px;
}

.artist-card-body {
  padding: 18px;
}

.artist-card-body span,
.artist-work-tile span {
  color: var(--champagne);
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-card-body h3,
.artist-work-tile h3 {
  color: var(--ivory);
  font-size: 24px;
  letter-spacing: 0.06em;
  margin: 10px 0 8px;
}

.artist-card-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  min-height: 46px;
}

.artist-card-body a,
.artist-work-tile a,
.back-link {
  color: var(--champagne);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.artist-work-card {
  overflow: hidden;
}

.artist-work-image {
  display: block;
  inset: 0;
  position: absolute;
  transition: filter 360ms ease, transform 420ms ease;
}

.artist-work-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 42%, rgba(4, 3, 2, 0.54) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.artist-work-card .artist-avatar,
.artist-work-card .style-tag,
.artist-work-card .creator-meta {
  z-index: 2;
}

.artist-work-card:hover .artist-work-image {
  filter: saturate(1.06) brightness(1.04);
  transform: scale(1.045);
}

.artist-work-card .creator-meta {
  left: 12px;
  right: 12px;
  bottom: 12px;
  gap: 4px;
  padding: 8px 9px;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.34), rgba(12, 10, 8, 0.64));
  backdrop-filter: blur(5px);
}

.artist-work-card .creator-meta span {
  font-size: 9px;
}

.artist-work-card .creator-meta strong {
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.28;
  letter-spacing: 0.04em;
  max-height: 34px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.artist-work-card .creator-meta small {
  font-size: 9px;
}

.artist-work-card .bespoke-link {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  pointer-events: none;
}

.artist-work-card:hover .bespoke-link {
  max-height: 34px;
  margin-top: 6px;
  padding-bottom: 7px;
  padding-top: 7px;
  pointer-events: auto;
}

.artist-detail-hero {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 4vw, 60px);
  margin: 0 auto;
  max-width: 1420px;
  min-height: 0;
  padding: 130px clamp(22px, 5vw, 72px) 56px;
}

.artist-detail-hero.has-no-media {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
}

.artist-detail-copy {
  align-content: start;
  align-self: start;
  border-bottom: 1px solid rgba(216, 189, 130, 0.18);
  border-top: 1px solid rgba(216, 189, 130, 0.18);
  display: grid;
  min-width: 0;
  padding: clamp(38px, 5vw, 68px) 0;
}

.artist-detail-copy h1 {
  color: var(--ivory);
  font-size: clamp(52px, 7vw, 106px);
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin: 16px 0 24px;
}

.artist-profile-text p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.9;
  max-width: 680px;
  margin: 0;
  overflow-wrap: anywhere;
}

.artist-detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.artist-detail-stats span,
.artist-detail-stats strong {
  border: 1px solid rgba(216, 189, 130, 0.22);
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 12px 16px;
  text-transform: uppercase;
}

.artist-detail-media {
  align-self: start;
  display: grid;
  gap: 12px;
  justify-self: end;
  max-width: 460px;
  min-width: 0;
  position: relative;
  width: 100%;
}

.artist-detail-media[hidden],
.artist-profile-details[hidden] {
  display: none;
}

.artist-detail-media-label {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.artist-detail-cover {
  appearance: none;
  border: 1px solid rgba(216, 189, 130, 0.18);
  background: rgba(9, 9, 8, 0.92);
  color: var(--ivory);
  cursor: zoom-in;
  display: grid;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 30px);
  place-items: center;
  position: relative;
  width: 100%;
}

.artist-detail-cover::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.artist-detail-cover-backdrop {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(32px) brightness(0.42) saturate(0.82);
  inset: -12%;
  opacity: 0.88;
  position: absolute;
  transform: scale(1.12);
  transition: filter 320ms ease, transform 420ms ease;
  z-index: -1;
}

.artist-detail-cover-backdrop::after {
  background: linear-gradient(145deg, rgba(8, 8, 7, 0.16), rgba(8, 8, 7, 0.68));
  content: "";
  inset: 0;
  position: absolute;
}

.artist-detail-cover img {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  height: 100%;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.artist-detail-media[data-media-kind="profile"] .artist-detail-cover img {
  object-fit: cover;
  object-position: center 28%;
}

.artist-detail-media-placeholder {
  color: var(--ivory);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  text-align: center;
  white-space: pre-line;
  z-index: 1;
}

.artist-detail-media-placeholder[hidden] {
  display: none;
}

.artist-detail-cover:disabled {
  cursor: default;
}

.artist-detail-cover:disabled .image-zoom-hint {
  display: none;
}

.artist-detail-cover:hover .artist-detail-cover-backdrop,
.artist-detail-cover:focus-visible .artist-detail-cover-backdrop {
  filter: blur(26px) brightness(0.5) saturate(0.94);
  transform: scale(1.17);
}

.artist-detail-cover:focus-visible,
.artist-work-thumb:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.image-zoom-hint {
  background: rgba(10, 10, 9, 0.78);
  border: 1px solid rgba(246, 223, 171, 0.36);
  bottom: 24px;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 9px 12px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  z-index: 3;
}

.artist-profile-details {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 1160px;
  padding-top: 18px;
  width: 100%;
}

.artist-profile-section {
  background: linear-gradient(145deg, rgba(22, 21, 18, 0.92), rgba(12, 12, 11, 0.94));
  border: 1px solid rgba(216, 189, 130, 0.18);
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
}

.artist-profile-section h2 {
  color: var(--champagne);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}

.artist-profile-section p,
.artist-profile-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.88;
  overflow-wrap: anywhere;
}

.artist-profile-section p {
  margin: 0;
}

.artist-profile-section p span {
  display: block;
}

.artist-profile-section ul {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.artist-profile-section li {
  border-left: 2px solid rgba(216, 189, 130, 0.34);
  padding-left: 14px;
}

.artist-profile-narrative {
  display: grid;
  gap: 18px;
}

.enter-archive-button {
  align-items: center;
  border: 1px solid rgba(246, 223, 171, 0.45);
  color: var(--champagne);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.18em;
  margin-top: 28px;
  min-height: 46px;
  padding: 0 24px;
  text-decoration: none;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  width: fit-content;
}

.enter-archive-button:hover {
  background: rgba(216, 189, 130, 0.08);
  box-shadow: 0 0 28px rgba(216, 189, 130, 0.16);
  transform: translateY(-2px);
}

.artist-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 46px auto 0;
  max-width: min(1420px, calc(100vw - 120px));
}

.artist-works-section {
  scroll-margin-top: 88px;
}

.artist-work-catalog {
  display: flex;
  width: min(1420px, calc(100vw - 120px));
  margin: 34px auto 0;
  overflow-x: auto;
  border-top: 1px solid rgba(216, 189, 130, 0.2);
  border-bottom: 1px solid rgba(216, 189, 130, 0.2);
  scrollbar-width: thin;
}

.artist-work-catalog button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid rgba(216, 189, 130, 0.18);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: color 220ms ease, background 220ms ease;
}

.artist-work-catalog button:hover,
.artist-work-catalog button.is-active {
  background: rgba(216, 189, 130, 0.08);
  color: var(--champagne);
}

.artist-work-catalog small {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border: 1px solid rgba(216, 189, 130, 0.24);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 10px;
}

.artist-work-tile {
  border: 1px solid rgba(216, 189, 130, 0.16);
  background: rgba(12, 12, 10, 0.8);
  min-width: 0;
  overflow: hidden;
}

.artist-work-thumb {
  appearance: none;
  aspect-ratio: 4 / 3;
  background-color: rgba(12, 12, 10, 0.96);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  color: var(--ivory);
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: filter 240ms ease, transform 320ms ease;
  width: 100%;
}

.artist-work-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
  width: 100%;
}

.artist-work-thumb::after {
  background: rgba(10, 10, 9, 0.76);
  border: 1px solid rgba(246, 223, 171, 0.34);
  bottom: 14px;
  color: var(--champagne);
  content: "查看大图 ↗";
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0;
  padding: 8px 10px;
  position: absolute;
  right: 14px;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.artist-work-thumb:hover,
.artist-work-thumb:focus-visible {
  filter: brightness(1.06) saturate(1.04);
}

.artist-work-thumb:hover img,
.artist-work-thumb:focus-visible img {
  transform: scale(1.025);
}

.artist-work-thumb:hover::after,
.artist-work-thumb:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.artist-work-thumb.is-empty {
  cursor: default;
}

.artist-work-thumb.is-empty::before {
  color: var(--muted);
  content: "图片暂不可用";
  font-family: var(--sans);
  font-size: 12px;
  left: 50%;
  letter-spacing: 0.12em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.artist-work-thumb.is-empty::after {
  display: none;
}

.artist-work-tile > div:last-child {
  padding: 18px;
}

.artist-work-tile h3 {
  font-size: 20px;
  line-height: 1.45;
}

.artist-empty-state {
  border: 1px solid rgba(216, 189, 130, 0.16);
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
}

.artist-empty-state h3 {
  color: var(--ivory);
  font-size: 28px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  background: rgba(7, 7, 6, 0.96);
  border: 0;
  color: var(--ivory);
  height: 100dvh;
  margin: auto;
  max-height: none;
  max-width: none;
  overflow: hidden;
  padding: clamp(16px, 3vw, 42px);
  width: 100vw;
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}

.image-lightbox-shell {
  display: grid;
  gap: 14px;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  margin: 0 auto;
  max-width: 1680px;
  position: relative;
}

.image-lightbox-viewport {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(216, 189, 130, 0.09), transparent 46%),
    rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(216, 189, 130, 0.18);
  cursor: zoom-in;
  display: grid;
  justify-items: center;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 4vw, 62px);
  position: relative;
  touch-action: pan-y;
}

.image-lightbox-viewport img {
  height: auto;
  max-height: calc(100dvh - 180px);
  max-width: 100%;
  object-fit: contain;
  transition: max-width 240ms ease, transform 240ms ease;
  width: auto;
}

.image-lightbox-viewport.is-zoomed {
  align-items: start;
  cursor: zoom-out;
  justify-items: start;
  touch-action: auto;
}

.image-lightbox-viewport.is-zoomed img {
  max-height: none;
  max-width: 2400px;
}

.image-lightbox-close,
.image-lightbox-nav {
  appearance: none;
  background: rgba(10, 10, 9, 0.84);
  border: 1px solid rgba(246, 223, 171, 0.34);
  color: var(--champagne);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: absolute;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  z-index: 4;
}

.image-lightbox-close:hover,
.image-lightbox-nav:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-nav:focus-visible {
  background: rgba(216, 189, 130, 0.18);
  border-color: rgba(246, 223, 171, 0.72);
  outline: none;
}

.image-lightbox-close {
  font-size: 30px;
  height: 48px;
  right: 14px;
  top: 14px;
  width: 48px;
}

.image-lightbox-nav {
  font-size: 44px;
  height: 64px;
  top: calc(50% - 46px);
  width: 52px;
}

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

.image-lightbox-previous {
  left: 14px;
}

.image-lightbox-next {
  right: 14px;
}

.image-lightbox-meta {
  align-items: baseline;
  display: grid;
  gap: 4px 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 6px 2px 0;
}

.image-lightbox-meta strong {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.image-lightbox-meta span,
.image-lightbox-meta small {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-lightbox-meta small {
  color: var(--muted);
  grid-column: 1 / -1;
}

.image-lightbox-status {
  background: rgba(8, 8, 7, 0.84);
  color: var(--champagne);
  font-family: var(--sans);
  left: 50%;
  margin: 0;
  padding: 10px 14px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1100px) {
  .artist-library-grid,
  .artist-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(100vw - 44px);
  }

  .artist-work-catalog {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 900px) {
  .artist-detail-hero {
    grid-template-columns: 1fr;
  }

  .artist-detail-media {
    justify-self: center;
    max-width: 560px;
    position: relative;
    top: auto;
    width: 100%;
  }

}

@media (max-width: 720px) {
  .artist-library-grid,
  .artist-works-grid {
    grid-template-columns: 1fr;
  }

  .artist-detail-hero {
    padding: 110px 22px 50px;
  }

  .artist-detail-cover {
    min-height: 0;
    padding: 14px;
  }

  .artist-profile-text p {
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 18px;
  }

  .artist-card-cover {
    min-height: 220px;
  }

  .artist-work-catalog {
    width: calc(100vw - 36px);
    margin-top: 26px;
  }

  .artist-work-catalog button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .artist-profile-section ul {
    grid-template-columns: 1fr;
  }

  .artist-work-thumb::after {
    opacity: 0.84;
    transform: translateY(0);
  }

  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox-viewport {
    padding: 54px 12px 18px;
  }

  .image-lightbox-viewport img {
    max-height: calc(100dvh - 170px);
  }

  .image-lightbox-close {
    height: 42px;
    right: 8px;
    top: 8px;
    width: 42px;
  }

  .image-lightbox-nav {
    bottom: 82px;
    height: 48px;
    top: auto;
    width: 42px;
  }

  .image-lightbox-previous {
    left: 8px;
  }

  .image-lightbox-next {
    right: 8px;
  }

  .image-lightbox-meta {
    padding: 4px 8px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .artist-detail-cover-backdrop,
  .artist-work-thumb,
  .artist-work-thumb::after,
  .image-lightbox-viewport img {
    transition: none;
  }
}

/* Standalone narrative pages */
.topbar nav a.is-current {
  color: var(--champagne);
}

.feature-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 26%),
    #101010;
}

.feature-main {
  width: min(1880px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 132px clamp(24px, 4.5vw, 88px) 72px;
}

.feature-heading {
  display: grid;
  max-width: 980px;
  margin-bottom: 54px;
}

.feature-heading h1 {
  margin: 14px 0 18px;
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.feature-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading h1 {
  font-size: clamp(52px, 5vw, 86px);
}

.feature-stats,
.feature-tech {
  margin-top: 0;
}

.feature-stats article {
  min-height: 205px;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.025);
}

.feature-stats strong {
  font-size: clamp(64px, 6vw, 104px);
}

.feature-tech article {
  min-height: 210px;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.018);
}

.feature-tech h2 {
  margin: 22px 0 14px;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

.feature-tech p {
  max-width: 480px;
  margin: 0;
}

.feature-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  min-height: 104px;
  padding: 24px 30px;
  border: 1px solid rgba(216, 189, 130, 0.3);
  background: rgba(216, 189, 130, 0.045);
  color: var(--champagne);
  font-family: var(--sans);
  letter-spacing: 0.1em;
  transition: border-color 220ms ease, background 220ms ease;
}

.feature-next > span {
  color: rgba(216, 189, 130, 0.58);
  font-size: 13px;
}

.feature-next a {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: 0.04em;
}

.feature-next b {
  display: inline-block;
  margin-left: 12px;
  font-size: 20px;
  transition: transform 220ms ease;
}

.feature-next a:hover b {
  transform: translateX(6px);
}

.feature-next:hover {
  border-color: rgba(216, 189, 130, 0.58);
  background: rgba(216, 189, 130, 0.075);
}

.home-next {
  position: absolute;
  right: clamp(20px, 4vw, 62px);
  bottom: 18px;
  left: clamp(20px, 4vw, 62px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 189, 130, 0.26);
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.home-next > span {
  color: rgba(216, 189, 130, 0.58);
  font-size: 10px;
}

.home-next b {
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
  transition: transform 220ms ease;
}

.home-next a:hover b {
  transform: translateX(6px);
}

.page-next {
  width: min(1420px, calc(100vw - 120px));
  margin-right: auto;
  margin-left: auto;
}

.final-next {
  margin-top: 36px;
  margin-bottom: 64px;
}

.feature-submit {
  min-height: 490px;
  min-width: 0;
}

.feature-submit .drop-zone {
  min-height: 490px;
  min-width: 0;
}

.feature-submit .preview-panel,
.feature-submit .preview-stage,
.feature-submit .submit-form {
  min-width: 0;
}

.submit-form label {
  display: grid;
  gap: 8px;
}

.submit-form label > span {
  color: rgba(216, 189, 130, 0.72);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 220ms ease;
}

.form-status.is-visible {
  opacity: 1;
}

.submission-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.submission-flow article {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.submission-flow article:last-child {
  border-right: 0;
}

.submission-flow span {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 11px;
}

.submission-flow strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
}

.submission-flow p {
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 16px;
}

.inspiration-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 130, 0.18);
  background: #171614;
}

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

.inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  transition: filter 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.inspiration-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(7, 6, 5, 0.86));
}

.inspiration-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.inspiration-card span {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.inspiration-card strong {
  display: block;
  margin-top: 8px;
  font-size: 27px;
  font-weight: 500;
}

.inspiration-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.inspiration-card:hover img {
  filter: saturate(1) brightness(0.94);
  transform: scale(1.035);
}

.inspiration-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.inspiration-action p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.8;
}

.plan-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-roadmap article {
  min-height: 330px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.plan-roadmap article:last-child {
  border-right: 0;
}

.plan-roadmap span,
.plan-callout span {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.plan-roadmap strong {
  display: block;
  margin-top: 70px;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
}

.plan-roadmap p,
.plan-callout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
}

.plan-callout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 44px;
  padding: 34px;
  border: 1px solid rgba(216, 189, 130, 0.24);
  background: rgba(216, 189, 130, 0.045);
}

.plan-callout h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
}

.content-band {
  margin-top: 58px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.band-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  column-gap: 40px;
  align-items: end;
}

.band-heading .eyebrow {
  grid-column: 1;
}

.band-heading h2 {
  grid-column: 1;
  margin: 13px 0 0;
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
}

.band-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
}

.capability-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 56px minmax(220px, 0.75fr) minmax(320px, 1.25fr) 100px;
  gap: 22px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.capability-list span,
.capability-list em,
.guide-list span,
.rights-note > span,
.curation-directions > article > span {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.15em;
}

.capability-list strong {
  font-size: 20px;
  font-weight: 500;
}

.capability-list p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
}

.capability-list em {
  color: rgba(216, 189, 130, 0.62);
  text-align: right;
}

.guide-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 42px;
  margin-top: 34px;
}

.guide-list {
  border-top: 1px solid var(--line);
}

.guide-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 112px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.guide-list strong {
  font-size: 20px;
  font-weight: 500;
}

.guide-list p,
.rights-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
}

.rights-note {
  padding: 30px;
  border: 1px solid rgba(216, 189, 130, 0.24);
  background: rgba(216, 189, 130, 0.04);
}

.rights-note h3 {
  margin: 18px 0 0;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.4;
}

.rights-note dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.rights-note dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
}

.rights-note dt {
  color: var(--champagne);
}

.rights-note dd {
  margin: 0;
  color: var(--muted);
}

.curation-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.curation-directions article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.curation-directions article:last-child {
  border-right: 0;
}

.curation-directions h3 {
  margin: 42px 0 0;
  font-size: 26px;
  font-weight: 500;
}

.curation-directions p {
  min-height: 70px;
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
}

.palette {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.palette i {
  width: 34px;
  height: 10px;
  background: var(--swatch);
}

.translation-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto 1fr auto auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 25px 0;
}

.translation-row span {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.translation-row b {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.translation-row i {
  color: rgba(216, 189, 130, 0.42);
  font-style: normal;
  text-align: center;
}

@media (max-width: 980px) {
  .feature-main {
    padding-top: 116px;
  }

  .submission-flow,
  .inspiration-grid,
  .plan-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-roadmap article:nth-child(2) {
    border-right: 0;
  }

  .plan-roadmap article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .band-heading,
  .guide-columns {
    grid-template-columns: 1fr;
  }

  .band-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
    margin-top: 18px;
  }

  .capability-list article {
    grid-template-columns: 44px minmax(180px, 0.8fr) minmax(260px, 1.2fr);
  }

  .capability-list em {
    display: none;
  }

  .curation-directions {
    grid-template-columns: 1fr;
  }

  .curation-directions article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .curation-directions article:last-child {
    border-bottom: 0;
  }

  .curation-directions p {
    min-height: 0;
  }

  .translation-row {
    grid-template-columns: auto 1fr auto;
  }

  .translation-row i {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-main {
    padding: 94px 18px 44px;
  }

  .feature-heading {
    margin-bottom: 28px;
  }

  .feature-heading h1,
  .compact-heading h1 {
    margin-top: 10px;
    font-size: 40px;
    line-height: 1.2;
  }

  .feature-heading > p:last-child {
    font-size: 14px;
    word-break: break-all;
  }

  .feature-submit .drop-zone span {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .feature-submit .drop-zone small,
  .feature-next a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .submission-flow,
  .inspiration-grid,
  .plan-roadmap {
    grid-template-columns: 1fr;
  }

  .plan-roadmap article,
  .plan-roadmap article:nth-child(2) {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-roadmap article:last-child {
    border-bottom: 0;
  }

  .plan-roadmap strong {
    margin-top: 40px;
  }

  .plan-callout {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .submission-flow article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .submission-flow article:last-child {
    border-bottom: 0;
  }

  .inspiration-grid {
    grid-auto-rows: 320px;
  }

  .inspiration-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-next {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 22px 20px;
  }

  .home-next {
    right: 18px;
    bottom: 12px;
    left: 18px;
    font-size: 11px;
  }

  .page-next {
    width: calc(100vw - 36px);
  }

  .content-band {
    margin-top: 40px;
    padding-top: 34px;
  }

  .band-heading h2 {
    font-size: 34px;
  }

  .capability-list article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .capability-list p {
    grid-column: 2;
  }

  .guide-columns {
    gap: 28px;
  }

  .rights-note {
    padding: 24px 20px;
  }

  .translation-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
  }

  .translation-row span,
  .translation-row b {
    white-space: normal;
  }
}
