:root {
  --bg-deep: #0a0e14;
  --bg-section: #0f1419;
  --bg-card: #141b24;
  /* 与页脚「订阅资讯」同级区块底色（.site-footer） */
  --surface-subscribe: #070a0e;
  --text: #e8eaed;
  --text-muted: #8b95a3;
  --gold: #c9a227;
  --gold-dim: #8a7020;
  --accent: #1e3a5f;
  --border: rgba(201, 162, 39, 0.2);
  --font-sans: system-ui, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Songti SC", "SimSun", "STSong", "Noto Serif SC", serif;
}

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

html {
  scroll-behavior: smooth;
}

#top,
#about,
#works,
#artists,
#directors,
#news,
#partners,
#fans {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #e4c44a;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  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: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold);
  color: #0a0e14 !important;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Header（与页脚「订阅资讯」同级：--surface-subscribe） */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface-subscribe);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: 0.06em;
}

.logo:hover {
  color: var(--gold);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: url("assets/images/logo.jpg") center / cover no-repeat;
  box-shadow: 0 0 0 1px var(--border);
}

.footer-logo .logo-mark {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.88rem;
}

.nav a {
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-bg-slide[data-bg-slide="0"] {
  background-image: url("assets/images/34766dc81841.jpg");
}

.hero-bg-slide[data-bg-slide="1"] {
  background-image: url("assets/images/98f02a9cb2de.jpg");
}

.hero-bg-slide[data-bg-slide="2"] {
  background-image: url("assets/images/bb3cb8dd3ea0.jpg");
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30, 58, 95, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.65) 0%, rgba(15, 20, 25, 0.85) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 32px 20px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-site-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.hero-panels {
  position: relative;
  min-height: 220px;
  max-width: 720px;
  margin: 0;
  width: 100%;
}

.hero-slide {
  animation: fadeIn 0.45s ease;
}

.hero-slide[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  background: rgba(201, 162, 39, 0.08);
}

.hero-film-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  color: var(--text);
}

.hero-sub {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 8px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 100%);
  color: #0a0e14 !important;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  color: var(--gold) !important;
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  color: #e4c44a !important;
}

.btn-outline--light {
  border-color: rgba(201, 162, 39, 0.55);
}

.btn-text {
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
}

.btn-text:hover {
  color: #e4c44a;
}

/* Ticker */
.ticker-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.ticker-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.ticker-more {
  font-size: 0.85rem;
}

.ticker-row {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 45s linear infinite;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ticker-track span {
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats {
  padding: 56px 20px;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Home: 关于我们 + 数据（与订阅资讯 / 页脚同色底） */
.about-highlight {
  padding: 88px 20px;
  background: var(--surface-subscribe);
  color: var(--text);
}

.about-highlight .section-kicker {
  color: var(--gold);
}

.about-highlight__layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

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

.about-stat-card {
  border-radius: 15px;
  padding: 28px 22px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.about-stat-card__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.1;
}

.about-stat-card__label {
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.96;
  letter-spacing: 0.02em;
}

.about-stat-card--amber {
  background: linear-gradient(145deg, #f39c12 0%, #e67e22 100%);
}

.about-stat-card--rose {
  background: linear-gradient(145deg, #e91e63 0%, #c2185b 100%);
}

.about-stat-card--teal {
  background: linear-gradient(145deg, #1abc9c 0%, #16a085 100%);
}

.about-stat-card--purple {
  background: linear-gradient(145deg, #9b59b6 0%, #8e44ad 100%);
}

.about-highlight__copy {
  text-align: left;
}

.about-highlight__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 22px;
}

.about-highlight__heading-line {
  color: var(--text);
}

.about-highlight__heading-accent {
  color: var(--gold);
}

.about-highlight__body p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.about-highlight__body p:last-child {
  margin-bottom: 26px;
}

.about-highlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #0f172a;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.about-highlight__btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.about-highlight__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  font-size: 0.82em;
  line-height: 1;
}

/* Sections */
.section {
  padding: 88px 20px;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.section-head .section-title {
  margin: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 40px;
  color: var(--text);
}

.section-title--break {
  line-height: 1.35;
  margin: 0;
}

/* Works */
.works {
  background: var(--bg-deep);
}

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

.work-card {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.25s, border-color 0.25s;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
}

.work-card-visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  background-size: cover;
  background-position: center;
}

/* 双层背景：渐变在上、海报在下；遮罩过暗会盖住整张图，看起来像「没图」 */
.work-card-visual[class*="work-card-visual--"] {
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.work-card-type,
.work-card-year {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(10, 14, 20, 0.75);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

.work-card-visual--1 {
  background-image:
    linear-gradient(145deg, rgba(30, 58, 95, 0.4), rgba(10, 14, 20, 0.58)),
    url("assets/images/4d8a1cc34a45.jpg");
}
.work-card-visual--2 {
  background-image:
    linear-gradient(145deg, rgba(40, 60, 100, 0.38), rgba(10, 14, 20, 0.58)),
    url("assets/images/9556cc8b43a3.jpg");
}
.work-card-visual--3 {
  background-image:
    linear-gradient(145deg, rgba(60, 90, 70, 0.32), rgba(10, 14, 20, 0.58)),
    url("assets/images/81399fb866e5.jpg");
}
.work-card-visual--4 {
  background-image:
    linear-gradient(145deg, rgba(90, 70, 40, 0.35), rgba(10, 14, 20, 0.58)),
    url("assets/images/5ce00d00a2b0.jpg");
}
.work-card-visual--5 {
  background-image:
    linear-gradient(145deg, rgba(80, 50, 40, 0.35), rgba(10, 14, 20, 0.58)),
    url("assets/images/60dc7af10dc2.jpg");
}
.work-card-visual--6 {
  background-image:
    linear-gradient(145deg, rgba(50, 70, 90, 0.35), rgba(10, 14, 20, 0.58)),
    url("assets/images/f23cc3483f12.jpg");
}

.work-card-body {
  padding: 18px 18px 20px;
}

.work-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.work-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.work-rating {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.work-detail-link {
  font-size: 0.88rem;
}

/* Works showcase（精选作品：与订阅资讯同色底） */
.works.works--showcase {
  background: var(--surface-subscribe);
  color: var(--text);
  padding: 88px 20px;
}

/* 精选作品：内容区加宽（默认 .container 为 1120px） */
.works.works--showcase .container {
  max-width: 1440px;
}

.works-showcase-head.section-head {
  align-items: flex-end;
  margin-bottom: 36px;
}

.works--showcase .section-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.12em;
  color: #c45c2a;
  text-transform: none;
  font-size: 0.82rem;
}

.works--showcase .section-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 700;
}

.works-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.works-view-all:hover {
  color: var(--gold);
}

.works-view-all-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  flex-shrink: 0;
}

.works-view-all-arrow {
  font-size: 0.65rem;
  line-height: 1;
  transform: translate(0.5px, -1px);
}

.card-grid--works-bento {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(252px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.card-grid--works-bento .work-card--featured {
  grid-column: 1;
  grid-row: 1 / -1;
}

.card-grid--works-bento .work-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.card-grid--works-bento .work-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.card-grid--works-bento .work-card:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.card-grid--works-bento .work-card:nth-child(5) {
  grid-column: 5;
  grid-row: 1;
}

.card-grid--works-bento .work-card:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}

.works--showcase .work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: #0c0e12;
  box-shadow: 0 12px 40px rgba(15, 18, 24, 0.12);
}

.works--showcase .work-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(15, 18, 24, 0.18);
}

.works--showcase .work-card-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 200px;
  height: 100%;
  padding: 0;
  border-radius: 0;
  align-items: stretch;
  justify-content: stretch;
}

.works--showcase .work-card--featured .work-card-visual {
  min-height: 100%;
}

.works--showcase .work-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.works--showcase .work-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(
    to top,
    rgba(8, 10, 14, 0.92) 0%,
    rgba(8, 10, 14, 0.45) 50%,
    transparent 100%
  );
  margin: 0;
}

.works--showcase .work-card-body h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.works--showcase .work-card-type,
.works--showcase .work-card-year {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  border: none;
  background: rgba(230, 118, 46, 0.95);
  color: #fff;
}

.works--showcase .work-rating {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.works--showcase .work-rating::before {
  content: "★ ";
  font-size: 0.85em;
  opacity: 0.95;
}

.works--showcase .work-card:not(.work-card--featured) .work-detail-link {
  display: none;
}

.works--showcase .work-card--featured .work-detail-link {
  display: none;
}

.works--showcase .work-card-meta {
  justify-content: flex-start;
}

.work-card-spotlight {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}

.work-card-spotlight:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
  .card-grid--works-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
  }

  .card-grid--works-bento > .work-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .card-grid--works-bento > .work-card--featured {
    grid-column: 1 / -1 !important;
    min-height: 300px;
  }

  .card-grid--works-bento .work-card--featured .work-card-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .works-showcase-head.section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .works-view-all {
    align-self: flex-start;
  }

  .card-grid--works-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, auto);
  }
}

/* Artists（星光熠熠：与订阅资讯同色底） */
.artists {
  background: var(--surface-subscribe);
  color: var(--text);
}

.artists .section-title {
  color: var(--text);
}

.artist-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.artist-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.artist-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: none;
}

.artist-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.artist-avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: linear-gradient(145deg, var(--accent), var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.artist-avatar:not(img)::before {
  content: attr(data-initial);
}

img.artist-avatar {
  display: block;
  object-fit: cover;
  background: transparent;
}

.artist-card-names h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.artist-tags {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.artist-tags span {
  font-size: 0.72rem;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

.artist-works {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.artist-stats {
  margin: 0;
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--gold);
}

/* Directors（与订阅资讯同色底） */
.directors {
  background: var(--surface-subscribe);
  color: var(--text);
}

.directors .section-title {
  color: var(--text);
}

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

.director-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.director-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: none;
}

.director-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: linear-gradient(160deg, #243548, var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}

.director-avatar:not(img)::before {
  content: attr(data-initial);
}

img.director-avatar {
  display: block;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

.director-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.director-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* News（行业资讯：与订阅资讯同色底） */
.news {
  background: var(--surface-subscribe);
  color: var(--text);
}

.news .section-title {
  color: var(--text);
}

.news-featured {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: none;
}

.news-cat {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-featured-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 14px;
  line-height: 1.4;
}

.news-featured-title a {
  color: var(--text);
}

.news-featured-title a:hover {
  color: var(--gold);
}

.news-featured-text {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.news-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-deep);
  transition: border-color 0.2s;
}

.news-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: none;
}

.news-card h3 {
  font-size: 1rem;
  margin: 8px 0 12px;
  line-height: 1.45;
  font-weight: 600;
}

.news-card h3 a {
  color: var(--text);
}

.news-card h3 a:hover {
  color: var(--gold);
}

/* Partners（携手同行：与订阅资讯同色底） */
.partners {
  background: var(--surface-subscribe);
  color: var(--text);
}

.partners .section-title {
  margin-bottom: 16px;
  color: var(--text);
}

.partners-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.75;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-tags span {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

.partners-cta-wrap {
  margin: 36px 0 0;
  text-align: center;
}

/* Fans（影迷心声 + 留言：与订阅资讯同色底） */
.fans {
  background: var(--surface-subscribe);
  color: var(--text);
}

.fans .section-title {
  color: var(--text);
}

.fans-lead {
  color: var(--text-muted);
  margin: -16px 0 36px;
}

#fans .fans-lead {
  color: var(--text-muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial {
  margin: 0;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.testimonial h4 {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 600;
}

.testimonial p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial footer div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial footer strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial footer span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-block {
  max-width: 520px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.form-block h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 28px;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.char-count {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -8px 0 20px;
}

.contact-form .btn-primary {
  width: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-subscribe);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-logo:hover {
  color: var(--gold);
}

.footer-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-heading {
  font-size: 0.95rem;
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--text);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-subscribe-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 20px 28px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ---------- Subpages ---------- */
.nav a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}

body.subpage {
  background: var(--bg-deep);
}

.page-banner {
  padding: 100px 20px 44px;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.82) 0%, rgba(15, 20, 25, 0.94) 100%),
    url("assets/images/34766dc81841.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 14px;
}

.page-lead {
  margin: 0;
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-content {
  padding: 52px 20px 88px;
}

.page-section {
  margin-bottom: 52px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 18px;
}

.prose p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 0 0 16px;
}

.stats.stats--inline {
  padding: 0;
  background: transparent;
  border: none;
}

.stats-grid--compact {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-year {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.timeline-body strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.timeline-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.page-section--twocol {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .page-section--twocol {
    grid-template-columns: minmax(200px, 260px) 1fr;
    align-items: start;
  }
}

.culture-cards {
  display: grid;
  gap: 14px;
}

.culture-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.culture-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--gold);
}

.culture-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.works-catalog-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.filter-btn {
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(201, 162, 39, 0.35);
}

.filter-btn.is-active {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.work-item.is-hidden {
  display: none !important;
}

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

.work-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.work-card-desc {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-card-visual--7 {
  background-image:
    linear-gradient(145deg, rgba(70, 50, 40, 0.35), rgba(10, 14, 20, 0.58)),
    url("assets/images/5ce00d00a2b0.jpg");
}

.work-card-visual--8 {
  background-image:
    linear-gradient(145deg, rgba(50, 55, 75, 0.35), rgba(10, 14, 20, 0.58)),
    url("assets/images/60dc7af10dc2.jpg");
}

.artist-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.artist-page-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.artist-page-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.artist-avatar--lg {
  width: 80px;
  height: 80px;
  font-size: 1.6rem;
  margin: 0;
}

.artist-page-name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-family: var(--font-serif);
}

.artist-tags--lg span {
  font-size: 0.78rem;
  padding: 3px 10px;
}

.artist-bio {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.director-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.director-page-card {
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.director-avatar--lg {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.director-page-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 6px;
}

.director-role {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: var(--gold);
}

.director-bio {
  margin: 14px 0 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.partner-tags--large span {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  padding: 0 0 22px 44px;
}

.steps-list li:last-child {
  padding-bottom: 0;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0e14;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.steps-list span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.partner-cta-panel {
  margin-top: 48px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(30, 58, 95, 0.2), var(--bg-card));
}

.partner-cta-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0 0 10px;
}

.partner-cta-text {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.partner-cta-contact {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.page-content--narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--center {
  text-align: center;
  margin-bottom: 12px;
}

.fans-intro .section-heading--center {
  margin-bottom: 8px;
}

.fans-lead--center {
  text-align: center;
  margin: 0 0 36px;
}

.testimonial-grid--page {
  margin-bottom: 40px;
}

.testimonial h3 {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 600;
}

.form-block--page {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 36px;
  margin-top: 8px;
}

.form-page-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .card-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }

  .director-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .artist-page-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--page {
    grid-template-columns: 1fr;
  }

  .director-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .about-highlight__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats-grid {
    max-width: 440px;
    margin: 0 auto;
  }

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

  .card-grid--works:not(.card-grid--works-bento) {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 640px) {
  .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface-subscribe);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    gap: 12px;
    z-index: 99;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-highlight {
    padding: 64px 20px;
  }

  .about-stats-grid {
    max-width: none;
  }

  .card-grid--works:not(.card-grid--works-bento) {
    grid-template-columns: 1fr;
  }

  .artist-grid--cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panels {
    min-height: 260px;
  }
}
