:root {
  --paper: #f6f3ee;
  --ink: #171614;
  --muted: #7a756c;
  --line: #e4dfd6;
  --btn: #171614;
  --nav-h: 68px;
  --max: 1200px;
  --narrow: 680px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: light;
  background: var(--paper);
}
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Optima, "Optima Regular", "PingFang TC", "Songti TC", serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.wrap { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.narrow { width: min(var(--narrow), calc(100% - 56px)); margin: 0 auto; }

.bi { display: inline-flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.bi b { font-weight: 400; }
.bi i { font-style: normal; font-size: 0.72em; letter-spacing: 0.03em; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: #f6f3ee;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  gap: 8px;
}
.btn .bi i { color: rgba(246,243,238,.65); }
.btn:hover { opacity: 0.86; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  color: #f6f3ee;
  transition: background .3s, color .3s;
}
.nav.is-solid,
.nav.is-page {
  background: rgba(255,255,255,.78);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
}
.nav-links a { opacity: 0.72; }
.nav-links a:hover,
.nav-links a.is-on { opacity: 1; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lang-switch a { opacity: 0.42; }
.lang-switch a:hover,
.lang-switch a.is-on { opacity: 1; }
.lang-switch a + a::before {
  content: "|";
  margin-right: 8px;
  opacity: 0.35;
}

.burger {
  display: none;
  width: 22px;
  height: 14px;
  position: relative;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger::before { top: 0; }
.burger::after { bottom: 0; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
}
.hero-art {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 72px;
}
.hero-copy h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.hero-copy .en-lg {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.78;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.concept-stage {
  padding-top: var(--nav-h);
  background: var(--paper);
}
.concept-bg {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.concept-foreword {
  padding: 48px 0 80px;
}
.concept-foreword h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.concept-foreword h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 40px 0 16px;
}
.concept-foreword sup.ref {
  font-size: 0.72em;
  line-height: 0;
  margin-left: 1px;
}
.concept-foreword sup.ref a { color: var(--muted); }
.concept-notes {
  margin: 8px 0 0;
  padding-left: 1.25em;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.concept-notes li { margin: 0 0 8px; padding-left: 0.25em; }
.concept-notes li:target { color: var(--ink); }

/* ——— Pages ——— */
.page-title { padding: calc(var(--nav-h) + 48px) 0 8px; }
.page-title h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-title .en-lg {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 15px;
}
.page-title p.lead { max-width: 46em; margin: 16px 0 0; color: var(--ink); line-height: 1.65; }

.section { padding: 56px 0 88px; }
.section.tight { padding: 28px 0 88px; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 0 0 32px;
}
.sec-head h2 { font-size: 22px; font-weight: 400; margin: 0; letter-spacing: -0.02em; }
.sec-head .more { font-size: 13px; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.manifesto {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto .zh {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.manifesto .en { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

.bilingual { margin: 0 0 1.35em; }
.bilingual .zh { font-size: 16px; line-height: 1.85; margin-bottom: 0.4em; }
.bilingual .en { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ——— Product / work grid ——— */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}
.shop-mix {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}
.shop-mix:not(.is-mixed) {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.shop-row {
  display: flex;
  gap: 40px 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}
.shop-row .product {
  flex: none;
  width: min(100%, calc(var(--aw) / 1980 * 100%));
  max-width: 100%;
  min-width: 0;
  text-align: center;
}
.shop-mix .product .thumb,
.shop-row .product .thumb {
  aspect-ratio: var(--aw, 3) / var(--ah, 2);
  overflow: hidden;
  background: #e8e2d8;
  width: 100%;
}
.shop-mix .product img,
.shop-row .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-row .product .meta {
  position: static;
  padding: 14px 0 0;
  background: none;
  pointer-events: auto;
  text-align: center;
}
.shop-row .product h3,
.shop-row .product .en-title,
.shop-row .product .year,
.shop-row .product .price { color: inherit; }
.shop-row .product h3 { color: var(--ink); }

html:has(body.is-collect),
body.is-collect {
  background: #fff;
}
body.is-collect .nav.is-page,
body.is-collect .nav.is-solid {
  background: #fff;
  backdrop-filter: none;
}
body.is-collect .shop-mix .product .thumb,
body.is-collect .shop-row .product .thumb {
  background: #fff;
}
body.is-collect .lb {
  background: #fff;
}
body.is-collect .lb-tools button {
  border-color: #e8e2d8;
}
.home-shop {
  background: #fff;
}
.home-shop .shop-mix .product .thumb,
.home-shop .shop-row .product .thumb {
  background: #fff;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 8px;
  background: #f5f5f5;
}
.work-grid.is-mixed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-row,
.shot-row {
  display: grid;
  gap: 0;
  width: 100%;
}
.work-row.is-2,
.shot-row.is-2 { grid-template-columns: 1fr 1fr; }
.shot-row.is-3 { grid-template-columns: 1fr 1fr 1fr; }
.work-row.is-4,
.shot-row.is-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.work-row.is-1,
.shot-row.is-1 { grid-template-columns: 1fr; }
.shot-row.is-1 .shot {
  aspect-ratio: auto;
  background: #fff;
}
.shot-row.is-1 .shot img,
.shot-row.is-1 video.shot {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.shot-row.is-1 .shot-yt {
  aspect-ratio: 2 / 1;
}
.shot-row.is-1 .shot-yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-row.is-1 .work-card .thumb { aspect-ratio: auto; }
.work-row.is-1 .work-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.works-index { padding-left: 0; padding-right: 0; padding-bottom: 0; }
.works-index .sec-head { padding-bottom: 18px; }

.product { position: relative; display: block; }
.product .thumb {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #e8e2d8;
  position: relative;
}
.work-card { display: block; color: #fff; }
.work-card .thumb {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter .45s ease, transform .6s ease;
}
.work-card:hover img {
  filter: none;
  transform: scale(1.06);
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product:hover img { transform: scale(1.03); }
.shop-grid .product .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.46));
  pointer-events: none;
}
.shop-grid .product h3,
.shop-grid .product .en-title,
.shop-grid .product .year,
.shop-grid .product .price { color: #fff; }
.product .meta { padding: 12px 0 0; }
.product h3 {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
.en-title {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.product .year { font-size: 12px; color: var(--muted); margin-top: 6px; }
.product .price {
  margin-top: 8px;
  font-size: 14px;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  padding: 6px 10px;
  letter-spacing: 0.04em;
}
.product[data-status="sold"] img { filter: grayscale(0.15); }

/* ——— Work detail ——— */
.work-head { padding: calc(var(--nav-h) + 40px) 0 8px; }
.work-head h1 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; margin: 0 0 4px; }
.work-head .en {
  font-size: 15px;
  color: var(--muted);
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.facts b { font-weight: 400; margin-right: 6px; color: var(--ink); }
.award-note { margin-top: 12px; font-size: 14px; }
.enquire { margin-top: 24px; }

.scatter {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #fff;
  padding-top: var(--nav-h);
}
.scatter-stage {
  position: relative;
  width: 100%;
}
.scatter-art {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.scatter-pins { position: absolute; inset: 0; }
.scatter-pin {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.35vw;
  color: var(--ink);
  white-space: nowrap;
}
.scatter-pin img.mini {
  width: clamp(7px, 1.15vw, 20px);
  height: clamp(6px, 0.92vw, 16px);
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 1px 6px rgba(0,0,0,.22);
  border-radius: 4px;
}
.scatter-pin .name {
  font-size: clamp(6px, 0.62vw, 10px);
  white-space: nowrap;
  line-height: 1.2;
  max-width: 12em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scatter-pin:hover { z-index: 8; }
@media (max-width: 900px) {
  .scatter-pin .name { display: none; }
  .scatter-pin { gap: 0; }
}
.pin-detail {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 48px));
  z-index: 40;
  pointer-events: none;
  color: var(--ink);
  background: #f4f4f4;
  padding: 20px 24px;
  gap: 28px;
  align-items: flex-start;
  white-space: normal;
}
.scatter-pin:hover .pin-detail { display: flex; }
.pin-detail .preview {
  width: min(42vw, 420px);
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  background: #eee;
  border-radius: 12px;
}
.pin-detail .copy { min-width: 0; flex: 1; }
.pin-detail h1 {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.pin-detail .en-lg {
  font-size: 15px;
  opacity: 0.78;
  margin: 0 0 12px;
}
.pin-detail .zh {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  white-space: normal;
}
.pin-detail .en {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.shot-grid-wrap {
  width: 100%;
  background: #f5f5f5;
}
.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 8px;
  background: #f5f5f5;
}
.shot-grid.is-mixed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shot-cell {
  margin: 0;
  min-width: 0;
}
.shot-cell[data-wide] .shot {
  aspect-ratio: auto;
  background: #fff;
}
.shot-cell[data-wide] .shot img,
.shot-cell[data-wide] video.shot {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.shot-cap {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  padding: 8px 4px 4px;
}
.shot {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #fff;
}
.shot img,
.shot-cell video.shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot img { cursor: zoom-in; }
.shot-yt {
  overflow: hidden;
  background: #000;
  padding: 0;
  border: 0;
  width: 100%;
  cursor: pointer;
}
.shot-yt img {
  cursor: pointer;
}
.yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
}
.yt-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-30%, -50%);
}
.shot-yt:has(iframe) .yt-play { display: none; }
.shot-yt.is-paused .yt-play { display: block; }
.yt-dock {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 8px 10px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  pointer-events: auto;
}
.shot-yt:has(iframe) .yt-dock { display: flex; }
.yt-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  position: relative;
}
.yt-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #fff;
  pointer-events: none;
}
.yt-time {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 4.5em;
}
.yt-btn {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  cursor: pointer;
  box-sizing: border-box;
}
.yt-pause::before,
.yt-pause::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 2px;
  height: 8px;
  background: #fff;
}
.yt-pause::before { left: 7px; }
.yt-pause::after { left: 12px; }
.yt-vbar {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  position: relative;
  flex: 0 0 36px;
}
.yt-vbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  pointer-events: none;
}
.yt-fs svg,
.yt-mute svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.yt-mute svg {
  fill: #fff;
}
.yt-mute .yt-slash {
  display: none;
  fill: none;
}
.shot-yt.is-muted .yt-wave { display: none; }
.shot-yt.is-muted .yt-slash { display: block; }
.shot-yt:fullscreen,
.shot-yt:-webkit-full-screen {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 0;
}
.shot-yt:fullscreen iframe,
.shot-yt:-webkit-full-screen iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
.shot-yt img {
  cursor: pointer;
}
.shot-yt iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 133.33%;
  height: 150%;
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
  pointer-events: none;
}

.stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 48px;
}
.stage .n { font-size: 12px; color: var(--muted); letter-spacing: 0.12em; }
.stage h3 { font-size: 16px; margin: 6px 0 8px; font-weight: 400; }
.stage p { margin: 0; color: var(--muted); font-size: 13px; }
.concept-map { margin-top: 48px; }
.concept-map img { width: 100%; cursor: zoom-in; }

.cv-block { padding: 8px 0 28px; }
.cv-block h3 { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.cv-row { display: grid; grid-template-columns: 148px 1fr; gap: 8px 24px; padding: 8px 0; }
.cv-year { font-size: 13px; color: var(--muted); }
.cv-body .t { font-size: 15px; }
.cv-body .d { font-size: 13px; color: var(--muted); margin-top: 2px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid h2 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; margin: 0 0 14px; }
.links-row { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 18px; }
.contact-grid a.link { border-bottom: 1px solid currentColor; }

.films { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.films iframe { width: 100%; aspect-ratio: 16/9; border: 0; background: #111; }

.note {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 28px 0 48px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mix-bin,
.mix-bin[hidden] {
  display: none !important;
}
.lb {
  position: fixed;
  inset: 0;
  background: rgba(246,243,238,.96);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lb.is-open { display: flex; }
.lb-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 48px;
  max-width: calc(100vw - 96px);
  max-height: calc(100vh - 40px);
}
.lb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  flex: 1 1 auto;
  min-width: 0;
}
.lb.is-zoom .lb-stage { cursor: grab; }
.lb.is-zoom .lb-stage.is-drag { cursor: grabbing; }
.lb-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
.lb.is-shop .lb-stage img,
.lb.is-info .lb-stage img {
  max-width: min(72vw, 1100px);
  max-height: 88vh;
}
.lb-tools {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.lb-tools button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  border-radius: 2px;
}
.lb-tools button:hover { background: var(--paper); }
.lb-tools button:disabled { opacity: 0.35; cursor: default; }
.lb-dock {
  display: none;
}
.lb.is-shop .lb-dock,
.lb.is-info .lb-dock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex: 0 0 min(320px, 32vw);
  width: min(320px, 32vw);
  min-width: 0;
  padding: 8px 0;
}
.lb-copy { min-width: 0; }
.lb-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.lb-meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
}
.lb-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 4px;
}
.lb-price {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}
.lb-price[hidden] { display: none !important; }
.lb-buy {
  flex-shrink: 0;
  margin: 0;
  padding: 8px 16px;
  font-size: 13px;
}
.lb-buy[hidden] { display: none !important; }
.lb .x, .lb .prev, .lb .next {
  position: absolute; color: var(--ink); font-size: 24px; width: 48px; height: 48px;
  z-index: 3;
}
.lb .x { top: 12px; right: 12px; }
.lb .prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb .next { right: 8px; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
  .films, .stages, .contact-grid { grid-template-columns: 1fr; }
  .cv-row { grid-template-columns: 1fr; gap: 2px; }
  .burger { display: block; }
  .nav-end { gap: 16px; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    padding: 20px 28px 32px;
    gap: 16px;
    display: none;
  }
  body.is-collect .nav-links { background: #fff; }
  .nav.is-open .nav-links { display: flex; }
  .work-row.is-4,
  .shot-row.is-4,
  .shot-row.is-3 { grid-template-columns: 1fr 1fr; }
  .shop-row { gap: 36px 24px; }
  .lb-body {
    flex-direction: column;
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    gap: 16px;
  }
  .lb.is-shop .lb-stage img,
  .lb.is-info .lb-stage img {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 220px);
  }
  .lb.is-shop .lb-dock,
  .lb.is-info .lb-dock {
    flex: none;
    width: 100%;
    padding: 4px 8px 12px;
    justify-content: flex-start;
  }
  .lb-actions { width: 100%; }
}
@media (max-width: 560px) {
  .work-card .meta { padding: 14px 16px; }
  .wrap, .narrow, .nav-inner, .hero-copy, .footer-inner { width: calc(100% - 36px); }
  .shop-mix { gap: 40px; }
  .shop-row { gap: 40px; }
}
