:root {
  --ink: #0b0a0b;
  --ink-2: #111012;
  --paper: #f4efed;
  --paper-soft: #ddd2d2;
  --muted: #a99b9e;
  --wine: #8f3e4c;
  --wine-bright: #c87582;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(14,11,12,.13);
  --max: 1240px;
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% -10%, rgba(143,62,76,.18), transparent 34rem),
    radial-gradient(circle at -10% 22%, rgba(104,73,81,.10), transparent 28rem),
    var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

::selection { background: rgba(200,117,130,.28); }
a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -120px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  color: #d6a4ac;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: ui-serif, "Noto Serif TC", "Songti TC", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .035em;
}
.muted { color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(8,7,8,.86), rgba(8,7,8,.58));
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}
.nav {
  width: min(calc(100% - 40px), var(--max));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(200,117,130,.55), rgba(143,62,76,.14) 54%, rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.025);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: -.08em;
}
.brand-copy { min-width: 0; }
.brand-title { display: block; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.brand-subtitle { display: block; color: var(--muted); font-size: 9px; letter-spacing: .20em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #cfc4c6;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; background: rgba(255,255,255,.07); }
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255,255,255,.055);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.09); }
.button.primary { color: #171215; background: var(--paper); border-color: transparent; }
.button.primary:hover { background: #fff; }
.button.wine { background: var(--wine); border-color: transparent; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(transparent, var(--ink));
}
.hero-grid {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 132px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display { margin-top: 18px; font-size: clamp(56px, 7.2vw, 104px); }
.hero-copy .intro { max-width: 590px; margin: 24px 0 0; color: #d5cbcd; font-size: clamp(16px, 1.7vw, 20px); }
.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .07em;
}
.hero-meta span + span::before { content: "◆"; margin-right: 18px; color: var(--wine-bright); font-size: 8px; }
.hero-visual { position: relative; min-height: 690px; }
.hero-frame {
  position: absolute;
  inset: 0 28px 0 70px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 260px 260px 32px 32px;
  background: #181316;
  box-shadow: var(--shadow);
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 33%; display: block;
  filter: saturate(.82) contrast(1.04);
  pointer-events: none;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,4,5,.07) 65%, rgba(5,4,5,.64));
  pointer-events: none;
}
.hero-serial {
  position: absolute;
  left: 0;
  bottom: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-stamp {
  position: absolute;
  right: 0;
  top: 56px;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #ddcfd1;
  background: rgba(12,9,11,.62);
  backdrop-filter: blur(12px);
  transform: rotate(8deg);
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
}
.hero-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.18); border-radius: 50%; }
.hero-note {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 230px;
  padding: 19px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  color: #d4c8ca;
  background: rgba(12,10,11,.78);
  backdrop-filter: blur(18px);
  font: 500 18px/1.4 ui-serif, Georgia, serif;
  box-shadow: 0 18px 54px rgba(0,0,0,.34);
}
.hero-note small { display: block; margin-top: 8px; color: var(--muted); font: 700 9px/1.4 ui-sans-serif, sans-serif; letter-spacing: .18em; text-transform: uppercase; }

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.018);
}
.marquee-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding: 13px 0;
  color: #aa9ea0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}
.marquee-track span::after { content: "✦"; margin-left: 42px; color: #b65d6b; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.section { padding: 108px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}
.section-head .display { margin-top: 9px; font-size: clamp(38px, 5.5vw, 66px); }
.section-head p { margin: 0; color: var(--muted); }

.character-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 20px;
}
.character-card {
  position: relative;
  min-height: 470px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background: #151215;
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
  isolation: isolate;
}
.character-card.featured { min-height: 650px; grid-column: span 7; }
.character-card.tall { min-height: 650px; grid-column: span 5; }
.character-card-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.character-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; transition: transform .7s ease; pointer-events: none; }
.character-card:hover .character-card-media img { transform: scale(1.03); }
.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,7,8,.03) 25%, rgba(8,7,8,.20) 52%, rgba(8,7,8,.94) 92%);
}
.character-card-content { position: absolute; inset: auto 0 0; padding: 30px; }
.character-card h3 { margin: 8px 0 8px; font: 500 clamp(34px, 4vw, 54px)/1.1 ui-serif, Georgia, serif; }
.character-card p { max-width: 620px; margin: 0 0 18px; color: #d5cbcd; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 13px; text-underline-offset: 5px; }
.sealed-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(143,62,76,.24), transparent 56%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 12px),
    #151215;
}
.sealed-card::before {
  content: attr(data-monogram);
  position: absolute;
  inset: 34px auto auto 34px;
  color: rgba(255,255,255,.055);
  font: 500 clamp(110px, 15vw, 210px)/1 Georgia, serif;
}
.sealed-card .seal {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #c6b9bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.sealed-card h3 { position: relative; margin: 0 0 9px; font: 500 38px/1.2 ui-serif, Georgia, serif; }
.sealed-card p { position: relative; margin: 0; color: var(--muted); }

.archive-statement {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(38px,7vw,94px);
  align-items: start;
  padding: clamp(38px,7vw,84px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 25%, rgba(143,62,76,.22), transparent 28rem),
    rgba(255,255,255,.022);
}
.archive-statement .display { font-size: clamp(38px,5.6vw,66px); }
.archive-statement p { margin-top: 0; color: #cfc3c5; }
.archive-points { display: grid; gap: 14px; margin-top: 28px; }
.archive-point { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.09); }
.archive-point strong { color: #d8a7af; font: 500 26px/1 ui-serif, Georgia, serif; }
.archive-point span { color: var(--muted); font-size: 13px; }

.site-footer { padding: 38px 0 54px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 12px; }
.footer-row { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }

/* Character page */
.character-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.character-hero-media { position: absolute; inset: 0; z-index: -3; }
.character-hero-media picture { display: block; width: 100%; height: 100%; }
.character-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 30%; display: block; filter: saturate(.76) contrast(1.06); pointer-events: none; }
.character-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,6,7,.98) 0%, rgba(7,6,7,.88) 28%, rgba(7,6,7,.15) 65%, rgba(7,6,7,.38) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(9,8,9,.30) 42%, rgba(9,8,9,.12));
}
.character-hero::after { content: "ANYAN"; position: absolute; right: -2vw; bottom: -1vw; z-index: -1; color: rgba(255,255,255,.032); font: 500 clamp(92px,21vw,340px)/.75 Georgia, serif; letter-spacing: -.07em; }
.character-hero-inner { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding: 138px 0 74px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: #a99ea0; font-size: 12px; }
.breadcrumbs a { text-underline-offset: 4px; }
.character-intro { max-width: 650px; margin-top: 54px; }
.character-intro .display { margin-top: 15px; font-size: clamp(78px,12vw,164px); }
.character-intro .lead { max-width: 620px; margin-top: 18px; color: #ded4d6; font-size: clamp(17px,2vw,22px); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #c9bdc0; background: rgba(10,8,9,.30); font-size: 11px; backdrop-filter: blur(10px); }
.character-facts {
  position: absolute;
  right: max(20px, calc((100vw - var(--max))/2));
  bottom: 74px;
  width: min(330px, 33vw);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 22px;
  background: rgba(10,8,9,.63);
  backdrop-filter: blur(18px);
}
.fact-row { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.fact-row:last-child { border-bottom: 0; }
.fact-row dt { color: #9f9396; }
.fact-row dd { margin: 0; color: #e1d7d9; }

.quote-section { padding: 112px 0 58px; text-align: center; }
.quote-section blockquote { max-width: 920px; margin: 0 auto; font: 500 clamp(34px,5.7vw,68px)/1.36 ui-serif, Georgia, serif; }
.quote-section cite { display: block; margin-top: 22px; color: #cf8792; font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }

.gallery-shell { padding: 66px 0 110px; }
.gallery-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 28px; }
.gallery-toolbar .display { margin-top: 8px; font-size: clamp(38px,5.5vw,64px); }
.view-only { padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #aa9ea0; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  grid-column: span 8;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: #171416;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: auto; display: block; pointer-events: none; }
.gallery-overlay { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 28px; background: linear-gradient(transparent, rgba(5,4,5,.82)); pointer-events: none; }
.gallery-caption { color: #f0e9e9; font: 500 22px/1.35 ui-serif, Georgia, serif; }
.gallery-number { color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .15em; }
.media-hitbox { position: absolute; inset: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-status {
  grid-column: span 4;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(143,62,76,.18), transparent 60%),
    rgba(255,255,255,.022);
}
.gallery-status .big { color: rgba(255,255,255,.08); font: 500 120px/1 Georgia, serif; }
.gallery-status h3 { margin: 0 0 8px; font: 500 30px/1.2 ui-serif, Georgia, serif; }
.gallery-status p { margin: 0; color: var(--muted); font-size: 13px; }

.profile-section { padding: 28px 0 118px; }
.profile-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px,7vw,90px); align-items: start; }
.profile-grid .display { font-size: clamp(40px,5.5vw,68px); }
.profile-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.profile-copy p { margin: 0; color: #cfc3c5; }
.profile-copy p:first-child::first-letter { float: left; margin: .05em .12em 0 0; color: #cf8792; font: 500 72px/.8 ui-serif, Georgia, serif; }
.story-entry {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.022);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.story-entry h3 { margin: 0 0 5px; font: 500 28px/1.3 ui-serif, Georgia, serif; }
.story-entry p { margin: 0; color: var(--muted); font-size: 13px; }

.protected-media,
.protected-media img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 1000;
  max-width: min(520px, calc(100% - 32px));
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #f2ebec;
  background: rgba(14,11,12,.93);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  font-size: 12px;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(4,3,4,.94);
  backdrop-filter: blur(22px);
}
.lightbox.is-open { display: grid; }
.lightbox-stage { position: relative; width: min(92vw, 1120px); height: min(90svh, 940px); }
.lightbox-image { width: 100%; height: 100%; border-radius: 24px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(10,8,9,.72);
  cursor: pointer;
}
.lightbox-close { top: 0; right: 0; font-size: 25px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 30px; }
.lightbox-nav.prev { left: 0; }
.lightbox-nav.next { right: 0; }
.lightbox-caption { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); max-width: 80%; padding: 8px 13px; border-radius: 999px; color: #ddd1d3; background: rgba(10,8,9,.72); font-size: 11px; white-space: nowrap; }

.not-found { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 110px 20px 40px; }
.not-found .display { font-size: clamp(82px,18vw,220px); color: rgba(255,255,255,.08); }
.not-found h1 { margin: -28px 0 12px; font: 500 clamp(34px,6vw,64px)/1.2 ui-serif, Georgia, serif; }
.not-found p { max-width: 520px; color: var(--muted); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 114px; gap: 42px; }
  .hero-copy { order: 2; margin-top: -125px; padding: 28px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(9,7,8,.74); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
  .hero-visual { min-height: 650px; }
  .hero-frame { inset: 0 0 0 34px; }
  .hero-stamp { right: -4px; }
  .hero-note { left: 0; bottom: 18px; }
  .hero-serial { left: 4px; }
  .section { padding: 86px 0; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .character-card.featured, .character-card.tall, .character-card { grid-column: span 12; min-height: 560px; }
  .sealed-card { min-height: 360px; }
  .archive-statement { grid-template-columns: 1fr; }
  .character-facts { position: static; width: 100%; margin-top: 32px; }
  .character-intro { margin-top: 42px; }
  .character-hero-inner { padding-bottom: 48px; }
  .gallery-item, .gallery-status { grid-column: span 12; }
  .gallery-status { min-height: 300px; }
  .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container, .nav, .hero-grid, .character-hero-inner { width: min(calc(100% - 28px), var(--max)); }
  .nav { height: 68px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-subtitle { display: none; }
  .home-hero { min-height: auto; }
  .hero-grid { padding-top: 88px; padding-bottom: 54px; }
  .hero-visual { min-height: 530px; }
  .hero-frame { inset: 0; border-radius: 180px 180px 24px 24px; }
  .hero-stamp { width: 102px; top: 34px; right: -8px; font-size: 8px; }
  .hero-note { width: 200px; bottom: 12px; padding: 16px; font-size: 16px; }
  .hero-serial { display: none; }
  .hero-copy { margin-top: -90px; padding: 24px 20px; }
  .hero-copy .display { font-size: clamp(48px,15vw,72px); }
  .hero-copy .intro { font-size: 15px; }
  .hero-meta { flex-wrap: wrap; gap: 6px 12px; }
  .hero-meta span + span::before { margin-right: 12px; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .section { padding: 74px 0; }
  .character-card.featured, .character-card.tall, .character-card { min-height: 510px; border-radius: 22px; }
  .character-card-content { padding: 24px; }
  .sealed-card { min-height: 330px; }
  .archive-statement { padding: 30px 24px; border-radius: 24px; }
  .character-hero { min-height: 860px; }
  .character-hero-media img { object-position: 48% 28%; }
  .character-hero::before { background: linear-gradient(0deg, var(--ink) 0%, rgba(7,6,7,.85) 33%, rgba(7,6,7,.10) 73%); }
  .character-hero::after { bottom: 0; font-size: 150px; }
  .character-hero-inner { padding-top: 92px; }
  .character-intro { margin-top: 440px; }
  .character-intro .display { font-size: 78px; }
  .character-facts { padding: 18px; border-radius: 20px; }
  .fact-row { grid-template-columns: 76px 1fr; }
  .quote-section { padding-top: 78px; }
  .gallery-shell { padding-top: 48px; padding-bottom: 86px; }
  .gallery-toolbar { align-items: start; flex-direction: column; }
  .gallery-item { border-radius: 22px; }
  .gallery-overlay { padding: 22px; }
  .profile-copy { grid-template-columns: 1fr; }
  .story-entry { align-items: stretch; flex-direction: column; }
  .site-footer { padding-bottom: 36px; }
  .lightbox { padding: 10px; }
  .lightbox-stage { width: 100%; height: 86svh; }
}
