:root {
  --paper: #f3f4ef;
  --white: #fffefa;
  --ink: #142231;
  --navy: #132a42;
  --blue: #6ebce2;
  --blue-deep: #2b7fab;
  --red: #df3f32;
  --red-deep: #a92824;
  --gold: #f0b93c;
  --muted: #65717c;
  --line: rgba(20, 34, 49, 0.17);
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(16, 31, 46, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(18, 39, 59, 0.2) 0.55px, transparent 0.55px);
  background-size: 6px 6px;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(248, 249, 245, 0.92);
  border-bottom-color: rgba(20, 34, 49, 0.08);
  box-shadow: 0 10px 40px rgba(20, 34, 49, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1.1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.7rem;
  opacity: 0.68;
  letter-spacing: 0.19em;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.brand-mark i {
  display: block;
  width: 8px;
  height: 24px;
  border-radius: 5px 5px 8px 8px;
  background: var(--red);
}

.brand-mark i:nth-child(2) {
  height: 30px;
  background: var(--gold);
}

.brand-mark i:nth-child(3) {
  height: 19px;
}

.site-nav {
  display: flex;
  gap: 10px;
}

.site-nav a {
  position: relative;
  padding: 9px 16px;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.13em;
}

.site-nav a::after {
  position: absolute;
  right: 16px;
  bottom: 4px;
  left: 16px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle i {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 25, 39, 0.84) 0%, rgba(10, 25, 39, 0.52) 48%, rgba(10, 25, 39, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 25, 39, 0.65) 0%, transparent 46%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-copy {
  width: var(--shell);
  margin: 0 auto;
  padding-top: clamp(150px, 18vh, 210px);
}

.eyebrow {
  margin: 0 0 26px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow.light {
  color: #cce8f6;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(4.3rem, 10vw, 8.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 em {
  color: #ffd069;
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 10px 0 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.12em;
}

.text-link span {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.light-link {
  color: var(--white);
}

.hero-facts {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(125px, 1fr));
  width: min(570px, 48vw);
  background: rgba(11, 26, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-facts article {
  padding: 19px 22px;
}

.hero-facts article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: #ffd069;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-facts span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.photo-note {
  position: absolute;
  bottom: 47px;
  left: max(24px, calc((100vw - 1180px) / 2));
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  opacity: 0.55;
}

.section {
  padding: clamp(100px, 12vw, 165px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.narrow-shell {
  max-width: 1060px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr;
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  margin-bottom: 76px;
}

.chapter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.chapter span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 50%;
  letter-spacing: 0;
}

.section-heading h2,
.timeline-heading h2,
.closing h2 {
  margin: 0;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.origin-section {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.origin-section::after {
  position: absolute;
  top: 42%;
  right: -70px;
  z-index: 0;
  color: rgba(19, 42, 66, 0.035);
  content: "龙";
  font-family: STKaiti, KaiTi, serif;
  font-size: 31rem;
  line-height: 0.8;
  pointer-events: none;
}

.origin-story,
.field-quote {
  position: relative;
  z-index: 1;
}

.origin-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.image-frame {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  inset: -13px 13px 13px -13px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(19, 42, 66, 0.28);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.village-photo {
  height: min(690px, 62vw);
}

.image-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 24px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 19, 29, 0.86));
}

.image-frame figcaption span,
.image-frame figcaption b {
  display: block;
}

.image-frame figcaption span {
  margin-bottom: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  opacity: 0.65;
}

.image-frame figcaption b {
  font-size: 1rem;
}

.lead-copy {
  margin: 0 0 40px;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.65;
}

.meaning-grid {
  border-top: 1px solid var(--line);
}

.meaning-grid article {
  display: grid;
  grid-template-columns: 36px 84px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.meaning-grid span {
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
}

.meaning-grid h3,
.meaning-grid p {
  margin: 0;
}

.meaning-grid h3 {
  font-size: 1rem;
}

.meaning-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.field-quote {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 44px;
  align-items: end;
  width: min(890px, 88%);
  margin: 125px auto 0;
  padding: 34px 40px 30px;
  background: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.field-quote::before {
  position: absolute;
  top: -46px;
  left: 27px;
  color: var(--red);
  content: "“";
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.field-quote > p {
  margin: 0;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.55;
}

.field-quote footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.field-quote footer img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.field-quote footer span,
.field-quote footer strong,
.field-quote footer small {
  display: block;
}

.field-quote footer strong {
  font-size: 0.9rem;
}

.field-quote footer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.structure-section {
  color: var(--white);
  background: var(--navy);
}

.section-heading.inverse .chapter {
  color: #a8d9f0;
}

.section-heading.inverse .chapter span {
  color: var(--navy);
  background: var(--blue);
}

.section-heading.inverse > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.structure-stage {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: stretch;
}

.structure-image {
  position: relative;
  min-height: 570px;
  margin: 0;
}

.structure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.structure-image figcaption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  padding: 6px 10px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dragon-parts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 18px 0;
  list-style: none;
  background: #0c2033;
}

.dragon-parts li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dragon-parts li:last-child {
  border-bottom: 0;
}

.dragon-parts b {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.dragon-parts span,
.dragon-parts strong,
.dragon-parts small {
  display: block;
}

.dragon-parts strong {
  font-size: 1.05rem;
}

.dragon-parts small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.bench-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 125px);
  align-items: center;
  margin-top: 145px;
}

.dark-chapter {
  color: #a8d9f0;
}

.bench-copy h3 {
  margin: 24px 0;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.25;
}

.bench-copy > p:not(.chapter) {
  color: rgba(255, 255, 255, 0.62);
}

.bench-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bench-data div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bench-data dt {
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 800;
}

.bench-data dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.lantern-photo {
  height: 570px;
}

.timeline-section {
  position: relative;
  background: var(--white);
}

.timeline-heading {
  max-width: 750px;
  margin: 0 auto 100px;
  text-align: center;
}

.timeline-heading .chapter {
  justify-content: center;
}

.timeline-heading h2 {
  margin-top: 23px;
}

.timeline-heading > p:last-child {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  content: "";
  background: linear-gradient(var(--red-deep), var(--red) 70%, var(--gold));
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px rgba(223, 63, 50, 0.08);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 94px;
  align-items: start;
  min-height: 205px;
}

.timeline-item::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 19px;
  height: 19px;
  content: "";
  background: var(--white);
  border: 5px solid var(--red);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-year {
  justify-self: end;
  text-align: right;
}

.timeline-year span,
.timeline-year small {
  display: block;
}

.timeline-year span {
  color: var(--red-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.timeline-year small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.timeline-item article {
  max-width: 400px;
  padding-bottom: 46px;
}

.timeline-item article h3 {
  margin: 0 0 9px;
  font-size: 1.22rem;
}

.timeline-item article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline-item.side-switch .timeline-year {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  text-align: left;
}

.timeline-item.side-switch article {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.timeline-item.milestone {
  min-height: 510px;
}

.timeline-item.milestone article {
  max-width: 430px;
  padding: 0;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.timeline-item.milestone figure {
  height: 255px;
  margin: 0;
}

.timeline-item.milestone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-item.milestone article > div {
  padding: 27px 30px 31px;
}

.timeline-item.milestone h3 {
  color: var(--white);
}

.timeline-item.milestone article p {
  color: rgba(255, 255, 255, 0.63);
}

.timeline-item.compact {
  min-height: 175px;
}

.timeline-item.now-item::before {
  background: var(--gold);
  border-color: var(--navy);
  box-shadow: 0 0 0 9px rgba(240, 185, 60, 0.2);
}

.timeline-item.now-item article {
  padding: 27px 30px;
  background: #fff6df;
  border: 1px solid rgba(240, 185, 60, 0.5);
}

.legacy-section {
  background: var(--paper);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 135px;
  gap: 18px;
}

.legacy-card {
  position: relative;
  grid-column: span 5;
  grid-row: span 3;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.legacy-card-large {
  grid-column: span 8;
  grid-row: span 4;
}

.legacy-card.wide {
  grid-column: span 7;
  grid-row: span 3;
}

.legacy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.legacy-card:hover img {
  transform: scale(1.035);
}

.legacy-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(8, 19, 29, 0.86));
  pointer-events: none;
}

.legacy-card figcaption {
  position: absolute;
  right: 25px;
  bottom: 22px;
  left: 25px;
  z-index: 1;
  color: var(--white);
}

.legacy-card figcaption small,
.legacy-card figcaption strong {
  display: block;
}

.legacy-card figcaption small {
  margin-bottom: 3px;
  color: #bfe5f7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.legacy-card figcaption strong {
  font-size: 1.02rem;
}

.legacy-copy {
  display: flex;
  grid-column: span 4;
  grid-row: span 4;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
  background: var(--blue-deep);
}

.legacy-copy .big-number {
  margin: 0 0 auto;
  color: #d8f1fc;
  font-family: Georgia, serif;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 0.8;
}

.legacy-copy .big-number small {
  margin-left: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.legacy-copy h3 {
  margin: 35px 0 12px;
  font-size: 1.45rem;
}

.legacy-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.legacy-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 75px;
  background: var(--line);
  border: 1px solid var(--line);
}

.legacy-notes article {
  padding: 32px 34px;
  background: var(--paper);
}

.legacy-notes span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.legacy-notes h3 {
  margin: 18px 0 9px;
  font-size: 1.2rem;
}

.legacy-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.closing {
  position: relative;
  display: flex;
  min-height: 78vh;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 20, 31, 0.92), rgba(8, 20, 31, 0.55) 58%, rgba(8, 20, 31, 0.12)),
    url("images/youth-dragon.webp") center 42% / cover no-repeat;
}

.closing-copy {
  width: var(--shell);
  margin: 0 auto;
}

.closing h2 {
  max-width: 700px;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
}

.closing-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.closing .text-link:hover span {
  transform: translateY(-4px);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr auto;
  gap: 60px;
  align-items: start;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.66);
  background: #071724;
  font-size: 0.78rem;
}

.site-footer strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.site-footer p {
  margin: 6px 0 0;
}

.sources p {
  margin: 0 0 8px;
}

.sources b {
  display: inline-block;
  min-width: 72px;
  color: var(--blue);
}

.copyright {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  :root {
    --shell: min(calc(100% - 40px), 760px);
  }

  .hero-copy {
    padding-top: 155px;
  }

  .hero-facts {
    right: 20px;
    bottom: 28px;
    width: calc(100% - 100px);
  }

  .photo-note {
    bottom: 37px;
    left: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr 1.5fr;
    gap: 28px 42px;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .origin-story,
  .bench-story {
    gap: 45px;
  }

  .field-quote {
    width: 94%;
  }

  .structure-stage {
    grid-template-columns: 1fr;
  }

  .structure-image {
    min-height: 470px;
  }

  .dragon-parts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
  }

  .dragon-parts li {
    display: block;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .dragon-parts b {
    display: block;
    margin-bottom: 10px;
  }

  .bench-story {
    margin-top: 105px;
  }

  .lantern-photo {
    height: 460px;
  }

  .legacy-grid {
    grid-auto-rows: 115px;
  }

  .legacy-copy {
    padding: 26px;
  }

  .legacy-copy .big-number {
    font-size: 5rem;
  }

  .site-footer {
    grid-template-columns: 1fr 2fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 34px);
  }

  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 66px;
    padding: 9px 17px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 10px 12px;
    color: var(--ink);
    background: rgba(248, 249, 245, 0.97);
    border-bottom: 1px solid rgba(20, 34, 49, 0.08);
    box-shadow: 0 16px 25px rgba(20, 34, 49, 0.08);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 8px 6px;
    text-align: center;
  }

  .site-nav a::after {
    right: 8px;
    left: 8px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 25, 39, 0.79), rgba(10, 25, 39, 0.18)),
      linear-gradient(0deg, rgba(10, 25, 39, 0.86), transparent 68%);
  }

  .hero-copy {
    padding-top: 145px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.1em;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 0.64rem;
    line-height: 1.55;
  }

  .hero-lead {
    max-width: 94%;
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-facts {
    right: 17px;
    bottom: 28px;
    left: 17px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
  }

  .hero-facts article {
    padding: 13px 10px;
  }

  .hero-facts strong {
    font-size: 1rem;
  }

  .hero-facts span {
    font-size: 0.65rem;
    line-height: 1.45;
  }

  .photo-note {
    display: none;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .timeline-heading h2 {
    margin-top: 25px;
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .origin-story,
  .bench-story {
    grid-template-columns: 1fr;
  }

  .village-photo {
    height: 480px;
  }

  .meaning-grid article {
    grid-template-columns: 32px 75px 1fr;
  }

  .field-quote {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 95px;
    padding: 32px 25px 25px;
  }

  .field-quote footer {
    max-width: 260px;
  }

  .structure-image {
    min-height: 420px;
  }

  .dragon-parts {
    grid-template-columns: 1fr 1fr;
  }

  .dragon-parts li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bench-story {
    margin-top: 90px;
  }

  .bench-data {
    gap: 12px;
  }

  .bench-data div + div {
    padding-left: 12px;
  }

  .lantern-photo {
    grid-row: 1;
    height: 440px;
  }

  .timeline-heading {
    margin-bottom: 75px;
    text-align: left;
  }

  .timeline-heading .chapter {
    justify-content: flex-start;
  }

  .timeline-heading > p:last-child {
    margin-left: 0;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item,
  .timeline-item.milestone,
  .timeline-item.compact {
    display: block;
    min-height: 0;
    padding: 0 0 70px 54px;
  }

  .timeline-item::before {
    top: 6px;
    left: 14px;
  }

  .timeline-year,
  .timeline-item.side-switch .timeline-year {
    margin-bottom: 18px;
    text-align: left;
  }

  .timeline-item article,
  .timeline-item.side-switch article {
    max-width: none;
    padding-bottom: 0;
    text-align: left;
  }

  .timeline-item.milestone article {
    max-width: none;
  }

  .timeline-item.milestone figure {
    height: 225px;
  }

  .timeline-item.now-item article {
    padding: 24px;
  }

  .legacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .legacy-card,
  .legacy-card-large,
  .legacy-card.wide,
  .legacy-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .legacy-card {
    height: 350px;
  }

  .legacy-card-large {
    height: 470px;
  }

  .legacy-copy {
    min-height: 380px;
  }

  .legacy-notes {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .closing {
    min-height: 690px;
    background-position: 58% center;
  }

  .closing h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 22px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 410px) {
  .brand small {
    display: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts article {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
  }

  .hero-facts article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .hero-facts span {
    margin: 0;
  }

  .meaning-grid article {
    grid-template-columns: 29px 1fr;
  }

  .meaning-grid p {
    grid-column: 2;
  }

  .bench-data {
    grid-template-columns: 1fr;
  }

  .bench-data div + div {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Practice works preview */
.works-preview {
  color: var(--white);
  background: var(--navy);
}

.works-preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: 670px;
  padding: 0;
  background: #0b2032;
  box-shadow: 0 34px 90px rgba(4, 15, 24, 0.28);
}

.works-preview-poster {
  position: relative;
  align-self: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #061521;
}

.works-preview-poster::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, rgba(5, 18, 28, 0.56));
  pointer-events: none;
}

.works-preview-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.works-preview-poster figcaption {
  position: absolute;
  right: auto;
  top: 18px;
  bottom: auto;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(5, 18, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.works-preview-poster figcaption span {
  display: block;
}

.works-preview-poster figcaption span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.works-preview-poster figcaption small {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.works-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 78px);
}

.works-preview-copy .chapter {
  color: #a8d9f0;
}

.works-preview-copy h2 {
  margin: 28px 0 24px;
  color: var(--white);
  font-size: clamp(2.75rem, 5vw, 4.8rem);
}

.works-preview-copy > p:not(.chapter) {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.works-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.works-preview-stats div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.works-preview-stats dt {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.works-preview-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.works-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 24px;
  padding: 14px 20px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.works-cta span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.works-cta:hover span {
  transform: translateX(5px);
}

/* Works page */
.works-page {
  background: var(--paper);
}

.works-hero {
  position: relative;
  display: flex;
  min-height: min(880px, 100vh);
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.works-hero-image,
.works-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.works-hero-image {
  object-fit: cover;
  object-position: center 52%;
}

.works-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 29, 0.94) 0%, rgba(5, 18, 29, 0.7) 48%, rgba(5, 18, 29, 0.14) 82%),
    linear-gradient(0deg, rgba(5, 18, 29, 0.82), transparent 62%);
}

.works-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding: 160px 0 78px;
}

.works-hero h1 {
  max-width: 850px;
  margin: 22px 0;
  color: var(--white);
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.works-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.works-team {
  max-width: 680px;
  margin: 0;
  color: #bce5f7;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.works-intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.works-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  margin: 38px 0 0;
}

.works-hero-stats div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.works-hero-stats dt {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1;
}

.works-hero-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.works-scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 62px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.works-scroll-cue span {
  margin-top: 10px;
  color: var(--gold);
}

.works-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}

.works-section-heading h2 {
  margin: 25px 0 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.works-section-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.film-player-card {
  overflow: hidden;
  color: var(--white);
  background: #071724;
  box-shadow: var(--shadow);
}

.film-player-card video,
.film-player-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #030a0f;
}

.film-now-playing {
  padding: 30px 34px 34px;
}

.film-now-playing > p:first-child {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.film-now-playing > p:first-child b {
  color: var(--gold);
  font-family: Georgia, serif;
}

.film-now-playing h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.film-now-playing > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.film-playlist {
  display: grid;
  gap: 10px;
}

.film-list-item,
.album-card button,
.gallery-dialog button {
  font: inherit;
}

.film-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 34, 49, 0.12);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.film-list-item:hover {
  transform: translateX(-4px);
}

.film-list-item.active {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.film-list-poster {
  align-self: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
}

.film-list-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.film-list-copy,
.film-list-copy small,
.film-list-copy strong,
.film-list-copy span {
  display: block;
}

.film-list-copy small {
  color: var(--red-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.film-list-item.active .film-list-copy small {
  color: #cfeefa;
}

.film-list-copy strong {
  margin: 4px 0;
  font-size: 0.98rem;
}

.film-list-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.film-list-item.active .film-list-copy span {
  color: rgba(255, 255, 255, 0.68);
}

.film-list-item > i {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: transparent;
  font-size: 0.62rem;
  font-style: normal;
}

.film-list-item.active > i {
  color: var(--gold);
}

.albums-section {
  color: var(--white);
  background: var(--navy);
}

.works-section-heading.inverse .chapter {
  color: #a8d9f0;
}

.works-section-heading.inverse h2 {
  color: var(--white);
}

.works-section-heading.inverse > p {
  color: rgba(255, 255, 255, 0.6);
}

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

.album-card {
  min-width: 0;
}

.album-card:first-child {
  grid-column: 1 / -1;
}

.album-card button {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: 100%;
  height: 100%;
  min-height: 355px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.album-card:first-child button {
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 460px;
}

.album-cover {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #071724;
}

.album-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(7, 23, 36, 0.12);
  transition: background 0.25s ease;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.album-cover i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.album-card button:hover .album-cover img {
  transform: scale(1.04);
}

.album-card button:hover .album-cover::after {
  background: rgba(7, 23, 36, 0.02);
}

.album-card button:hover .album-cover i,
.album-card button:focus-visible .album-cover i {
  opacity: 1;
  transform: none;
}

.album-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.album-copy small,
.album-copy strong,
.album-copy span,
.album-copy b {
  display: block;
}

.album-copy small {
  color: var(--red-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.album-copy strong {
  margin: 15px 0 13px;
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.25;
}

.album-copy > span {
  color: var(--muted);
  font-size: 0.83rem;
}

.album-copy b {
  margin-top: 24px;
  color: var(--blue-deep);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.works-footer .footer-back {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

/* Full-screen album viewer */
body.gallery-open {
  overflow: hidden;
}

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: rgba(4, 14, 23, 0.98);
  border: 0;
}

.gallery-dialog:not([open]):not(.is-open) {
  display: none;
}

.gallery-dialog::backdrop {
  background: rgba(4, 14, 23, 0.9);
}

.gallery-dialog.is-open {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
}

.gallery-shell {
  display: flex;
  width: 100%;
  height: 100dvh;
  flex-direction: column;
  padding: 22px clamp(18px, 3vw, 46px) 18px;
}

.gallery-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.gallery-header > div {
  min-width: 0;
  padding: 0 0 16px;
}

.gallery-header p {
  margin: 0;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gallery-header h2 {
  margin: 3px 0 0;
  color: var(--white);
  font-family: STKaiti, KaiTi, "Songti SC", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
}

.gallery-close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  padding: 18px 0 12px;
}

.gallery-stage figure {
  display: flex;
  min-width: 0;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.gallery-image-wrap {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-image-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  transition: opacity 0.18s ease;
}

.gallery-image-wrap img.loading {
  opacity: 0.15;
}

.gallery-loading {
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  transform: translate(-50%, -50%);
}

.gallery-stage figcaption {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1180px);
  margin: 11px auto 0;
}

.gallery-stage figcaption strong {
  font-size: 0.93rem;
}

.gallery-stage figcaption > span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.gallery-stage figcaption b {
  color: var(--gold);
  font-size: 1rem;
}

.gallery-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
}

.gallery-arrow:hover,
.gallery-close:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-progress {
  display: flex;
  width: min(100%, 1050px);
  min-height: 54px;
  flex: 0 0 54px;
  gap: 7px;
  align-self: center;
  overflow-x: auto;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}

.gallery-progress button {
  width: 78px;
  min-width: 78px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.48;
}

.gallery-progress button.active {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-progress img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .works-preview-shell {
    grid-template-columns: 1fr 1fr;
  }

  .works-preview-copy {
    padding: 44px;
  }

  .film-layout {
    grid-template-columns: 1fr;
  }

  .film-playlist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .film-list-item {
    grid-template-columns: 1fr;
  }

  .album-card button,
  .album-card:first-child button {
    grid-template-columns: 1fr;
  }

  .album-cover {
    min-height: 285px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    grid-template-columns: repeat(5, 1fr);
  }

  .works-page .site-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .works-preview-shell {
    grid-template-columns: 1fr;
  }

  .works-preview-poster {
    min-height: 0;
  }

  .works-preview-copy {
    padding: 45px 26px 52px;
  }

  .works-preview-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .works-hero {
    min-height: 790px;
  }

  .works-hero-image {
    object-position: 62% center;
  }

  .works-hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 18, 29, 0.84), rgba(5, 18, 29, 0.2)),
      linear-gradient(0deg, rgba(5, 18, 29, 0.94), rgba(5, 18, 29, 0.12) 78%);
  }

  .works-hero-inner {
    padding: 135px 0 62px;
  }

  .works-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .works-team {
    font-size: 0.78rem;
  }

  .works-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .works-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .works-section-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .film-now-playing {
    padding: 24px 22px 27px;
  }

  .film-playlist {
    grid-template-columns: 1fr;
  }

  .film-list-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

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

  .album-card:first-child {
    grid-column: auto;
  }

  .album-card button,
  .album-card:first-child button {
    min-height: 0;
  }

  .album-cover {
    min-height: 330px;
  }

  .album-copy {
    padding: 29px 25px 34px;
  }

  .gallery-shell {
    padding: 14px 12px 10px;
  }

  .gallery-header > div {
    padding-bottom: 10px;
  }

  .gallery-header h2 {
    font-size: 1.3rem;
  }

  .gallery-close {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .gallery-stage {
    position: relative;
    display: block;
    padding: 10px 0 7px;
  }

  .gallery-stage figure {
    height: 100%;
  }

  .gallery-image-wrap img {
    max-height: calc(100vh - 210px);
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(7, 23, 36, 0.72);
    transform: translateY(-50%);
  }

  .gallery-arrow.prev {
    left: 6px;
  }

  .gallery-arrow.next {
    right: 6px;
  }

  .gallery-stage figcaption {
    padding: 0 5px;
  }

  .gallery-progress {
    width: 100%;
  }
}

@media (max-width: 410px) {
  .site-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .works-preview-stats div + div,
  .works-hero-stats div + div {
    padding-left: 12px;
  }

  .film-list-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 13px;
    padding: 11px;
  }

  .film-list-copy span {
    display: none;
  }

  .album-cover {
    min-height: 270px;
  }

  .gallery-stage figcaption {
    gap: 12px;
  }
}

/* Homepage scene-led rhythm */
.origin-section,
.structure-section,
.legacy-section {
  padding-top: clamp(90px, 9.5vw, 130px);
  padding-bottom: clamp(90px, 9.5vw, 130px);
}

.origin-section .section-heading,
.structure-section .section-heading,
.legacy-section .section-heading {
  margin-bottom: 60px;
}

.origin-field-scene {
  position: relative;
  z-index: 1;
  min-height: 430px;
  margin: 72px 0 38px;
  overflow: visible;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.origin-field-scene::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 23, 36, 0.12), rgba(7, 23, 36, 0.08) 45%, rgba(7, 23, 36, 0.42)),
    linear-gradient(0deg, rgba(7, 23, 36, 0.55), transparent 46%);
  pointer-events: none;
}

.origin-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.scene-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  margin: 0;
  color: var(--white);
}

.scene-caption span,
.scene-caption strong {
  display: block;
}

.scene-caption span {
  color: #c7ebfa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.scene-caption strong {
  margin-top: 4px;
  font-size: 1rem;
}

.origin-field-scene .field-quote {
  position: absolute;
  right: clamp(26px, 5vw, 68px);
  bottom: -38px;
  z-index: 3;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(560px, 55%);
  margin: 0;
  padding: 30px 34px 27px;
}

.origin-field-scene .field-quote > p {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.origin-field-scene .field-quote footer {
  justify-content: flex-end;
}

.bench-story {
  margin-top: 105px;
}

.timeline-section {
  padding: 0;
  overflow: hidden;
}

.timeline-intro-scene {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #071724;
}

.timeline-intro-scene > img,
.timeline-intro-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.timeline-intro-scene > img {
  object-fit: cover;
  object-position: center 52%;
}

.timeline-intro-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.38), rgba(7, 23, 36, 0.72)),
    linear-gradient(0deg, rgba(7, 23, 36, 0.68), transparent 58%, rgba(7, 23, 36, 0.34));
}

.timeline-intro-scene .timeline-heading {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 42px));
  margin: 0;
  padding: 70px 0;
  color: var(--white);
}

.timeline-intro-scene .chapter {
  color: #c9ecfb;
}

.timeline-intro-scene .chapter span {
  color: var(--navy);
  background: var(--blue);
}

.timeline-intro-scene .timeline-heading h2 {
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.32);
}

.timeline-intro-scene .timeline-heading > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.timeline-scene-caption {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.timeline-body {
  padding-top: 88px;
  padding-bottom: 115px;
}

.timeline::before {
  z-index: 3;
}

.timeline-item {
  min-height: 175px;
}

.timeline-item.compact {
  min-height: 145px;
}

.timeline-item::before {
  z-index: 5;
}

.timeline-item > .timeline-year,
.timeline-item > article {
  position: relative;
  z-index: 4;
}

.timeline-item.scene-milestone {
  min-height: 510px;
  align-items: center;
  margin: 18px 0 54px;
  padding: 54px 0;
  isolation: isolate;
}

.milestone-backdrop,
.milestone-backdrop-shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
}

.milestone-backdrop {
  object-fit: cover;
  object-position: center 48%;
}

.milestone-backdrop-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.58), rgba(255, 254, 250, 0.2) 48%, rgba(19, 42, 66, 0.24)),
    linear-gradient(0deg, rgba(255, 254, 250, 0.72), rgba(255, 254, 250, 0.08) 45%, rgba(255, 254, 250, 0.48));
}

.scene-milestone .timeline-year {
  padding: 18px 21px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 12px 35px rgba(8, 19, 29, 0.12);
  backdrop-filter: blur(8px);
}

.milestone-scene-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  margin: 0;
  color: rgba(19, 42, 66, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legacy-notes {
  margin-top: 55px;
}

.works-preview {
  padding-top: clamp(85px, 8vw, 115px);
  padding-bottom: clamp(85px, 8vw, 115px);
}

@media (max-width: 960px) {
  .origin-field-scene .field-quote {
    right: 28px;
    width: min(540px, 62%);
  }

  .bench-story {
    margin-top: 85px;
  }

  .timeline-body {
    padding-top: 76px;
    padding-bottom: 100px;
  }
}

@media (max-width: 720px) {
  .origin-section,
  .structure-section,
  .legacy-section,
  .works-preview {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .origin-section .section-heading,
  .structure-section .section-heading,
  .legacy-section .section-heading {
    margin-bottom: 42px;
  }

  .origin-field-scene {
    min-height: 0;
    margin: 58px 0 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .origin-field-scene::after {
    right: 0;
    bottom: auto;
    height: 285px;
    background:
      linear-gradient(0deg, rgba(7, 23, 36, 0.56), transparent 60%),
      linear-gradient(90deg, rgba(7, 23, 36, 0.1), rgba(7, 23, 36, 0.18));
  }

  .origin-scene-image {
    position: relative;
    height: 285px;
    object-position: 53% center;
  }

  .scene-caption {
    top: 205px;
    bottom: auto;
    left: 18px;
  }

  .origin-field-scene .field-quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 26px);
    margin: -24px 0 0 auto;
    padding: 30px 24px 25px;
  }

  .origin-field-scene .field-quote footer {
    justify-content: flex-start;
  }

  .origin-field-scene .field-quote::before {
    top: 4px;
    left: 17px;
    z-index: 0;
    font-size: 5.2rem;
    opacity: 0.12;
  }

  .origin-field-scene .field-quote > p,
  .origin-field-scene .field-quote footer {
    position: relative;
    z-index: 1;
  }

  .bench-story {
    margin-top: 70px;
  }

  .timeline-intro-scene {
    min-height: 390px;
  }

  .timeline-intro-scene > img {
    object-position: 50% center;
  }

  .timeline-intro-scene .timeline-heading {
    width: calc(100% - 34px);
    padding: 76px 0 84px;
    text-align: left;
  }

  .timeline-intro-scene .timeline-heading .chapter {
    justify-content: flex-start;
  }

  .timeline-intro-scene .timeline-heading h2 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
  }

  .timeline-intro-scene .timeline-heading > p:last-child {
    margin-left: 0;
  }

  .timeline-scene-caption {
    right: 17px;
    bottom: 16px;
  }

  .timeline-body {
    padding-top: 68px;
    padding-bottom: 80px;
  }

  .timeline-item,
  .timeline-item.compact {
    padding-bottom: 56px;
  }

  .timeline-item.scene-milestone {
    min-height: 0;
    margin: 4px 0 42px;
    padding-top: 40px;
    padding-bottom: 84px;
  }

  .milestone-backdrop,
  .milestone-backdrop-shade {
    left: -17px;
    width: 100vw;
    transform: none;
  }

  .milestone-backdrop {
    object-position: 53% center;
  }

  .scene-milestone .timeline-year {
    display: inline-block;
    padding: 14px 17px;
  }

  .milestone-scene-caption {
    bottom: 18px;
    left: 54px;
  }

  .legacy-notes {
    margin-top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .origin-field-scene,
  .timeline-intro-scene,
  .scene-milestone {
    background-attachment: scroll;
  }
}

/* Scene presentation refinement: keep the aerial unobstructed and let each era
   carry its own photographic atmosphere without weakening the timeline copy. */
.origin-field-scene {
  min-height: 0;
  margin: 72px 0 28px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.origin-field-scene::after {
  display: none;
}

.origin-scene-figure {
  position: relative;
  margin: 0;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(8, 19, 29, 0.16);
}

.origin-scene-image {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.scene-caption {
  position: relative;
  inset: auto;
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  padding: 14px 18px 15px;
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.scene-caption span {
  color: var(--blue-deep);
}

.scene-caption strong {
  margin-top: 0;
}

.origin-field-scene .field-quote {
  position: relative;
  right: auto;
  bottom: auto;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(640px, 82%);
  margin: 30px 0 0 auto;
  padding: 34px 38px 29px;
}

.origin-field-scene .field-quote::after {
  position: absolute;
  right: 64px;
  bottom: 100%;
  width: 2px;
  height: 30px;
  content: "";
  background: var(--red);
}

.origin-field-scene .field-quote > p {
  font-size: clamp(1.42rem, 2.15vw, 1.95rem);
}

.origin-field-scene .field-quote footer {
  justify-content: flex-end;
}

.timeline-body {
  padding-top: 0;
  padding-bottom: 0;
}

.timeline {
  isolation: isolate;
}

.timeline-era {
  position: relative;
  isolation: isolate;
}

.timeline-era-history {
  padding: 88px 0 38px;
}

.timeline-era-revival {
  padding: 72px 0 108px;
}

.timeline-era-backdrop,
.timeline-era-shade {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
}

.timeline-era-backdrop {
  z-index: 0;
  max-width: none;
  object-fit: cover;
  transition: filter 360ms ease;
}

.timeline-era-history .timeline-era-backdrop {
  object-position: center 48%;
  filter: saturate(0.72) contrast(0.92);
}

.timeline-era-revival .timeline-era-backdrop {
  object-position: center 50%;
  filter: saturate(0.94) contrast(0.94);
}

.timeline-era-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.36), rgba(255, 254, 250, 0.88) 28%, rgba(255, 254, 250, 0.95) 50%, rgba(255, 254, 250, 0.88) 72%, rgba(255, 254, 250, 0.36)),
    linear-gradient(0deg, rgba(255, 254, 250, 0.94), rgba(255, 254, 250, 0.16) 18%, rgba(255, 254, 250, 0.12) 82%, rgba(255, 254, 250, 0.94));
}

.timeline-era-revival .timeline-era-shade {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.3), rgba(255, 254, 250, 0.86) 27%, rgba(255, 254, 250, 0.94) 50%, rgba(255, 254, 250, 0.86) 73%, rgba(255, 254, 250, 0.3)),
    linear-gradient(0deg, rgba(255, 254, 250, 0.95), rgba(255, 254, 250, 0.12) 18%, rgba(255, 254, 250, 0.1) 82%, rgba(255, 254, 250, 0.94));
}

.timeline-era .timeline-item {
  z-index: 2;
}

.timeline-era .timeline-year,
.timeline-era .timeline-item article {
  text-shadow: 0 1px 14px rgba(255, 254, 250, 0.92);
}

.timeline-era-caption {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 20px;
  z-index: 2;
  margin: 0;
  color: rgba(19, 42, 66, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline-era-history .timeline-era-caption {
  right: auto;
  left: max(20px, calc((100vw - 1180px) / 2));
}

@media (max-width: 960px) {
  .origin-field-scene .field-quote {
    right: auto;
    width: min(620px, 88%);
  }

  .timeline-era-history {
    padding-top: 76px;
  }

  .timeline-era-revival {
    padding-top: 66px;
    padding-bottom: 94px;
  }
}

@media (max-width: 720px) {
  .origin-field-scene {
    margin: 58px 0 0;
  }

  .origin-scene-image {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .scene-caption {
    position: relative;
    inset: auto;
    display: block;
    padding: 12px 14px 13px;
  }

  .scene-caption strong {
    margin-top: 4px;
  }

  .origin-field-scene .field-quote {
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 28px 0 0;
    padding: 31px 24px 25px;
  }

  .origin-field-scene .field-quote::after {
    right: 28px;
    height: 28px;
  }

  .origin-field-scene .field-quote footer {
    justify-content: flex-start;
  }

  .timeline-era-history {
    padding: 68px 0 26px;
  }

  .timeline-era-revival {
    padding: 58px 0 84px;
  }

  .timeline-era-backdrop,
  .timeline-era-shade {
    left: -17px;
    width: 100vw;
    transform: none;
  }

  .timeline-era-history .timeline-era-backdrop {
    object-position: 57% center;
  }

  .timeline-era-revival .timeline-era-backdrop {
    object-position: 58% center;
  }

  .timeline-era-shade,
  .timeline-era-revival .timeline-era-shade {
    background:
      linear-gradient(90deg, rgba(255, 254, 250, 0.9), rgba(255, 254, 250, 0.78)),
      linear-gradient(0deg, rgba(255, 254, 250, 0.94), rgba(255, 254, 250, 0.42) 18%, rgba(255, 254, 250, 0.42) 82%, rgba(255, 254, 250, 0.94));
  }

  .timeline-era-caption,
  .timeline-era-history .timeline-era-caption {
    right: 15px;
    bottom: 17px;
    left: auto;
    max-width: calc(100% - 70px);
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-era-backdrop {
    transition: none;
  }
}

/* Oral-history scene: connect the field quote to the people who listened. */
.origin-listening-scene {
  position: relative;
  display: block;
  min-height: 0;
  margin-top: 30px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.origin-listening-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(8, 19, 29, 0.16);
}

.origin-listening-image,
.origin-listening-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.origin-listening-image {
  object-fit: cover;
  object-position: center 42%;
}

.origin-listening-shade {
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 23, 36, 0.5), transparent 44%);
  pointer-events: none;
}

.origin-listening-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(4, 15, 24, 0.72);
}

.origin-listening-caption span,
.origin-listening-caption strong {
  display: block;
}

.origin-listening-caption span {
  color: #c7ebfa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.origin-listening-caption strong {
  margin-top: 4px;
  font-size: 1rem;
}

.origin-field-scene .origin-listening-scene .field-quote {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 220px);
  gap: 32px;
  width: min(840px, 78%);
  margin: 24px 0 0 auto;
  padding: 30px 34px 26px;
  background: var(--white);
  backdrop-filter: none;
}

.origin-field-scene .origin-listening-scene .field-quote > p {
  min-width: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  overflow-wrap: anywhere;
}

.origin-field-scene .origin-listening-scene .field-quote::after {
  display: none;
  content: none;
}

.origin-field-scene .origin-listening-scene .field-quote footer {
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .origin-listening-frame {
    min-height: 480px;
  }

  .origin-field-scene .origin-listening-scene .field-quote {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 24px 0 0;
    padding: 30px 32px 26px;
  }

  .origin-field-scene .origin-listening-scene .field-quote > p {
    font-size: clamp(1.18rem, 2.1vw, 1.45rem);
  }

  .origin-field-scene .origin-listening-scene .field-quote footer {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .origin-listening-scene {
    display: block;
    min-height: 0;
    margin-top: 28px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .origin-listening-frame {
    min-height: 0;
    aspect-ratio: 3 / 2;
    box-shadow: 0 18px 46px rgba(8, 19, 29, 0.15);
  }

  .origin-listening-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .origin-listening-shade {
    display: block;
  }

  .origin-listening-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    margin-top: 0;
  }

  .origin-field-scene .origin-listening-scene .field-quote {
    width: 100%;
    margin: 24px 0 0;
    padding: 31px 24px 25px;
    backdrop-filter: none;
  }

  .origin-field-scene .origin-listening-scene .field-quote > p {
    font-size: clamp(1.42rem, 6.5vw, 1.75rem);
    word-break: break-all;
  }

  .origin-field-scene .origin-listening-scene .field-quote::after {
    display: none;
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .origin-listening-image {
    transition: none;
  }
}
