:root {
  color-scheme: dark;
  --stone-950: #20100e;
  --stone-900: #351111;
  --stone-850: #4a1517;
  --stone-800: #651d20;
  --stone-700: #7d2a2b;
  --stone-600: #a65a51;
  --stone-400: #cdb7aa;
  --stone-300: #eadbd1;
  --stone-100: #fbf7ef;
  --amber-500: #b88a3c;
  --amber-400: #cda65b;
  --amber-300: #e2c887;
  --amber-50: #f7efe2;
  --red-900: #6f1f21;
  --dark-brown: #160e0c;
  --museum-shadow: 0 34px 92px rgb(16 9 8 / 0.48);
  --panel-border: rgb(226 200 135 / 0.18);
  --paper-line: rgb(92 54 32 / 0.1);
  --font-serif: Georgia, "Times New Roman", "Noto Serif TC", "Songti TC", serif;
  --font-sans: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-quiet: 420ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(112deg, rgb(255 248 234 / 0.035), transparent 36%),
    linear-gradient(180deg, #24100f 0%, #461416 38%, #351111 70%, #160e0c 100%);
  color: var(--stone-100);
  font-family: var(--font-sans);
  font-size: 17px;
}

:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .eyebrow,
  .button,
  .main-nav a,
  .language-toggle,
  .work-category,
  .guardian-role,
  .support-status,
  .featured-collection-meta,
  .footer-museum-name,
  .footer-tagline,
  .footer-copyright,
  .footer-credit-line
) {
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(255 248 234 / 0.025), transparent 32%, rgb(18 10 8 / 0.16)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.022) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgb(30 21 18 / 0.035) 0 1px, transparent 1px 13px);
  mix-blend-mode: soft-light;
  opacity: 0.58;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(216 167 66 / 0.22);
  background:
    linear-gradient(180deg, rgb(20 12 10 / 0.94), rgb(43 14 14 / 0.9)),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.018) 0 1px, transparent 1px 10px);
  box-shadow: 0 18px 54px rgb(16 9 8 / 0.24);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.section,
.timeline-inner,
.research-inner,
.site-footer {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: 8px 0 9px;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.brand span,
.eyebrow {
  display: block;
  color: var(--amber-400);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.logo {
  display: block;
  height: 60px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.brand strong,
.logo-main {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--stone-100);
}

.main-nav a,
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family:
    var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.08;
  white-space: nowrap;
}

.main-nav span {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-nav small {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.main-nav a:hover,
.ghost-link:hover {
  color: var(--amber-300);
}

.language-toggle {
  border: 0;
  background: transparent;
  color: var(--amber-300);
  cursor: pointer;
  font: inherit;
  font-family:
    var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.08;
  padding: 0;
  transition:
    color var(--ease-quiet),
    opacity var(--ease-quiet);
}

.language-toggle:hover {
  color: var(--stone-100);
}

.main-nav a:hover,
.language-toggle:hover {
  opacity: 0.76;
}

[data-lang="en"] .lang-zh,
[data-lang="zh"] .lang-en {
  display: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family:
    var(--font-sans);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1;
  white-space: normal;
  text-align: center;
  transition:
    background var(--ease-quiet),
    color var(--ease-quiet),
    border-color var(--ease-quiet),
    box-shadow var(--ease-quiet),
    opacity var(--ease-quiet);
}

.header-button {
  margin-top: 2px;
  font-size: 0.98rem;
  font-weight: 650;
}

.button-primary {
  border-color: rgb(248 240 228 / 0.22);
  background:
    linear-gradient(180deg, #dfbd70, var(--amber-500));
  color: var(--stone-950);
  box-shadow: 0 14px 34px rgb(30 21 18 / 0.18);
}

.button-primary:hover {
  background:
    linear-gradient(180deg, #e4c77e, var(--amber-400));
  box-shadow: 0 16px 40px rgb(30 21 18 / 0.2);
  opacity: 0.9;
}

.button-outline {
  border-color: rgb(216 167 66 / 0.32);
  color: var(--stone-100);
  background: rgb(248 240 228 / 0.04);
}

.button-outline:hover {
  background: rgb(248 240 228 / 0.1);
  opacity: 0.84;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(12 7 6 / 0.52), transparent 44%, rgb(12 7 6 / 0.28)),
    linear-gradient(135deg, #21100f 0%, #4b1516 52%, #6d2022 100%);
  border-bottom: 1px solid rgb(216 167 66 / 0.2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(19 10 9 / 0.78), transparent 52%, rgb(19 10 9 / 0.36)),
    url("assets/artworks/work-05.jpg");
  background-position: right center;
  background-size: min(78vw, 980px) auto;
  background-repeat: no-repeat;
  filter: grayscale(1) sepia(0.16) contrast(1.05);
  mix-blend-mode: soft-light;
  opacity: 0.16;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background:
    linear-gradient(100deg, rgb(226 200 135 / 0.11), transparent 28%, rgb(24 14 12 / 0.32)),
    linear-gradient(180deg, rgb(255 248 234 / 0.06), transparent 38%, rgb(12 7 6 / 0.28)),
    repeating-linear-gradient(115deg, rgb(248 240 228 / 0.032) 0 1px, transparent 1px 18px);
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
  padding: 40px 0 48px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgb(216 167 66 / 0.34);
  border-radius: 999px;
  background: rgb(248 240 228 / 0.055);
  padding: 10px 18px;
  color: var(--amber-300);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgb(248 240 228 / 0.035);
}

.hero h1 {
  position: relative;
  max-width: 900px;
  margin: 30px 0 0;
  font-family: var(--font-serif);
  font-size: 4.1rem;
  line-height: 1;
  font-weight: 620;
  letter-spacing: 0;
  color: var(--amber-50);
  text-shadow:
    0 1px 0 rgb(255 255 255 / 0.12),
    0 18px 58px rgb(16 9 8 / 0.74);
}

.hero h1::before {
  content: none;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(310px, 48vw);
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--amber-500), rgb(216 167 66 / 0));
  box-shadow: none;
}

.hero h1 span,
.research-inner h2 span {
  display: block;
  margin-top: 18px;
  color: var(--amber-300);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.18;
}

[data-lang="zh"] .hero h1 span {
  font-size: 3.8rem;
  font-weight: 420;
  line-height: 1.08;
  white-space: pre-line;
}

.hero-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--stone-300);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-introduction {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
  white-space: pre-line;
}

.hero-introduction-cn {
  max-width: 800px;
  margin-top: 20px;
  color: var(--stone-200);
  font-size: 1.04rem;
}

.hero-secondary {
  display: none;
  margin-top: 12px;
  color: var(--stone-400);
  font-size: 1.05rem;
}

.hero-lede span,
.timeline-inner p span {
  display: block;
  margin-top: 16px;
  color: var(--stone-400);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.gallery-frame {
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.13), rgb(248 240 228 / 0.045)),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.022) 0 1px, transparent 1px 12px);
  padding: 10px;
  box-shadow: var(--museum-shadow);
}

.gallery-card {
  min-height: 0;
  border: 1px solid rgb(226 200 135 / 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(248 240 228 / 0.08), transparent 34%),
    linear-gradient(145deg, rgb(54 17 16 / 0.94), rgb(24 13 11 / 0.96), rgb(91 27 28 / 0.72)),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 12px);
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgb(248 240 228 / 0.04);
}

.gallery-panel {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.gallery-panel h2 {
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 420;
  line-height: 1.08;
}

.gallery-preview > img {
  display: block;
  width: 100%;
  height: 240px;
  border: 1px solid rgb(226 200 135 / 0.2);
  border-radius: 6px;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgb(247 239 226 / 0.92), rgb(221 204 178 / 0.92));
  box-shadow: 0 18px 42px rgb(10 6 5 / 0.34);
}

.museum-image-placeholder {
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgb(162 116 48 / 0.22);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgb(247 239 226 / 0.94), rgb(226 210 184 / 0.88)),
    repeating-linear-gradient(0deg, rgb(92 54 32 / 0.07) 0 1px, transparent 1px 16px);
  color: #4a3426;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.5);
  padding: 28px;
}

.museum-image-placeholder span {
  color: #9a6a16;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.museum-image-placeholder strong {
  max-width: 28rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.gallery-preview > .museum-image-placeholder {
  min-height: 240px;
  box-shadow: 0 18px 42px rgb(10 6 5 / 0.24);
}

.print-row {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.print-row img {
  display: block;
  width: 100%;
  height: 72px;
  border: 1px solid rgb(226 200 135 / 0.16);
  border-radius: 6px;
  object-fit: contain;
  background: rgb(247 239 226 / 0.82);
  box-shadow: 0 12px 24px rgb(10 6 5 / 0.2);
}

.print-row .museum-image-placeholder {
  min-height: 72px;
  padding: 12px;
}

.print-row .museum-image-placeholder strong {
  display: none;
}

.gallery-preview p {
  margin: 16px 0 0;
  color: var(--stone-300);
  font-size: 0.95rem;
  line-height: 1.55;
}

.archive-note-band {
  border-bottom: 1px solid rgb(226 200 135 / 0.14);
  background:
    linear-gradient(180deg, rgb(19 10 9 / 0.98), rgb(31 13 12 / 0.96)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
}

.archive-note-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  border-inline: 1px solid rgb(226 200 135 / 0.1);
  background: rgb(226 200 135 / 0.1);
}

.research-note {
  min-height: 122px;
  background:
    linear-gradient(180deg, rgb(39 17 15 / 0.94), rgb(25 13 12 / 0.96));
  padding: 28px 30px;
}

.research-note .eyebrow {
  color: var(--amber-300);
  font-size: 0.68rem;
}

.research-note p:not(.eyebrow) {
  max-width: 34rem;
  margin: 14px 0 0;
  color: var(--stone-400);
  font-size: 0.96rem;
  line-height: 1.62;
}

.section {
  padding: 124px 0;
}

.works-section {
  position: relative;
  padding-top: 128px;
  background:
    linear-gradient(180deg, rgb(28 13 12 / 0.16), rgb(94 30 30 / 0.12)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
}

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

.section-heading h2,
.timeline-inner h2,
.research-inner h2 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.8vw, 2.85rem);
  line-height: 1.13;
  font-weight: 520;
  letter-spacing: 0;
}

.authorization-section {
  border-block: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgb(71 20 21 / 0.86), rgb(31 13 12 / 0.96)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
}

.authorization-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 128px 0;
}

.authorization-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.authorization-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 9vw, 3.8rem);
  line-height: 1.05;
  font-weight: 520;
}

.authorization-heading p.zh {
  margin: 16px 0 0;
  color: var(--amber-300);
  font-size: 1.48rem;
  line-height: 1.55;
}

.authorization-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.authorization-copy > div {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.052)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.024) 0 1px, transparent 1px 14px);
  box-shadow: 0 22px 56px rgb(16 9 8 / 0.24);
  padding: 42px;
}

.authorization-copy h3 {
  margin: 0 0 22px;
  color: var(--amber-300);
  font-size: 1.35rem;
}

.authorization-copy p,
.authorization-copy li {
  color: var(--stone-300);
  font-size: 1.18rem;
  line-height: 1.86;
}

.authorization-copy p {
  margin: 0 0 18px;
}

.authorization-copy ul {
  margin: 0;
  padding-left: 20px;
}

.authorization-copy li + li {
  margin-top: 8px;
}

.database-card + .database-card {
  margin-top: 28px;
  border-top: 1px solid rgb(216 167 66 / 0.18);
  padding-top: 28px;
}

.ghost-link {
  color: var(--amber-300);
  font-weight: 650;
  border-bottom: 1px solid rgb(216 167 66 / 0.34);
  padding-bottom: 4px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.052)),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.022) 0 1px, transparent 1px 16px);
  box-shadow: 0 22px 52px rgb(16 9 8 / 0.22);
  transition:
    border-color var(--ease-quiet),
    background var(--ease-quiet),
    opacity var(--ease-quiet);
}

.info-card:hover {
  border-color: rgb(226 200 135 / 0.34);
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.13), rgb(248 240 228 / 0.062)),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.026) 0 1px, transparent 1px 16px);
}

.collection-intro {
  max-width: 1040px;
  margin: -10px 0 66px;
  color: var(--stone-300);
  font-size: 1.2rem;
  line-height: 1.86;
}

.collection-intro span {
  display: block;
  margin-top: 10px;
  color: var(--stone-400);
}

.museum-feature-layout {
  display: grid;
  gap: 34px;
}

.featured-artwork,
.supporting-artworks figure {
  margin: 0;
  border: 1px solid rgb(162 116 48 / 0.28);
  background:
    linear-gradient(180deg, rgb(255 252 244 / 0.96), var(--amber-50)),
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 16px);
  color: var(--stone-950);
  box-shadow:
    0 30px 86px rgb(16 9 8 / 0.3),
    inset 0 0 0 1px rgb(255 255 255 / 0.52);
}

.featured-artwork {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 46px;
  align-items: center;
  border-radius: 8px;
  padding: 42px;
}

.artwork-open {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.artwork-open img {
  display: block;
  width: 100%;
  border: 1px solid rgb(87 83 78 / 0.18);
  background:
    linear-gradient(180deg, #f4ead9, #eadbc5);
  object-fit: contain;
  box-shadow:
    0 20px 48px rgb(64 42 24 / 0.14),
    inset 0 0 0 8px rgb(255 255 255 / 0.12);
}

.artwork-open .museum-image-placeholder {
  color: #4a3426;
}

.featured-artwork .artwork-open img {
  max-height: 78vh;
  min-height: 620px;
  border-radius: 6px;
}

.featured-artwork .artwork-open .museum-image-placeholder {
  min-height: 620px;
}

.featured-artwork figcaption {
  padding: 22px 14px;
}

.featured-artwork h3,
.supporting-artworks h3 {
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.14;
}

.featured-artwork h3 {
  font-size: 3.45rem;
  font-weight: 500;
}

.featured-artwork h4 {
  margin: 12px 0 0;
  color: #8b1e1e;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
}

.featured-artwork .work-meta {
  margin-top: 22px;
  border-top: 1px solid rgb(154 106 22 / 0.22);
  padding-top: 18px;
}

.artwork-label-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  border: 1px solid rgb(92 54 32 / 0.14);
  background: rgb(92 54 32 / 0.14);
}

.artwork-label-meta div {
  min-width: 0;
  background: rgb(255 252 244 / 0.68);
  padding: 13px 14px 14px;
}

.artwork-label-meta dt {
  margin: 0 0 7px;
  color: #8b6a2e;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.artwork-label-meta dd {
  margin: 0;
  color: #2c211b;
  font-size: 0.95rem;
  line-height: 1.4;
}

.supporting-artworks .artwork-label-meta {
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.supporting-artworks .artwork-label-meta div {
  padding: 10px 11px;
}

.supporting-artworks .artwork-label-meta dt {
  font-size: 0.58rem;
}

.supporting-artworks .artwork-label-meta dd {
  font-size: 0.85rem;
}

.supporting-artworks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.supporting-artworks figure {
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow var(--ease-quiet),
    opacity var(--ease-quiet);
}

.supporting-artworks figure:hover {
  box-shadow:
    0 30px 78px rgb(16 9 8 / 0.3),
    inset 0 0 0 1px rgb(255 255 255 / 0.58);
}

.supporting-artworks .artwork-open {
  padding: 16px 16px 0;
}

.supporting-artworks .artwork-open img {
  height: 250px;
  border-radius: 6px;
}

.supporting-artworks .artwork-open .museum-image-placeholder {
  min-height: 250px;
}

.supporting-artworks figcaption {
  padding: 20px 20px 24px;
}

.supporting-artworks h3 {
  font-size: 1.26rem;
}

.supporting-artworks h4 {
  margin: 7px 0 0;
  color: #8b1e1e;
  font-size: 1rem;
  font-weight: 500;
}

.supporting-artworks p {
  margin: 12px 0 0;
  color: #87601e;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.artwork-modal {
  width: min(100% - 36px, 1180px);
  max-width: 1180px;
  max-height: min(92vh, 920px);
  border: 1px solid rgb(216 167 66 / 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #241513, #140d0c);
  color: var(--stone-100);
  padding: 0;
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.72);
}

.artwork-modal::backdrop {
  background: rgb(30 21 18 / 0.78);
  backdrop-filter: blur(7px);
}

.artwork-modal-inner {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  max-height: min(92vh, 920px);
}

.artwork-modal img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 138px);
  background: var(--amber-50);
  object-fit: contain;
}

.artwork-modal .modal-image-placeholder {
  min-height: min(62vh, 620px);
  border: 0;
  border-radius: 0;
}

.modal-caption {
  border-top: 1px solid rgb(216 167 66 / 0.24);
  padding: 22px 28px 24px;
}

.modal-caption h3 {
  margin: 0;
  color: var(--amber-300);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.modal-caption p {
  margin: 8px 0 0;
  color: var(--stone-300);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(216 167 66 / 0.38);
  border-radius: 999px;
  background: rgb(30 21 18 / 0.88);
  color: var(--amber-300);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: stretch;
  border: 1px solid rgb(162 116 48 / 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 252 244 / 0.92), var(--amber-50)),
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 13px);
  color: var(--stone-950);
  padding: 22px;
  box-shadow: 0 28px 76px rgb(30 21 18 / 0.3);
}

.featured-work img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 6px;
  object-fit: contain;
  background: #efe4d4;
  box-shadow: 0 18px 38px rgb(64 42 24 / 0.18);
}

.featured-work > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.work-category {
  margin: 0 0 16px;
  color: #9a6a16;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.featured-work h3,
.work-card h3 {
  font-family: var(--font-serif);
}

.featured-work h3 {
  margin: 0;
  font-size: 3.45rem;
  line-height: 1.05;
}

.featured-work h4 {
  margin: 12px 0 0;
  color: #8b1e1e;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.featured-work p {
  margin: 18px 0 0;
  color: #3f3a34;
  font-size: 1.04rem;
  line-height: 1.72;
}

.featured-work p.zh {
  margin-top: 10px;
  color: #6c6257;
}

.work-meta {
  color: #9a6a16 !important;
  font-weight: 700;
}

.collection-category {
  margin-top: 54px;
}

.collection-category > h3 {
  margin: 0 0 22px;
  color: var(--amber-300);
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.2;
}

.collection-category > h3 span {
  display: block;
  margin-top: 8px;
  color: var(--stone-400);
  font-size: 1.05rem;
  font-family: inherit;
}

.work-card {
  border: 1px solid rgb(162 116 48 / 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 252 244 / 0.92), var(--amber-50)),
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 13px);
  color: var(--stone-950);
  box-shadow: 0 20px 48px rgb(30 21 18 / 0.22);
  overflow: hidden;
  transition:
    box-shadow var(--ease-quiet),
    opacity var(--ease-quiet);
}

.work-card:hover {
  box-shadow: 0 28px 64px rgb(30 21 18 / 0.3);
}

.work-card {
  padding: 18px;
}

.work-image {
  display: block;
  width: 100%;
  height: 280px;
  border-radius: 6px;
  background-color: #efe4d4;
  object-fit: contain;
}

.work-card p {
  margin: 18px 0 0;
  color: #9a6a16;
  font-size: 0.92rem;
  font-weight: 700;
}

.work-card h3 {
  margin: 12px 0 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.work-card h4 {
  margin: 8px 0 0;
  color: #8b1e1e;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
}

.work-card span {
  display: block;
  margin-top: 14px;
  color: #3f3a34;
  line-height: 1.7;
}

.work-card span.zh {
  margin-top: 8px;
  color: #6c6257;
}

.timeline-section {
  border-block: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.07), rgb(59 15 18 / 0.22)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
}

.timeline-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  padding: 128px 0;
}

.timeline-inner p {
  color: var(--stone-300);
  font-size: 1.22rem;
  line-height: 1.86;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.052));
  box-shadow: 0 18px 38px rgb(16 9 8 / 0.16);
  padding: 22px;
}

.timeline-list strong {
  color: var(--amber-300);
  font-size: 1.25rem;
}

.timeline-list span {
  color: var(--stone-300);
  font-size: 1.1rem;
  line-height: 1.72;
}

.timeline-content,
.life-stage-grid {
  display: grid;
  gap: 18px;
}

.life-stage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.life-stage-grid .info-card {
  padding: 24px;
}

.zh {
  color: var(--stone-400);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.info-card {
  padding: 28px;
}

.info-card-media,
.collection-card-media {
  overflow: hidden;
  margin: -28px -28px 24px;
  border-bottom: 1px solid var(--panel-border);
  background: rgb(20 12 10 / 0.18);
}

.info-card-media img,
.collection-card-media img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.info-card-media .museum-image-placeholder,
.collection-card-media .museum-image-placeholder {
  min-height: 178px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.icon {
  display: block;
  color: var(--amber-300);
  font-size: 2.1rem;
  line-height: 1;
}

.info-card h3 {
  margin: 20px 0 0;
  font-size: 1.25rem;
}

.info-card p {
  margin: 16px 0 0;
  color: var(--stone-300);
  font-size: 1.12rem;
  line-height: 1.78;
}

.info-card p.zh {
  margin-top: 8px;
  color: var(--stone-400);
}

.archive-image-section {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 46px;
  border-top: 1px solid var(--panel-border);
}

.archive-image-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.archive-image-heading h3 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  color: var(--amber-200);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0;
}

.archive-image-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--stone-300);
  font-size: 1.08rem;
  line-height: 1.8;
}

.archive-image-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.archive-image-gallery .info-card-media img,
.archive-image-gallery .info-card-media .museum-image-placeholder {
  height: 220px;
}

.research-section {
  background:
    linear-gradient(180deg, rgb(255 252 244 / 0.96), var(--amber-50)),
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 14px);
  color: var(--stone-950);
  border-block: 1px solid rgb(162 116 48 / 0.2);
}

.guardian-section {
  border-top: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgb(38 15 13 / 0.95), rgb(75 22 23 / 0.78), rgb(92 29 29 / 0.42)),
    repeating-linear-gradient(115deg, rgb(255 255 255 / 0.02) 0 1px, transparent 1px 18px);
}

.guardian-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 64px;
  align-items: start;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 128px 0;
}

.guardian-feature-profile {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  column-gap: clamp(56px, 5vw, 84px);
  row-gap: 32px;
  align-items: start;
  margin-top: 30px;
}

.guardian-portrait {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 260px;
  min-width: 0;
  aspect-ratio: 3 / 4;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgb(226 200 135 / 0.25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 252 244 / 0.14), rgb(248 240 228 / 0.055)),
    linear-gradient(135deg, rgb(74 32 24 / 0.34), rgb(20 12 10 / 0.54)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.03) 0 1px, transparent 1px 14px);
  box-shadow:
    0 22px 56px rgb(16 9 8 / 0.24),
    inset 0 0 0 1px rgb(248 240 228 / 0.05);
  padding: 26px;
}

.guardian-feature-copy {
  min-width: 0;
}

.guardian-portrait img,
.guardian-portrait .museum-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.guardian-portrait::before {
  content: "";
  position: absolute;
  inset: 26px 24px 96px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgb(226 200 135 / 0.2);
  background:
    linear-gradient(180deg, rgb(247 239 226 / 0.08), transparent),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.035) 0 1px, transparent 1px 12px);
}

.guardian-portrait span {
  position: relative;
  color: var(--amber-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.guardian-portrait strong {
  position: relative;
  display: block;
  margin-top: 12px;
  color: var(--amber-50);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
}

.guardian-copy h2 {
  margin: 14px 0 0;
  font-size: 4rem;
  line-height: 1.02;
  font-family: var(--font-serif);
  font-weight: 520;
}

.guardian-copy h2 span {
  display: block;
  margin-top: 16px;
  color: var(--amber-300);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.22;
}

.guardian-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--stone-300);
  font-size: 1.24rem;
  line-height: 1.86;
}

.guardian-copy .guardian-role {
  margin-top: 18px;
  color: var(--amber-300);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.36;
}

.guardian-feature-copy p:not(.guardian-role) {
  max-width: 820px;
  margin-top: 22px;
  font-size: 1.14rem;
  line-height: 1.88;
}

.guardian-feature-copy p:not(.guardian-role) + p:not(.guardian-role) {
  margin-top: 16px;
}

.guardian-copy p.zh {
  margin-top: 14px;
  color: var(--stone-400);
}

.guardian-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 58px;
}

.guardian-panel div {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.052)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
  box-shadow: 0 18px 42px rgb(16 9 8 / 0.16);
  padding: 28px;
}

.guardian-panel span {
  display: block;
  margin-top: 12px;
  color: var(--amber-300);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
}

.guardian-panel h3 {
  margin: 0;
  font-size: 1.4rem;
}

.guardian-panel p {
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.portrait-archive-section {
  border-top: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgb(37 15 13 / 0.96), rgb(71 22 23 / 0.82)),
    repeating-linear-gradient(115deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 18px);
}

.portrait-archive-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 112px 0 124px;
}

.portrait-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.portrait-archive-card {
  margin: 0;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.045)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 14px);
  box-shadow: 0 18px 42px rgb(16 9 8 / 0.18);
  padding: 18px;
}

.portrait-archive-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgb(226 200 135 / 0.18);
  border-radius: 6px;
  background: rgb(20 12 10 / 0.24);
}

.portrait-archive-media img,
.portrait-archive-media .museum-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.portrait-archive-card figcaption {
  padding: 18px 4px 4px;
}

.portrait-archive-card h3 {
  margin: 0;
  color: var(--stone-100);
  font-size: 1.05rem;
  line-height: 1.45;
}

.museum-sections {
  background:
    linear-gradient(180deg, #4f1719 0%, #20100e 100%);
  border-top: 1px solid var(--panel-border);
}

.museum-sections-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 128px 0;
}

.museum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.museum-grid.featured-collections-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.museum-grid article {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.095), rgb(248 240 228 / 0.045));
  box-shadow: 0 18px 42px rgb(16 9 8 / 0.16);
  min-height: 250px;
  padding: 30px;
  transition:
    border-color var(--ease-quiet),
    opacity var(--ease-quiet);
}

.museum-grid article:hover {
  border-color: rgb(216 167 66 / 0.4);
}

.museum-grid h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.28;
}

.museum-grid p {
  margin: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.68;
}

.featured-collection-card {
  min-height: 0;
}

.featured-collection-media img,
.featured-collection-media .museum-image-placeholder {
  height: clamp(240px, 27vw, 390px);
  min-height: clamp(240px, 27vw, 390px);
}

.featured-collection-meta {
  color: var(--amber-300);
  font-size: 0.94rem;
  font-weight: 650;
}

.research-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  padding: 128px 0;
}

.research-inner .eyebrow {
  color: #8b1e1e;
}

.research-inner h2 span {
  color: #8b1e1e;
  font-size: 2.1rem;
}

.research-copy {
  color: var(--stone-700);
  font-size: 1.24rem;
  line-height: 1.84;
}

.research-copy p {
  margin: 0 0 20px;
}

.research-copy p.zh {
  margin-top: -8px;
}

.exhibition-grid,
.research-card-grid,
.workflow-list {
  display: grid;
  gap: 18px;
}

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

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

.workflow-list {
  margin-top: 24px;
}

.research-copy .info-card {
  border-color: rgb(139 37 38 / 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.72), rgb(255 252 244 / 0.88)),
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 14px);
  box-shadow: 0 16px 34px rgb(111 69 38 / 0.1);
}

.research-copy .info-card h3 {
  color: var(--stone-950);
}

.research-copy .info-card p {
  color: var(--stone-700);
}

.research-copy .icon {
  color: #8b1e1e;
}

.support-section {
  border-top: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgb(20 12 10 / 0.9), rgb(56 16 18 / 0.78)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 12px);
}

.support-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 118px 0 124px;
}

.support-heading {
  align-items: flex-start;
  max-width: 960px;
}

.support-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--stone-300);
  font-size: 1.18rem;
  line-height: 1.82;
}

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

.support-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(248 240 228 / 0.1), rgb(248 240 228 / 0.052)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.022) 0 1px, transparent 1px 14px);
  box-shadow: 0 22px 52px rgb(16 9 8 / 0.2);
  padding: 26px;
}

.support-card .eyebrow {
  margin: 28px 0 0;
  color: var(--amber-300);
  font-size: 0.68rem;
}

.support-card h3 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.18;
  font-weight: 520;
}

.support-card p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--stone-300);
  font-size: 0.98rem;
  line-height: 1.66;
}

.support-status {
  align-self: flex-start;
  border: 1px solid rgb(226 200 135 / 0.28);
  border-radius: 999px;
  background: rgb(20 12 10 / 0.24);
  color: var(--amber-300);
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-disclaimer {
  max-width: 760px;
  margin: 34px 0 0;
  border-left: 1px solid rgb(226 200 135 / 0.34);
  color: var(--stone-400);
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.72;
}

.support-detail-sections {
  display: grid;
  gap: 22px;
  margin-top: 72px;
}

.support-detail {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(248 240 228 / 0.11), rgb(248 240 228 / 0.045)),
    repeating-linear-gradient(0deg, rgb(248 240 228 / 0.018) 0 1px, transparent 1px 16px);
  box-shadow: 0 26px 70px rgb(16 9 8 / 0.22);
  padding: clamp(30px, 4vw, 52px);
}

.support-detail:not(.support-detail-quote) {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.support-detail-header .eyebrow {
  color: var(--amber-300);
}

.support-detail-header h3 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 520;
}

.support-detail-body {
  color: var(--stone-300);
  font-size: 1.08rem;
  line-height: 1.82;
}

.support-detail-body p {
  margin: 0;
}

.support-detail-body p + p {
  margin-top: 18px;
}

.support-phase-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.support-phase-column {
  border: 1px solid rgb(226 200 135 / 0.14);
  border-radius: 8px;
  background: rgb(20 12 10 / 0.18);
  padding: 24px;
}

.support-detail-body h4,
.support-phase-column h4 {
  margin: 0 0 16px;
  color: var(--amber-300);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-detail-body h4 {
  margin-top: 28px;
}

.support-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.support-list li {
  padding-left: 6px;
}

.support-detail-note {
  margin-top: 28px !important;
  border-left: 1px solid rgb(226 200 135 / 0.34);
  color: var(--stone-400);
  padding-left: 18px;
}

.support-detail-quote {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(135deg, rgb(101 29 32 / 0.28), rgb(22 14 12 / 0.72)),
    repeating-linear-gradient(90deg, rgb(248 240 228 / 0.02) 0 1px, transparent 1px 14px);
}

.support-quote {
  max-width: 920px;
  margin: 0;
  color: var(--amber-50);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.1;
  font-weight: 500;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  border-top: 1px solid rgb(216 167 66 / 0.18);
  padding: 52px 0;
  color: var(--stone-400);
  font-size: 1.08rem;
  text-align: center;
  overflow: visible;
}

.footer-credit {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 780px;
  overflow: visible;
}

.footer-credit p {
  margin: 0;
}

.footer-museum-name {
  color: var(--amber-50);
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2.3vw, 1.72rem);
  line-height: 1.25;
  margin-bottom: 2px;
}

.footer-tagline {
  color: rgb(247 241 232 / 0.72);
  font-size: clamp(0.96rem, 1.55vw, 1.12rem);
  line-height: 1.55;
}

.footer-copyright,
.footer-credit-line {
  color: rgb(247 241 232 / 0.54);
  font-size: clamp(0.8rem, 1.05vw, 0.9rem);
  letter-spacing: 0.04em;
  line-height: 1.55;
  max-width: 680px;
}

.footer-copyright {
  margin-top: 4px;
}

.footer-credit-line {
  color: rgb(247 241 232 / 0.5);
}

.footer-logo-wrap {
  display: grid;
  place-items: center;
  margin-top: 10px;
  max-width: min(100%, 132px);
  overflow: visible;
  padding: 8px 10px 10px;
  line-height: 0;
}

.footer-partner-logo {
  display: block;
  width: auto;
  height: clamp(58px, 4.8vw, 68px);
  max-width: min(112px, 46vw);
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  overflow: visible;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.reveal {
  animation: reveal 1100ms ease both;
}

.gallery-frame.reveal {
  animation-delay: 120ms;
}

@keyframes reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    padding: 108px 0;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero h1 span {
    font-size: 2.6rem;
  }

  [data-lang="zh"] .hero h1 span {
    font-size: 4.1rem;
  }

  .hero-inner,
  .timeline-inner,
  .research-inner,
  .guardian-inner,
  .guardian-feature-profile,
  .support-detail:not(.support-detail-quote),
  .authorization-copy,
  .featured-work,
  .featured-artwork {
    grid-template-columns: 1fr;
  }

  .works-grid,
  .archive-grid,
  .archive-note-inner,
  .museum-grid,
  .supporting-artworks,
  .exhibition-grid,
  .support-grid,
  .support-phase-columns,
  .portrait-archive-grid,
  .archive-image-gallery,
  .research-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .museum-grid.featured-collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card,
  .gallery-panel {
    min-height: 560px;
  }

  .gallery-preview > img {
    height: 280px;
  }

  .print-row img {
    height: 96px;
  }

  .featured-work img {
    min-height: 340px;
  }

  .featured-artwork .artwork-open img {
    min-height: 380px;
  }

  .guardian-panel {
    padding-top: 0;
  }

  .guardian-portrait {
    width: min(100%, 360px);
    max-width: 360px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .section,
  .timeline-inner,
  .research-inner,
  .guardian-inner,
  .support-inner,
  .authorization-inner,
  .archive-note-inner,
  .museum-sections-inner,
  .portrait-archive-inner,
  .site-footer {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-left {
    align-items: flex-start;
  }

  .logo {
    height: 80px;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero h1 span {
    font-size: 2rem;
  }

  [data-lang="zh"] .hero h1 span {
    font-size: 3.1rem;
  }

  .works-grid,
  .archive-grid,
  .archive-note-inner,
  .museum-grid,
  .supporting-artworks,
  .life-stage-grid,
  .exhibition-grid,
  .support-grid,
  .support-phase-columns,
  .portrait-archive-grid,
  .archive-image-gallery,
  .research-card-grid {
    grid-template-columns: 1fr;
  }

  .museum-grid.featured-collections-grid {
    grid-template-columns: 1fr;
  }

  .support-detail {
    padding: 26px;
  }

  .support-detail-sections {
    margin-top: 48px;
  }

  .featured-work,
  .featured-artwork {
    padding: 14px;
  }

  .featured-work > div {
    padding: 18px 8px 10px;
  }

  .featured-work img {
    min-height: 260px;
  }

  .featured-artwork .artwork-open img,
  .supporting-artworks .artwork-open img {
    height: auto;
    max-height: 70vh;
    min-height: 0;
  }

  .featured-artwork figcaption,
  .supporting-artworks figcaption {
    padding-inline: 12px;
  }

  .artwork-label-meta {
    grid-template-columns: 1fr;
  }

  .artwork-modal {
    width: min(100% - 20px, 1180px);
    border-radius: 14px;
  }

  .modal-caption {
    padding: 18px;
  }

  .work-image {
    height: 240px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer,
  .footer-credit,
  .footer-logo-wrap {
    align-items: center;
    text-align: center;
  }

  .timeline-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
