
:root {
  color-scheme: light;
  --ink: #33251f;
  --muted: #806f65;
  --paper: #fff9f3;
  --card: #fffdf9;
  --accent: #ff6f8f;
  --accent-2: #42b883;
  --gold: #d9a441;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 111, 143, .16), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(66, 184, 131, .12), transparent 26%),
    var(--paper);
  color: var(--ink);
}

.note-page, .index-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 16px 44px;
}

.hero, .index-hero {
  padding: 24px 18px 20px;
  border-radius: 26px;
  background: linear-gradient(145deg, #fff 0%, #fff2ee 48%, #f4fff9 100%);
  box-shadow: 0 14px 34px rgba(99, 58, 38, .12);
  border: 1px solid rgba(255, 138, 164, .28);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9f68);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 16px 0 8px;
  font-size: clamp(32px, 10vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.subtitle, .index-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.media-strip {
  margin-top: 18px;
}

figure {
  margin: 0 0 14px;
  padding: 10px;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(89, 56, 30, .10);
}

figure img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

figcaption {
  padding: 8px 4px 2px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.image-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  background: repeating-linear-gradient(135deg, #fff, #fff 18px, #fff2f5 18px, #fff2f5 36px);
  box-shadow: 0 10px 28px rgba(89, 56, 30, .10);
}

.placeholder-mark {
  color: var(--accent);
  font-size: 18px;
}

.story-card {
  margin-top: 18px;
  padding: 22px 18px 24px;
  border-radius: 24px;
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 12px 30px rgba(89, 56, 30, .11);
}

.story-card h2 {
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 5px solid var(--accent);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.story-card h2:first-child { margin-top: 0; }

.story-card p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.92;
  letter-spacing: 0;
  text-align: justify;
}

.story-card p::first-letter {
  font-weight: 700;
  color: var(--accent);
}

.bottom-nav {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.bottom-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: #2f2a27;
  text-decoration: none;
  font-weight: 700;
}

.index-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.index-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(89, 56, 30, .09);
}

.index-card span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.index-card strong {
  font-size: 22px;
}

.index-card em {
  color: var(--muted);
  font-style: normal;
}

.emma-page-body {
  color: #f8efe5;
  background:
    radial-gradient(circle at 18% 10%, rgba(210, 124, 72, .22), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, .11), transparent 26%),
    linear-gradient(180deg, #050403 0%, #11100d 46%, #ebe0d2 46%, #f6efe6 100%);
}

.emma-page {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 14px 14px 42px;
}

.emma-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .01) 38%, rgba(201, 97, 54, .17)),
    #080706;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  isolation: isolate;
}

.emma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.08) 38%, rgba(255,255,255,.36));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.emma-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .52;
  z-index: -1;
}

.emma-orb-one {
  left: -130px;
  top: 70px;
  background: #d47b49;
}

.emma-orb-two {
  right: -150px;
  bottom: -60px;
  background: #f7e2c0;
}

.emma-nav {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.emma-nav span,
.emma-nav a,
.emma-intro-card {
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.16);
  border: 1px solid rgba(255, 255, 255, .18);
}

.emma-nav span,
.emma-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 247, 236, .92);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.emma-hero-content {
  position: relative;
  z-index: 4;
  margin-top: auto;
  padding: 34px 22px 42px;
}

.emma-kicker {
  margin: 0 0 14px;
  color: rgba(255, 247, 236, .72);
  font-size: 13px;
  text-transform: uppercase;
}

.emma-role {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 248, 236, .92);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 15px;
  font-weight: 700;
}

.emma-hero h1 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(68px, 22vw, 150px);
  font-style: italic;
  line-height: .9;
  letter-spacing: 0;
}

.emma-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 247, 236, .86);
  font-size: clamp(19px, 5vw, 30px);
  line-height: 1.35;
  font-weight: 300;
}

.emma-intro-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  margin-left: 14px;
  margin-right: 14px;
  padding: 20px;
  position: relative;
  z-index: 5;
  border-radius: 22px;
  color: #fff8ec;
}

.emma-intro-card span {
  color: rgba(255, 248, 236, .68);
  font-size: 13px;
  font-weight: 700;
}

.emma-intro-card strong {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}

.emma-intro-card-compact {
  min-height: 92px;
  align-content: center;
}

.emma-intro-card p {
  margin: 0;
  color: rgba(255, 248, 236, .82);
  line-height: 1.72;
}

.emma-story-card {
  margin-top: 18px;
  padding: 28px 20px;
  border-radius: 26px;
  color: #2f251e;
  background: rgba(255, 250, 242, .96);
  border: 1px solid rgba(52, 38, 29, .1);
  box-shadow: 0 20px 58px rgba(56, 35, 20, .16);
}

.emma-story-card h2 {
  border-left: 0;
  padding-left: 0;
  color: #251c17;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-style: italic;
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.2;
}

.emma-story-card p {
  color: #3b2e27;
  font-size: 17px;
  line-height: 2;
}

.emma-story-card p::first-letter {
  color: #a75b33;
}

.emma-qr-section {
  margin-top: 18px;
  padding: 28px 18px;
  border-radius: 28px;
  color: #fff8ec;
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    #080706;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 58px rgba(0,0,0,.25);
}

.emma-section-label {
  color: rgba(255, 248, 236, .62);
  font-size: 13px;
  text-transform: uppercase;
}

.emma-qr-section h2 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-style: italic;
  font-size: clamp(32px, 9vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.emma-qr-section p {
  margin: 0 0 18px;
  color: rgba(255, 248, 236, .78);
  line-height: 1.72;
}

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

.emma-qr-card {
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.emma-qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.emma-qr-card figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 2px 2px;
  color: rgba(255, 248, 236, .7);
  text-align: left;
}

.emma-qr-card figcaption strong {
  color: #fff8ec;
  font-size: 17px;
}

.emma-qr-card figcaption span {
  font-size: 12px;
}

.emma-bottom-nav a {
  background: #fff8ec;
  color: #211914;
}

@media (max-width: 620px) {
  .emma-page {
    padding: 10px 10px 34px;
  }

  .emma-hero {
    min-height: 78vh;
    border-radius: 24px;
  }

  .emma-nav {
    padding: 14px;
  }

  .emma-intro-card {
    margin-left: 8px;
    margin-right: 8px;
  }

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

/* 2026-07 harmony pass: unify catalog and story pages with Emma's warm editorial system. */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(210, 124, 72, .18), transparent 28%),
    radial-gradient(circle at 88% 3%, rgba(255, 248, 236, .16), transparent 24%),
    linear-gradient(180deg, #050403 0%, #11100d 34%, #eee3d6 34%, #f7efe5 100%);
}

.note-page,
.index-page {
  width: min(100%, 820px);
  padding: 14px 14px 42px;
}

.hero,
.index-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px 22px 34px;
  color: #fff8ec;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015) 38%, rgba(201, 97, 54, .17)),
    #080706;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  isolation: isolate;
}

.hero::before,
.index-hero::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #d47b49;
  opacity: .44;
  filter: blur(58px);
  z-index: -1;
}

.hero::after,
.index-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #f7e2c0;
  opacity: .38;
  filter: blur(62px);
  z-index: -1;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 248, 236, .92);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.index-hero h1 {
  max-width: 680px;
  margin: 18px 0 9px;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(36px, 12vw, 78px);
  font-style: italic;
  line-height: .98;
  letter-spacing: 0;
}

.subtitle,
.index-hero p {
  max-width: 600px;
  color: rgba(255, 247, 236, .8);
  font-size: clamp(15px, 3.6vw, 19px);
  line-height: 1.55;
  font-weight: 300;
}

.index-hero {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.index-card {
  min-height: 132px;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  color: #2f251e;
  background: rgba(255, 250, 242, .96);
  border: 1px solid rgba(52, 38, 29, .09);
  box-shadow: 0 16px 42px rgba(56, 35, 20, .13);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.index-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 91, 51, .22);
  box-shadow: 0 20px 50px rgba(56, 35, 20, .18);
}

.index-card span {
  color: #a75b33;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.index-card strong {
  color: #251c17;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(24px, 7vw, 38px);
  font-style: italic;
  line-height: 1;
}

.index-card em {
  color: #7d6b60;
  font-size: 13px;
}

.media-strip {
  margin-top: 16px;
}

.image-placeholder {
  min-height: 180px;
  border-radius: 26px;
  color: #fff8ec;
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    #080706;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 58px rgba(0,0,0,.2);
  font-size: 20px;
}

.placeholder-mark {
  color: rgba(255, 248, 236, .68);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-card {
  margin-top: 18px;
  padding: 26px 20px;
  border-radius: 26px;
  color: #2f251e;
  background: rgba(255, 250, 242, .96);
  border: 1px solid rgba(52, 38, 29, .1);
  box-shadow: 0 20px 58px rgba(56, 35, 20, .16);
}

.story-card h2 {
  margin: 24px 0 10px;
  border-left: 0;
  padding-left: 0;
  color: #251c17;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-style: italic;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.22;
}

.story-card p {
  color: #3b2e27;
  font-size: 15px;
  line-height: 1.9;
}

.story-card p::first-letter {
  color: #a75b33;
}

.bottom-nav a {
  min-height: 40px;
  background: #fff8ec;
  color: #211914;
  box-shadow: 0 10px 24px rgba(56, 35, 20, .14);
}

/* Emma page: reduce billboard-scale type by two steps. */
.emma-hero {
  min-height: 74vh;
}

.emma-role {
  font-size: 13px;
  padding: 8px 13px;
}

.emma-hero h1 {
  font-size: clamp(44px, 15vw, 92px);
  line-height: .96;
}

.emma-lead {
  max-width: 560px;
  font-size: clamp(16px, 4.2vw, 23px);
  line-height: 1.45;
}

.emma-story-card {
  padding: 26px 20px;
}

.emma-story-card h2 {
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.24;
}

.emma-story-card p {
  font-size: 15px;
  line-height: 1.9;
}

.emma-qr-section h2 {
  font-size: clamp(24px, 7vw, 40px);
  line-height: 1.08;
}

.emma-qr-section p {
  font-size: 14px;
}

.emma-qr-grid-single {
  grid-template-columns: minmax(0, 220px);
}

.emma-qr-grid-duo {
  grid-template-columns: repeat(2, minmax(0, 220px));
}

.emma-qr-grid-stack {
  grid-template-columns: minmax(0, 220px);
}

.emma-qr-card figcaption strong {
  font-size: 15px;
}

@media (max-width: 620px) {
  .note-page,
  .index-page {
    padding: 10px 10px 34px;
  }

  .hero,
  .index-hero {
    border-radius: 24px;
    padding: 24px 18px 28px;
  }

  .index-hero {
    min-height: 42vh;
  }

  .index-grid {
    grid-template-columns: 1fr;
  }

  .index-card {
    min-height: 112px;
  }

  .emma-hero {
    min-height: 68vh;
  }
}

/* Hide exhibit numbering labels per final catalog copy direction. */
.index-card span,
.placeholder-mark {
  display: none;
}

/* Final size pass: reduce page typography by roughly two steps. */
.hero h1,
.index-hero h1 {
  font-size: clamp(30px, 9.5vw, 62px);
  line-height: 1.02;
}

.subtitle,
.index-hero p {
  font-size: clamp(13px, 3.2vw, 16px);
  line-height: 1.55;
}

.index-card strong {
  font-size: clamp(20px, 5.6vw, 30px);
}

.index-card em,
.tag,
.bottom-nav a {
  font-size: 12px;
}

.image-placeholder {
  font-size: 17px;
}

.story-card h2 {
  font-size: clamp(18px, 4.2vw, 25px);
  line-height: 1.28;
}

.story-card p {
  font-size: 13px;
  line-height: 1.85;
}

.emma-role,
.emma-nav a {
  font-size: 12px;
}

.emma-hero h1 {
  font-size: clamp(36px, 12vw, 72px);
  line-height: 1;
}

.emma-lead {
  font-size: clamp(14px, 3.8vw, 19px);
  line-height: 1.48;
}

.emma-story-card h2 {
  font-size: clamp(18px, 4.2vw, 25px);
  line-height: 1.3;
}

.emma-story-card p {
  font-size: 13px;
  line-height: 1.85;
}

.emma-qr-section h2 {
  font-size: clamp(22px, 6vw, 34px);
}

.emma-qr-section p,
.emma-qr-card figcaption strong {
  font-size: 13px;
}

/* Detail layout pass: unified exhibit cards, continuous reading background. */
html {
  background: #f7efe5;
}

body,
.emma-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(210, 124, 72, .18), transparent 28%),
    radial-gradient(circle at 88% 3%, rgba(255, 248, 236, .16), transparent 24%),
    linear-gradient(180deg, #050403 0%, #11100d 32rem, #eee3d6 32rem, #f7efe5 100%);
  background-attachment: fixed;
}

.exhibit-detail-page {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 12px 12px 42px;
}

.exhibit-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  color: #fff8ec;
  background:
    radial-gradient(circle at 20% 18%, rgba(150, 77, 43, .58), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(221, 204, 170, .46), transparent 38%),
    linear-gradient(145deg, #0a0807 0%, #221914 56%, #786958 100%);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  isolation: isolate;
}

.exhibit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.08), transparent 42%, rgba(255,255,255,.1));
  pointer-events: none;
}

.exhibit-all-link {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  color: #fff8ec;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14), 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.exhibit-hero-content {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  padding: 0 42px 44px;
}

.exhibit-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 26px;
  padding: 8px 18px;
  border-radius: 999px;
  color: rgba(255, 248, 236, .95);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
}

.exhibit-hero h1 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(40px, 12vw, 84px);
  font-style: italic;
  line-height: .95;
  letter-spacing: 0;
}

.exhibit-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 248, 236, .86);
  font-size: clamp(15px, 3.8vw, 20px);
  line-height: 1.55;
}

.media-strip {
  display: none;
}

.glass-panel {
  margin-top: 14px;
  border-radius: 24px;
  color: #fff8ec;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14), 0 18px 52px rgba(0,0,0,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.collab-panel {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.collab-panel span {
  font-size: 17px;
  font-weight: 800;
}

.collab-panel small {
  color: rgba(255, 248, 236, .72);
  font-size: 12px;
}

.exhibit-summary {
  padding: 20px;
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 248, 236, .66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exhibit-summary p {
  margin: 0 0 12px;
  color: rgba(255, 248, 236, .88);
  font-size: 13px;
  line-height: 1.82;
}

.exhibit-summary p:last-child {
  margin-bottom: 0;
}

.story-card,
.emma-story-card {
  margin-top: 16px;
  padding: 24px 20px;
  border-radius: 26px;
  background: rgba(255, 250, 242, .97);
  color: #2f251e;
  border: 1px solid rgba(52, 38, 29, .1);
  box-shadow: 0 20px 58px rgba(56, 35, 20, .14);
}

.story-card h2,
.emma-story-card h2 {
  margin: 24px 0 10px;
  border-left: 0;
  padding-left: 0;
  color: #251c17;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-style: italic;
  font-size: clamp(18px, 4.2vw, 25px);
  line-height: 1.3;
}

.story-card p,
.emma-story-card p {
  color: #3b2e27;
  font-size: 13px;
  line-height: 1.85;
}

.story-card p::first-letter,
.emma-story-card p::first-letter {
  color: #a75b33;
  font-weight: 800;
}

.emma-page {
  width: min(100%, 820px);
  padding: 12px 12px 42px;
}

.emma-hero,
.hero {
  min-height: auto;
}

@media (max-width: 620px) {
  .exhibit-detail-page {
    padding: 10px 10px 34px;
  }

  .exhibit-hero {
    min-height: 46vh;
    border-radius: 24px;
  }

  .exhibit-all-link {
    top: 18px;
    right: 18px;
    min-height: 38px;
    padding: 7px 15px;
    font-size: 12px;
  }

  .exhibit-hero-content {
    padding: 0 28px 34px;
  }

  .exhibit-pill {
    min-height: 34px;
    margin-bottom: 20px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .exhibit-hero h1 {
    font-size: clamp(34px, 13vw, 60px);
  }

  .exhibit-hero p {
    font-size: 14px;
  }
}

/* Final background fix: keep black gradient atmosphere; story text stays warm paper. */
html,
body,
.emma-page-body,
.exhibit-page-body {
  background:
    radial-gradient(circle at 16% 8%, rgba(148, 77, 44, .32), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(235, 211, 174, .16), transparent 28%),
    linear-gradient(180deg, #050403 0%, #11100d 42rem, #2b211c 100%) !important;
  background-attachment: scroll !important;
}

.exhibit-detail-page {
  background: transparent;
}

.exhibit-hero {
  background:
    radial-gradient(circle at 20% 18%, rgba(150, 77, 43, .58), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(221, 204, 170, .46), transparent 38%),
    linear-gradient(145deg, #0a0807 0%, #221914 56%, #786958 100%) !important;
}

.glass-panel,
.collab-panel,
.exhibit-summary {
  background: rgba(255, 255, 255, .075) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14), 0 18px 52px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

.story-card,
.emma-story-card {
  background: #fff7ea !important;
  color: #2f251e !important;
}

.author-panel strong + p {
  margin-top: 4px;
}

.story-card .story-main-title {
  margin-top: 0;
  margin-bottom: 18px;
  color: #a75b33;
  font-size: clamp(24px, 6vw, 36px);
  line-height: 1.15;
}

.hero-story-summary {
  max-width: 680px;
  margin-top: 18px;
}

.hero-story-summary p {
  margin: 0 0 10px;
  color: rgba(255, 248, 236, .84);
  font-size: clamp(12px, 3.2vw, 15px);
  line-height: 1.7;
}

.hero-story-summary p:last-child {
  margin-bottom: 0;
}

/* Information architecture pass: work-first catalog and author panels. */
.index-card strong {
  font-size: clamp(22px, 6vw, 34px);
  line-height: 1.08;
}

.index-card em {
  margin-top: 6px;
  color: #7d6b60;
  font-size: 14px;
  font-weight: 700;
}

.exhibit-pill {
  font-size: 12px;
}

.exhibit-hero h1 {
  font-size: clamp(38px, 11vw, 76px);
}

.exhibit-hero p {
  max-width: 700px;
  font-size: clamp(14px, 3.4vw, 18px);
}

.author-panel {
  margin-top: 14px;
  padding: 22px 20px;
}

.author-panel h2 {
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 8vw, 50px);
  font-style: italic;
  line-height: 1;
}

.author-panel strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 236, .92);
  font-size: 15px;
  line-height: 1.55;
}

.author-panel p {
  margin: 12px 0 0;
  color: rgba(255, 248, 236, .82);
  font-size: 13px;
  line-height: 1.82;
}

.collab-panel {
  padding: 14px 18px;
}

.collab-panel small {
  color: rgba(255, 248, 236, .82);
  font-size: 13px;
  font-weight: 700;
}

.exhibit-summary .panel-label {
  margin-bottom: 14px;
  color: #fff8ec;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.exhibit-summary p {
  font-size: 13px;
  line-height: 1.84;
}

@media (max-width: 620px) {
  .index-card strong {
    font-size: 24px;
  }

  .index-card em {
    font-size: 13px;
  }

  .author-panel {
    padding: 20px 18px;
  }

  .author-panel h2 {
    font-size: 34px;
  }
}

/* Final detail hero: spacious poster card, with long story kept below. */
.exhibit-hero {
  min-height: min(86vh, 780px) !important;
  border-radius: 30px !important;
}

.exhibit-hero-content {
  padding: 0 42px 50px !important;
}

.exhibit-pill {
  margin-bottom: 30px !important;
  padding: 9px 22px !important;
  font-size: 15px !important;
}

.exhibit-all-link {
  padding: 10px 24px !important;
  font-size: 15px !important;
}

.exhibit-hero h1 {
  max-width: 92%;
  font-size: clamp(48px, 12vw, 90px) !important;
  line-height: .96 !important;
}

.exhibit-hero p {
  max-width: 680px !important;
  margin-top: 24px !important;
  font-size: clamp(17px, 4vw, 24px) !important;
  line-height: 1.55 !important;
}

@media (max-width: 620px) {
  .exhibit-detail-page {
    padding: 10px 10px 34px;
  }

  .exhibit-hero {
    min-height: 74vh !important;
    border-radius: 26px !important;
  }

  .exhibit-all-link {
    top: 18px;
    right: 18px;
    padding: 8px 18px !important;
    font-size: 13px !important;
  }

  .exhibit-hero-content {
    padding: 0 30px 42px !important;
  }

  .exhibit-pill {
    margin-bottom: 26px !important;
    font-size: 13px !important;
  }

  .exhibit-hero h1 {
    font-size: clamp(42px, 14vw, 70px) !important;
  }

  .exhibit-hero p {
    font-size: 16px !important;
  }
}
