:root {
  --ink: #141114;
  --ink-soft: #484247;
  --muted: #766d74;
  --paper: #f8f7f6;
  --paper-light: #ffffff;
  --hot-pink: #ff4e9d;
  --hot-pink-soft: #ff8bbb;
  --wine: #241b20;
  --white: #fffafd;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(20, 17, 20, 0.11);
  --line-soft: rgba(20, 17, 20, 0.07);
  --shadow: 0 12px 34px rgba(38, 24, 33, 0.045);
  --shadow-soft: 0 1px 0 rgba(20, 17, 20, 0.05);
  --blur: none;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Charity gala repositioning */
.hero-entry {
  min-height: min(820px, calc(100svh - 24px)) !important;
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 0.82fr) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 74px) !important;
  padding-top: clamp(92px, 10vw, 128px) !important;
}

.charity-eyebrow {
  margin-top: 16px !important;
  color: rgba(33, 22, 26, 0.62) !important;
}

.hero-actions .as-button,
.home-collection-actions .as-button {
  cursor: pointer;
  font: inherit;
}

.charity-trust-section {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: clamp(56px, 8vw, 104px) auto;
}

.charity-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.charity-trust-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(33, 22, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(33, 22, 26, 0.055);
}

.charity-trust-grid span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #21161a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.charity-trust-grid h3 {
  margin: 22px 0 10px;
  color: #21161a;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.18;
}

.charity-trust-grid p {
  margin: 0;
  color: rgba(33, 22, 26, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.home-collection-block.is-student {
  border-color: rgba(255, 78, 157, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 249, 0.82)),
    radial-gradient(circle at 95% 0, rgba(255, 78, 157, 0.1), transparent 30%) !important;
}

.home-collection-block.is-artist-support {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.student-share-panel {
  border-color: rgba(255, 78, 157, 0.18) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 249, 0.92)),
    radial-gradient(circle at 100% 0, rgba(255, 78, 157, 0.12), transparent 32%) !important;
}

.student-share-panel p {
  color: rgba(33, 22, 26, 0.72) !important;
  font-weight: 700;
}

.student-share-primary,
.student-share-secondary {
  min-height: 48px;
  touch-action: manipulation;
}

.maker-credit {
  width: min(100% - 40px, 1180px);
  margin: 34px auto 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 22, 26, 0.1);
  color: rgba(33, 22, 26, 0.48);
  font-size: 13px;
  line-height: 1.7;
}

.maker-credit p {
  margin: 0;
}

.maker-credit a {
  display: inline-flex;
  margin-top: 4px;
  color: rgba(33, 22, 26, 0.64);
  text-decoration: none;
}

.share-poster-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 14, 16, 0.68);
}

.share-poster-overlay[hidden] {
  display: none;
}

.share-poster-dialog {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  max-height: min(92svh, 860px);
  gap: 14px;
  overflow: auto;
  padding: 16px;
  border-radius: 8px;
  background: #fffaf8;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.28);
}

.share-poster-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 22, 26, 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.share-poster-preview {
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.share-poster-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.share-poster-hint {
  margin: 0;
  color: rgba(33, 22, 26, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

body.share-poster-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .hero-entry {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    padding-top: 92px !important;
  }

  .hero-copy-block {
    order: 1;
  }

  .charity-trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {

  .charity-trust-section,
  .maker-credit {
    width: min(100% - 28px, 520px);
  }

  .charity-trust-grid article {
    min-height: 0;
    padding: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: transparent;
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

dialog:focus,
dialog:focus-visible {
  outline: 0;
}

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

button {
  font: inherit;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  overflow: clip;
  background:
    linear-gradient(180deg, #f7f6f5 0%, #ffffff 42%, #f7f6f5 100%);
}

.spline-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  pointer-events: none;
}

.gradient-field {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.12;
  transform: translate3d(0, 0, 0) rotate(-8deg);
  animation: flowDrift 18s var(--ease) infinite alternate;
  will-change: transform;
}

.field-one {
  width: 48vw;
  height: 34vw;
  left: 12vw;
  top: 10vh;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 111, 174, 0.34), transparent 48%),
    radial-gradient(circle at 68% 60%, rgba(255, 111, 174, 0.18), transparent 58%);
}

.field-two {
  width: 56vw;
  height: 42vw;
  right: -10vw;
  top: 42vh;
  animation-delay: -6s;
  background:
    radial-gradient(circle at 32% 52%, rgba(255, 71, 164, 0.3), transparent 44%),
    radial-gradient(circle at 72% 30%, rgba(255, 225, 238, 0.34), transparent 56%);
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(90deg, rgba(8, 7, 8, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 7, 8, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 18%, rgba(255, 111, 174, 0.14) 0 1px, transparent 2px);
  background-size: 56px 56px, 56px 56px, 22px 22px;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-bg::before {
  inset: 12% 6% auto auto;
  width: 40%;
  height: 42%;
  border: 1px solid rgba(255, 111, 174, 0.07);
  opacity: 0.24;
  clip-path: polygon(0 0, 74% 0, 74% 18%, 52% 18%, 52% 34%, 92% 34%, 92% 64%, 66% 64%, 66% 82%, 100% 82%, 100% 100%, 16% 100%, 16% 78%, 0 78%);
}

.site-bg::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255, 111, 174, 0.06));
}

@keyframes flowDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(4%, 3%, 0) scale(1.12);
  }
}

.museum-bar {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  min-height: 58px;
  margin: 12px auto 0;
  padding: 8px 10px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(20, 17, 20, 0.045);
  backdrop-filter: var(--blur);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  min-width: 88px;
  color: var(--ink);
  font-weight: 800;
  font-style: italic;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  background: #151215;
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(255, 78, 157, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.top-nav {
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: transparent;
}

.top-nav a {
  padding: 8px 12px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.top-nav a:hover {
  background: rgba(20, 17, 20, 0.05);
}

main {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 96px;
}

#artist-works,
#student-works,
#guide,
#research,
#claim,
#qr {
  scroll-margin-top: 118px;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 98px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
  padding: 48px 0 32px;
}
.poster-bottom,
.hero-actions,
.exhibition-strip {
  position: relative;
  z-index: 1;
}

.maze-word {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.maze-word span {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 800;
  line-height: 0.88;
  text-shadow:
    0 0 4px #fff,
    0 0 12px rgba(255, 78, 157, 0.58),
    0 0 28px rgba(255, 78, 157, 0.34);
  -webkit-text-stroke: 2px rgba(255, 78, 157, 0.82);
}

.maze-word span::after {
  content: "";
  position: absolute;
  inset: 18%;
  opacity: 0.38;
  background:
    linear-gradient(26deg, transparent 32%, rgba(255, 78, 157, 0.24) 33% 35%, transparent 36%),
    linear-gradient(152deg, transparent 45%, rgba(255, 78, 157, 0.18) 46% 48%, transparent 49%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.maze-word span {
  min-width: 168px;
  min-height: 150px;
  font-size: 138px;
}

.milou-word {
  margin: 20px 0 0;
  color: var(--wine);
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  font-style: italic;
}

.poster-side-copy,
.chinese-note{
  color: var(--wine);
  font-weight: 800;
}

.poster-side-copy {
  display: grid;
  align-content: center;
  gap: 4px;
  font-size: 31px;
  line-height: 1.05;
}

.hero-section h1 {
  margin: 0;
  color: rgba(8, 7, 8, 0.84);
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.14;
  text-align: right;
}

.hero-section h1 em {
  color: #080708;
  font-style: italic;
  font-weight: 700;
}

.chinese-note {
  display: grid;
  gap: 2px;
  justify-items: start;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.mirror-glyphs {
  margin-top: -12px;
}

.mirror-glyphs img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.52;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(0.98);
}

.poster-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}
.section-label {
  margin: 0 0 14px;
  color: rgba(36, 27, 32, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-panel h2,
.section-heading h2,
.contact-section h2{
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

.primary-link,
.secondary-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.primary-link {
  padding: 0 22px;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  backdrop-filter: var(--blur);
}

.secondary-link {
  padding: 0 22px;
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: var(--blur);
}

.exhibition-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 30px;
  align-items: start;
  margin: 8px 0 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 16, 18, 0.09);
}

.exhibition-strip p {
  margin: 0;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 20px;
  line-height: 1.72;
  font-weight: 400;
}

.exhibition-strip div {
  display: grid;
  gap: 8px;
  color: rgba(8, 7, 8, 0.78);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

.guide-runway {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
  margin: 0 0 22px;
  padding: 28px 0 76px;
  border-top: 1px solid var(--line);
}

.guide-header {
  position: sticky;
  top: 96px;
}

.guide-header h2 {
  max-width: 8em;
  margin: 0;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

.chapter-track {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.chapter-card {
  position: relative;
  top: auto;
  min-height: 136px;
  display: grid;
  grid-template-columns: 78px minmax(120px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.chapter-card span {
  color: rgba(255, 78, 157, 0.72);
  font-family: "Noto Serif SC", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.chapter-card h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 27px;
  line-height: 1.16;
  font-weight: 500;
}

.chapter-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.intro-panel,
.glass-panel {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  padding: clamp(28px, 5vw, 54px);
}

.intro-panel h2,
.section-heading h2,
.contact-section h2 {
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.18;
}

.intro-panel p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.95;
  font-weight: 400;
}

.theme-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 82px;
}

.theme-card,
.collection-item,
.work-tile {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.theme-card {
  min-height: 166px;
  padding: 20px 0;
  border-radius: 8px;
  border-width: 1px 0 0;
  background: transparent;
  box-shadow: none;
}

.theme-card span {
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.theme-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}

.collection-portal {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: stretch;
  padding: 52px 0 56px;
  border-top: 1px solid var(--line);
}

.collection-portal:last-child {
  border-bottom: 1px solid var(--line);
}

.portal-copy p:not(.section-label),
.collection-hero p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}
.claim-section,
.collections-section,
.qr-section,
.contact-section {
  padding: 30px 0 92px;
}

.work-tile {
  position: relative;
  min-height: 384px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  border-radius: 2px;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.work-tile.is-preview {
  min-height: 330px;
  scroll-snap-align: start;
}

.work-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(38, 24, 33, 0.1);
}

.work-tile img {
  width: 100%;
  height: 100%;
  min-height: 384px;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
  transition: transform 520ms var(--ease);
}

.work-tile.is-preview img {
  min-height: 330px;
}

.work-tile:hover img {
  transform: scale(1.045);
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%, rgba(12, 8, 10, 0.62)),
    linear-gradient(90deg, rgba(255, 78, 157, 0.08), transparent 36%);
}

.work-tile.is-student img {
  filter: saturate(1.04) contrast(0.98);
}

.work-tile.is-student::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%, rgba(12, 8, 10, 0.58)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 50%);
}

.claim-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.claim-flow article {
  min-height: 188px;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.claim-flow span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--hot-pink);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 13px;
  font-weight: 700;
}

.claim-flow h3 {
  margin: 22px 0 10px;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
}

.claim-flow p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 400;
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.collection-item {
  min-height: 112px;
  padding: 18px;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--wine);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

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

.qr-entry {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.qr-image-wrap {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: #fff;
}

.qr-image-wrap img {
  width: 132px;
  height: 132px;
}

.qr-entry span {
  color: rgba(36, 27, 32, 0.54);
  font-size: 11px;
  font-weight: 800;
}

.qr-entry h3 {
  margin: 8px 0 10px;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 500;
}

.qr-entry p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.text-link {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.glass-panel {
  padding: clamp(28px, 5vw, 58px);
}

.glass-panel p:not(.section-label) {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
}

.as-button {
  cursor: pointer;
}

.feedback-page .museum-bar {
  margin-bottom: 0;
}

.feedback-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 90px;
}

.feedback-main.is-simple {
  width: min(780px, calc(100% - 32px));
}

.feedback-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.feedback-hero h1 {
  margin: 0;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(52px, 10vw, 116px);
  line-height: 0.98;
  font-weight: 800;
}

.feedback-hero p:not(.section-label) {
  max-width: 42rem;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.feedback-form {
  max-width: none;
  display: grid;
  gap: 22px;
}

.form-section {
  display: grid;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 16, 18, 0.08);
}

.form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.compact-section {
  border-bottom: 0;
  padding-bottom: 0;
}

.form-section h2{
  margin: 0;
  color: var(--wine);
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 500;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(18, 16, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  font: inherit;
  font-weight: 500;
  outline: 0;
  backdrop-filter: var(--blur);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 116px;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: rgba(255, 78, 157, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 78, 157, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feedback-form ::placeholder {
  color: rgba(72, 66, 71, 0.42);
}

.hidden-field {
  display: none;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.local-submit-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--wine);
  border: 1px solid rgba(255, 78, 157, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.submit-button {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.success-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.success-panel {
  max-width: 760px;
  text-align: center;
}

.collection-hero p:not(.section-label) {
  max-width: 640px;
}

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

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.16);
  }
}

.work-spec {
  margin: 14px 0 22px;
  color: var(--muted);
  font-weight: 500;
}

.tab-button.is-active {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  max-width: calc(100vw - 32px);
  padding: 11px 15px;
  color: #fff;
  border-radius: 999px;
  background: rgba(35, 25, 33, 0.82);
  box-shadow: 0 18px 46px rgba(35, 25, 33, 0.2);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
  backdrop-filter: var(--blur);
  font-size: 13px;
  font-weight: 600;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 880px) {
  .museum-bar {
    top: 8px;
  }

  .top-nav {
    display: none;
  }

  main {
    width: min(100% - 24px, 540px);
  }

  .hero-section {
    min-height: auto;
    gap: 22px;
    padding: 42px 0 34px;
  }

  .maze-word {
    gap: 10px;
  }

  .maze-word span {
    min-width: 132px;
    min-height: 118px;
    font-size: 108px;
  }

  .milou-word {
    margin: 0;
    font-size: 48px;
  }

  .poster-side-copy {
    font-size: 25px;
  }

  .hero-section h1 {
    font-size: 43px;
    text-align: left;
  }

  .chinese-note {
    grid-auto-flow: column;
    justify-content: start;
    font-size: 31px;
  }

  .mirror-glyphs {
    margin-top: 0;
  }

  .mirror-glyphs img {
    max-height: 190px;
    object-position: center;
  }

  .poster-bottom {
    grid-template-columns: 1fr;
  }

  .exhibition-strip {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .exhibition-strip p {
    font-size: 18px;
  }

  .exhibition-strip div {
    font-size: 24px;
  }

  .guide-runway {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 56px;
  }

  .guide-header {
    position: static;
  }

  .guide-header h2 {
    max-width: 9em;
  }

  .chapter-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .chapter-card span {
    font-size: 28px;
  }

  .chapter-card h3 {
    font-size: 24px;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 8px;
  }

  .theme-rail,
  .claim-flow,
  .collection-list,
  .qr-grid,
  .field-grid{
    grid-template-columns: 1fr;
  }

  .feedback-main {
    width: min(100% - 24px, 540px);
    padding: 50px 0 68px;
  }

  .feedback-hero h1 {
    font-size: 52px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .collection-portal {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0 32px;
  }

  .theme-rail {
    margin-bottom: 64px;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    max-width: none;
    margin-top: 12px;
  }

  .intro-panel h2,
  .section-heading h2,
  .contact-section h2,
  .qr-entry h3 {
    font-size: 31px;
  }

  .qr-entry {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .qr-image-wrap img {
    width: 94px;
    height: 94px;
  }

  .work-tile,
  .work-tile img {
    min-height: 430px;
  }

  .work-tile.is-preview,
  .work-tile.is-preview img {
    min-height: 360px;
  }

  .work-spec {
    margin: 12px 0 18px;
    line-height: 1.55;
  }
}

@media (max-width: 460px) {
  .museum-bar {
    width: calc(100% - 16px);
  }

  main {
    width: calc(100% - 18px);
  }

  .maze-word span {
    min-width: 112px;
    min-height: 104px;
    font-size: 96px;
  }

  .milou-word {
    font-size: 42px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .mirror-glyphs img {
    max-height: 156px;
    object-position: center;
  }
  .claim-section,
  .collections-section,
  .qr-section,
  .contact-section {
    padding-bottom: 66px;
  }

  .qr-entry {
    grid-template-columns: 1fr;
  }

  .qr-image-wrap {
    width: fit-content;
  }

  .work-tile,
  .work-tile img {
    min-height: 392px;
  }
}

/* Editorial art-institution refresh */
:root {
  --ink: #151314;
  --ink-soft: #514b4e;
  --muted: #82777c;
  --paper: #fbfaf8;
  --paper-light: #ffffff;
  --hot-pink: #c92d68;
  --hot-pink-soft: #f4a2be;
  --ruby-glass: rgba(153, 35, 60, 0.13);
  --wine: #2b171c;
  --white: #fffdfc;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-soft: rgba(255, 255, 255, 0.56);
  --line: rgba(21, 19, 20, 0.14);
  --line-soft: rgba(21, 19, 20, 0.08);
  --shadow: 0 28px 70px rgba(43, 23, 28, 0.08);
  --shadow-soft: 0 1px 0 rgba(21, 19, 20, 0.06);
}

html {
  background: var(--paper);
  overflow-x: clip;
}

body {
  background: #fbfaf8;
  overflow-x: clip;
}

.site-bg {
  background:
    linear-gradient(180deg, #fbfaf8 0%, #ffffff 42%, #f6f3f0 100%),
    repeating-linear-gradient(90deg, rgba(43, 23, 28, 0.035) 0 1px, transparent 1px 18px);
}

.spline-canvas {
  opacity: 0.1;
}

.gradient-field {
  border-radius: 0;
  filter: blur(48px);
  opacity: 0.2;
}

.field-one {
  width: 76vw;
  height: 18vw;
  left: -18vw;
  top: 32vh;
  background:
    linear-gradient(94deg, transparent 0%, rgba(255, 255, 255, 0.4) 18%, rgba(201, 45, 104, 0.18) 46%, rgba(255, 255, 255, 0.42) 70%, transparent 100%);
}

.field-two {
  width: 70vw;
  height: 20vw;
  right: -18vw;
  top: 62vh;
  background:
    linear-gradient(104deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(142, 34, 49, 0.16) 52%, rgba(247, 184, 202, 0.18) 70%, transparent 100%);
}

.noise-layer {
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(90deg, rgba(43, 23, 28, 0.08) 0 1px, transparent 1px 52px),
    linear-gradient(0deg, rgba(43, 23, 28, 0.03) 1px, transparent 1px);
  background-size: auto, 64px 64px;
}

.site-bg::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  opacity: 0.24;
  clip-path: none;
  background:
    repeating-linear-gradient(90deg, rgba(120, 34, 46, 0.13) 0 1px, rgba(255, 255, 255, 0.2) 1px 8px, transparent 8px 15px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 72%, transparent 100%);
}

.site-bg::after {
  top: -8vh;
  right: 8vw;
  bottom: auto;
  left: auto;
  width: min(360px, 34vw);
  height: 116vh;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent, rgba(147, 31, 50, 0.15), transparent),
    repeating-linear-gradient(90deg, rgba(116, 28, 45, 0.24) 0 1px, rgba(255, 255, 255, 0.2) 1px 8px, transparent 8px 14px);
  filter: blur(0.2px);
}

main {
  width: min(1180px, calc(100% - 32px));
}

.museum-bar {
  border-radius: 0;
  border-width: 1px 0;
  background: rgba(251, 250, 248, 0.88);
  box-shadow: none;
}

.brand {
  font-family: "Noto Serif SC", serif;
  font-style: normal;
  letter-spacing: 0.01em;
}

.brand-mark {
  border-radius: 50%;
  background: var(--wine);
  box-shadow: none;
}

.top-nav a {
  color: rgba(43, 23, 28, 0.66);
  font-size: 12px;
  font-weight: 600;
}

.hero-section {
  min-height: calc(100svh - 90px);
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 9% 0 auto 46%;
  height: min(520px, 62vh);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(160, 33, 54, 0.12), rgba(255, 255, 255, 0.32)),
    repeating-linear-gradient(90deg, rgba(80, 23, 30, 0.22) 0 1px, rgba(255, 255, 255, 0.2) 1px 9px, transparent 9px 16px);
  opacity: 0.62;
  pointer-events: none;
  transform: skewX(-6deg);
}

.milou-word,
.hero-section h1,
.poster-side-copy,
.chinese-note {
  color: var(--wine);
}

.hero-section h1 {
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-section h1 em {
  color: #130f11;
}

.mirror-glyphs img {
  opacity: 0.32;
  filter: saturate(0.7) contrast(1.08);
}

.primary-link {
  border-color: var(--wine);
  background: var(--wine);
  box-shadow: none;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(43, 23, 28, 0.18);
}

.section-label {
  color: rgba(43, 23, 28, 0.58);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.exhibition-strip,
.guide-runway {
  border-top-color: rgba(43, 23, 28, 0.16);
}

.exhibition-strip p {
  max-width: 36em;
  font-family: "Noto Serif SC", serif;
  font-size: 19px;
  line-height: 1.9;
}

.guide-header h2,
.intro-panel h2,
.section-heading h2,
.contact-section h2 {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.chapter-card {
  grid-template-columns: 72px minmax(120px, 0.52fr) minmax(0, 1fr);
}

.chapter-card span {
  color: rgba(201, 45, 104, 0.58);
}

.intro-panel,
.glass-panel {
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-panel {
  position: relative;
  padding-inline: 0;
}

.intro-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28px;
  bottom: 28px;
  width: min(240px, 26vw);
  background:
    linear-gradient(90deg, transparent, rgba(154, 30, 47, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(124, 29, 43, 0.18) 0 1px, transparent 1px 11px);
  pointer-events: none;
}

.theme-card {
  border-top-color: rgba(43, 23, 28, 0.12);
}

.collection-portal {
  position: relative;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(52px, 7vw, 92px) 0;
  overflow: visible;
}

.collection-portal::before {
  content: "";
  position: absolute;
  left: 34%;
  top: 22%;
  width: 22%;
  height: 56%;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent, var(--ruby-glass), transparent),
    repeating-linear-gradient(90deg, rgba(117, 29, 42, 0.2) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.portal-copy p:not(.section-label),
.collection-hero p:not(.section-label) {
  max-width: 27rem;
  font-family: "Noto Serif SC", serif;
  line-height: 1.9;
}

.collection-portal.is-artist .portal-preview .work-tile:nth-child(2) {
  transform: translateY(42px);
}

.collection-portal.is-artist .portal-preview .work-tile:nth-child(3) {
  transform: translateY(12px);
}

.collection-portal.is-artist .portal-preview .work-tile:hover {
  transform: translateY(-4px);
}

.collection-portal.is-artist .portal-preview .work-tile:nth-child(2):hover {
  transform: translateY(34px);
}

.collection-portal.is-artist .portal-preview .work-tile:nth-child(3):hover {
  transform: translateY(4px);
}

.work-tile {
  display: block;
  width: 100%;
  min-height: 398px;
  padding: 28px 0 112px;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(43, 23, 28, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  contain: layout paint;
}

.work-tile:hover {
  box-shadow: none;
}

.work-tile::after {
  inset: auto 0 0;
  height: 1px;
  background: rgba(43, 23, 28, 0.12);
}

.work-tile img,
.work-tile.is-preview img {
  width: 100%;
  height: 268px;
  min-height: 0;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02) drop-shadow(0 28px 34px rgba(43, 23, 28, 0.14));
}

.work-tile.is-artist img {
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 62%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 62%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
}

.work-tile:hover img {
  transform: translateY(-8px) scale(1.03);
}

.work-tile.is-artist::before {
  content: "";
  position: absolute;
  inset: 18px 4% 94px;
  z-index: -1;
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent, rgba(157, 32, 52, 0.11), transparent),
    repeating-linear-gradient(90deg, rgba(105, 25, 35, 0.2) 0 1px, transparent 1px 12px);
  transform: skewX(-5deg);
}

.work-tile.is-preview {
  min-height: 354px;
  scroll-snap-align: start;
}

.work-tile.is-preview img {
  height: 226px;
}

.work-tile.is-student {
  padding: 18px 12px 94px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(43, 23, 28, 0.08);
}

.work-tile.is-student img,
.work-tile.is-student.is-preview img {
  height: 250px;
  filter: saturate(1.02) contrast(1) drop-shadow(0 20px 28px rgba(43, 23, 28, 0.12));
}

.claim-flow article,
.collection-item {
  border-top-color: rgba(43, 23, 28, 0.14);
}
.qr-entry {
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.work-dialog.is-artist .dialog-art img {
  mix-blend-mode: multiply;
}

.work-spec {
  margin: 16px 0 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(43, 23, 28, 0.12);
  border-bottom: 1px solid rgba(43, 23, 28, 0.12);
  color: rgba(43, 23, 28, 0.72);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.tab-button.is-active {
  color: var(--wine);
  border-color: var(--wine);
  background: transparent;
}

@media (max-width: 880px) {
  main {
    width: min(100% - 24px, 560px);
  }

  .site-bg::after {
    right: -8vw;
    width: 42vw;
    opacity: 0.22;
  }

  .hero-section::before {
    inset: 16% -18% auto 42%;
    height: 56vh;
  }

  .hero-section h1 {
    font-size: 40px;
  }

  .guide-runway {
    gap: 22px;
  }

  .chapter-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .chapter-card p {
    grid-column: 2;
  }

  .intro-panel::after {
    width: 38vw;
    opacity: 0.34;
  }

  .collection-portal {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0 56px;
    overflow: hidden;
  }

  .collection-portal::before {
    left: auto;
    right: 0;
    top: 18%;
    width: 44vw;
  }

  .collection-portal.is-artist .portal-preview .work-tile,
  .collection-portal.is-artist .portal-preview .work-tile:nth-child(2),
  .collection-portal.is-artist .portal-preview .work-tile:nth-child(3),
  .collection-portal.is-artist .portal-preview .work-tile:hover,
  .collection-portal.is-artist .portal-preview .work-tile:nth-child(2):hover,
  .collection-portal.is-artist .portal-preview .work-tile:nth-child(3):hover {
    transform: none;
  }

  .work-tile,
  .work-tile.is-preview {
    min-height: 338px;
    padding-bottom: 104px;
  }

  .work-tile img,
  .work-tile.is-preview img {
    height: 218px;
    min-height: 0;
  }

  .work-tile.is-student img,
  .work-tile.is-student.is-preview img {
    height: 232px;
  }
}

@media (max-width: 460px) {
  main {
    width: calc(100% - 20px);
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-section h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .poster-side-copy {
    font-size: 20px;
  }

  .work-tile,
  .work-tile.is-preview {
    min-height: 326px;
  }

  .work-tile img,
  .work-tile.is-preview img {
    height: 206px;
  }

  .work-tile.is-student img,
  .work-tile.is-student.is-preview img {
    height: 218px;
  }

  .work-spec {
    font-size: 11px;
  }
}

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

/* v1.5 direction correction: softer gradient, original artwork, unified type */
:root {
  --font-ui: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
.brand,
.top-nav a,
.section-label,
.poster-side-copy,
.chinese-note,
.guide-header h2,
.intro-panel h2,
.section-heading h2,
.contact-section h2,
.collection-portal h3,
.primary-link,
.secondary-link{
  font-family: var(--font-ui);
}

.guide-header h2,
.intro-panel h2,
.section-heading h2,
.contact-section h2,
.collection-portal h3{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.site-bg {
  background:
    linear-gradient(180deg, #f8f7f6 0%, #fffefe 42%, #f7f6f5 100%);
}

.spline-canvas {
  opacity: 0.26;
}

.gradient-field {
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.15;
  transform: translate3d(0, 0, 0) rotate(-8deg);
  animation: flowDrift 18s var(--ease) infinite alternate;
}

.field-one {
  width: 48vw;
  height: 34vw;
  left: 12vw;
  top: 10vh;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 111, 174, 0.3), transparent 48%),
    radial-gradient(circle at 68% 60%, rgba(217, 200, 255, 0.2), transparent 58%);
}

.field-two {
  width: 56vw;
  height: 42vw;
  right: -10vw;
  top: 42vh;
  background:
    radial-gradient(circle at 32% 52%, rgba(255, 71, 164, 0.22), transparent 44%),
    radial-gradient(circle at 72% 30%, rgba(255, 225, 238, 0.32), transparent 56%);
}

.noise-layer {
  opacity: 0.028;
  background-image:
    linear-gradient(90deg, rgba(8, 7, 8, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 7, 8, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 18%, rgba(255, 111, 174, 0.12) 0 1px, transparent 2px);
  background-size: 56px 56px, 56px 56px, 22px 22px;
}

.site-bg::before {
  inset: 12% 6% auto auto;
  width: 40%;
  height: 42%;
  border: 1px solid rgba(255, 111, 174, 0.07);
  opacity: 0.24;
  clip-path: polygon(0 0, 74% 0, 74% 18%, 52% 18%, 52% 34%, 92% 34%, 92% 64%, 66% 64%, 66% 82%, 100% 82%, 100% 100%, 16% 100%, 16% 78%, 0 78%);
  background: transparent;
  mask-image: none;
}

.site-bg::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: auto;
  height: 160px;
  opacity: 1;
  background: linear-gradient(180deg, transparent, rgba(255, 111, 174, 0.055));
  filter: none;
}

.hero-section::before,
.intro-panel::after,
.collection-portal::before,
.work-tile.is-artist::before{
  display: none;
}

.maze-word {
  display: block;
  width: min(760px, 100%);
}

.maze-word img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.04) drop-shadow(0 12px 22px rgba(255, 71, 164, 0.16));
}

.work-tile.is-artist img,
.work-dialog.is-artist .dialog-art img {
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.work-tile img,
.work-tile.is-preview img {
  object-fit: cover;
  background: #fff;
}

.work-tile.is-artist img,
.work-tile.is-artist.is-preview img {
  object-fit: contain;
  background: transparent;
}

@media (max-width: 720px) {
  .maze-word {
    width: min(320px, 100%);
  }

  .maze-word img {
    max-height: 96px;
  }

  .gradient-field {
    opacity: 0.18;
  }
}

/* v1.6 formal edition cleanup: no frosted glass, no clipped poster lockup */
.museum-bar,
.museum-bar *,
.primary-link,
.secondary-link,
.chapter-card,
.glass-panel,
.theme-card,
.claim-flow article,
.qr-entry{
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.museum-bar {
  background: rgba(251, 250, 248, 0.96);
  border: 1px solid rgba(20, 17, 20, 0.12);
  box-shadow: 0 10px 28px rgba(34, 26, 30, 0.06);
}

.brand,
.top-nav,
.top-nav a{
  background: transparent;
  box-shadow: none;
}

.top-nav a:hover{
  background: rgba(20, 17, 20, 0.055);
}

.primary-link,
.secondary-link{
  box-shadow: none;
}

.secondary-link {
  background: transparent;
  border-color: rgba(20, 17, 20, 0.18);
}

.chapter-card,
.glass-panel,
.theme-card,
.claim-flow article,
.qr-entry{
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(32, 24, 28, 0.045);
}

.hero-section {
  min-height: auto;
  grid-template-rows: auto auto auto auto auto;
  gap: clamp(24px, 3.2vw, 42px);
  padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 6vw, 78px);
}

.maze-word {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 68px);
  width: min(980px, 100%);
}

.maze-word img {
  display: none;
}

.maze-word::before,
.maze-word::after {
  display: block;
  line-height: 0.9;
}

.maze-word::before {
  content: "迷楼";
  color: var(--paper-light);
  font-family: "Noto Serif SC", "Noto Sans SC", serif;
  font-size: clamp(78px, 12vw, 166px);
  font-weight: 900;
  letter-spacing: 0;
  -webkit-text-stroke: 1.6px rgba(255, 78, 157, 0.78);
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.92),
    0 0 16px rgba(255, 78, 157, 0.48),
    0 14px 38px rgba(255, 78, 157, 0.12);
}

.maze-word::after {
  content: "MILOU";
  color: #8a3e3b;
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
  font-size: clamp(44px, 7.4vw, 114px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.015em;
  transform: translateY(-0.04em);
}

.mirror-glyphs {
  margin: clamp(6px, 1.4vw, 18px) 0 0;
}

.mirror-glyphs img {
  width: min(980px, 100%);
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.86;
  mix-blend-mode: normal;
  filter: saturate(0.95) contrast(1.02) drop-shadow(0 20px 38px rgba(255, 78, 157, 0.08));
}

.work-tile.is-artist img,
.work-tile.is-artist.is-preview img,
.work-dialog.is-artist .dialog-art img {
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 720px) {
  .hero-section {
    gap: 22px;
    padding-top: 34px;
  }

  .maze-word {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .maze-word::before {
    font-size: clamp(64px, 22vw, 92px);
  }

  .maze-word::after {
    font-size: clamp(38px, 14vw, 58px);
    transform: none;
  }

  .mirror-glyphs img {
    width: 100%;
    opacity: 0.72;
  }
}

/* v1.7 final cascade: keep the public site on one font family */
:root {
  --font-ui: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-ui);
  --font-serif: var(--font-ui);
  --font-sans: var(--font-ui);
}

html,
body,
button,
input,
textarea,
select,
a,
h1,
h2,
h3,
h4,
p,
span,
small,
strong,
em,
dt,
dd,
li,
figcaption,
.maze-word::before,
.maze-word::after {
  font-family: var(--font-ui) !important;
  letter-spacing: 0 !important;
}

.maze-word::after {
  font-style: normal !important;
}

/* v2 editorial IA pass: unified routes, calmer type, consistent artwork browsing */
:root {
  --page-max: 1240px;
  --gutter: 24px;
  --ink: #141114;
  --ink-soft: #4f494d;
  --muted: #81777d;
  --paper: #fbfaf8;
  --paper-light: #ffffff;
  --wine: #25171c;
  --hot-pink: #ef5f9e;
  --line: rgba(20, 17, 20, 0.12);
  --line-soft: rgba(20, 17, 20, 0.07);
  --surface: rgba(255, 255, 255, 0.76);
  --shadow: 0 26px 80px rgba(34, 25, 30, 0.09);
  --shadow-soft: 0 12px 34px rgba(34, 25, 30, 0.055);
  --font-ui: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-weight: 400;
}

main {
  width: min(var(--page-max), calc(100% - 48px));
}

.site-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 250, 248, 0.98) 46%, rgba(255, 255, 255, 0.96) 100%),
    var(--paper);
}

.spline-canvas {
  opacity: 0.18;
}

.gradient-field {
  opacity: 0.1;
  filter: blur(110px);
}

.noise-layer {
  opacity: 0.018;
}

.museum-bar {
  top: 14px;
  width: min(var(--page-max), calc(100% - 48px));
  min-height: 56px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
  box-shadow:
    0 18px 60px rgba(34, 25, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(24px) saturate(1.18) !important;
  backdrop-filter: blur(24px) saturate(1.18) !important;
}

.brand {
  gap: 10px;
  min-width: 112px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 18px;
}

.top-nav {
  gap: 2px;
}

.top-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(20, 17, 20, 0.66);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.top-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-entry {
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.88fr);
  grid-template-rows: auto;
  align-items: center;
  gap: 56px;
  padding: 72px 0 86px;
  isolation: isolate;
}

.hero-feature {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  margin: 0;
  height: min(660px, calc(100svh - 170px));
  min-height: 520px;
  overflow: hidden;
  border-radius: 0;
  background: #f0eeeb;
  box-shadow: 0 36px 110px rgba(35, 28, 31, 0.14);
}

.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(251, 250, 248, 0.18) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.28), transparent 36%);
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
}

.hero-copy-block {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
}

.maze-word {
  display: block !important;
  width: 188px;
  flex: 0 0 188px;
}

.maze-word::before,
.maze-word::after {
  content: none !important;
  display: none !important;
}

.maze-word img {
  display: block !important;
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  filter:
    saturate(1.02)
    contrast(1.05)
    drop-shadow(0 10px 20px rgba(239, 95, 158, 0.13));
}

.hero-entry h1 {
  margin: 0;
  max-width: 7em;
  color: var(--wine);
  font-size: 80px;
  font-weight: 850;
  line-height: 0.98;
}

.hero-copy-lead {
  max-width: 34em;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 30px;
}

.primary-link,
.secondary-link {
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.primary-link {
  color: #fff;
  border: 1px solid var(--wine);
  background: var(--wine);
}

.secondary-link {
  color: var(--ink);
  border: 1px solid rgba(20, 17, 20, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.hero-poster-fragment {
  position: absolute;
  right: -24px;
  bottom: 26px;
  z-index: 0;
  width: min(540px, 42vw);
  margin: 0;
  opacity: 0.36;
  pointer-events: none;
}

.hero-poster-fragment img {
  width: 100%;
  filter: saturate(0.9) contrast(1.02);
}
.mirror-glyphs,
.poster-bottom {
  display: none !important;
}

.exhibition-strip {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: 60px;
  margin: 0 0 82px;
  padding: 32px 0 0;
}

.exhibition-strip p {
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.92;
}

.exhibition-strip div {
  gap: 10px;
  color: rgba(20, 17, 20, 0.68);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.22;
}

.section-label{
  margin-bottom: 14px;
  color: rgba(20, 17, 20, 0.46);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.guide-runway {
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 64px;
  padding: 52px 0 86px;
}

.guide-header h2,
.intro-panel h2,
.section-heading h2,
.contact-section h2 {
  color: var(--wine);
  font-size: 44px;
  font-weight: 780;
  line-height: 1.12;
}

.chapter-card {
  grid-template-columns: 72px minmax(150px, 0.5fr) minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
}

.chapter-card span {
  color: rgba(239, 95, 158, 0.72);
  font-size: 24px;
  font-weight: 800;
}

.chapter-card h3 {
  color: var(--wine);
  font-size: 24px;
  font-weight: 720;
}

.chapter-card p,
.theme-card p,
.section-note,
.portal-copy p:not(.section-label),
.claim-flow p,
.qr-entry p,
.intro-panel p:last-child {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.82;
}

.intro-panel {
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  gap: 64px;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.theme-rail {
  gap: 24px;
  margin: 24px 0 96px;
}

.theme-card {
  min-height: 150px;
  padding: 22px 0 0;
}

.theme-card span {
  font-size: 21px;
  font-weight: 720;
}
.claim-section,
.collections-section,
.qr-section,
.contact-section {
  padding: 36px 0 96px;
}

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

.section-note {
  max-width: 440px;
}

.collection-portal {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  overflow: visible;
}

.collection-portal:last-child {
  border-bottom: 1px solid var(--line);
}

.collection-portal::before {
  display: none;
}

.portal-copy p:not(.section-label) {
  margin-top: 20px;
}

.collection-portal.is-artist .portal-preview .work-tile,
.collection-portal.is-artist .portal-preview .work-tile:nth-child(2),
.collection-portal.is-artist .portal-preview .work-tile:nth-child(3),
.collection-portal.is-artist .portal-preview .work-tile:hover,
.collection-portal.is-artist .portal-preview .work-tile:nth-child(2):hover,
.collection-portal.is-artist .portal-preview .work-tile:nth-child(3):hover {
  transform: none;
}

.work-tile,
.work-tile.is-preview {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(126px, auto);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 20, 0.09);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  contain: none;
}

.work-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(34, 25, 30, 0.08);
}

.work-tile::before,
.work-tile::after {
  display: none !important;
}

.work-tile img,
.work-tile.is-preview img,
.work-tile.is-artist img,
.work-tile.is-artist.is-preview img,
.work-tile.is-student img,
.work-tile.is-student.is-preview img {
  width: 100%;
  height: 310px;
  min-height: 0;
  padding: 18px;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(251, 250, 248, 0.94), rgba(255, 255, 255, 0.98));
  filter: saturate(0.98) contrast(1);
  mix-blend-mode: normal;
  transition: transform 420ms var(--ease);
}

.work-tile.is-preview img {
  height: 250px;
}

.work-tile.is-student img,
.work-tile.is-student.is-preview img {
  padding: 12px;
  background: #fff;
  filter: saturate(1.02) contrast(1);
}

.work-tile:hover img {
  transform: scale(1.025);
}

.claim-flow {
  gap: 22px;
}

.claim-flow article {
  min-height: 190px;
  padding-top: 24px;
}

.claim-flow h3,
.qr-entry h3 {
  color: var(--wine);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.18;
}
.qr-entry,
.glass-panel {
  border: 1px solid var(--line-soft);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.collection-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.collection-item {
  min-height: 120px;
  padding: 18px;
  border-top: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.qr-grid {
  gap: 18px;
}

.qr-entry {
  grid-template-columns: 146px minmax(0, 1fr);
}

.contact-section {
  padding-bottom: 120px;
}

.glass-panel {
  padding: 52px;
}
.work-dialog.is-artist .dialog-art img {
  width: 100%;
  height: 100%;
  padding: 30px;
  object-fit: contain;
  filter: none;
}

.work-spec {
  color: rgba(20, 17, 20, 0.62);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.tab-button.is-active {
  color: #fff;
  border-color: var(--wine);
  background: var(--wine);
}

@media (max-width: 980px) {
  main,
  .museum-bar {
    width: calc(100% - 28px);
  }

  .top-nav {
    display: none;
  }

  .hero-entry {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 64px;
  }

  .hero-copy-block,
  .hero-feature {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-feature {
    height: auto;
    min-height: 0;
    max-height: 390px;
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .hero-entry h1 {
    font-size: 56px;
  }

  .hero-poster-fragment {
    display: none;
  }

  .exhibition-strip,
  .guide-runway,
  .intro-panel,
  .collection-portal {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .exhibition-strip {
    margin-bottom: 58px;
  }

  .guide-runway {
    padding: 40px 0 62px;
  }

  .guide-header {
    position: static;
  }

  .chapter-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .chapter-card p {
    grid-column: 2;
  }

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

  .collection-portal {
    padding: 54px 0;
  }

  .work-tile,
  .work-tile.is-preview {
    scroll-snap-align: start;
  }
  .claim-flow,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .collection-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-dialog.is-artist .dialog-art img {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  main,
  .museum-bar {
    width: calc(100% - 20px);
  }

  .museum-bar {
    min-height: 52px;
    top: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .hero-entry {
    padding-top: 30px;
  }

  .maze-word {
    width: 132px;
    flex-basis: 132px;
  }

  .hero-entry h1 {
    font-size: 44px;
  }

  .hero-copy-lead {
    font-size: 15px;
    line-height: 1.82;
  }

  .guide-header h2,
  .intro-panel h2,
  .section-heading h2,
  .contact-section h2{
    font-size: 34px;
    line-height: 1.14;
  }

  .chapter-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chapter-card p {
    grid-column: auto;
  }

  .theme-rail,
  .collection-list {
    grid-template-columns: 1fr;
  }

  .work-tile img,
  .work-tile.is-preview img,
  .work-tile.is-artist img,
  .work-tile.is-artist.is-preview img,
  .work-tile.is-student img,
  .work-tile.is-student.is-preview img {
    height: 244px;
  }

  .qr-entry {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .qr-image-wrap img {
    width: 94px;
    height: 94px;
  }

  .glass-panel {
    padding: 32px 18px;
  }
}

/* final polish: one type system, stable anchor stops, unclipped collection browsing */
html {
  scroll-padding-top: 96px;
}

body,
body button,
body input,
body textarea,
body select,
body a,
body p,
body span,
body small,
body strong,
body em,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body dt,
body dd,
body li {
  font-family: var(--font-ui) !important;
  letter-spacing: 0 !important;
}

.collection-portal,
.intro-panel,
.guide-runway,
.claim-section,
.qr-section,
.contact-section {
  scroll-margin-top: 112px;
}

.collection-portal {
  align-items: start;
  padding: 56px 0;
}

@media (max-width: 980px) {
  .collection-portal {
    padding: 42px 0;
  }
}

/* v1.8 exhibition-grade home and detail refinement */
:root {
  --museum-paper: #f7f3ed;
  --museum-ink: #1f151a;
  --museum-muted: rgba(31, 21, 26, 0.64);
  --museum-hairline: rgba(31, 21, 26, 0.13);
  --museum-softline: rgba(31, 21, 26, 0.075);
  --hero-pad: max(28px, calc((100vw - var(--page-max)) / 2 + 24px));
}

body {
  background: var(--museum-paper);
}

.site-bg {
  background: var(--museum-paper);
}

.gradient-field,
.spline-canvas {
  opacity: 0.04;
}

.museum-bar {
  top: 22px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(22, 16, 17, 0.42), rgba(22, 16, 17, 0.2));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
}

.museum-bar a,
.top-nav a,
.brand{
  color: #fff;
}

.brand-mark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.hero-entry {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 120px var(--hero-pad) 84px;
  overflow: hidden;
  background: #130d0d;
}

.hero-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 7, 7, 0.82) 0%, rgba(10, 7, 7, 0.58) 31%, rgba(10, 7, 7, 0.06) 64%, rgba(10, 7, 7, 0.32) 100%),
    linear-gradient(180deg, rgba(10, 7, 7, 0.1) 0%, rgba(10, 7, 7, 0.2) 58%, rgba(10, 7, 7, 0.62) 100%);
  pointer-events: none;
}

.hero-feature {
  position: absolute;
  inset: 0;
  z-index: 0;
  grid-column: 1 / -1 !important;
  grid-row: 1 / -1 !important;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
  box-shadow: none;
  order: initial;
}

.hero-feature::after {
  display: none;
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  transform: scale(1.02);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.maze-word {
  width: 152px;
  flex-basis: 152px;
}

.hero-entry h1 {
  max-width: 7em;
  color: #fff;
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 500;
  line-height: 1.04;
}

.hero-copy-lead {
  max-width: 470px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}

.hero-actions {
  margin-top: 40px;
}

.hero-actions .primary-link,
.hero-actions .secondary-link {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-actions .primary-link {
  background: rgba(255, 255, 255, 0.94);
  color: var(--museum-ink);
}

.hero-poster-fragment {
  z-index: 2;
  right: var(--hero-pad);
  bottom: 46px;
  width: min(180px, 24vw);
  opacity: 0.9;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.32));
}

.hero-scroll-cue {
  position: absolute;
  left: var(--hero-pad);
  bottom: 52px;
  z-index: 2;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
}

.hero-scroll-cue i {
  width: 1px;
  height: 38px;
  display: block;
  background: rgba(255, 255, 255, 0.5);
}

.hero-scroll-cue::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-left: -5px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
}

.exhibition-strip {
  width: min(var(--page-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 88px;
  display: block;
}

.exhibition-strip #heroLead,
.exhibition-strip #archiveStats {
  display: none;
}

.exhibition-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--museum-hairline);
}

.exhibition-facts article {
  position: relative;
  min-height: 178px;
  padding: 18px 54px 42px 118px;
  display: grid;
  align-content: end;
  gap: 12px;
  border-top: 1px solid var(--museum-hairline);
}

.exhibition-facts article + article {
  border-left: 1px solid var(--museum-hairline);
}

.exhibition-facts span {
  position: absolute;
  left: 0;
  top: 24px;
  color: rgba(31, 21, 26, 0.08);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.exhibition-facts p {
  color: var(--museum-ink);
  font-size: 13px;
  font-weight: 500;
}

.exhibition-facts strong {
  color: var(--museum-ink);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
}

.exhibition-facts small {
  color: rgba(31, 21, 26, 0.48);
  font-size: 12px;
  font-weight: 500;
}

.exhibition-entry-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.entry-card {
  position: relative;
  min-height: 238px;
  padding: 48px;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: #fff;
  background: #25171c;
  text-decoration: none;
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  filter: saturate(0.72) contrast(1.02);
  transform: scale(1.02);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(66, 18, 26, 0.78), rgba(66, 18, 26, 0.24));
}

.entry-card.is-artist-entry::before {
  background-image: url("assets/works/work-06.jpg");
}

.entry-card.is-student-entry::before {
  background-image: url("assets/student-framed-cutout/child-01.webp");
  filter: saturate(0.2) contrast(0.9);
}

.entry-card.is-student-entry::after {
  background: linear-gradient(90deg, rgba(24, 38, 40, 0.78), rgba(24, 38, 40, 0.3));
}

.entry-card span,
.entry-card small,
.entry-card i {
  position: relative;
  z-index: 1;
}

.entry-card span {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

.entry-card small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.entry-card i {
  width: 48px;
  height: 48px;
  margin-top: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-style: normal;
  font-size: 24px;
}

.guide-runway {
  padding-top: 92px;
}

.chapter-card {
  border-color: var(--museum-hairline);
  background: rgba(255, 255, 255, 0.38);
}

.chapter-card span {
  color: #ef75ad;
}

.work-tile,
.work-tile.is-preview {
  border-color: var(--museum-softline);
  background: rgba(255, 255, 255, 0.5);
}

.work-tile img,
.work-tile.is-preview img,
.work-tile.is-artist img,
.work-tile.is-artist.is-preview img {
  background: transparent;
}
.work-dialog.is-artist .dialog-art img {
  padding: 38px;
}

.work-spec {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--museum-hairline);
  color: var(--museum-muted);
  font-weight: 500;
}

.tab-button.is-active {
  border-color: var(--museum-ink);
  background: var(--museum-ink);
  color: #fff;
}

@media (max-width: 980px) {
  .museum-bar {
    width: calc(100% - 28px);
    top: 14px;
  }

  .hero-entry {
    min-height: 100svh;
    padding: 98px 24px 72px;
    align-items: end;
  }

  .hero-entry::before {
    background:
      linear-gradient(180deg, rgba(10, 7, 7, 0.12) 0%, rgba(10, 7, 7, 0.42) 44%, rgba(10, 7, 7, 0.8) 100%),
      linear-gradient(90deg, rgba(10, 7, 7, 0.56), rgba(10, 7, 7, 0.08));
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .hero-entry h1 {
    font-size: clamp(54px, 16vw, 74px);
  }

  .hero-copy-lead {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-poster-fragment {
    right: 22px;
    bottom: 24px;
    width: 96px;
    opacity: 0.72;
  }

  .exhibition-strip {
    width: calc(100% - 28px);
    padding: 54px 0 64px;
  }

  .exhibition-facts,
  .exhibition-entry-cards {
    grid-template-columns: 1fr;
  }

  .exhibition-facts article {
    min-height: 148px;
    padding: 22px 0 28px 66px;
  }

  .exhibition-facts article + article {
    border-left: 0;
  }

  .exhibition-facts span {
    font-size: 38px;
  }

  .exhibition-facts strong {
    font-size: 24px;
  }

  .entry-card {
    min-height: 190px;
    padding: 32px;
  }
}

@media (max-width: 560px) {
  .museum-bar {
    width: calc(100% - 20px);
  }

  .hero-entry {
    padding: 92px 20px 68px;
  }

  .maze-word {
    width: 118px;
    flex-basis: 118px;
  }

  .hero-entry h1 {
    max-width: 5.8em;
    font-size: 52px;
  }

  .hero-actions .primary-link,
  .hero-actions .secondary-link {
    min-height: 42px;
    padding: 0 16px;
  }

  .entry-card span {
    font-size: 28px;
  }
  .work-dialog.is-artist .dialog-art img {
    padding: 20px;
  }
}

/* v1.9 hard polish: one type system, full-bleed mobile hero, quieter UI lines */
:where(body, button, input, textarea, select, a, p, span, small, strong, em, dt, dd, h1, h2, h3, h4, li, label, figcaption) {
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

@media (max-width: 980px) {
  .hero-entry .hero-feature {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    order: initial !important;
  }

  .hero-entry .hero-feature img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: 58% center;
  }

  .hero-entry .hero-copy-block {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: end;
  }
}
.work-spec{
  border-color: rgba(31, 21, 26, 0.085) !important;
}

.museum-bar {
  position: fixed !important;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
}

main {
  margin-top: 0 !important;
}

.hero-entry {
  padding: 0 !important;
}

.hero-entry .hero-copy-block {
  margin-left: var(--hero-pad);
}

@media (max-width: 980px) {
  .hero-entry {
    padding: 0 !important;
    align-items: stretch;
  }

  .hero-entry .hero-copy-block {
    margin-left: 0;
    padding: 98px 24px 72px;
  }
}

@media (max-width: 560px) {
  .hero-entry .hero-copy-block {
    padding: 92px 20px 68px;
  }
}

/* v2.2 editorial spacing polish: reduce boxes, let whitespace carry structure */
:root {
  --museum-paper: #f7f3ef;
  --museum-ink: #22171c;
  --museum-muted: rgba(34, 23, 28, 0.62);
  --museum-faint: rgba(34, 23, 28, 0.34);
  --museum-hairline: rgba(34, 23, 28, 0.09);
  --museum-softline: rgba(34, 23, 28, 0.06);
}

body,
.site-bg {
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 188, 202, 0.16), transparent 28rem),
    radial-gradient(circle at 2% 54%, rgba(244, 188, 202, 0.1), transparent 34rem),
    linear-gradient(180deg, #fbf8f4 0%, var(--museum-paper) 48%, #fbf8f4 100%) !important;
}

.museum-bar {
  color: var(--museum-ink) !important;
  border: 0 !important;
  outline: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)) !important;
  box-shadow: 0 18px 56px rgba(61, 43, 45, 0.09) !important;
}

.museum-bar a,
.top-nav a,
.brand{
  color: var(--museum-ink) !important;
}

.brand-mark {
  color: var(--museum-ink) !important;
  border-color: rgba(34, 23, 28, 0.18) !important;
  background: rgba(255, 255, 255, 0.22) !important;
}

.exhibition-strip,
.guide-runway,
.intro-panel,
.claim-section,
.collections-section,
.qr-section,
.contact-section {
  width: min(var(--page-max), calc(100% - 64px));
  margin-inline: auto;
}

.exhibition-strip {
  padding: clamp(74px, 8vw, 116px) 0 clamp(62px, 7vw, 92px) !important;
}

.exhibition-facts {
  gap: clamp(44px, 7vw, 104px) !important;
  border: 0 !important;
}

.exhibition-facts article {
  min-height: auto !important;
  padding: 0 0 0 clamp(48px, 6vw, 88px) !important;
  border: 0 !important;
}

.exhibition-facts article + article {
  border-left: 0 !important;
}

.exhibition-facts span {
  left: 0 !important;
  top: -8px !important;
  color: rgba(34, 23, 28, 0.07) !important;
  font-size: clamp(42px, 5vw, 72px) !important;
}

.exhibition-facts strong {
  max-width: 12em;
  font-size: clamp(28px, 3vw, 46px) !important;
  line-height: 1.22 !important;
}

.guide-runway {
  padding: clamp(86px, 9vw, 132px) 0 !important;
  border-top: 0 !important;
}

.chapter-track {
  gap: clamp(30px, 4vw, 56px) !important;
  border-top: 0 !important;
}

.chapter-card {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.chapter-card span {
  color: rgba(239, 96, 161, 0.82) !important;
}

.chapter-card h3 {
  font-size: clamp(26px, 2.6vw, 42px) !important;
  font-weight: 760 !important;
}

.chapter-card p {
  max-width: 24em;
  color: var(--museum-muted) !important;
  font-size: clamp(16px, 1.25vw, 20px) !important;
  line-height: 1.86 !important;
}

.intro-panel {
  gap: clamp(48px, 7vw, 96px) !important;
  padding: clamp(86px, 9vw, 128px) 0 clamp(54px, 7vw, 90px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.intro-panel p:last-child {
  color: var(--museum-muted) !important;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 2 !important;
}

.theme-rail {
  gap: clamp(30px, 4vw, 58px) !important;
  margin: clamp(8px, 2vw, 18px) auto clamp(88px, 9vw, 138px) !important;
  width: min(var(--page-max), calc(100% - 64px));
}

.theme-card {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.theme-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--museum-ink) !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  font-weight: 760 !important;
}

.theme-card p {
  color: var(--museum-muted) !important;
  font-size: clamp(15px, 1.08vw, 17px) !important;
  line-height: 1.92 !important;
}

.claim-section {
  padding-top: clamp(86px, 9vw, 130px) !important;
}

.claim-flow {
  gap: clamp(34px, 5vw, 78px) !important;
}

.claim-flow article {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.claim-flow span {
  width: auto !important;
  height: auto !important;
  color: rgba(239, 96, 161, 0.82) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

.claim-flow h3 {
  margin-top: 26px !important;
  font-size: clamp(26px, 2.4vw, 38px) !important;
  font-weight: 760 !important;
}

.claim-flow p {
  color: var(--museum-muted) !important;
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.9 !important;
}
.qr-entry,
.glass-panel,
.collection-item {
  border-color: var(--museum-softline) !important;
  background: rgba(255, 255, 255, 0.34) !important;
  box-shadow: none !important;
}

.section-label{
  color: var(--museum-faint) !important;
}

@media (max-width: 980px) {
  .exhibition-strip,
  .guide-runway,
  .intro-panel,
  .claim-section,
  .collections-section,
  .qr-section,
  .contact-section,
  .theme-rail {
    width: calc(100% - 32px) !important;
  }

  .guide-runway,
  .intro-panel {
    grid-template-columns: 1fr !important;
  }

  .chapter-card {
    grid-template-columns: 52px 1fr !important;
    align-items: start !important;
  }

  .chapter-card p {
    grid-column: 2;
  }

  .theme-rail,
  .claim-flow {
    grid-template-columns: 1fr !important;
  }
}

/* v6.5 delivery polish: left-aligned editorial layout and quieter support credit. */
.museum-bar {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: var(--fixed-nav-height, 72px) !important;
  margin: 0 !important;
  padding: 0 clamp(24px, 4vw, 64px) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 44px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(22, 16, 18, 0.76) !important;
  box-shadow: 0 14px 38px rgba(23, 14, 16, 0.16) !important;
  -webkit-backdrop-filter: blur(22px) saturate(132%) !important;
  backdrop-filter: blur(22px) saturate(132%) !important;
}

.museum-bar::before,
.museum-bar::after {
  display: none !important;
  content: none !important;
}

.museum-bar .brand,
.museum-bar .top-nav,
.museum-bar .language-toggle {
  position: relative !important;
  z-index: 1 !important;
}

.museum-bar .top-nav {
  justify-content: center !important;
}

.museum-bar .top-nav a,
.museum-bar .language-toggle {
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.museum-bar .top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.hero-entry {
  position: relative !important;
  min-height: min(760px, calc(100svh - 28px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: calc(var(--fixed-nav-height, 72px) + clamp(48px, 7vw, 92px)) clamp(28px, 7vw, 86px) clamp(44px, 7vw, 82px) !important;
  background: #181112 !important;
}

.hero-entry .hero-feature {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.hero-entry .hero-feature img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

.hero-entry::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(18, 12, 14, 0.78) 0%, rgba(18, 12, 14, 0.58) 34%, rgba(18, 12, 14, 0.12) 78%, rgba(18, 12, 14, 0.04) 100%) !important;
}

.hero-entry::after {
  display: none !important;
}

.hero-copy-block {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: start !important;
  text-align: left !important;
  color: #fff !important;
}

.hero-entry .section-label,
.hero-entry h1,
.hero-entry .hero-english,
.hero-entry .hero-copy-lead,
.hero-entry .hero-actions {
  text-align: left !important;
}

.hero-entry h1 {
  max-width: 10em !important;
  color: #fff !important;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

.hero-entry .hero-copy-lead,
.hero-entry .hero-english {
  color: rgba(255, 255, 255, 0.86) !important;
}

.hero-entry .hero-actions {
  justify-content: flex-start !important;
}

.section-heading,
.guide-header,
.intro-panel,
.collection-page-hero {
  text-align: left !important;
  justify-items: start !important;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(16px, 2vw, 28px) !important;
}

.section-heading > div,
.section-heading > p,
.section-heading .section-note {
  justify-self: start !important;
  text-align: left !important;
}

.section-heading h2,
.guide-header h2,
.intro-panel h2 {
  text-align: left !important;
}

.collections-section {
  text-align: left !important;
}

.collections-section .section-heading {
  margin-bottom: clamp(32px, 5vw, 64px) !important;
}

.collections-section .section-heading h2 {
  max-width: 980px !important;
  font-size: clamp(42px, 5.8vw, 88px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.collection-page-hero {
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: end !important;
  gap: 16px !important;
}

.collection-page-hero h1 {
  max-width: 980px !important;
  text-align: left !important;
}

.collection-page-hero p:not(.section-label) {
  max-width: 680px !important;
  text-align: left !important;
}

.collection-page-hero #collectionPageCount,
.collection-page-hero .collection-page-actions {
  justify-self: start !important;
  grid-column: 1 !important;
}

.collection-page-hero #collectionPageCount {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(34, 24, 28, 0.42) !important;
  box-shadow: none !important;
}

.maker-credit {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 24px clamp(22px, 5vw, 72px) 44px !important;
  color: rgba(34, 24, 28, 0.44) !important;
  text-align: center !important;
}

.maker-credit p,
.maker-credit a {
  margin: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  .museum-bar {
    grid-template-columns: minmax(0, 1fr) 52px !important;
    min-height: calc(76px + env(safe-area-inset-top)) !important;
    padding: calc(12px + env(safe-area-inset-top)) 18px 12px !important;
    background: rgba(22, 16, 18, 0.88) !important;
  }

  .museum-bar .top-nav {
    display: none !important;
  }

  .museum-bar .language-toggle {
    grid-column: 2 !important;
  }

  .hero-entry {
    min-height: 100svh !important;
    padding: calc(76px + env(safe-area-inset-top) + 46px) 28px 48px !important;
  }

  .hero-entry::before {
    background:
      linear-gradient(180deg, rgba(18, 12, 14, 0.08) 0%, rgba(18, 12, 14, 0.52) 44%, rgba(18, 12, 14, 0.78) 100%) !important;
  }

  .hero-copy-block {
    align-self: end !important;
  }

  .hero-entry h1 {
    max-width: 5.5em !important;
  }

  .hero-entry .hero-actions {
    gap: 10px !important;
  }

  .collections-section .section-heading h2 {
    font-size: clamp(38px, 13vw, 62px) !important;
  }

  .collection-page-hero {
    padding-top: 0 !important;
  }

  .maker-credit {
    display: block !important;
    padding-bottom: calc(32px + env(safe-area-inset-bottom)) !important;
  }

  .maker-credit a {
    display: block !important;
    margin-top: 4px !important;
  }
}

/* v6.9 final homepage direction: poster-like first screen, PingFang type, no card hero. */
:root {
  --milou-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--milou-font) !important;
}

body {
  color: #1c1519 !important;
  background: #f4f3f1 !important;
}

.site-bg {
  display: none !important;
}

.museum-bar {
  position: fixed !important;
  top: max(16px, env(safe-area-inset-top)) !important;
  left: clamp(20px, 3vw, 56px) !important;
  right: clamp(20px, 3vw, 56px) !important;
  z-index: 80 !important;
  min-height: 64px !important;
  padding: 10px 18px 10px 24px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 46px) !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  backdrop-filter: blur(22px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(130%) !important;
  box-shadow: 0 18px 48px rgba(48, 31, 38, 0.08) !important;
}

.museum-bar::before,
.museum-bar::after {
  display: none !important;
}

.museum-bar .brand,
.museum-bar .top-nav a,
.museum-bar .language-toggle {
  color: rgba(25, 18, 22, 0.9) !important;
  text-shadow: none !important;
}

.museum-bar .brand {
  gap: 12px !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.museum-bar .brand-mark {
  font-weight: 800 !important;
}

.museum-bar .top-nav {
  justify-content: center !important;
  gap: clamp(18px, 3.2vw, 56px) !important;
}

.museum-bar .top-nav a {
  min-height: 42px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

.museum-bar .top-nav a[aria-current="page"],
.museum-bar .top-nav a:hover {
  background: rgba(255, 255, 255, 0.7) !important;
}

.museum-bar .language-toggle {
  min-width: 54px !important;
  min-height: 44px !important;
  border: 1px solid rgba(30, 23, 27, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.48) !important;
  font-weight: 760 !important;
}

main#top {
  background: #f4f3f1 !important;
}

.hero-section.hero-entry {
  position: relative !important;
  width: 100% !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: calc(96px + env(safe-area-inset-top)) clamp(28px, 6vw, 96px) clamp(42px, 6vw, 82px) !important;
  display: flex !important;
  align-items: stretch !important;
  overflow: hidden !important;
  isolation: isolate !important;
  color: #121012 !important;
  background:
    radial-gradient(ellipse at 24% 23%, rgba(255, 130, 185, 0.34) 0 12%, transparent 31%),
    radial-gradient(ellipse at 72% 60%, rgba(255, 53, 142, 0.52) 0 18%, transparent 43%),
    radial-gradient(ellipse at 54% 66%, rgba(255, 255, 255, 0.74) 0 10%, transparent 30%),
    linear-gradient(180deg, #f2f2f1 0%, #f5f5f3 58%, #efefed 100%) !important;
}

.hero-section.hero-entry::before {
  position: absolute !important;
  inset: -18% -10% !important;
  z-index: -2 !important;
  content: "" !important;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 113, 176, 0.4), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(255, 46, 143, 0.55), transparent 36%),
    radial-gradient(circle at 43% 64%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 86% 33%, rgba(255, 189, 213, 0.28), transparent 24%) !important;
  filter: blur(54px) !important;
  opacity: 0.92 !important;
  animation: milouPosterDrift 13s ease-in-out infinite alternate !important;
}

.hero-section.hero-entry::after {
  position: absolute !important;
  inset: calc(96px + env(safe-area-inset-top)) clamp(28px, 6vw, 96px) clamp(42px, 6vw, 82px) !important;
  z-index: -1 !important;
  content: "" !important;
  pointer-events: none !important;
  background:
    linear-gradient(to right, transparent 0 49.8%, rgba(255, 255, 255, 0.66) 49.8% 50%, transparent 50%),
    linear-gradient(to bottom, transparent 0 46%, rgba(255, 255, 255, 0.62) 46% 46.25%, transparent 46.25%) !important;
  border: 1px solid rgba(255, 255, 255, 0.56) !important;
  border-radius: 10px !important;
  opacity: 0.76 !important;
}

.hero-section.hero-entry .hero-feature,
.hero-section.hero-entry .hero-poster-fragment,
.hero-section.hero-entry .hero-scroll-cue {
  display: none !important;
}

.hero-copy-block {
  width: 100% !important;
  min-height: calc(100svh - 180px) !important;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  grid-template-rows: auto minmax(110px, 1fr) auto auto !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  align-content: stretch !important;
  align-items: start !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

.hero-copy-block .section-label {
  grid-column: 1 / 5 !important;
  margin: 0 !important;
  color: rgba(28, 20, 24, 0.68) !important;
  font-size: clamp(12px, 1.1vw, 15px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
}

.hero-entry h1 {
  grid-column: 6 / 13 !important;
  grid-row: 1 / 3 !important;
  justify-self: end !important;
  max-width: 6em !important;
  margin: 0 !important;
  color: #0d0c0d !important;
  font-family: var(--milou-font) !important;
  font-size: clamp(72px, 10.4vw, 178px) !important;
  font-weight: 760 !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-shadow: none !important;
}

.hero-entry .hero-english {
  grid-column: 7 / 13 !important;
  grid-row: 3 !important;
  max-width: 680px !important;
  margin: 0 !important;
  color: rgba(16, 14, 15, 0.92) !important;
  font-size: clamp(28px, 4.4vw, 76px) !important;
  font-weight: 720 !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

.hero-entry .hero-copy-lead {
  grid-column: 1 / 6 !important;
  grid-row: 3 !important;
  max-width: 520px !important;
  margin: 0 !important;
  color: rgba(32, 25, 28, 0.78) !important;
  font-size: clamp(16px, 1.7vw, 24px) !important;
  font-weight: 520 !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

.hero-entry .hero-actions {
  grid-column: 1 / 13 !important;
  grid-row: 4 !important;
  width: 100% !important;
  min-height: 116px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr minmax(180px, 0.6fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
  margin: clamp(14px, 3vw, 28px) 0 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.17) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

.hero-entry .hero-actions::after {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  content: "2026.4.21-6.14" !important;
  color: rgba(16, 14, 15, 0.88) !important;
  font-size: clamp(18px, 2vw, 30px) !important;
  font-weight: 520 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.64) !important;
}

.hero-entry .primary-link,
.hero-entry .secondary-link {
  min-height: 116px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 22px clamp(20px, 3vw, 42px) !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.64) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #121012 !important;
  box-shadow: none !important;
  font-size: clamp(16px, 1.3vw, 22px) !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.hero-entry .primary-link:hover,
.hero-entry .secondary-link:hover {
  background: rgba(255, 255, 255, 0.34) !important;
  transform: none !important;
}

.exhibition-strip,
.guide-runway,
.intro-panel,
.student-intro-section,
.theme-rail,
.charity-trust-section,
.home-collections,
.claim-section,
.collections-section,
.qr-section,
.contact-section {
  background: #f8f7f5 !important;
}

.collections-section {
  padding: clamp(74px, 9vw, 132px) clamp(28px, 6vw, 88px) !important;
  text-align: left !important;
}

.collections-section .section-heading {
  display: block !important;
  max-width: 1120px !important;
  margin: 0 0 clamp(32px, 5vw, 68px) !important;
  text-align: left !important;
}

.collections-section .section-heading .section-label {
  margin-bottom: 22px !important;
  color: rgba(32, 25, 28, 0.42) !important;
}

.collections-section .section-heading h2 {
  max-width: 940px !important;
  margin: 0 !important;
  color: #1c1519 !important;
  font-size: clamp(48px, 7.2vw, 118px) !important;
  font-weight: 760 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.collection-list.is-logo-wall {
  border-color: rgba(28, 20, 24, 0.08) !important;
  background: rgba(255, 255, 255, 0.36) !important;
}

.collection-page-main {
  padding-top: calc(96px + env(safe-area-inset-top)) !important;
  background: #faf9f7 !important;
}

.collection-page-hero {
  min-height: 0 !important;
  padding: clamp(44px, 6vw, 78px) clamp(24px, 5vw, 72px) clamp(16px, 3vw, 36px) !important;
  display: block !important;
  text-align: left !important;
}

.collection-page-hero h1 {
  max-width: 880px !important;
  margin: 12px 0 18px !important;
  font-size: clamp(44px, 8vw, 98px) !important;
  line-height: 1.02 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.collection-page-hero p:not(.section-label) {
  max-width: 720px !important;
  text-align: left !important;
}

.collection-page-hero #collectionPageCount {
  display: inline-block !important;
  margin-top: 18px !important;
}

.single-work-control {
  background: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.maker-credit {
  background: #f8f7f5 !important;
  color: rgba(28, 20, 24, 0.42) !important;
  text-align: center !important;
}

@keyframes milouPosterDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@media (max-width: 760px) {
  .museum-bar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    min-height: calc(68px + env(safe-area-inset-top)) !important;
    padding: calc(10px + env(safe-area-inset-top)) 18px 10px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.74) !important;
    box-shadow: 0 8px 30px rgba(40, 28, 34, 0.08) !important;
  }

  .museum-bar .top-nav {
    display: none !important;
  }

  .museum-bar .brand {
    font-size: 25px !important;
  }

  .museum-bar .language-toggle {
    min-width: 50px !important;
    min-height: 42px !important;
  }

  .hero-section.hero-entry {
    min-height: 100svh !important;
    padding: calc(92px + env(safe-area-inset-top)) 22px 28px !important;
  }

  .hero-section.hero-entry::after {
    inset: calc(92px + env(safe-area-inset-top)) 22px 28px !important;
    background:
      linear-gradient(to bottom, transparent 0 44%, rgba(255, 255, 255, 0.62) 44% 44.2%, transparent 44.2%),
      linear-gradient(to bottom, transparent 0 74%, rgba(255, 255, 255, 0.55) 74% 74.2%, transparent 74.2%) !important;
  }

  .hero-copy-block {
    min-height: calc(100svh - 120px) !important;
    display: block !important;
  }

  .hero-copy-block .section-label {
    margin-bottom: 18px !important;
    font-size: 12px !important;
  }

  .hero-entry h1 {
    max-width: 4.8em !important;
    margin: 0 0 18px !important;
    font-size: clamp(60px, 18vw, 92px) !important;
    line-height: 0.98 !important;
  }

  .hero-entry .hero-english {
    max-width: 94vw !important;
    margin: 0 0 26px !important;
    font-size: clamp(24px, 8vw, 38px) !important;
    line-height: 0.98 !important;
  }

  .hero-entry .hero-copy-lead {
    max-width: 92vw !important;
    margin: 0 0 24px !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .hero-entry .hero-actions {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin-top: 24px !important;
  }

  .hero-entry .hero-actions::after {
    min-height: 58px !important;
    justify-content: flex-start !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.62) !important;
    font-size: 17px !important;
  }

  .hero-entry .primary-link,
  .hero-entry .secondary-link {
    min-height: 64px !important;
    padding: 18px 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62) !important;
    font-size: 17px !important;
  }

  .collections-section {
    padding: 72px 22px !important;
  }

  .collections-section .section-heading h2 {
    font-size: clamp(42px, 13vw, 68px) !important;
  }

  .collection-page-main {
    padding-top: calc(68px + env(safe-area-inset-top)) !important;
  }

  .collection-page-hero {
    padding: 34px 22px 8px !important;
  }

  .collection-page-hero h1 {
    font-size: clamp(42px, 13vw, 68px) !important;
  }
}

/* v6.8 poster-first homepage: light MILOU entrance, PingFang type, no card hero. */
:root {
  --milou-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--milou-font) !important;
}

body {
  background: #f2f2f1 !important;
  color: #171316 !important;
}

.museum-bar {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 240 !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: var(--fixed-nav-height, 72px) !important;
  margin: 0 !important;
  padding: 0 clamp(28px, 4.8vw, 82px) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 3.4vw, 54px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(242, 242, 241, 0.7) !important;
  color: #171316 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(24px) saturate(136%) !important;
  backdrop-filter: blur(24px) saturate(136%) !important;
}

.museum-bar::before,
.museum-bar::after,
.museum-bar .glass-icon-button,
.collection-page-body .museum-bar .glass-icon-button {
  display: none !important;
  content: none !important;
}

.museum-bar .brand,
.museum-bar .brand span,
.museum-bar .top-nav a,
.museum-bar .language-toggle {
  color: rgba(23, 19, 22, 0.78) !important;
}

.museum-bar .brand {
  font-weight: 800 !important;
}

.museum-bar .brand-mark {
  color: #171316 !important;
}

.museum-bar .top-nav {
  justify-content: center !important;
  gap: clamp(8px, 1.8vw, 28px) !important;
}

.museum-bar .top-nav a,
.museum-bar .language-toggle {
  min-height: 38px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.museum-bar .top-nav a[aria-current="page"],
.museum-bar .language-toggle {
  background: rgba(23, 19, 22, 0.08) !important;
  color: #171316 !important;
}

.hero-section.hero-entry {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: calc(var(--fixed-nav-height, 72px) + clamp(48px, 6vw, 76px)) clamp(28px, 6vw, 92px) clamp(40px, 5vw, 72px) !important;
  overflow: hidden !important;
  background: #f2f2f1 !important;
  color: #171316 !important;
  isolation: isolate !important;
}

.hero-section.hero-entry .hero-feature {
  display: none !important;
}

.hero-section.hero-entry::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: -18% -10% -12% -10% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 135, 178, 0.5) 0 8%, rgba(255, 135, 178, 0) 24%),
    radial-gradient(circle at 68% 50%, rgba(255, 48, 145, 0.62) 0 13%, rgba(255, 48, 145, 0.22) 24%, rgba(255, 48, 145, 0) 43%),
    radial-gradient(circle at 88% 18%, rgba(255, 198, 218, 0.74) 0 10%, rgba(255, 198, 218, 0) 30%),
    radial-gradient(circle at 40% 75%, rgba(255, 223, 233, 0.92) 0 12%, rgba(255, 223, 233, 0) 34%),
    linear-gradient(180deg, #f2f2f1 0%, #eeeeed 100%) !important;
  filter: blur(20px) saturate(112%) !important;
  transform: scale(1.03) !important;
}

.hero-section.hero-entry::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.46)),
    repeating-linear-gradient(0deg, rgba(23, 19, 22, 0.035) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 132px) !important;
  mix-blend-mode: normal !important;
}

.hero-section.hero-entry .hero-copy-block {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr) !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  align-items: start !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #171316 !important;
  text-align: left !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.hero-section.hero-entry .hero-copy-block::before,
.hero-section.hero-entry .hero-copy-block::after {
  display: none !important;
  content: none !important;
}

.hero-section.hero-entry .section-label {
  grid-column: 1 !important;
  grid-row: 1 !important;
  max-width: 16em !important;
  margin: 0 !important;
  color: rgba(23, 19, 22, 0.66) !important;
  font-size: clamp(12px, 1.1vw, 15px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-align: left !important;
}

.hero-section.hero-entry h1 {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  max-width: 8.5em !important;
  margin: clamp(36px, 5vw, 66px) 0 0 !important;
  color: #080708 !important;
  font-family: var(--milou-font) !important;
  font-size: clamp(72px, 12vw, 176px) !important;
  font-weight: 800 !important;
  line-height: 0.92 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-shadow: none !important;
}

.hero-section.hero-entry .hero-english {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  max-width: 18em !important;
  margin: 0 !important;
  color: #080708 !important;
  font-size: clamp(24px, 3.4vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.hero-section.hero-entry .hero-copy-lead {
  grid-column: 1 !important;
  grid-row: 3 !important;
  align-self: end !important;
  max-width: 24em !important;
  margin: 0 0 clamp(28px, 4vw, 48px) !important;
  color: rgba(23, 19, 22, 0.78) !important;
  font-size: clamp(16px, 1.4vw, 21px) !important;
  font-weight: 500 !important;
  line-height: 1.78 !important;
  text-align: left !important;
}

.hero-section.hero-entry .hero-actions {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  align-self: end !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin: 0 !important;
  padding-top: clamp(18px, 2vw, 28px) !important;
}

.hero-section.hero-entry .hero-actions .primary-link,
.hero-section.hero-entry .hero-actions .secondary-link {
  min-height: 46px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(23, 19, 22, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.38) !important;
  color: #080708 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}

.hero-section.hero-entry .hero-actions .primary-link {
  background: rgba(255, 255, 255, 0.78) !important;
}

.hero-section.hero-entry .hero-poster-fragment,
.hero-section.hero-entry .hero-scroll-cue {
  display: none !important;
}

@media (max-width: 760px) {
  .museum-bar {
    min-height: calc(64px + env(safe-area-inset-top)) !important;
    padding: calc(10px + env(safe-area-inset-top)) 18px 10px !important;
    background: rgba(242, 242, 241, 0.82) !important;
  }

  .museum-bar .top-nav {
    display: none !important;
  }

  .hero-section.hero-entry {
    min-height: 100svh !important;
    padding: calc(64px + env(safe-area-inset-top) + 26px) 24px calc(32px + env(safe-area-inset-bottom)) !important;
  }

  .hero-section.hero-entry .hero-copy-block {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: calc(100svh - 132px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
  }

  .hero-section.hero-entry h1 {
    max-width: 4.2em !important;
    margin-top: 26px !important;
    font-size: clamp(64px, 18vw, 92px) !important;
    line-height: 0.96 !important;
  }

  .hero-section.hero-entry .hero-english {
    max-width: 12em !important;
    margin-top: 24px !important;
    font-size: clamp(24px, 8vw, 36px) !important;
    line-height: 1.04 !important;
  }

  .hero-section.hero-entry .hero-copy-lead {
    max-width: 20em !important;
    margin-top: auto !important;
    margin-bottom: 20px !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .hero-section.hero-entry .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding-top: 0 !important;
  }

  .hero-section.hero-entry .hero-actions .primary-link,
  .hero-section.hero-entry .hero-actions .secondary-link {
    flex: 1 1 calc(50% - 8px) !important;
    min-width: 132px !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
  }
}

/* v6.7 delivery lock: restore left-aligned exhibition cover and remove stray header chrome. */
html {
  scroll-padding-top: var(--fixed-nav-height, 72px) !important;
}

body {
  background: #f8f5f1 !important;
}

.museum-bar {
  box-sizing: border-box !important;
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 200 !important;
  width: 100% !important;
  min-height: var(--fixed-nav-height, 72px) !important;
  margin: 0 !important;
  padding: 0 clamp(26px, 4.4vw, 72px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0 !important;
  background: rgba(22, 16, 18, 0.78) !important;
  color: #fff !important;
  box-shadow: 0 16px 42px rgba(22, 16, 18, 0.18) !important;
  -webkit-backdrop-filter: blur(24px) saturate(128%) !important;
  backdrop-filter: blur(24px) saturate(128%) !important;
}

.museum-bar::before,
.museum-bar::after,
.museum-bar .glass-icon-button,
.collection-page-body .museum-bar .glass-icon-button {
  display: none !important;
  content: none !important;
}

.museum-bar .brand,
.museum-bar .brand span,
.museum-bar .top-nav a,
.museum-bar .language-toggle {
  color: rgba(255, 255, 255, 0.84) !important;
}

.museum-bar .top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.hero-section.hero-entry {
  box-sizing: border-box !important;
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: calc(var(--fixed-nav-height, 72px) + clamp(76px, 8vw, 118px)) clamp(36px, 7vw, 92px) clamp(64px, 7vw, 92px) !important;
  overflow: hidden !important;
  background: #181112 !important;
  isolation: isolate !important;
}

.hero-section.hero-entry .hero-feature {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-section.hero-entry .hero-feature img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
  opacity: 1 !important;
}

.hero-section.hero-entry::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(18, 12, 14, 0.84) 0%, rgba(18, 12, 14, 0.62) 34%, rgba(18, 12, 14, 0.18) 70%, rgba(18, 12, 14, 0.08) 100%) !important;
}

.hero-section.hero-entry::after,
.hero-section.hero-entry .hero-poster-fragment {
  display: none !important;
  content: none !important;
}

.hero-section.hero-entry .hero-copy-block {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
  text-align: left !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.hero-section.hero-entry .hero-copy-block::before,
.hero-section.hero-entry .hero-copy-block::after {
  display: none !important;
  content: none !important;
}

.hero-section.hero-entry .section-label,
.hero-section.hero-entry .hero-english,
.hero-section.hero-entry .hero-copy-lead,
.hero-section.hero-entry h1 {
  color: rgba(255, 255, 255, 0.9) !important;
  text-align: left !important;
}

.hero-section.hero-entry h1 {
  max-width: 8.5em !important;
  margin: 0.22em 0 0 !important;
  font-size: clamp(58px, 7.8vw, 114px) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35) !important;
}

.hero-section.hero-entry .hero-copy-lead {
  max-width: 26em !important;
  margin-top: clamp(28px, 3vw, 42px) !important;
  font-size: clamp(17px, 1.32vw, 21px) !important;
  font-weight: 500 !important;
  line-height: 1.82 !important;
}

.hero-section.hero-entry .hero-english {
  max-width: 25em !important;
  margin-top: clamp(16px, 2vw, 24px) !important;
  font-size: clamp(16px, 1.1vw, 18px) !important;
  line-height: 1.55 !important;
}

.hero-section.hero-entry .hero-actions {
  justify-content: flex-start !important;
  margin-top: clamp(34px, 4vw, 56px) !important;
}

.hero-section.hero-entry .hero-actions .primary-link,
.hero-section.hero-entry .hero-actions .secondary-link {
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
}

.collections-section .section-heading {
  display: block !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  text-align: left !important;
}

.collections-section .section-heading .section-label,
.collections-section .section-heading h2 {
  display: block !important;
  text-align: left !important;
}

.collections-section .section-heading h2 {
  max-width: 980px !important;
  margin-top: 18px !important;
  font-size: clamp(48px, 6.2vw, 96px) !important;
  line-height: 0.98 !important;
}

.maker-credit {
  opacity: 0.74 !important;
}

.maker-credit p,
.maker-credit a {
  font-size: 11px !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  .museum-bar {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: calc(72px + env(safe-area-inset-top)) !important;
    padding: calc(12px + env(safe-area-inset-top)) 18px 12px !important;
    background: rgba(22, 16, 18, 0.9) !important;
  }

  .museum-bar .top-nav {
    display: none !important;
  }

  .hero-section.hero-entry {
    min-height: 100svh !important;
    padding: calc(72px + env(safe-area-inset-top) + 42px) 28px 54px !important;
  }

  .hero-section.hero-entry::before {
    background:
      linear-gradient(180deg, rgba(18, 12, 14, 0.1) 0%, rgba(18, 12, 14, 0.5) 36%, rgba(18, 12, 14, 0.82) 100%) !important;
  }

  .hero-section.hero-entry .hero-feature img {
    object-position: 58% center !important;
  }

  .hero-section.hero-entry .hero-copy-block {
    align-self: end !important;
    width: 100% !important;
  }

  .hero-section.hero-entry h1 {
    max-width: 5.2em !important;
    font-size: clamp(56px, 18vw, 82px) !important;
    line-height: 1.04 !important;
  }

  .hero-section.hero-entry .hero-copy-lead {
    max-width: 18em !important;
    font-size: 17px !important;
    line-height: 1.78 !important;
  }

  .hero-section.hero-entry .hero-actions {
    display: flex !important;
    gap: 10px !important;
  }

  .hero-section.hero-entry .hero-actions .primary-link,
  .hero-section.hero-entry .hero-actions .secondary-link {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 0 16px !important;
  }

  .collections-section .section-heading h2 {
    font-size: clamp(42px, 13vw, 64px) !important;
  }
}

/* v6.4 student works: immersive touch frame, minimal reading surface. */
.collection-page-body[data-collection="student"] {
  background: #fff;
  color: #241719;
}

.collection-page-body[data-collection="student"] .collection-page-main {
  max-width: 1180px;
  padding-right: clamp(18px, 4vw, 42px);
  padding-left: clamp(18px, 4vw, 42px);
}

.collection-page-body[data-collection="student"] .collection-page-hero {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.collection-page-body[data-collection="student"] .collection-page-hero h1 {
  max-width: 760px;
  letter-spacing: 0 !important;
}

.collection-page-body[data-collection="student"] .collection-page-actions span {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.collection-page-body[data-collection="student"] .single-work-viewer {
  position: relative;
  display: block;
  min-height: min(820px, calc(100svh - 112px));
  padding: clamp(10px, 2.6vw, 30px) 0 0;
}

.collection-page-body[data-collection="student"] .collection-page-detail {
  display: block !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.student-immersive-work {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  gap: clamp(14px, 2.6vw, 26px);
  min-height: min(760px, calc(100svh - 126px));
}

.student-swipe-hint {
  margin: 0;
  color: rgba(36, 23, 25, 0.42);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.student-frame-stage {
  width: 100%;
  display: grid;
  place-items: center;
  perspective: 1200px;
  touch-action: pan-y;
}

.student-touch-frame {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 50%;
  --glare: 0;
  position: relative;
  display: block;
  width: min(88vw, 780px);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: grab;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, filter 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.student-touch-frame.is-touching {
  cursor: grabbing;
  transition-duration: 80ms;
  filter: saturate(1.02);
}

.student-touch-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--gx) var(--gy), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 22%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), rgba(255, 166, 190, 0.08) 42%, rgba(255, 255, 255, 0.02));
  opacity: var(--glare);
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}

.student-touch-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(66svh, 700px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 28px 46px rgba(35, 22, 20, 0.13));
}

.student-immersive-caption {
  width: min(100%, 720px);
  text-align: center;
}

.student-immersive-caption p,
.student-immersive-caption span {
  margin: 0;
  color: rgba(36, 23, 25, 0.55);
  font-size: 15px;
  font-weight: 700;
}

.student-immersive-caption h2 {
  margin: 8px 0 8px;
  color: #241719;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.student-immersive-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.student-immersive-actions button {
  min-width: 138px;
  min-height: 46px;
  border: 1px solid rgba(36, 23, 25, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #241719;
  box-shadow: 0 14px 32px rgba(32, 20, 20, 0.08);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.student-immersive-actions button[data-share-poster] {
  border-color: rgba(189, 96, 112, 0.28);
  background: #b96b70;
  color: #fff;
}

.collection-page-body[data-collection="student"] .single-work-control {
  position: absolute !important;
  top: 48% !important;
  z-index: 4 !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(36, 23, 25, 0.08) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #241719 !important;
  box-shadow: 0 16px 32px rgba(35, 22, 20, 0.12) !important;
  backdrop-filter: blur(18px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;
}

.collection-page-body[data-collection="student"] .single-work-control.is-prev {
  left: clamp(4px, 1vw, 16px) !important;
}

.collection-page-body[data-collection="student"] .single-work-control.is-next {
  right: clamp(4px, 1vw, 16px) !important;
}

.student-story-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(25, 18, 20, 0.24);
}

.student-story-overlay[hidden] {
  display: none;
}

.student-story-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(76svh, 720px);
  overflow: auto;
  border-radius: 28px;
  background: #fffdfb;
  box-shadow: 0 24px 80px rgba(24, 15, 16, 0.2);
  padding: clamp(24px, 4vw, 42px);
}

.student-story-content h2 {
  margin: 8px 0 10px;
  color: #241719;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.student-story-author,
.student-story-content p {
  color: rgba(36, 23, 25, 0.68);
  font-size: 17px;
  line-height: 1.85;
}

.student-story-content .collection-detail-note {
  margin-top: 18px;
  color: rgba(36, 23, 25, 0.5);
  font-size: 14px;
}

@media (max-width: 760px) {
  .collection-page-body[data-collection="student"] .collection-page-main {
    padding: calc(var(--fixed-nav-height, 62px) + 8px) 0 26px !important;
  }

  .collection-page-body[data-collection="student"] .collection-page-hero {
    display: none !important;
  }

  .collection-page-body[data-collection="student"] .single-work-viewer {
    min-height: calc(100svh - var(--fixed-nav-height, 62px) - 12px);
    padding: 0;
  }

  .student-immersive-work {
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding: 16px 18px 22px;
    gap: 12px;
  }

  .student-swipe-hint {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .student-frame-stage {
    align-content: center;
    min-height: auto;
  }

  .student-touch-frame {
    width: min(94vw, 540px);
  }

  .student-touch-frame img {
    max-height: 52svh;
    filter: drop-shadow(0 20px 34px rgba(35, 22, 20, 0.14));
  }

  .student-immersive-caption {
    width: 100%;
  }

  .student-immersive-caption h2 {
    margin-top: 6px;
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.04;
  }

  .student-immersive-caption p,
  .student-immersive-caption span {
    font-size: 13px;
  }

  .student-immersive-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .student-immersive-actions button {
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .collection-page-body[data-collection="student"] .single-work-control {
    top: 42% !important;
    width: 44px !important;
    height: 44px !important;
    opacity: 0.82 !important;
  }

  .collection-page-body[data-collection="student"] .single-work-control.is-prev {
    left: 8px !important;
  }

  .collection-page-body[data-collection="student"] .single-work-control.is-next {
    right: 8px !important;
  }

  .collection-page-body[data-collection="student"] .single-thumb-strip {
    display: none !important;
  }

  .student-story-overlay {
    padding: 0;
    align-items: end;
  }

  .student-story-dialog {
    width: 100%;
    max-height: 78svh;
    border-radius: 26px 26px 0 0;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  }

  .student-story-content h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .student-story-author,
  .student-story-content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .student-touch-frame {
    transition: none;
    transform: none !important;
  }

  .student-touch-frame::before {
    display: none;
  }
}

/* v7 charity gala final: stable first-screen hierarchy across legacy hero styles. */
body {
  overflow-x: hidden !important;
}

.hero-section.hero-entry {
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.76fr) !important;
  grid-auto-rows: auto !important;
  align-items: center !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  min-height: min(820px, calc(100svh - 20px)) !important;
  margin: 0 auto !important;
  padding: clamp(104px, 10vw, 132px) 0 clamp(42px, 6vw, 72px) !important;
  gap: clamp(28px, 4.6vw, 64px) !important;
  overflow: visible !important;
  background: transparent !important;
  isolation: isolate !important;
}

.hero-section.hero-entry::before,
.hero-section.hero-entry::after {
  display: none !important;
  content: none !important;
}

.hero-section.hero-entry .hero-poster-fragment,
.hero-section.hero-entry .hero-scroll-cue {
  display: none !important;
}

.hero-section.hero-entry .charity-hero-gallery {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(460px, 52vw, 650px) !important;
}

.hero-section.hero-entry .hero-copy-block {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(33, 22, 26, 0.1) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 247, 0.9)) !important;
  box-shadow: 0 24px 72px rgba(33, 22, 26, 0.13) !important;
  color: #21161a !important;
}

.hero-section.hero-entry .poster-title-lockup {
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin: 0 0 18px !important;
}

.hero-section.hero-entry .maze-word {
  width: 132px !important;
  flex: 0 0 132px !important;
}

.hero-section.hero-entry .poster-title-lockup > span,
.hero-section.hero-entry .section-label {
  color: rgba(33, 22, 26, 0.58) !important;
}

.hero-section.hero-entry h1 {
  max-width: none !important;
  color: #21161a !important;
  font-size: clamp(42px, 5vw, 70px) !important;
  font-weight: 850 !important;
  line-height: 1.06 !important;
  text-align: left !important;
}

.hero-section.hero-entry .hero-copy-lead {
  max-width: 31em !important;
  margin-top: 18px !important;
  color: rgba(33, 22, 26, 0.72) !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.78 !important;
}

.hero-section.hero-entry .hero-facts {
  grid-template-columns: 1fr !important;
  width: 100% !important;
  margin-top: 22px !important;
  border-radius: 20px !important;
  background: rgba(248, 245, 242, 0.86) !important;
  box-shadow: none !important;
}

.hero-section.hero-entry .hero-facts div {
  min-height: 64px !important;
  padding: 14px 16px !important;
  border-radius: 16px !important;
}

.hero-section.hero-entry .hero-facts dt {
  color: rgba(33, 22, 26, 0.42) !important;
}

.hero-section.hero-entry .hero-facts dd {
  color: #21161a !important;
}

.hero-section.hero-entry .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 22px !important;
}

.hero-section.hero-entry .hero-actions .primary-link,
.hero-section.hero-entry .hero-actions .secondary-link {
  min-height: 48px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  text-align: center !important;
}

.hero-section.hero-entry .hero-actions .primary-link {
  background: #21161a !important;
  color: #fff !important;
}

.hero-section.hero-entry .hero-actions .secondary-link {
  border: 1px solid rgba(33, 22, 26, 0.13) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #21161a !important;
}

.collection-page-body,
.collection-page-body .collection-page-main,
.collection-page-body .single-work-detail,
.collection-page-body .single-work-copy {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.collection-page-body .single-work-copy h2 {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance !important;
}

@media (max-width: 860px) {
  .hero-section.hero-entry {
    display: flex !important;
    flex-direction: column !important;
    width: min(100% - 28px, 560px) !important;
    min-height: auto !important;
    padding: 94px 0 44px !important;
    gap: 20px !important;
  }

  .hero-section.hero-entry .hero-copy-block {
    order: 1 !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .hero-section.hero-entry .charity-hero-gallery {
    order: 2 !important;
    min-height: min(380px, 88vw) !important;
  }

  .hero-section.hero-entry .charity-hero-card {
    border-width: 5px !important;
    border-radius: 22px !important;
  }

  .hero-section.hero-entry .charity-hero-card.is-featured {
    inset: 0 15% 8% 0 !important;
  }

  .hero-section.hero-entry .charity-hero-card:not(.is-featured) {
    width: 35% !important;
    height: 30% !important;
  }

  .hero-section.hero-entry .charity-hero-card:nth-child(2) {
    top: 7% !important;
  }

  .hero-section.hero-entry .charity-hero-card:nth-child(3) {
    right: 4% !important;
    bottom: 4% !important;
  }

  .hero-section.hero-entry .poster-title-lockup {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .hero-section.hero-entry .maze-word {
    width: 108px !important;
    flex-basis: 108px !important;
  }

  .hero-section.hero-entry h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.1 !important;
  }

  .hero-section.hero-entry .hero-copy-lead {
    margin-top: 14px !important;
    font-size: 16px !important;
  }

  .hero-section.hero-entry .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-section.hero-entry .hero-actions .primary-link,
  .hero-section.hero-entry .hero-actions .secondary-link {
    width: 100% !important;
    min-height: 48px !important;
  }

  .collection-page-body .single-work-copy h2 {
    font-size: clamp(28px, 8.5vw, 36px) !important;
    line-height: 1.14 !important;
  }
}

/* Final hero correction: replace the legacy dark exhibition cover with a readable gala hero. */
.hero-entry {
  display: grid !important;
  width: min(100% - 40px, 1180px) !important;
  margin: 0 auto !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #21161a !important;
}

.hero-entry::before,
.hero-entry::after {
  display: none !important;
}

.hero-copy-block {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: end !important;
  max-width: 520px !important;
  color: #21161a !important;
}

.hero-entry .poster-title-lockup,
.hero-entry h1,
.hero-entry .hero-copy-lead,
.hero-entry .hero-actions,
.hero-entry .hero-facts {
  color: #21161a !important;
}

.hero-entry h1 {
  font-size: clamp(58px, 7vw, 116px) !important;
  line-height: 0.98 !important;
  text-shadow: none !important;
}

.hero-entry .hero-copy-lead {
  color: rgba(33, 22, 26, 0.72) !important;
  text-shadow: none !important;
}

.hero-entry .poster-title-lockup > span {
  color: rgba(33, 22, 26, 0.52) !important;
}

.hero-entry .hero-facts div {
  background: rgba(255, 255, 255, 0.72) !important;
}

@media (max-width: 860px) {
  .hero-entry {
    width: min(100% - 28px, 560px) !important;
  }
  .hero-copy-block {
    grid-column: 1 !important;
  }

  .hero-copy-block {
    grid-row: 1 !important;
    justify-self: stretch !important;
    max-width: 100% !important;
  }

  .hero-entry h1 {
    font-size: clamp(52px, 18vw, 86px) !important;
  }

  .single-work-copy h2 {
    font-size: clamp(34px, 12vw, 52px) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere !important;
  }
}

/* v2.3 quiet editorial finish: no box-first UI, no anchor collisions */
html {
  scroll-padding-top: 128px !important;
}

#guide,
#research,
#artist-works,
#student-works,
#works,
#claim,
#map,
#qr,
#contact {
  scroll-margin-top: 132px !important;
}

.museum-bar {
  outline: 0 !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.18) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.18) !important;
  backdrop-filter: blur(24px) saturate(1.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(34, 23, 28, 0.035),
    0 18px 54px rgba(61, 43, 45, 0.075) !important;
}

.exhibition-facts,
.guide-runway,
.intro-panel,
.theme-rail,
.claim-flow {
  background: transparent !important;
  box-shadow: none !important;
}

.exhibition-facts::before,
.exhibition-facts::after,
.guide-runway::before,
.guide-runway::after,
.chapter-track::before,
.chapter-track::after,
.claim-flow::before,
.claim-flow::after,
.theme-rail::before,
.theme-rail::after {
  display: none !important;
}

.exhibition-facts article,
.chapter-card,
.theme-card,
.claim-flow article {
  outline: 0 !important;
}
.work-spec{
  border: 0 !important;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 104px !important;
  }

  #guide,
  #research,
  #artist-works,
  #student-works,
  #works,
  #claim,
  #map,
  #qr,
  #contact {
    scroll-margin-top: 108px !important;
  }
}

/* v2.4 delivery fixes: softer hero media, complete MILOU lockup, aligned work browsing */
.brand-mark {
  width: auto !important;
  min-width: 44px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

.maze-word {
  width: min(360px, 38vw) !important;
  flex: 0 0 min(360px, 38vw) !important;
  overflow: visible !important;
}

.maze-word img {
  max-height: 88px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.hero-entry {
  overflow: hidden !important;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34rem),
    linear-gradient(180deg, #f8f3ef 0%, #f2e6df 100%) !important;
}

.hero-entry::before {
  display: none !important;
}

.hero-feature {
  inset: clamp(82px, 6vw, 108px) clamp(28px, 4vw, 68px) clamp(30px, 4vw, 56px) !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: clamp(34px, 4.4vw, 72px) !important;
  background: transparent !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 28px 90px rgba(78, 45, 48, 0.08) !important;
}

.hero-feature::after {
  display: none !important;
}

.hero-feature img,
.hero-feature video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  filter: saturate(0.96) contrast(1.02) brightness(1.04) !important;
}

.hero-feature video {
  transform: scale(1.075) !important;
  transform-origin: center !important;
}

.hero-copy-block {
  color: var(--wine) !important;
  text-shadow: none !important;
}

.hero-entry h1 {
  max-width: 8.4em !important;
  color: rgba(138, 62, 59, 0.88) !important;
  overflow: visible !important;
  white-space: normal !important;
  line-height: 0.96 !important;
}

.hero-copy-lead {
  color: rgba(78, 45, 48, 0.76) !important;
  font-weight: 500 !important;
}

.hero-actions .primary-link,
.hero-actions .secondary-link {
  border-color: rgba(138, 62, 59, 0.16) !important;
  color: rgba(78, 45, 48, 0.9) !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

.hero-actions .primary-link {
  color: #fff !important;
  background: rgba(138, 62, 59, 0.86) !important;
}

.collection-dialog .work-tile {
  display: grid !important;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr) !important;
  align-items: center !important;
  min-height: clamp(430px, 50vw, 660px) !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  scroll-snap-align: center !important;
}

.collection-dialog .work-tile:hover {
  transform: none !important;
  box-shadow: none !important;
}

.collection-dialog .work-tile::before,
.collection-dialog .work-tile::after {
  display: none !important;
}

.collection-dialog .work-tile img,
.collection-dialog .work-tile.is-artist img,
.collection-dialog .work-tile.is-student img {
  width: 100% !important;
  height: clamp(390px, 48vw, 620px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: saturate(0.98) contrast(1) !important;
  mix-blend-mode: normal !important;
}

.collection-dialog .work-tile:hover img {
  transform: scale(1.01) !important;
}

@media (max-width: 980px) {
  .maze-word {
    width: min(260px, 56vw) !important;
    flex-basis: min(260px, 56vw) !important;
  }

  .hero-feature {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .hero-feature img,
  .hero-feature video {
    border-radius: 0 !important;
    object-position: 58% center !important;
  }

  .hero-entry h1 {
    max-width: 6.8em !important;
    font-size: clamp(48px, 13.6vw, 70px) !important;
  }

  .collection-dialog .work-tile {
    grid-template-columns: 1fr !important;
    align-content: start !important;
    min-height: auto !important;
  }

  .collection-dialog .work-tile img,
  .collection-dialog .work-tile.is-artist img,
  .collection-dialog .work-tile.is-student img {
    height: min(62svh, 520px) !important;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0 !important;
  }

  .brand-mark {
    min-width: 40px !important;
    height: 30px !important;
    padding: 0 9px !important;
    font-size: 14px !important;
  }

  .museum-bar .brand > span:last-child {
    display: none !important;
  }

  .maze-word {
    width: min(218px, 66vw) !important;
    flex-basis: min(218px, 66vw) !important;
  }

  .maze-word img {
    max-height: 66px !important;
  }
}

/* v2.6 mobile hero QA: preserve the video portal while keeping all title text readable */
@media (max-width: 760px) {
  .museum-bar {
    top: 18px !important;
    left: 18px !important;
    right: 18px !important;
    width: calc(100% - 36px) !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    border-radius: 28px !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.62) !important;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.62),
      0 18px 44px rgba(82, 52, 49, 0.12) !important;
  }

  .hero-entry {
    min-height: 100svh !important;
    padding: 0 !important;
    align-items: end !important;
  }

  .hero-feature video {
    transform: scale(1.03) !important;
    transform-origin: 62% center !important;
    object-position: 62% center !important;
  }

  .hero-entry::after {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 68% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 246, 0) 0%, rgba(255, 248, 246, 0.68) 46%, rgba(255, 248, 246, 0.94) 100%),
      radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 46%) !important;
  }

  .hero-copy-block {
    width: 100% !important;
    max-width: none !important;
    padding: 0 28px calc(92px + env(safe-area-inset-bottom)) !important;
  }

  .maze-word {
    width: 168px !important;
    flex-basis: 168px !important;
  }

  .maze-word img {
    max-height: 52px !important;
  }

  .hero-entry h1 {
    max-width: 5.8em !important;
    font-size: clamp(42px, 11.3vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
  }

  .hero-copy-lead {
    max-width: 20em !important;
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.78 !important;
  }

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

  .hero-actions .primary-link,
  .hero-actions .secondary-link {
    min-height: 46px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 390px) {
  .hero-entry h1 {
    font-size: 41px !important;
  }

  .hero-copy-block {
    padding-inline: 22px !important;
  }

  .hero-actions {
    flex-wrap: nowrap !important;
  }
}
.primary-link:focus,
.primary-link:focus-visible,
.secondary-link:focus,
.secondary-link:focus-visible,
.work-tile:focus,
.work-tile:focus-visible{
  outline: 0 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 14px 34px rgba(34, 23, 28, 0.1) !important;
}
.work-dialog.is-artist .dialog-art img {
  background: transparent !important;
  box-shadow: none !important;
}

.collection-dialog .work-tile,
.collection-dialog .work-tile.is-artist,
.collection-dialog .work-tile.is-student {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.collection-dialog .work-tile img,
.collection-dialog .work-tile.is-artist img,
.collection-dialog .work-tile.is-student img {
  background: transparent !important;
  box-shadow: none !important;
}

:root {
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body,
button,
input,
select,
textarea,
body :where(h1, h2, h3, h4, p, span, strong, small, dt, dd, a, button, label, li, figcaption) {
  font-family: var(--font-ui) !important;
  letter-spacing: 0 !important;
}

/* v2.8 editorial spacing pass: use distance and rhythm, not boxed UI, for secondary content. */
.exhibition-facts,
.guide-runway,
.intro-panel,
.theme-rail,
.claim-flow,
.qr-grid {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.exhibition-facts article,
.chapter-card,
.theme-card,
.claim-flow article,
.qr-entry,
.glass-panel,
.collection-item {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.chapter-card,
.theme-card,
.claim-flow article {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.theme-rail {
  gap: clamp(28px, 4vw, 64px) !important;
}

.theme-card p,
.claim-flow p,
.qr-entry p {
  max-width: 30em !important;
}

.claim-flow {
  gap: clamp(34px, 5vw, 84px) !important;
}

.qr-grid {
  gap: clamp(42px, 6vw, 96px) !important;
}

.qr-entry {
  grid-template-columns: 156px minmax(0, 1fr) !important;
  align-items: start !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.qr-image-wrap {
  width: 156px !important;
  height: 156px !important;
  display: grid !important;
  place-items: center !important;
  padding: 12px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: 0 18px 52px rgba(66, 48, 50, 0.08) !important;
}

.qr-image-wrap img {
  width: 132px !important;
  height: 132px !important;
  display: block !important;
}

.contact-section .glass-panel {
  max-width: 980px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 760px) {
  .chapter-card,
  .claim-flow article,
  .theme-card,
  .qr-entry {
    padding-block: 0 !important;
  }

  .qr-grid {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .qr-entry {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .qr-image-wrap {
    width: 118px !important;
    height: 118px !important;
    padding: 9px !important;
  }

  .qr-image-wrap img {
    width: 98px !important;
    height: 98px !important;
  }

  .qr-entry h3 {
    font-size: 24px !important;
  }
}

/* v2.9 anchor polish: keep section jumps below the fixed nav without exposing too much previous content. */
html {
  scroll-padding-top: 78px !important;
}

#guide,
#research,
#artist-works,
#student-works,
#works,
#claim,
#map,
#qr,
#contact {
  scroll-margin-top: 78px !important;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 72px !important;
  }

  #guide,
  #research,
  #artist-works,
  #student-works,
  #works,
  #claim,
  #map,
  #qr,
  #contact {
    scroll-margin-top: 72px !important;
  }
}

/* v3.0 glass QA: keep fixed navigation legible when it floats above dense text. */
.museum-bar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 248, 0.74)),
    rgba(255, 255, 255, 0.72) !important;
  -webkit-backdrop-filter: blur(42px) saturate(1.28) contrast(1.02) !important;
  backdrop-filter: blur(42px) saturate(1.28) contrast(1.02) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(40, 28, 31, 0.04),
    0 18px 58px rgba(54, 38, 42, 0.12) !important;
}

@media (max-width: 760px) {
  .museum-bar {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 249, 0.82)),
      rgba(255, 255, 255, 0.8) !important;
    -webkit-backdrop-filter: blur(46px) saturate(1.34) contrast(1.03) !important;
    backdrop-filter: blur(46px) saturate(1.34) contrast(1.03) !important;
  }
}

#artist-works,
#student-works {
  scroll-margin-top: 112px !important;
}

@media (max-width: 760px) {
  #artist-works,
  #student-works {
    scroll-margin-top: 124px !important;
  }
}

/* v3.2 final QA: keep the quiet look, but make mobile controls easy to tap. */
.brand {
  min-height: 44px !important;
  padding-block: 7px !important;
  box-sizing: border-box !important;
}

.brand-mark {
  min-height: 30px !important;
}

.hero-entry h1 {
  line-height: 1.12 !important;
  padding-bottom: 0.02em !important;
}

/* v3.4 artist-preview: static hero image plus the student exhibition introduction poster. */
.hero-feature img {
  transform: none !important;
  image-rendering: auto;
}

#student-intro {
  scroll-margin-top: 112px;
}

.student-intro-section {
  width: min(var(--page-max), calc(100% - 48px));
  margin: 0 auto clamp(78px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
  padding: clamp(52px, 7vw, 92px) 0;
}

.student-intro-copy {
  min-width: 0;
}

.student-intro-section h2 {
  max-width: 8em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 7.2vw, 116px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.student-intro-kicker {
  margin: 22px 0 0;
  color: rgba(34, 25, 30, 0.58);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 650;
  line-height: 1.45;
}

.student-intro-text {
  max-width: 760px;
  margin-top: clamp(30px, 4vw, 54px);
  display: grid;
  gap: 18px;
  color: rgba(34, 25, 30, 0.72);
  font-size: clamp(16px, 1.16vw, 20px);
  font-weight: 420;
  line-height: 2;
}

.student-intro-text p {
  margin: 0;
}

.student-intro-meta {
  margin: clamp(34px, 5vw, 58px) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 38px;
}

.student-intro-meta div {
  min-width: 0;
}

.student-intro-meta dt {
  margin: 0 0 8px;
  color: rgba(138, 62, 59, 0.58);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.student-intro-meta dd {
  margin: 0;
  color: rgba(34, 25, 30, 0.78);
  font-size: 15px;
  font-weight: 570;
  line-height: 1.65;
}

.student-intro-poster {
  position: sticky;
  top: 116px;
  margin: 0;
  align-self: start;
}

.student-intro-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 32px 92px rgba(61, 39, 43, 0.12);
}

@media (max-width: 980px) {
  .student-intro-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
  }

  .student-intro-poster {
    position: relative;
    top: auto;
    width: min(560px, 100%);
  }
}

/* v3.5 artist feedback: remove decorative title art and return to a clean museum title. */
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", sans-serif !important;
}

.hero-entry .poster-title-lockup {
  gap: 0 !important;
  margin-bottom: clamp(16px, 2vw, 28px) !important;
}

.hero-entry .maze-word {
  display: none !important;
}

.hero-entry .poster-title-lockup > span {
  color: rgba(35, 27, 31, 0.72) !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(12px, 1vw, 15px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.4 !important;
}

.hero-entry h1 {
  max-width: 6em !important;
  color: #21191d !important;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  font-size: clamp(58px, 8vw, 112px) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

@media (max-width: 760px) {
  .hero-entry h1 {
    font-size: clamp(52px, 17vw, 82px) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 760px) {
  #student-intro {
    scroll-margin-top: 124px;
  }

  .student-intro-section {
    width: min(100% - 36px, 680px);
    margin-bottom: 80px;
    padding: 34px 0 56px;
  }

  .student-intro-section h2 {
    font-size: clamp(42px, 14vw, 62px);
    line-height: 1;
  }

  .student-intro-text {
    margin-top: 26px;
    font-size: 15px;
    line-height: 1.88;
  }

  .student-intro-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* v3.6 final preview: simple museum typography, readable on the static hero image. */
.hero-entry::before {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(14, 10, 11, 0.72) 0%, rgba(14, 10, 11, 0.48) 34%, rgba(14, 10, 11, 0.12) 64%, rgba(14, 10, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(14, 10, 11, 0.08) 0%, rgba(14, 10, 11, 0.18) 58%, rgba(14, 10, 11, 0.48) 100%) !important;
}

.hero-entry h1 {
  color: rgba(255, 248, 244, 0.96) !important;
  text-shadow: none !important;
}

.hero-entry .poster-title-lockup > span,
.hero-entry .hero-copy-lead {
  color: rgba(255, 248, 244, 0.84) !important;
}

.hero-entry .hero-actions .primary-link {
  background: rgba(255, 248, 244, 0.94) !important;
  color: #21191d !important;
}

.hero-entry .hero-actions .secondary-link {
  border-color: rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 248, 244, 0.94) !important;
}

/* v3.7: keep only the formal route, flatten the hero image, and make the mask quieter. */
.hero-entry {
  width: 100vw !important;
  min-height: 100svh !important;
  margin-left: calc(50% - 50vw) !important;
  padding: clamp(116px, 12vh, 152px) clamp(24px, 10vw, 136px) 86px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #160f10 !important;
}

.hero-entry::before {
  display: block !important;
  background: linear-gradient(
    90deg,
    rgba(20, 13, 13, 0.54) 0%,
    rgba(20, 13, 13, 0.28) 32%,
    rgba(20, 13, 13, 0.06) 58%,
    rgba(20, 13, 13, 0) 76%
  ) !important;
}

.hero-feature {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-feature img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  filter: saturate(0.95) contrast(1.03) brightness(0.92) !important;
  transform: none !important;
}

.hero-copy-block {
  max-width: min(720px, 56vw) !important;
}

.hero-entry .poster-title-lockup,
.hero-entry h1,
.hero-entry .hero-copy-lead,
.hero-entry .hero-actions,
.hero-scroll-cue {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 760px) {
  .hero-entry {
    padding: 112px 22px 58px !important;
  }

  .hero-entry::before {
    background: linear-gradient(
      180deg,
      rgba(20, 13, 13, 0.46) 0%,
      rgba(20, 13, 13, 0.28) 42%,
      rgba(20, 13, 13, 0.18) 100%
    ) !important;
  }

  .hero-feature img {
    object-position: 57% center !important;
    filter: saturate(0.96) contrast(1.02) brightness(0.9) !important;
  }

  .hero-copy-block {
    max-width: 100% !important;
  }

  .hero-poster-fragment {
    display: none !important;
  }
}

/* v3.8: make the entry feel like the exhibition image itself, with a lighter liquid-glass tab. */
.museum-bar {
  width: min(1120px, calc(100% - clamp(28px, 6vw, 72px))) !important;
  min-height: 54px !important;
  top: clamp(14px, 2.2vw, 24px) !important;
  padding: 7px 8px 7px 12px !important;
  border: 1px solid rgba(255, 248, 244, 0.34) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 244, 0.3), rgba(255, 248, 244, 0.12)) !important;
  box-shadow:
    0 24px 68px rgba(24, 13, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.18) !important;
  backdrop-filter: blur(20px) saturate(1.18) !important;
}

.museum-bar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0.72;
}

.museum-bar .brand,
.museum-bar .top-nav,
.museum-bar .glass-icon-button {
  position: relative;
  z-index: 1;
}

.museum-bar .brand {
  color: rgba(255, 248, 244, 0.94) !important;
}

.museum-bar .brand-mark {
  min-width: 54px !important;
  height: 38px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(255, 248, 244, 0.15) !important;
  color: rgba(255, 248, 244, 0.94) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12) !important;
}

.top-nav a {
  color: rgba(255, 248, 244, 0.78) !important;
  border-radius: 999px !important;
}

.top-nav a:hover {
  background: rgba(255, 248, 244, 0.14) !important;
  color: rgba(255, 248, 244, 0.96) !important;
}

.hero-entry {
  display: block !important;
  width: 100vw !important;
  min-height: 100svh !important;
  margin-left: calc(50% - 50vw) !important;
  padding: clamp(124px, 14vh, 168px) clamp(24px, 11vw, 144px) 76px !important;
  background: #171010 !important;
}

.hero-entry::before {
  background:
    linear-gradient(90deg, rgba(18, 10, 11, 0.68) 0%, rgba(18, 10, 11, 0.36) 38%, rgba(18, 10, 11, 0.05) 72%),
    linear-gradient(180deg, rgba(18, 10, 11, 0.08) 0%, rgba(18, 10, 11, 0.08) 58%, rgba(18, 10, 11, 0.34) 100%) !important;
}

.hero-entry .hero-feature {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
}

.hero-entry .hero-feature img {
  width: 100vw !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(0.98) contrast(1.02) brightness(0.96) !important;
}

.hero-entry .hero-copy-block {
  max-width: min(650px, 48vw) !important;
}

.hero-entry .hero-actions .primary-link,
.hero-entry .hero-actions .secondary-link {
  min-height: 52px !important;
  border-radius: 999px !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.14) !important;
  backdrop-filter: blur(18px) saturate(1.14) !important;
  box-shadow:
    0 16px 42px rgba(22, 12, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.hero-entry .hero-actions .secondary-link {
  background: rgba(255, 248, 244, 0.14) !important;
}

@media (max-width: 980px) {
  .museum-bar {
    width: calc(100% - 28px) !important;
  }

  .hero-entry .hero-copy-block {
    max-width: 620px !important;
  }
}

@media (max-width: 760px) {
  .museum-bar {
    min-height: 52px !important;
    padding: 6px 7px 6px 10px !important;
  }

  .museum-bar .brand {
    gap: 8px !important;
  }

  .museum-bar .brand-mark {
    min-width: 50px !important;
    height: 36px !important;
    padding: 0 12px !important;
  }

  .hero-entry {
    min-height: 100svh !important;
    padding: 112px 22px 56px !important;
  }

  .hero-entry::before {
    background:
      linear-gradient(180deg, rgba(18, 10, 11, 0.32) 0%, rgba(18, 10, 11, 0.2) 36%, rgba(18, 10, 11, 0.58) 100%),
      linear-gradient(90deg, rgba(18, 10, 11, 0.34) 0%, rgba(18, 10, 11, 0.02) 74%) !important;
  }

  .hero-entry .hero-feature img {
    object-position: 58% center !important;
    filter: saturate(0.98) contrast(1.02) brightness(0.94) !important;
  }
}

/* v3.9: soften the tab to match the quieter CTA glass instead of a solid control bar. */
.museum-bar {
  min-height: 52px !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 244, 0.18), rgba(255, 248, 244, 0.08)) !important;
  box-shadow:
    0 18px 48px rgba(24, 13, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.12) !important;
  backdrop-filter: blur(22px) saturate(1.12) !important;
}

.museum-bar::before {
  opacity: 0.42 !important;
}

.museum-bar .brand-mark{
  background: rgba(255, 248, 244, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

/* v4.0: align the top tab with the quieter hero CTA glass. */
.museum-bar {
  width: min(1040px, calc(100% - clamp(24px, 5vw, 64px))) !important;
  min-height: 54px !important;
  padding: 8px 10px 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 248, 244, 0.08)) !important;
  box-shadow:
    0 18px 50px rgba(24, 13, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(26px) saturate(1.16) contrast(1.02) !important;
  backdrop-filter: blur(26px) saturate(1.16) contrast(1.02) !important;
}

.museum-bar::before {
  inset: 1px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  opacity: 0.28 !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 52%, rgba(255, 255, 255, 0.1)) !important;
}

.museum-bar .brand-mark{
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 248, 244, 0.06)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 980px) {
  .museum-bar {
    width: min(680px, calc(100% - 28px)) !important;
  }
}

@media (max-width: 760px) {
  .museum-bar {
    left: auto !important;
    right: auto !important;
    width: calc(100% - 32px) !important;
    margin: 14px auto 0 !important;
  }
}

/* v4.2: fixed readable navigation + real collection pages. */
html {
  scroll-padding-top: 96px !important;
}

.museum-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 0 clamp(22px, 4.8vw, 72px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(18, 14, 16, 0.96) !important;
  box-shadow: 0 14px 40px rgba(18, 12, 14, 0.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  color: #fff8f4 !important;
}

.museum-bar::before {
  display: none !important;
}

.museum-bar .brand {
  color: #fff8f4 !important;
}

.museum-bar .brand-mark {
  min-width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff8f4 !important;
}

.museum-bar .brand > span:last-child {
  color: rgba(255, 248, 244, 0.86) !important;
}

.top-nav {
  gap: clamp(14px, 2.4vw, 34px) !important;
}

.top-nav a {
  padding: 10px 0 !important;
  color: rgba(255, 248, 244, 0.74) !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: #fff8f4 !important;
}

.hero-entry {
  padding-top: clamp(132px, 15vh, 176px) !important;
}

.home-collections {
  display: grid;
  gap: clamp(72px, 9vw, 132px);
  padding: clamp(76px, 10vw, 150px) 0;
}

.home-collection-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.home-collection-copy {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 22px;
  align-self: start;
}

.home-collection-copy h2 {
  margin: 0;
  max-width: 10em;
  color: var(--ink);
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-collection-copy p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  color: rgba(34, 24, 29, 0.64);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.8;
}

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

.home-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}

.home-preview-tile {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.home-preview-tile img {
  display: block;
  width: 100%;
  height: min(30vw, 430px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 18px 30px rgba(34, 24, 29, 0.12));
}

.home-preview-tile span {
  display: grid;
  gap: 5px;
}

.home-preview-tile strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.home-preview-tile small {
  color: rgba(34, 24, 29, 0.54);
  font-size: 13px;
  line-height: 1.55;
}

.collection-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 111, 174, 0.09), transparent 28%),
    linear-gradient(180deg, #f8f5f1 0%, #f3eee8 100%) !important;
  color: var(--ink);
}

.collection-page-main {
  width: min(1720px, calc(100% - clamp(28px, 6vw, 96px)));
  margin: 0 auto;
  padding: clamp(124px, 13vw, 168px) 0 clamp(72px, 8vw, 118px);
}

.collection-page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(260px, 1fr);
  gap: clamp(22px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.collection-page-hero h1 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.94;
  letter-spacing: 0;
}

.collection-page-hero p:not(.section-label) {
  grid-column: 2;
  max-width: 700px;
  margin: 0;
  color: rgba(34, 24, 29, 0.64);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.85;
}

.collection-page-hero #collectionPageCount,
.collection-page-actions a {
  color: rgba(34, 24, 29, 0.56);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.collection-page-actions a {
  text-decoration: none;
  color: #9d4c5b;
}
.collection-page-card.is-active img {
  transform: translateY(-4px);
  filter: drop-shadow(0 24px 38px rgba(34, 24, 29, 0.14));
}

.collection-page-detail {
  position: sticky;
  top: 108px;
  display: grid;
  gap: clamp(24px, 3.5vw, 44px);
}
.collection-detail-note {
  color: rgba(34, 24, 29, 0.54);
  font-size: 13px !important;
  line-height: 1.6 !important;
}

@media (max-width: 1100px) {
  .home-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-preview-tile img {
    height: min(54vw, 460px);
  }

  .collection-page-detail {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px !important;
  }

  .museum-bar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 66px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .museum-bar .brand {
    gap: 8px !important;
  }

  .museum-bar .brand > span:last-child {
    display: none !important;
  }

  .top-nav {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 18px !important;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    font-size: 13px !important;
  }

  .hero-entry {
    padding-top: 96px !important;
  }

  .home-collection-block,
  .collection-page-hero {
    grid-template-columns: 1fr;
  }

  .home-collection-copy {
    position: static;
  }

  .home-preview-grid{
    grid-template-columns: 1fr;
  }

  .home-preview-tile img{
    height: auto;
    max-height: none;
  }

  .collection-page-main {
    width: min(100% - 28px, 760px);
    padding-top: 102px;
  }

  .collection-page-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .collection-page-hero p:not(.section-label) {
    grid-column: 1;
    font-size: 17px;
  }
}

/* v4.3 stable delivery navigation and route cleanup */
.hero-entry::after {
  display: none !important;
  content: none !important;
}

.museum-bar {
  isolation: isolate;
  min-height: 74px !important;
  background:
    linear-gradient(180deg, rgba(20, 16, 18, 0.98), rgba(20, 16, 18, 0.94)) !important;
  border-bottom: 1px solid rgba(255, 248, 244, 0.08) !important;
  box-shadow: 0 18px 46px rgba(22, 12, 14, 0.2) !important;
}

.museum-bar .brand,
.museum-bar .top-nav,
.museum-bar .glass-icon-button {
  position: relative;
  z-index: 2;
}

.top-nav a {
  white-space: nowrap;
}

.top-nav {
  display: flex !important;
  align-items: center !important;
}

.hero-entry {
  padding-top: 74px !important;
}

.hero-copy-block {
  z-index: 3 !important;
}

.home-collection-block {
  scroll-margin-top: 110px;
}

.home-preview-tile img{
  image-rendering: auto;
}

@media (min-width: 761px) {
  .museum-bar {
    display: grid !important;
    grid-template-columns: minmax(170px, 1fr) auto minmax(64px, 1fr) !important;
    align-items: center !important;
  }

  .museum-bar .brand {
    justify-self: start !important;
  }

  .top-nav {
    justify-self: center !important;
  }

  .museum-bar .glass-icon-button {
    justify-self: end !important;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 110px !important;
  }

  .museum-bar {
    min-height: calc(104px + env(safe-area-inset-top)) !important;
    padding: calc(10px + env(safe-area-inset-top)) 18px 10px !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 40px 32px !important;
    align-items: center !important;
    gap: 8px 14px !important;
  }

  .museum-bar .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0 !important;
  }

  .museum-bar .brand-mark {
    font-size: 22px !important;
  }

  .museum-bar .brand > span:last-child {
    display: inline !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
  }

  .museum-bar .glass-icon-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .top-nav {
    display: flex !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100% !important;
    max-width: none !important;
    justify-content: flex-start !important;
    gap: 22px !important;
    padding: 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .top-nav a {
    flex: 0 0 auto;
    padding: 6px 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .hero-entry {
    padding-top: calc(104px + env(safe-area-inset-top)) !important;
  }

  .collection-page-main {
    padding-top: calc(132px + env(safe-area-inset-top)) !important;
  }

  .collection-page-hero {
    margin-bottom: 42px;
  }

  .collection-page-hero h1 {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* v4.4: fixed institution-style navigation and second-level browsing polish. */
:root {
  --fixed-nav-height: 78px;
}

html {
  scroll-padding-top: calc(var(--fixed-nav-height) + 28px) !important;
}

.museum-bar {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  display: grid !important;
  grid-template-columns: minmax(176px, 1fr) auto minmax(52px, 1fr) !important;
  align-items: center !important;
  width: 100% !important;
  min-height: var(--fixed-nav-height) !important;
  padding: 0 clamp(22px, 4.6vw, 72px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(15, 14, 18, 0.96) !important;
  color: #fffaf7 !important;
  box-shadow: 0 18px 42px rgba(18, 12, 15, 0.22) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
}

.museum-bar .brand {
  justify-self: start !important;
  display: inline-flex !important;
  min-width: 0 !important;
  color: #fffaf7 !important;
}

.museum-bar .brand-mark,
.museum-bar .brand > span:last-child {
  color: #fffaf7 !important;
}

.top-nav {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(18px, 2.6vw, 40px) !important;
  width: auto !important;
  max-width: min(920px, 62vw) !important;
  padding: 0 !important;
  overflow: visible !important;
}

.top-nav a {
  flex: 0 0 auto !important;
  padding: 9px 0 !important;
  color: rgba(255, 250, 247, 0.68) !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: #fffaf7 !important;
}

.museum-bar .glass-icon-button {
  justify-self: end !important;
  width: 42px !important;
  height: 42px !important;
  color: #fffaf7 !important;
}

.hero-entry {
  padding-top: calc(var(--fixed-nav-height) + clamp(24px, 4vw, 56px)) !important;
}

.collection-page-main {
  padding-top: calc(var(--fixed-nav-height) + clamp(58px, 7vw, 104px)) !important;
}

.home-collections {
  scroll-margin-top: calc(var(--fixed-nav-height) + 30px);
}

.home-preview-tile img{
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

.collection-page-hero h1 {
  text-wrap: balance;
}

@media (max-width: 980px) {
  .museum-bar {
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr) 42px !important;
    padding: 0 24px !important;
  }

  .top-nav {
    justify-content: flex-start !important;
    max-width: none !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --fixed-nav-height: calc(106px + env(safe-area-inset-top));
  }

  html {
    scroll-padding-top: calc(var(--fixed-nav-height) + 18px) !important;
  }

  .museum-bar {
    grid-template-columns: minmax(0, 1fr) 40px !important;
    grid-template-rows: 42px 34px !important;
    align-items: center !important;
    min-height: var(--fixed-nav-height) !important;
    padding: calc(12px + env(safe-area-inset-top)) 18px 12px !important;
    gap: 8px 12px !important;
  }

  .museum-bar .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: calc(100vw - 92px) !important;
    gap: 9px !important;
    overflow: hidden !important;
  }

  .museum-bar .brand-mark {
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .museum-bar .brand > span:last-child {
    display: inline !important;
    max-width: 70px !important;
    overflow: hidden !important;
    font-size: 14px !important;
    letter-spacing: 0.02em !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .museum-bar .glass-icon-button {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 38px !important;
    height: 38px !important;
  }

  .top-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: stretch !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    overflow-x: auto !important;
  }

  .top-nav a {
    padding: 7px 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .hero-entry {
    padding-top: calc(var(--fixed-nav-height) + 16px) !important;
  }

  .collection-page-main {
    width: min(100% - 28px, 760px) !important;
    padding-top: calc(var(--fixed-nav-height) + 28px) !important;
  }

  .collection-page-hero {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 38px !important;
    overflow: hidden !important;
  }

  .collection-page-hero h1 {
    grid-column: 1 !important;
    max-width: 100% !important;
    font-size: clamp(38px, 12vw, 56px) !important;
    line-height: 1.04 !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }

  .collection-page-hero p:not(.section-label) {
    grid-column: 1 !important;
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .collection-page-actions {
    gap: 12px !important;
  }

  .home-collection-copy h2 {
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: 1.04 !important;
  }
}

@media (max-width: 420px) {
  .top-nav {
    gap: 18px !important;
  }

  .top-nav a {
    font-size: 12px !important;
  }

  .collection-page-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }
}

/* v4.6 single-work collection viewer: one artwork per page */
.collection-page-body {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 111, 174, 0.12), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.92), transparent 30%),
    #f7f3ef !important;
  color: #21161a !important;
}

.collection-page-main {
  width: min(100% - 72px, 1480px) !important;
  margin: 0 auto !important;
  padding-bottom: clamp(40px, 6vw, 88px) !important;
}

.collection-page-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr) auto !important;
  align-items: end !important;
  gap: clamp(18px, 3vw, 48px) !important;
  margin-bottom: clamp(22px, 4vw, 46px) !important;
  padding: 0 !important;
  border: 0 !important;
}

.collection-page-hero .section-label {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
}

.collection-page-hero h1 {
  grid-column: 1 !important;
  margin: 0 !important;
  font-size: clamp(58px, 8vw, 132px) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

.collection-page-hero p:not(.section-label) {
  grid-column: 2 !important;
  margin: 0 !important;
  max-width: 520px !important;
  color: rgba(33, 22, 26, 0.62) !important;
  font-size: clamp(16px, 1.3vw, 21px) !important;
  line-height: 1.72 !important;
}

.collection-page-hero #collectionPageCount,
.collection-page-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(33, 22, 26, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  color: rgba(33, 22, 26, 0.72) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.collection-page-actions {
  grid-column: 3 !important;
}

.single-work-viewer {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.collection-page-detail {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) !important;
  gap: clamp(26px, 4vw, 72px) !important;
  align-items: center !important;
  min-height: min(720px, 66vh) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.single-work-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(680px, 62vh);
  margin: 0;
  padding: 0;
  background: transparent;
}

.single-work-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(680px, 62vh);
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 32px 76px rgba(33, 22, 26, 0.08);
}

.single-work-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}

.single-work-copy .section-label {
  margin: 0;
  color: #b45d70;
}

.single-work-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.single-work-spec {
  margin: 0;
  color: rgba(33, 22, 26, 0.58);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
}

.single-work-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  width: 100%;
  margin: 4px 0 0;
}

.single-work-copy dt {
  margin: 0 0 5px;
  color: rgba(33, 22, 26, 0.38);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-work-copy dd {
  margin: 0;
  color: rgba(33, 22, 26, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.single-work-copy article {
  max-width: 34em;
}

.single-work-copy article h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
}

.single-work-copy article p,
.collection-detail-note {
  margin: 0;
  color: rgba(33, 22, 26, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.single-work-control {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(33, 22, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #21161a;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(33, 22, 26, 0.08);
  cursor: pointer;
}

.single-work-control:hover {
  background: #fff;
}

.single-thumb-strip {
  display: flex;
  gap: 12px;
  margin: clamp(24px, 4vw, 44px) auto 0;
  padding: 4px 0 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.single-thumb-strip::-webkit-scrollbar {
  display: none;
}

.single-thumb {
  flex: 0 0 auto;
  width: 76px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(33, 22, 26, 0.42);
  cursor: pointer;
}

.single-thumb img {
  display: block;
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 7px;
  filter: saturate(0.88);
  opacity: 0.62;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.single-thumb span {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.single-thumb.is-active img,
.single-thumb:hover img {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(-2px);
}

.single-thumb.is-active span {
  color: #b45d70;
}

@media (max-width: 980px) {
  .collection-page-main {
    width: min(100% - 34px, 760px) !important;
  }

  .collection-page-hero {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .collection-page-hero h1,
  .collection-page-hero p:not(.section-label),
  .collection-page-actions {
    grid-column: 1 !important;
  }

  .single-work-viewer {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .collection-page-detail {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    min-height: 0 !important;
  }

  .single-work-image {
    min-height: 0;
  }

  .single-work-image img {
    max-height: 56vh;
  }

  .single-work-copy {
    width: min(100%, 540px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .collection-page-hero {
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  .collection-page-hero h1 {
    font-size: clamp(34px, 9.8vw, 46px) !important;
    line-height: 1.04 !important;
  }

  .collection-page-hero p:not(.section-label) {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .collection-page-hero #collectionPageCount,
  .collection-page-actions a {
    min-height: 38px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
  }

  .single-work-viewer {
    grid-template-columns: 1fr;
  }

  .single-work-control {
    position: absolute;
    top: 34vw;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.76);
  }

  .single-work-control.is-prev {
    left: -4px;
  }

  .single-work-control.is-next {
    right: -4px;
  }

  .single-work-image img {
    max-height: 50vh;
    box-shadow: 0 22px 54px rgba(33, 22, 26, 0.08);
  }

  .single-work-copy h2 {
    font-size: clamp(31px, 9.6vw, 44px);
    text-wrap: balance;
  }

  .single-work-copy dl {
    grid-template-columns: 1fr;
  }
}

/* v5.0 agenda-style content display: borrow the reference rhythm without changing MILOU colors. */
.guide-runway {
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr) !important;
  gap: clamp(34px, 5vw, 84px) !important;
  padding-block: clamp(54px, 7vw, 104px) !important;
  border-top: 1px solid rgba(33, 22, 26, 0.12) !important;
}

.guide-header {
  top: calc(var(--fixed-nav-height) + 34px) !important;
}

.guide-header h2 {
  max-width: 7.6em !important;
  font-size: clamp(46px, 6.8vw, 104px) !important;
  line-height: 0.96 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.chapter-track {
  border-top: 1px solid rgba(33, 22, 26, 0.12) !important;
}

.chapter-card {
  min-height: clamp(138px, 12vw, 190px) !important;
  grid-template-columns: minmax(54px, 0.2fr) minmax(150px, 0.64fr) minmax(0, 1fr) !important;
  gap: clamp(18px, 3.2vw, 46px) !important;
  padding: clamp(24px, 3.4vw, 48px) 0 !important;
  border-bottom: 1px solid rgba(33, 22, 26, 0.12) !important;
}

.chapter-card span {
  font-family: inherit !important;
  font-size: clamp(30px, 3.8vw, 58px) !important;
  font-weight: 900 !important;
}

.chapter-card h3 {
  font-size: clamp(28px, 3.4vw, 50px) !important;
  font-weight: 800 !important;
}

.chapter-card p {
  max-width: 24em !important;
  font-size: clamp(16px, 1.45vw, 21px) !important;
}

.home-collections {
  gap: 0 !important;
  padding: clamp(56px, 8vw, 112px) 0 !important;
  border-top: 1px solid rgba(33, 22, 26, 0.12) !important;
}

.home-collection-block {
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr) !important;
  gap: clamp(28px, 5vw, 76px) !important;
  padding: clamp(34px, 5vw, 72px) 0 !important;
  border-bottom: 1px solid rgba(33, 22, 26, 0.12) !important;
}

.home-collection-copy {
  position: static !important;
  align-self: center !important;
  gap: 16px !important;
}

.home-collection-copy h2 {
  max-width: 8.4em !important;
  font-size: clamp(38px, 5vw, 78px) !important;
  line-height: 0.98 !important;
  font-weight: 800 !important;
}

.home-collection-copy p:not(.section-label) {
  max-width: 31em !important;
  font-size: clamp(15px, 1.25vw, 19px) !important;
  line-height: 1.78 !important;
}

.home-preview-grid {
  align-items: center !important;
  gap: clamp(14px, 2vw, 28px) !important;
}

.home-preview-tile {
  gap: 10px !important;
}

.home-preview-tile img {
  height: clamp(170px, 22vw, 320px) !important;
  filter: drop-shadow(0 18px 34px rgba(34, 24, 29, 0.1)) !important;
}

.home-preview-tile strong {
  font-size: clamp(15px, 1.2vw, 18px) !important;
}

.home-preview-tile small {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

@media (max-width: 920px) {
  .guide-runway,
  .home-collection-block {
    grid-template-columns: 1fr !important;
  }

  .guide-header {
    position: static !important;
  }

  .guide-header h2,
  .home-collection-copy h2 {
    max-width: 9em !important;
  }

  .chapter-card {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 12px 20px !important;
  }

  .chapter-card p {
    grid-column: 2 !important;
  }
}

@media (max-width: 640px) {
  .guide-runway {
    padding-block: 44px 54px !important;
  }

  .guide-header h2 {
    font-size: clamp(42px, 14vw, 64px) !important;
  }

  .chapter-card {
    min-height: 0 !important;
    padding: 22px 0 !important;
  }

  .chapter-card span {
    font-size: 31px !important;
  }

  .chapter-card h3 {
    font-size: 25px !important;
  }

  .chapter-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .home-collections {
    padding-block: 44px 64px !important;
  }

  .home-collection-block {
    padding: 34px 0 42px !important;
    gap: 24px !important;
  }

  .home-collection-copy h2 {
    font-size: clamp(34px, 10.8vw, 48px) !important;
  }

  .home-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .home-preview-tile img {
    height: 152px !important;
  }
}

/* v5.3 white-background delivery pass: simpler tabs, real-image collection context, no hero mask. */
html,
body {
  background: #fff !important;
}

.site-bg {
  background: #fff !important;
}

.gradient-field,
.noise-layer,
.spline-canvas {
  display: none !important;
}

main,
.collection-page-body,
.collection-page-main,
.hero-entry,
.guide-runway,
.home-collections,
.claim-section,
.collections-section,
.qr-section,
.contact-section {
  background: #fff !important;
}

.hero-entry::before,
.hero-entry::after,
.hero-feature::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.hero-feature img {
  filter: none !important;
  opacity: 1 !important;
}

.museum-bar {
  min-height: 64px !important;
  padding: 0 clamp(18px, 4vw, 44px) !important;
  border-radius: 0 !important;
  background: rgba(18, 14, 15, 0.96) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 28px rgba(33, 22, 26, 0.14) !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
}

.brand,
.top-nav a{
  color: #fff !important;
}

.brand-mark {
  background: transparent !important;
  box-shadow: none !important;
}

.top-nav {
  gap: 8px !important;
}

.top-nav a {
  min-height: 36px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 760 !important;
  opacity: 0.84 !important;
  background: transparent !important;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a[aria-current="page"] {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.14) !important;
  outline: none !important;
}

.primary-link,
.secondary-link,
.collection-page-actions a {
  min-height: 44px !important;
  border-radius: 999px !important;
  padding: 0 22px !important;
  font-weight: 780 !important;
}

.primary-link {
  background: #21161a !important;
  color: #fff !important;
  border-color: #21161a !important;
  box-shadow: 0 14px 28px rgba(33, 22, 26, 0.18) !important;
}

.secondary-link,
.collection-page-actions a {
  background: #fff !important;
  color: #21161a !important;
  border: 1px solid rgba(33, 22, 26, 0.18) !important;
  box-shadow: 0 12px 24px rgba(33, 22, 26, 0.08) !important;
}

.collection-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 32px) !important;
}

.collection-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.single-work-image img,
.home-preview-tile img{
  background: #fff !important;
}

@media (max-width: 980px) {
  .collection-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --fixed-nav-height: 84px;
  }

  .museum-bar {
    grid-template-columns: minmax(0, 1fr) 36px !important;
    grid-template-rows: 30px 34px !important;
    align-items: center !important;
    min-height: calc(84px + env(safe-area-inset-top)) !important;
    padding: calc(8px + env(safe-area-inset-top)) 14px 8px !important;
    gap: 4px 10px !important;
  }

  .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  .brand-mark {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .brand > span:last-child {
    font-size: 14px !important;
    letter-spacing: 0.02em !important;
  }

  .top-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: flex !important;
    overflow-x: auto !important;
    gap: 7px !important;
    padding: 0 !important;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .top-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.18) !important;
  }

  .hero-entry {
    padding-top: calc(var(--fixed-nav-height) + env(safe-area-inset-top)) !important;
  }

  .collection-list {
    grid-template-columns: 1fr !important;
  }
}

/* v5.4 specificity fix: older hero-image rules were still darkening the static artwork. */
.hero-section.hero-entry .hero-feature img,
.hero-entry .hero-feature img,
main .hero-feature img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.hero-section.hero-entry .hero-feature,
.hero-entry .hero-feature {
  background: #fff !important;
}

/* v5.8 artist-preview closeout: stable nav, quieter hierarchy, one-work browsing. */
.museum-bar {
  background: rgba(18, 14, 15, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 18px 46px rgba(33, 22, 26, 0.14) !important;
  backdrop-filter: blur(24px) saturate(132%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(132%) !important;
}

.language-toggle {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.collection-page-main {
  padding-top: calc(var(--fixed-nav-height) + clamp(28px, 4vw, 54px)) !important;
}

.collection-page-hero {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 10px 32px !important;
  margin-bottom: clamp(22px, 3vw, 42px) !important;
  padding-bottom: clamp(16px, 2vw, 24px) !important;
  border-bottom: 1px solid rgba(33, 22, 26, 0.08) !important;
}

.collection-page-hero .section-label {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  color: rgba(33, 22, 26, 0.42) !important;
}

.collection-page-hero h1 {
  grid-column: 1 !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(28px, 3vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.collection-page-hero p:not(.section-label) {
  grid-column: 1 !important;
  max-width: 720px !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.7 !important;
  color: rgba(33, 22, 26, 0.58) !important;
}

.collection-page-hero #collectionPageCount,
.collection-page-actions a {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(33, 22, 26, 0.45) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 650 !important;
}

.collection-page-actions {
  grid-column: 2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.single-work-viewer {
  min-height: min(760px, calc(100vh - var(--fixed-nav-height) - 168px)) !important;
  align-items: center !important;
}

.collection-page-detail {
  min-height: min(680px, 62vh) !important;
  align-items: center !important;
}

.single-work-image {
  display: grid !important;
  min-height: min(650px, 60vh) !important;
  place-items: center !important;
}

.single-work-image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: min(650px, 60vh) !important;
  object-fit: contain !important;
}

.single-work-copy .section-label {
  font-size: 12px !important;
  color: rgba(33, 22, 26, 0.45) !important;
}

.single-work-copy h2 {
  font-size: clamp(34px, 4vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.single-work-control {
  background: rgba(255, 255, 255, 0.54) !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  color: #21161a !important;
  opacity: 0.88 !important;
  box-shadow: 0 16px 36px rgba(33, 22, 26, 0.12) !important;
  backdrop-filter: blur(18px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
}

.single-work-control:hover {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

.collection-list.is-logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1px !important;
  background: rgba(33, 22, 26, 0.08) !important;
  box-shadow: 0 24px 60px rgba(33, 22, 26, 0.06) !important;
}

.logo-card {
  display: grid;
  min-height: 162px;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background: #fff;
}

.logo-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  box-shadow: none !important;
}

.logo-card h3 {
  margin: 0 0 6px;
  color: #21161a;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.2;
}

.logo-card p {
  margin: 0;
  color: rgba(33, 22, 26, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .collection-list.is-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --fixed-nav-height: 64px;
  }

  .museum-bar {
    grid-template-columns: minmax(0, 1fr) auto 36px !important;
    grid-template-rows: 1fr !important;
    min-height: calc(64px + env(safe-area-inset-top)) !important;
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px !important;
    gap: 10px !important;
    background: rgba(18, 14, 15, 0.92) !important;
  }

  .top-nav {
    display: none !important;
  }

  .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .language-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 40px !important;
    height: 34px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .hero-entry {
    padding-top: calc(var(--fixed-nav-height) + env(safe-area-inset-top)) !important;
  }

  .collection-page-main {
    width: min(100% - 28px, 640px) !important;
    padding-top: calc(var(--fixed-nav-height) + 22px) !important;
  }

  .collection-page-hero {
    grid-template-columns: 1fr auto !important;
    gap: 8px 14px !important;
    margin-bottom: 18px !important;
  }

  .collection-page-hero .section-label {
    grid-column: 1 / -1 !important;
  }

  .collection-page-hero h1 {
    font-size: 24px !important;
  }

  .collection-page-hero p:not(.section-label) {
    display: none !important;
  }

  .collection-page-actions {
    grid-column: 2 !important;
    grid-row: 2 !important;
    gap: 10px !important;
  }

  .collection-page-actions a {
    display: none !important;
  }

  .collection-page-hero #collectionPageCount {
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .collection-page-detail {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 18px !important;
  }

  .single-work-viewer,
  .single-work-image {
    min-height: 0 !important;
  }

  .single-work-image img {
    width: 100% !important;
    max-height: none !important;
  }

  .single-work-copy h2 {
    font-size: clamp(34px, 11vw, 50px) !important;
  }

  .single-work-copy dl {
    grid-template-columns: 1fr 1fr !important;
  }

  .single-work-control {
    top: min(42vw, 250px) !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.58) !important;
  }

  .single-work-control.is-prev {
    left: -10px !important;
  }

  .single-work-control.is-next {
    right: -10px !important;
  }

  .single-thumb-strip {
    margin-top: 22px !important;
    padding-bottom: 12px !important;
  }

  .collection-list.is-logo-wall {
    grid-template-columns: 1fr !important;
  }

  .logo-card {
    min-height: 126px;
    padding: 22px;
  }
}

/* v5.9 P0 student sharing: per-work poster and QR handoff. */
.student-share-panel {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}

.student-share-panel p {
  margin: 0;
  color: rgba(33, 22, 26, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.student-share-actions,
.share-poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.student-share-primary,
.student-share-secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}

.student-share-primary {
  border: 1px solid #21161a;
  background: #21161a;
  color: #fff;
  box-shadow: 0 14px 34px rgba(33, 22, 26, 0.12);
}

.student-share-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.student-share-secondary {
  border: 1px solid rgba(33, 22, 26, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #21161a;
}

.share-poster-open {
  overflow: hidden;
}

.share-poster-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 14, 16, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.share-poster-overlay[hidden] {
  display: none;
}

.share-poster-dialog {
  position: relative;
  display: grid;
  width: min(100%, 440px);
  max-height: calc(100vh - 48px);
  gap: 16px;
  overflow: auto;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.share-poster-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #21161a;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(33, 22, 26, 0.08);
}

.share-poster-preview {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fffaf8;
}

.share-poster-hint {
  margin: 0;
  color: rgba(33, 22, 26, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .student-share-actions,
  .share-poster-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .student-share-primary,
  .student-share-secondary {
    width: 100%;
  }

  .share-poster-overlay {
    padding: 14px;
  }

  .share-poster-dialog {
    max-height: calc(100vh - 28px);
    border-radius: 22px;
    padding: 14px;
  }
}

/* v6.0 mobile P0 QA: prioritize iOS/Android readability for per-work sharing. */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .collection-page-body {
    background: #fff !important;
  }

  .collection-page-main {
    width: 100% !important;
    max-width: 640px !important;
    padding: calc(var(--fixed-nav-height, 64px) + 18px) 14px 28px !important;
    margin-inline: auto !important;
  }

  .collection-page-hero {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 7px 12px !important;
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid rgba(33, 22, 26, 0.08) !important;
  }

  .collection-page-hero h1 {
    max-width: 100% !important;
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.12 !important;
  }

  .collection-page-hero #collectionPageCount {
    min-height: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
  }

  .single-work-viewer {
    display: block !important;
    min-height: 0 !important;
  }

  .collection-page-detail {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0 !important;
    gap: 18px !important;
    align-items: stretch !important;
    touch-action: pan-y !important;
  }

  .single-work-image {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .single-work-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 38px rgba(33, 22, 26, 0.08) !important;
  }

  .single-work-copy {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 2px !important;
  }

  .single-work-copy .section-label {
    order: 1 !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }

  .single-work-copy h2 {
    order: 2 !important;
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
  }

  .single-work-spec {
    order: 3 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .single-work-copy dl {
    order: 5 !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 14px !important;
    margin-top: 0 !important;
  }

  .single-work-copy dt {
    font-size: 11px !important;
  }

  .single-work-copy dd {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .single-work-copy article h3 {
    margin-bottom: 6px !important;
    font-size: 14px !important;
  }

  .single-work-copy article {
    order: 6 !important;
  }

  .single-work-copy article p,
  .collection-detail-note {
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  .collection-detail-note {
    order: 7 !important;
  }

  .single-work-control {
    display: none !important;
  }

  .single-work-control.is-prev {
    left: 14px !important;
  }

  .single-work-control.is-next {
    right: 14px !important;
  }

  .student-share-panel {
    order: 4 !important;
    margin-top: 10px !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: #f8f5f2 !important;
  }

  .student-share-panel p {
    font-size: 13px !important;
    line-height: 1.62 !important;
  }

  .student-share-actions {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .student-share-primary,
  .student-share-secondary {
    min-height: 48px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
  }

  .single-thumb-strip {
    margin: 20px -14px 0 !important;
    padding: 4px 14px calc(22px + env(safe-area-inset-bottom)) !important;
  }

  .share-poster-overlay {
    align-items: end !important;
    padding: 10px !important;
  }

  .share-poster-dialog {
    width: 100% !important;
    max-height: calc(100svh - 18px) !important;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom)) !important;
    border-radius: 22px 22px 0 0 !important;
  }

  .share-poster-preview {
    width: auto !important;
    max-width: 100% !important;
    max-height: min(68svh, 620px) !important;
    justify-self: center !important;
    object-fit: contain !important;
  }
}

@media (max-width: 380px) {
  .collection-page-main {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .single-work-copy dl {
    grid-template-columns: 1fr !important;
  }
}

/* v6.2 mobile polish: remove header crowding and keep per-work pages calm. */
@media (max-width: 760px) {
  .collection-page-body .museum-bar {
    grid-template-columns: minmax(0, 1fr) 44px !important;
    align-items: center !important;
    min-height: calc(62px + env(safe-area-inset-top)) !important;
    padding: calc(9px + env(safe-area-inset-top)) 16px 9px !important;
    gap: 14px !important;
  }

  .collection-page-body .brand {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .collection-page-body .brand-mark {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .collection-page-body .brand > span:last-child {
    font-size: 17px !important;
    line-height: 1 !important;
  }

  .collection-page-body .language-toggle {
    position: relative !important;
    z-index: 2 !important;
    grid-column: 2 !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  .collection-page-body .language-toggle::before,
  .collection-page-body .language-toggle::after {
    display: none !important;
    content: none !important;
  }

  .collection-page-body .glass-icon-button {
    display: none !important;
  }

  .collection-page-body .collection-page-main {
    padding-top: calc(var(--fixed-nav-height, 62px) + 16px) !important;
  }

  .collection-page-body .collection-page-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .collection-page-body .collection-page-hero #collectionPageCount,
  .collection-page-body .collection-page-actions {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .collection-page-body .collection-page-actions {
    margin-top: 2px !important;
  }

  .collection-page-body .collection-page-actions a {
    display: none !important;
  }

  .single-thumb-strip {
    max-width: 100vw !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain !important;
    scrollbar-width: none !important;
  }

  .single-thumb-strip::-webkit-scrollbar {
    display: none !important;
  }

  .student-share-panel {
    width: 100% !important;
    max-width: none !important;
    box-shadow: none !important;
  }

  .student-share-actions,
  .student-share-primary,
  .student-share-secondary {
    width: 100% !important;
  }
}

/* Final charity gala overrides: keep these at the end of the cascade. */
.hero-entry {
  min-height: min(820px, calc(100svh - 24px)) !important;
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 0.82fr) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 74px) !important;
  padding-top: clamp(92px, 10vw, 128px) !important;
}

.charity-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.maker-credit {
  display: block !important;
}

.share-poster-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
  background: rgba(18, 14, 16, 0.68) !important;
}

.share-poster-overlay[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .hero-entry {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    padding-top: 92px !important;
  }

  .hero-copy-block {
    order: 1 !important;
  }

  .charity-trust-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v6.6 final cascade lock: homepage/collection pages use left editorial alignment. */
.museum-bar {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: var(--fixed-nav-height, 72px) !important;
  margin: 0 !important;
  padding: 0 clamp(24px, 4vw, 64px) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 44px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(22, 16, 18, 0.76) !important;
  box-shadow: 0 14px 38px rgba(23, 14, 16, 0.16) !important;
  -webkit-backdrop-filter: blur(22px) saturate(132%) !important;
  backdrop-filter: blur(22px) saturate(132%) !important;
}

.museum-bar::before,
.museum-bar::after{
  display: none !important;
  content: none !important;
}

.museum-bar .top-nav {
  justify-content: center !important;
}

.museum-bar .top-nav a,
.museum-bar .language-toggle {
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.museum-bar .top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.hero-entry {
  position: relative !important;
  min-height: min(760px, calc(100svh - 28px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: calc(var(--fixed-nav-height, 72px) + clamp(48px, 7vw, 92px)) clamp(28px, 7vw, 86px) clamp(44px, 7vw, 82px) !important;
  background: #181112 !important;
}

.hero-entry .hero-feature {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.hero-entry .hero-feature img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

.hero-entry::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, rgba(18, 12, 14, 0.78) 0%, rgba(18, 12, 14, 0.58) 34%, rgba(18, 12, 14, 0.12) 78%, rgba(18, 12, 14, 0.04) 100%) !important;
}

.hero-entry::after {
  display: none !important;
}

.hero-copy-block {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: start !important;
  text-align: left !important;
  color: #fff !important;
}

.hero-entry .section-label,
.hero-entry h1,
.hero-entry .hero-english,
.hero-entry .hero-copy-lead,
.hero-entry .hero-actions,
.section-heading,
.section-heading h2,
.guide-header,
.guide-header h2,
.intro-panel,
.intro-panel h2,
.collection-page-hero,
.collection-page-hero h1,
.collection-page-hero p:not(.section-label) {
  text-align: left !important;
}

.hero-entry h1 {
  max-width: 10em !important;
  color: #fff !important;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

.hero-entry .hero-copy-lead,
.hero-entry .hero-english {
  color: rgba(255, 255, 255, 0.86) !important;
}

.hero-entry .hero-actions {
  justify-content: flex-start !important;
}

.section-heading,
.collection-page-hero {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: start !important;
  gap: clamp(16px, 2vw, 28px) !important;
}

.section-heading > div,
.section-heading > p,
.section-heading .section-note {
  justify-self: start !important;
  text-align: left !important;
}

.collections-section {
  text-align: left !important;
}

.collections-section .section-heading {
  margin-bottom: clamp(32px, 5vw, 64px) !important;
}

.collections-section .section-heading h2 {
  max-width: 980px !important;
  font-size: clamp(42px, 5.8vw, 88px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.collection-page-hero #collectionPageCount,
.collection-page-hero .collection-page-actions {
  justify-self: start !important;
  grid-column: 1 !important;
}

.collection-page-hero #collectionPageCount {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(34, 24, 28, 0.42) !important;
  box-shadow: none !important;
}

.maker-credit {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 24px clamp(22px, 5vw, 72px) 44px !important;
  color: rgba(34, 24, 28, 0.44) !important;
  text-align: center !important;
}

.maker-credit p,
.maker-credit a {
  margin: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  .museum-bar {
    grid-template-columns: minmax(0, 1fr) 52px !important;
    min-height: calc(76px + env(safe-area-inset-top)) !important;
    padding: calc(12px + env(safe-area-inset-top)) 18px 12px !important;
    background: rgba(22, 16, 18, 0.88) !important;
  }

  .museum-bar .top-nav {
    display: none !important;
  }

  .museum-bar .language-toggle {
    grid-column: 2 !important;
  }

  .hero-entry {
    min-height: 100svh !important;
    padding: calc(76px + env(safe-area-inset-top) + 46px) 28px 48px !important;
  }

  .hero-entry::before {
    background: linear-gradient(180deg, rgba(18, 12, 14, 0.08) 0%, rgba(18, 12, 14, 0.52) 44%, rgba(18, 12, 14, 0.78) 100%) !important;
  }

  .hero-copy-block {
    align-self: end !important;
  }

  .hero-entry h1 {
    max-width: 5.5em !important;
  }

  .hero-entry .hero-actions {
    gap: 10px !important;
  }

  .collections-section .section-heading h2 {
    font-size: clamp(38px, 13vw, 62px) !important;
  }

  .collection-page-hero {
    padding-top: 0 !important;
  }

  .maker-credit {
    display: block !important;
    padding-bottom: calc(32px + env(safe-area-inset-bottom)) !important;
  }

  .maker-credit a {
    display: block !important;
    margin-top: 4px !important;
  }
}
