/* 惊喜之夜 — site styles */
:root {
  --bg: #000000;
  --surface: #111111;
  --card: #1a1a1a;
  --border: #333333;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #9a3a3a;
  --accent-hover: #b04545;
  --gold: #c9a96e;
  --radius: 6px;
  --radius-lg: 10px;
  --max: 1120px;
  --nav-h: 72px;
  --font: ui-sans-serif, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Noto Serif SC",
    "Songti SC", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.link-accent {
  color: var(--accent-hover);
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.link-accent:hover {
  opacity: 0.85;
}

/* —— Sections —— */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.page-hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* —— Home hero —— */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, #1a0a0a 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.25;
  max-width: 14ch;
}

.hero .sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* —— Quote —— */
.quote-block {
  padding: 120px 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.quote-block blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.75;
  font-weight: 400;
}

.quote-block cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— Grids —— */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

@media (max-width: 540px) {
  .grid-services {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  opacity: 0.85;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* —— Footer —— */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--text);
}

/* —— About —— */
.prose {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.prose p {
  margin: 0 0 1.25em;
}

.prose strong {
  color: var(--text);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

.method-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.method-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.method-box h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.method-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.team-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

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

.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 8px;
}

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

.partners {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.partners h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: 0.1em;
}

.cta-block {
  text-align: center;
  padding: 80px 24px 40px;
}

.cta-block h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 500;
}

.cta-block p {
  color: var(--muted);
  margin: 0 0 28px;
}

/* —— Contact —— */
.form-wrap {
  max-width: 640px;
  margin: 0 auto 64px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #666;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-full {
  margin-bottom: 20px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}

.contact-form-status {
  display: none;
  max-width: 640px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status--ok {
  background: rgba(72, 140, 108, 0.18);
  border: 1px solid rgba(72, 140, 108, 0.4);
  color: rgba(230, 245, 236, 0.95);
}

.contact-form-status--err {
  background: rgba(180, 72, 72, 0.16);
  border: 1px solid rgba(200, 100, 100, 0.45);
  color: rgba(255, 220, 220, 0.92);
}

.contact-extra {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-extra a.email {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
}

.social-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--text);
}

/* —— Project detail —— */
.project-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 24px) 24px 48px;
  margin-bottom: 0;
}

.project-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.project-hero .bg.bg-slideshow {
  background-image: none;
}

.project-hero .bg-slideshow .bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 2.4s ease-in-out;
  pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .project-hero .bg-slideshow .bg-slide {
    transition: none;
  }
}

.project-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    #000 100%
  );
}

.project-hero .inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--text);
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag-pill {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.tag-pill.red {
  background: #c42b2b;
  color: #fff;
}

.tag-pill.outline {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.tag-pill--muted {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.gallery-strip {
  margin-top: 8px;
}

.gallery-strip__img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.95;
}

.gallery-strip__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.detail-main .submarine-trailer.project-video {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.project-quote {
  margin: 24px 0 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.project-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 12px;
  font-weight: 500;
}

.project-hero .tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0;
  line-height: 1.7;
}

.tag-pill.gold {
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--gold);
}

/* —— Shan Hai Jing flagship project —— */
.project-shanhai-page {
  --shanhai-gold: #c9a96e;
  --shanhai-gold-dim: rgba(201, 169, 110, 0.38);
}

.project-shanhai-page .project-hero--shanhai {
  min-height: min(92vh, 880px);
  justify-content: flex-end;
  padding-bottom: 56px;
}

.project-shanhai-page .project-hero--shanhai .bg::after {
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.2) 38%,
    rgba(0, 0, 0, 0.78) 72%,
    #000 100%
  );
}

.project-shanhai-page .project-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 16px;
}

.project-shanhai-page .project-hero .tagline {
  max-width: 40rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.hero-en-title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
  opacity: 0.95;
}

.hero-lede {
  font-size: clamp(1rem, 1.65vw, 1.14rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44rem;
  margin: 0 0 28px;
  font-style: normal;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  max-width: 760px;
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-stat {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--shanhai-gold-dim);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}

.hero-stat__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shanhai-gold);
  margin-bottom: 8px;
  opacity: 0.95;
}

.hero-stat__value {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.shanhai-showpiece {
  position: relative;
  padding: 64px 0 52px;
  background: linear-gradient(180deg, #000 0%, #0c0c0c 45%, #050505 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.shanhai-showpiece::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 560px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--shanhai-gold-dim),
    transparent
  );
}

.showpiece-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.showpiece-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--shanhai-gold);
  margin: 0 0 18px;
  opacity: 0.92;
}

.project-shanhai-page .shanhai-quote {
  border-left: 3px solid var(--shanhai-gold);
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
  margin: 0 0 28px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
}

.showpiece-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 52rem;
  margin: 0;
}

.project-shanhai-page .detail-layout {
  padding-top: 52px;
}

.project-shanhai-page .highlight-list li::before {
  background: var(--shanhai-gold);
}

.side-box--shanhai {
  border: 1px solid var(--shanhai-gold-dim);
  background: linear-gradient(
    155deg,
    rgba(201, 169, 110, 0.07),
    rgba(26, 26, 26, 0.6)
  );
}

.project-shanhai-page .detail-main h2#visuals {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* —— Shan Hai hub & subpages (Grease-style imagery / less text) —— */
.project-shanhai-page > .shanhai-subnav:first-child {
  margin-top: var(--nav-h);
}

.shanhai-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(14px);
}

.shanhai-subnav__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
  padding: 14px 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shanhai-subnav a {
  color: var(--muted);
  transition: color 0.2s;
}

.shanhai-subnav a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.shanhai-subnav a.is-active {
  color: var(--gold);
}

.shanhai-cinematic-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.shanhai-cinematic-strip img {
  width: 100%;
  height: min(74vh, 760px);
  object-fit: cover;
  display: block;
}

.shanhai-cinematic-strip__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 24px;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.showpiece-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 28px;
}

.showpiece-actions a {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.showpiece-actions a:hover {
  opacity: 0.85;
}

.shanhai-hub {
  padding: 56px 0 48px;
}

.hub-teaser {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 36px;
}

.shanhai-explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .shanhai-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .shanhai-explore-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

a.shanhai-explore-card {
  text-decoration: none;
  color: inherit;
}

.shanhai-explore-card {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s, transform 0.25s;
}

.shanhai-explore-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-3px);
}

.shanhai-explore-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}

.shanhai-explore-card:hover .shanhai-explore-card__bg {
  transform: scale(1.07);
}

.shanhai-explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.shanhai-explore-card__inner {
  position: relative;
  z-index: 1;
}

.shanhai-explore-card__kicker {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  margin-bottom: 8px;
}

.shanhai-explore-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.25;
}

.shanhai-explore-card__desc {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 12px;
}

.shanhai-explore-card__arrow {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.shanhai-filmstrip-wrap {
  padding: 8px 0 40px;
}

.shanhai-filmstrip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.shanhai-filmstrip__item {
  flex: 0 0 min(82vw, 380px);
  scroll-snap-align: start;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shanhai-filmstrip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shanhai-highlight-teaser,
.shanhai-visit-teaser {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shanhai-highlight-teaser h2,
.shanhai-visit-teaser h2 {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}

.shanhai-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 700px) {
  .shanhai-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .shanhai-teaser-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shanhai-teaser-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
}

.shanhai-teaser-item strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.shanhai-teaser-item span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.shanhai-visit-teaser .info-grid {
  margin-bottom: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .shanhai-visit-teaser .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shanhai-video-section {
  padding: 20px 0 64px;
}

.shanhai-video-section .project-video {
  max-width: 720px;
  margin-inline: auto;
}

.shanhai-cta-bar {
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.08),
    rgba(26, 26, 26, 0.95)
  );
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 40px 24px 48px;
}

.shanhai-cta-bar .inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shanhai-cta-bar p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
  font-size: 0.98rem;
}

.project-sub-hero {
  padding: 28px 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-sub-hero .inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.project-sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.project-sub-hero .sub-hero-dek {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 36rem;
  line-height: 1.75;
  font-size: 1rem;
}

.shanhai-sub-content {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 48px 0 100px;
}

.shanhai-sub-content h2 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 18px;
  font-weight: 500;
}

.shanhai-sub-content h2:first-of-type {
  margin-top: 0;
}

.shanhai-sub-content p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 20px;
}

.shanhai-gallery-page .gallery-mosaic {
  margin-top: 24px;
  margin-bottom: 48px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0 100px;
  align-items: start;
}

@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail-main h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.06em;
}

.detail-main p {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.85;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.highlight-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #c42b2b;
}

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

.info-cell {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-cell .label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-cell .value {
  font-size: 1.05rem;
}

.side-box {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.side-box h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.side-box p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.media-placeholder {
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

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

code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  color: var(--muted);
}

/* —— V2: Hero photo + bilingual —— */
.hero.hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100vh, 960px);
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.88) 100%),
    url("../assets/images/hero-home.png");
  background-size: cover;
  background-position: center 35%;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.75);
}

.hero.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 18%, rgba(120, 30, 30, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 100% 80% at 50% 100%, #000 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.hero.hero--photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 55, 55, 0.55) 20%,
    rgba(200, 160, 90, 0.35) 50%,
    rgba(180, 55, 55, 0.55) 80%,
    transparent 100%
  );
  opacity: 0.9;
}

.hero.hero--photo > * {
  position: relative;
  z-index: 1;
}

.hero .brand-en {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 12px;
  font-weight: 400;
}

.hero .keywords {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

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

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

.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card--link .service-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--accent-hover);
}

.work-card .type-pill {
  margin: 0 0 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

.work-card .card-blurb {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: rgba(200, 200, 200, 0.9);
  line-height: 1.55;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-bar button[data-filter] {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-bar button[data-filter].is-active {
  border-color: rgba(154, 58, 58, 0.65);
  color: var(--text);
  background: rgba(154, 58, 58, 0.18);
}

/* —— Works page —— */
.page-works .works-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(360px, 56vh, 680px);
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

.page-works .works-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #060606;
  background-image: url("../assets/images/works-hero-stage.png");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.06) brightness(0.68);
}

.page-works .works-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.25) 62%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(ellipse 85% 70% at 12% 88%, rgba(154, 58, 58, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 12%, rgba(201, 169, 110, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 42%, rgba(0, 0, 0, 0.75) 100%);
}

.page-works .works-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-works .works-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.5) 25%,
    rgba(154, 58, 58, 0.55) 50%,
    rgba(201, 169, 110, 0.45) 75%,
    transparent 100%
  );
  opacity: 0.95;
}

.page-works .works-hero__inner {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  max-width: 40rem;
}

.page-works .works-hero__eyebrow {
  margin: 0 0 16px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.85);
}

html[lang="zh-CN"] .page-works .works-hero__eyebrow {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  font-weight: 600;
  color: rgba(201, 169, 110, 0.9);
}

.page-works .works-hero__title {
  margin: 0 0 20px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.75rem, 7.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 80px rgba(0, 0, 0, 0.85), 0 2px 24px rgba(0, 0, 0, 0.6);
}

html[lang="zh-CN"] .page-works .works-hero__title {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: clamp(2.5rem, 7vw, 3.75rem);
}

.page-works .works-hero__lead {
  margin: 0;
  max-width: 36em;
  font-family: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.75);
}

html[lang="zh-CN"] .page-works .works-hero__lead {
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  letter-spacing: 0.06em;
  line-height: 1.75;
}

.page-works .works-catalog {
  padding-top: 56px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #000 0%, #060607 12%, #000 100%);
}

.page-works .filter-bar--works {
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-works .filter-bar--works button[data-filter] {
  padding: 10px 20px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
}

html[lang="zh-CN"] .page-works .filter-bar--works button[data-filter] {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: none;
}

.page-works .filter-bar--works button[data-filter]:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
}

.page-works .filter-bar--works button[data-filter].is-active {
  border-color: rgba(201, 169, 110, 0.55);
  color: #f5f0e6;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.14) 0%,
    rgba(154, 58, 58, 0.12) 100%
  );
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.12);
}

.page-works .works-catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.page-works .works-catalog__grid .work-card--spotlight {
  grid-column: 1 / -1;
  min-height: clamp(300px, 40vh, 480px);
}

.page-works .works-catalog__grid .work-card:not(.work-card--spotlight) {
  min-height: 360px;
}

/* 项目档案入口：全宽横条，避免末行单卡留白 */
.page-works .works-catalog__grid .work-card--archive {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(200px, 36%) 1fr;
  align-items: stretch;
  min-height: clamp(200px, 24vw, 280px);
}

.page-works .works-catalog__grid .work-card--archive .work-card--archive__media-wrap {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.page-works .works-catalog__grid .work-card--archive .media {
  border-radius: 0;
}

.page-works .works-catalog__grid .work-card--archive .work-card--archive__media-wrap .overlay {
  position: absolute;
  inset: 0;
}

.page-works .works-catalog__grid .work-card--archive .work-card--archive__media-wrap .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.page-works .works-catalog__grid .work-card--archive .body {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: clamp(20px, 3vw, 32px) clamp(22px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(201, 169, 110, 0.07) 55%,
    rgba(12, 12, 14, 0.95) 100%
  );
  border-left: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-works .works-catalog__grid .work-card--archive h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
  margin-bottom: 6px;
}

.page-works .works-catalog__grid .work-card--archive .en {
  font-size: 0.8rem;
  opacity: 0.85;
}

.page-works .works-catalog__grid .work-card--archive .type-pill {
  margin-bottom: 6px;
  color: rgba(201, 169, 110, 0.88);
}

.page-works .works-catalog__grid .work-card--archive .card-blurb {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 42rem;
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 700px) {
  .page-works .works-catalog__grid .work-card--archive {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-works .works-catalog__grid .work-card--archive .work-card--archive__media-wrap {
    min-height: min(200px, 48vw);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .page-works .works-catalog__grid .work-card--archive .body {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 22px 20px 24px;
  }
}

.page-works .work-card--spotlight .tag {
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: #e8d5a8;
}

.page-works .work-card--spotlight h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.page-works .work-card--spotlight .body {
  left: clamp(24px, 4vw, 36px);
  right: clamp(24px, 4vw, 36px);
  bottom: clamp(24px, 4vw, 36px);
}

@media (max-width: 700px) {
  .page-works .works-catalog__grid {
    grid-template-columns: 1fr;
  }

  .page-works .works-catalog__grid .work-card--spotlight {
    min-height: min(70vw, 400px);
  }
}

.trust-strip {
  text-align: center;
}

.trust-strip .stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 40px;
}

@media (max-width: 700px) {
  .trust-strip .stats-inline {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 0.85rem;
}

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

@media (max-width: 800px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
}

.serve-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
}

.serve-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.serve-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.news-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.news-item time {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, #1a0a0f 0%, transparent 55%),
    #000;
}

.final-cta h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 12px;
}

.final-cta .sub {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.nav-lang {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* —— Punchdrunk-inspired home —— */
.page-home .hero--pd h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 20ch;
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.12;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.85), 0 0 120px rgba(80, 20, 20, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-home .hero--pd .brand-en {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.1em;
}

.page-home .hero--pd .sub {
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.75);
}

html[lang="en"] .page-home .hero--pd h1 {
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
}

.site-header--home {
  background: rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.quote-block--pd {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 100px 24px;
}

.quote-block--pd blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.45;
}

.pd-press {
  padding: 88px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 28px;
}

.section-kicker--center {
  text-align: center;
}

.pd-press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .pd-press__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.pd-press__item {
  margin: 0;
  padding: 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .pd-press__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
  }

  .pd-press__item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

.pd-press__item blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.pd-press__item figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.section--works-on {
  padding-top: 120px;
}

.section-title--pd {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
}

.collab-hero {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 48px;
  text-align: center;
}

.collab-hero .lead {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
}

.product-block {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.product-block h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.product-block .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.product-block .prose-local {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 720px;
}

.product-block .prose-local p {
  margin: 0 0 14px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

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

@media (max-width: 500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step .num {
  font-size: 0.75rem;
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.ip-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 800px) {
  .ip-strip {
    grid-template-columns: 1fr;
  }
}

.ip-strip img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* —— Featured Hero: 暗调戏剧氛围 —— */
.hero--featured {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero--featured:hover {
  transform: scale(1.005);
}

.hero--featured .featured-badge {
  display: none;
}

.hero--featured h1 {
  margin-bottom: 20px !important;
}

.hero--featured .sub {
  display: none;
}

.hero-link-wrapper:hover .hero-cta .btn-primary {
  background: var(--accent-hover);
}

.hero-link-wrapper:hover .hero-cta .btn-ghost {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   Section Spacing - 增加模块留白
   ======================================== */

.section {
  padding: 120px 0;
}

.section--works-on {
  padding-top: 140px;
  padding-bottom: 140px;
}

.quote-block--pd {
  padding: 140px 24px;
}

.pd-press {
  padding: 100px 0 120px;
}

.trust-strip {
  padding: 120px 0;
}

.final-cta {
  padding: 140px 24px;
}

/* ========================================
   Work Cards - 统一卡片风格
   ======================================== */

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

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.work-card .media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.work-card:hover .media {
  transform: scale(1.05);
}

.work-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
  transition: background 0.35s ease;
}

.work-card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.7) 45%,
    rgba(0, 0, 0, 0.3) 75%,
    transparent 100%
  );
}

.work-card .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  backdrop-filter: blur(4px);
}

.work-card .tag.outline {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.work-card .tag.muted {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-card .body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.work-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-card .en {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.work-card a.card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 700px) {
  .grid-works {
    grid-template-columns: 1fr;
  }
  
  .work-card {
    min-height: 320px;
  }
}

/* ========================================
   Immersive Hero - 暗调戏剧氛围
   ======================================== */

.hero--immersive {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 100px;
  overflow: hidden;
}

.hero--immersive .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/hero-home.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) contrast(1.05);
}

.hero--immersive .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.9) 100%),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(154, 58, 58, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, #000 0%, transparent 50%);
  z-index: 1;
}

.hero--immersive .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

/* ========== 视频背景 Hero ========== */
.hero--video {
  position: relative;
  overflow: hidden;
}

.hero--video .hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero--video .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.hero--video .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(154, 58, 58, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* 移动端回退到静态图片 */
@media (max-width: 768px) {
  .hero--video .hero-video {
    display: none;
  }
  
  .hero--video .hero-video-container {
    background-image: url('../assets/images/hero-home.jpg');
    background-size: cover;
    background-position: center 30%;
  }
}

.hero--immersive .hero-main-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

.hero--immersive .hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
}

.hero--immersive .hero-eyebrow {
  display: none;
}

.hero--immersive h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
  line-height: 1.1;
  text-shadow: 
    0 4px 80px rgba(0, 0, 0, 0.9),
    0 2px 20px rgba(154, 58, 58, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero--immersive .hero-sub {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 48px;
  font-weight: 400;
}

.hero--immersive .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.hero--immersive .hero-cta .btn-primary {
  background: linear-gradient(135deg, rgba(154, 58, 58, 0.9) 0%, rgba(154, 58, 58, 0.7) 100%);
  border: 1px solid rgba(154, 58, 58, 0.5);
  padding: 16px 36px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero--immersive .hero-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 36px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero--immersive .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  animation: bounce 2.5s ease-in-out infinite;
}

/* —— Home hero typography (Secret Cinema–inspired: display sans + editorial serif) —— */
.page-home .hero--immersive .hero-content--secret {
  max-width: 52rem;
  padding: 0 12px;
}

.page-home .hero--immersive h1.home-hero-title {
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 8.5vw, 4.85rem);
  letter-spacing: 0.07em;
  line-height: 1.2;
  margin: 0 0 1.65rem;
  text-shadow: 0 4px 100px rgba(0, 0, 0, 0.92), 0 2px 28px rgba(0, 0, 0, 0.65);
}

.page-home .hero--immersive .home-hero-title__line--light {
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.96;
}

.page-home .hero--immersive .home-hero-title__line--bold {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-home .hero--immersive .home-hero-lead {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(1.05rem, 2.15vw, 1.38rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 0.85rem;
  max-width: 34em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.75);
}

.page-home .hero--immersive .home-hero-tagline {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(1.12rem, 2.35vw, 1.52rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 auto 2.5rem;
  max-width: 28em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.8);
}

.page-home .hero--immersive .home-hero-accent,
.page-about .about-hero .home-hero-accent {
  font-style: italic;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  padding-bottom: 0.08em;
}

html[lang="en"] .page-home .hero--immersive h1.home-hero-title {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.2em;
  font-size: clamp(2rem, 7vw, 3.85rem);
  line-height: 1.12;
}

html[lang="en"] .page-home .hero--immersive .home-hero-title__line--heavy {
  font-weight: 800;
  display: block;
}

html[lang="en"] .page-home .hero--immersive .home-hero-title__line--thin {
  display: block;
  margin-top: 0.45em;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: none;
  font-size: clamp(1.35rem, 4.2vw, 2.4rem);
  opacity: 0.9;
}

html[lang="en"] .page-home .hero--immersive .home-hero-lead,
html[lang="en"] .page-home .hero--immersive .home-hero-tagline {
  font-family: "Cormorant Garamond", "Noto Serif SC", "Palatino Linotype", Palatino, Georgia, serif;
  letter-spacing: 0.02em;
}

html[lang="en"] .page-home .hero--immersive .home-hero-lead {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.45;
  font-weight: 400;
}

html[lang="en"] .page-home .hero--immersive .home-hero-tagline {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero--immersive .home-hero-title,
  .page-home .hero--immersive .home-hero-lead,
  .page-home .hero--immersive .home-hero-tagline {
    transition: none;
  }
}

/* ========================================
   About page hero — stills slideshow + home typography
   ======================================== */

.page-about .about-hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
  overflow: hidden;
  background: #050506;
}

.page-about .about-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-about .about-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
}

.page-about .about-hero__slide.is-active {
  opacity: 1;
}

.page-about .about-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.52) 42%,
    rgba(0, 0, 0, 0.84) 100%
  );
  pointer-events: none;
}

.page-about .about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  padding: 0 12px;
}

/* 中文：双行刊头 — 上轻下重，与首页 Hero 层次一致 */
.page-about .about-hero h1.home-hero-title {
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  margin: 0 0 clamp(1.75rem, 4vw, 2.35rem);
  color: #fff;
  text-shadow: 0 4px 100px rgba(0, 0, 0, 0.92), 0 2px 28px rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: clamp(2.5rem, 8.5vw, 4.85rem);
  letter-spacing: 0.07em;
  line-height: 1.2;
}

.page-about .about-hero h1.home-hero-title:has(.about-hero-title__display) {
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  text-shadow: none;
}

.page-about .about-hero h1.home-hero-title .about-hero-title__kicker {
  display: block;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: clamp(0.78rem, 1.45vw, 0.92rem);
  letter-spacing: 0.72em;
  line-height: 1.5;
  margin: 0 auto clamp(0.85rem, 2vw, 1.15rem);
  padding-left: 0.72em;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75);
}

.page-about .about-hero h1.home-hero-title .about-hero-title__display {
  display: block;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: clamp(2.35rem, 7.8vw, 4.35rem);
  letter-spacing: 0.16em;
  line-height: 1.18;
  margin: 0 auto;
  padding-left: 0.08em;
  color: #fff;
  text-shadow: 0 4px 100px rgba(0, 0, 0, 0.92), 0 2px 28px rgba(0, 0, 0, 0.65);
}

html[lang="en"] .page-about .about-hero h1.home-hero-title {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.18em;
  font-size: clamp(2rem, 7vw, 3.85rem);
  line-height: 1.12;
  font-weight: 700;
}

.page-about .about-hero .home-hero-lead {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(1.05rem, 2.15vw, 1.38rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 34em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.75);
}

html[lang="zh-CN"] .page-about .about-hero .home-hero-lead {
  font-size: clamp(1.02rem, 2.05vw, 1.32rem);
  line-height: 1.92;
  letter-spacing: 0.08em;
  max-width: 22.5em;
  color: rgba(255, 255, 255, 0.9);
}

html[lang="zh-CN"] .page-about .about-hero .home-hero-lead::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.55),
    transparent
  );
}

html[lang="en"] .page-about .about-hero .home-hero-lead {
  font-family: "Cormorant Garamond", "Noto Serif SC", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-hero__slide {
    transition: none;
  }
}

/* ========================================
   Home — below hero (editorial / international)
   ======================================== */

.page-home .home-manifesto {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(165deg, rgba(12, 12, 14, 0.98) 0%, #000 38%, rgba(8, 6, 10, 0.95) 100%),
    radial-gradient(ellipse 90% 55% at 18% 20%, rgba(154, 58, 58, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 88%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  overflow: hidden;
}

.page-home .home-manifesto__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-home .home-manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: min(100% - 48px, 1040px);
}

@media (max-width: 640px) {
  .page-home .home-manifesto__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-home .home-manifesto__rail {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .page-home .home-manifesto__rule {
    width: 48px;
    height: 1px;
    flex: 1;
    max-width: 120px;
  }
}

.page-home .home-manifesto__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}

.page-home .home-manifesto__index {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: rgba(201, 169, 110, 0.85);
}

.page-home .home-manifesto__rule {
  width: 1px;
  height: clamp(120px, 18vw, 220px);
  background: linear-gradient(
    180deg,
    rgba(201, 169, 110, 0.85) 0%,
    rgba(154, 58, 58, 0.35) 45%,
    transparent 100%
  );
}

.page-home .home-manifesto__header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-home .home-manifesto__label {
  margin: 0 0 14px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.page-home .home-manifesto__scope {
  margin: 0;
  max-width: 36em;
  font-size: 0.78rem;
  line-height: 1.65;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.page-home .home-manifesto__quote {
  margin: 0;
  max-width: 17em;
  font-family: "Cormorant Garamond", "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
}

html[lang="zh-CN"] .page-home .home-manifesto__quote {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.page-home .home-manifesto__cite {
  display: block;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 28rem;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

html[lang="en"] .page-home .home-manifesto__cite {
  letter-spacing: 0.12em;
  text-transform: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
}

/* Press */
.page-home .home-press {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(16px, 3vw, 28px);
  background: #000;
}

.page-home .home-press__top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(20px, 3.5vw, 36px);
}

.page-home .home-press__kicker {
  margin: 0;
  flex-shrink: 0;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.page-home .home-press__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

/* Press strip — newspaper / pull-quote row */
.page-home .home-press__strip {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #0a0a0a;
}

.page-home .home-press__strip-inner {
  padding-left: 0;
  padding-right: 0;
}

.page-home .home-press__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
}

.page-home .home-press__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3.5vw, 36px);
  margin: 0;
  padding: clamp(28px, 4.5vw, 52px) clamp(12px, 2vw, 22px);
  text-align: center;
}

.page-home .home-press__cell + .home-press__cell {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-press__blurb {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 17.5rem;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.58rem, 0.85vw, 0.72rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7f7f7;
}

html[lang="zh-CN"] .page-home .home-press__blurb {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  text-transform: none;
  font-size: clamp(0.76rem, 1.2vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
}

.page-home .home-press__mark {
  margin: 0;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.52rem, 0.75vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
}

html[lang="zh-CN"] .page-home .home-press__mark {
  letter-spacing: 0.55em;
  font-size: clamp(0.55rem, 0.8vw, 0.62rem);
}

.page-home .home-press__note {
  margin: 0;
  padding: clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 32px) clamp(4px, 1vw, 8px);
  text-align: center;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html[lang="zh-CN"] .page-home .home-press__note {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.64rem;
  text-transform: none;
  font-weight: 500;
}

@media (max-width: 960px) {
  .page-home .home-press__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-press__cell + .home-press__cell {
    border-left: none;
  }

  .page-home .home-press__cell:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .home-press__cell:nth-child(3),
  .page-home .home-press__cell:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .home-press__cell:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .home-press__blurb {
    max-width: 22rem;
  }
}

@media (max-width: 540px) {
  .page-home .home-press__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-press__cell:nth-child(n) {
    border-left: none !important;
  }

  .page-home .home-press__cell + .home-press__cell {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Featured works */
.page-home .home-works {
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(96px, 12vw, 140px);
  background:
    linear-gradient(180deg, #000 0%, #0a0a0c 22%, #000 100%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(154, 58, 58, 0.07) 0%, transparent 55%);
}

.page-home .home-works__head {
  margin-bottom: clamp(40px, 6vw, 60px);
  max-width: 640px;
}

.page-home .home-works__eyebrow {
  margin: 0 0 16px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.75);
}

.page-home .home-works__title {
  margin: 0 0 18px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #fff;
}

html[lang="zh-CN"] .page-home .home-works__title {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.page-home .home-works__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 32em;
}

html[lang="en"] .page-home .home-works__lead {
  font-family: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

html[lang="zh-CN"] .page-home .home-works__lead {
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(0.92rem, 1.4vw, 1.06rem);
  letter-spacing: 0.06em;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .home-works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 56px);
  align-items: stretch;
}

.page-home .home-works__grid .work-card--flagship {
  grid-column: 1 / -1;
  min-height: clamp(300px, 42vh, 520px);
}

.page-home .home-works__grid .work-card:not(.work-card--flagship) {
  min-height: 340px;
}

@media (max-width: 700px) {
  .page-home .home-works__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-works__grid .work-card--flagship {
    min-height: min(72vw, 380px);
  }
}

.page-home .work-card--flagship .tag {
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: #e8d5a8;
}

.page-home .work-card--flagship h3 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
}

.page-home .work-card--flagship .en {
  font-size: 0.92rem;
}

.page-home .work-card--flagship .body {
  left: clamp(24px, 4vw, 36px);
  right: clamp(24px, 4vw, 36px);
  bottom: clamp(24px, 4vw, 36px);
}

.page-home .home-works__grid .work-card--archive {
  display: grid;
  grid-template-columns: minmax(96px, 32%) 1fr;
  align-items: stretch;
  min-height: 220px;
}

.page-home .home-works__grid .work-card--archive .work-card--archive__media-wrap {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.page-home .home-works__grid .work-card--archive .work-card--archive__media-wrap .overlay {
  position: absolute;
  inset: 0;
}

.page-home .home-works__grid .work-card--archive .work-card--archive__media-wrap .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.62rem;
  padding: 6px 10px;
}

.page-home .home-works__grid .work-card--archive .body {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(201, 169, 110, 0.06) 100%
  );
  border-left: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-home .home-works__grid .work-card--archive h3 {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 4px;
}

.page-home .home-works__grid .work-card--archive .en {
  font-size: 0.72rem;
}

.page-home .home-works__grid .work-card--archive .type-pill {
  margin-bottom: 4px;
  font-size: 0.62rem;
  color: rgba(201, 169, 110, 0.85);
}

.page-home .home-works__grid .work-card--archive .card-blurb {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 700px) {
  .page-home .home-works__grid .work-card--archive {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home .home-works__grid .work-card--archive .work-card--archive__media-wrap {
    min-height: min(180px, 42vw);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .page-home .home-works__grid .work-card--archive .body {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.22);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .page-home .home-works__grid .work-card--archive .card-blurb {
    -webkit-line-clamp: 4;
  }
}

.page-home .home-works__more {
  margin: 0;
  text-align: center;
}

.page-home .home-works__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-works__link:hover {
  color: var(--gold);
  border-bottom-color: rgba(201, 169, 110, 0.5);
}

/* Partners */
.page-home .home-partners {
  padding: clamp(96px, 12vw, 140px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #000 0%, #070708 50%, #000 100%);
}

.page-home .home-partners__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.page-home .home-partners__title {
  margin: 0;
  max-width: 20em;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

html[lang="zh-CN"] .page-home .home-partners__title {
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  letter-spacing: 0.28em;
  text-transform: none;
  font-weight: 600;
}

.page-home .home-partners__deco {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .page-home .home-partners__deco {
    display: none;
  }
}

.page-home .home-partners__wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 10px;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.page-home .home-partners__chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-home .home-partners__chip:hover {
  border-color: rgba(201, 169, 110, 0.35);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(201, 169, 110, 0.06);
}

.page-home .home-partners__cta {
  margin: 0;
  text-align: center;
}

.page-home .home-partners__btn {
  padding: 16px 40px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
}

.page-home .home-partners__btn:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Contact strip */
.page-home .home-contact {
  padding: clamp(72px, 10vw, 110px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(154, 58, 58, 0.12) 0%, transparent 55%),
    #030303;
}

.page-home .home-contact__inner {
  text-align: center;
  max-width: 520px;
}

.page-home .home-contact__label {
  margin: 0 0 16px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.page-home .home-contact__email {
  display: inline-block;
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  letter-spacing: 0.04em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-contact__email:hover {
  color: var(--gold);
  border-bottom-color: rgba(201, 169, 110, 0.55);
}

.page-home .home-contact__copy {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
}


/* ========================================
   Video Section Styles
   ======================================== */

/* Video Button in Hero */
.btn-video {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-video:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Video Section */
.section-videos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  padding: 80px 0;
}

.section-videos .section-desc {
  color: var(--muted);
  margin-top: 8px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Card */
.video-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-card h3 {
  padding: 16px 20px 8px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.video-card p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Video Thumbnail */
.video-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-card:hover .video-thumb::before {
  background: rgba(0, 0, 0, 0.2);
}

/* Play Button */
.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(154, 58, 58, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(154, 58, 58, 0.4);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--accent);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.video-close:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .video-close {
    top: -50px;
    right: 10px;
  }
}



/* ========================================
   Project Page Video Styles
   ======================================== */

.project-video {
  margin: 24px 0 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-video:hover {
  transform: translateY(-2px);
}

.project-video .video-thumb {
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-video .video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
}

.project-video:hover .video-thumb::before {
  background: rgba(0, 0, 0, 0.25);
}

.project-video .play-btn {
  width: 72px;
  height: 72px;
  background: rgba(154, 58, 58, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(154, 58, 58, 0.4);
}

.project-video:hover .play-btn {
  transform: scale(1.1);
  background: var(--accent);
}

.project-video .video-label {
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-video--dual {
  cursor: default;
}

.project-video--dual:hover {
  transform: none;
}

.project-video--dual .project-video__actions {
  padding: 20px 20px 22px;
}

.project-video--dual .video-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.project-video--dual .video-source-btn {
  min-width: 10.5rem;
  padding: 12px 22px;
  font-size: 0.88rem;
}

/* 侧边栏视频占位 */
aside .media-placeholder.video-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

aside .media-placeholder.video-card:hover {
  border-color: var(--accent);
  color: var(--text);
}



/* ========================================
   Gallery Grid Styles
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========================================
   Full-width Gallery Mosaic Layout
   ======================================== */

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin: 40px -20px;
  width: calc(100% + 40px);
}

@media (min-width: 1024px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    margin: 40px calc((100vw - 100%) / -2);
    width: 100vw;
    max-width: 100vw;
  }
}

.gallery-mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-mosaic-item:nth-child(1) {
  grid-column: span 2;
  height: 50vh;
}

.gallery-mosaic-item:nth-child(2),
.gallery-mosaic-item:nth-child(3) {
  height: 40vh;
}

@media (min-width: 1024px) {
  .gallery-mosaic-item:nth-child(1) {
    grid-column: span 2;
    height: 60vh;
  }
  
  .gallery-mosaic-item:nth-child(2),
  .gallery-mosaic-item:nth-child(3) {
    grid-column: span 1;
    height: 60vh;
  }
}

.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-mosaic-item:hover img {
  transform: scale(1.05);
}

/* Alternative layout: Full bleed 2-up */
.gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 40px -20px;
  width: calc(100% + 40px);
}

@media (min-width: 1024px) {
  .gallery-duo {
    margin: 60px calc((100vw - 100%) / -2);
    width: 100vw;
  }
}

.gallery-duo-item {
  height: 50vh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .gallery-duo-item {
    height: 70vh;
  }
}

.gallery-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-duo-item:hover img {
  transform: scale(1.03);
}


/* ========================================
   Image Lightbox Modal
   ======================================== */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.image-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.image-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Gallery item hover effect */
.gallery-item {
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

/* ========================================
   Project archive (更多作品)
   ======================================== */

.page-archive .archive-hero {
  padding: calc(var(--nav-h) + 40px) 0 36px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-archive .archive-hero__titles {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 24px;
  margin: 20px 0 20px;
}

.page-archive .archive-hero__h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
}

html[lang="en"] .page-archive .archive-hero__h1 {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.page-archive .archive-hero__en {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.85);
}

.page-archive .archive-intro {
  margin: 0 0 12px;
  max-width: 40rem;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.58);
}

html[lang="en"] .page-archive .archive-intro {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.page-archive .archive-hint {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

html[lang="zh-CN"] .page-archive .archive-hint {
  letter-spacing: 0.14em;
  text-transform: none;
  font-family: "Noto Sans SC", sans-serif;
}

.page-archive .archive-app {
  padding: 48px 0 100px;
}

.page-archive .archive-section {
  margin-bottom: clamp(48px, 8vw, 72px);
}

.page-archive .archive-section__title {
  margin: 0 0 28px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

html[lang="zh-CN"] .page-archive .archive-section__title {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: none;
  font-weight: 600;
}

.page-archive .archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.page-archive .archive-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-archive .archive-card:hover,
.page-archive .archive-card:focus-visible {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  outline: none;
}

.page-archive .archive-card__media {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.page-archive .archive-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
  gap: 10px;
}

.page-archive .archive-card__type {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.75);
}

html[lang="zh-CN"] .page-archive .archive-card__type {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: none;
}

.page-archive .archive-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

html[lang="en"] .page-archive .archive-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.page-archive .archive-card__line {
  flex: 1;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.page-archive .archive-card__status {
  margin-top: auto;
  align-self: flex-start;
  padding: 6px 12px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

html[lang="zh-CN"] .page-archive .archive-card__status {
  letter-spacing: 0.1em;
  text-transform: none;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.68rem;
}

.page-archive .archive-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-archive .archive-modal.is-open {
  display: flex;
}

.page-archive .archive-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.page-archive .archive-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}

.page-archive .archive-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.page-archive .archive-modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.page-archive .archive-modal__inner {
  padding: 0;
}

.page-archive .archive-modal__image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-archive .archive-modal__text {
  padding: 28px 28px 32px;
}

.page-archive .archive-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 16px;
}

.page-archive .archive-modal__type {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.85);
}

.page-archive .archive-modal__status {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.page-archive .archive-modal__text h2 {
  margin: 0 0 16px;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
}

html[lang="en"] .page-archive .archive-modal__text h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.06em;
}

.page-archive .archive-modal__text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.page-archive .archive-error {
  color: var(--muted);
  text-align: center;
  padding: 48px 24px;
}

@media (max-width: 960px) {
  .page-archive .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-archive .archive-card {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .page-archive .archive-grid {
    grid-template-columns: 1fr;
  }

  .page-archive .archive-card {
    min-height: 0;
  }
}

/* ========================================
   Nav — About submenu (合作艺术家)
   ======================================== */

.nav-item--has-sub {
  position: relative;
}

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10, 10, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
  z-index: 220;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.nav-item--has-sub:hover .nav-sub,
.nav-item--has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
}

.nav-sub a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: none;
}

.nav-sub a:hover,
.nav-sub a[aria-current="page"] {
  color: #f5f0e6;
  background: rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
  .nav-item--has-sub {
    position: static;
  }

  .nav-sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 12px 14px;
    margin: 0 0 0 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-sub a {
    padding: 8px 0;
  }
}

/* ========================================
   Collaborators page
   ======================================== */

.page-collaborators .collab-page-hero {
  padding: calc(var(--nav-h) + 40px) 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #050506 0%, #000 100%);
}

.page-collaborators .collab-page-hero .container {
  max-width: 52rem;
}

.page-collaborators .collab-page-hero__label {
  margin: 20px 0 8px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.75);
}

html[lang="zh-CN"] .page-collaborators .collab-page-hero__label {
  letter-spacing: 0.28em;
}

.page-collaborators .collab-page-hero__h1 {
  margin: 0 0 20px;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
}

html[lang="en"] .page-collaborators .collab-page-hero__h1 {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.14em;
}

.page-collaborators .collab-page-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(0.95rem, 1.5vw, 1.06rem);
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

html[lang="en"] .page-collaborators .collab-page-hero__lead {
  font-family: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.page-collaborators .collab-page-main {
  padding: 48px 0 120px;
}

.page-collaborators .collab-card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
  padding: clamp(48px, 7vw, 80px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-collaborators .collab-card:first-of-type {
  border-top: none;
  padding-top: 8px;
}

.page-collaborators .collab-card--reverse .collab-card__media {
  order: 2;
}

/* 竖幅取景：裁掉幻灯片留白，聚焦人物（原图为横版时向左略偏） */
.page-collaborators .collab-card__media {
  justify-self: stretch;
}

.page-collaborators .collab-card__frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  max-height: min(520px, 70vh);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 12px;
  overflow: hidden;
  background: #08080a;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.page-collaborators .collab-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 35%,
    rgba(0, 0, 0, 0.35) 100%
  );
  mix-blend-mode: soft-light;
}

.page-collaborators .collab-card__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.04) brightness(0.98);
}

.page-collaborators .collab-card__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.page-collaborators .collab-card__head-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px clamp(20px, 3vw, 40px);
}

.page-collaborators .collab-card__head-titles {
  flex: 1 1 auto;
  /* 默认 min-width:auto，勿用 0，否则长英文职务会被压窄溢出盖住姓名 */
}

.page-collaborators .collab-card__eyebrow {
  margin: 0 0 8px;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.38);
}

html[lang="en"] .page-collaborators .collab-card__eyebrow {
  font-family: "Syne", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.page-collaborators .collab-card__roleline {
  margin: 0 0 14px;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.08;
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
}

html[lang="zh-CN"] .page-collaborators .collab-card__roleline {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-collaborators .collab-card__rule {
  width: 100%;
  max-width: 11rem;
  height: 1px;
  margin-bottom: 0;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.65), rgba(201, 169, 110, 0.15));
}

.page-collaborators .collab-card__name {
  margin: 0;
  flex: 0 0 auto;
  max-width: 100%;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

html[lang="en"] .page-collaborators .collab-card__name {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-collaborators .collab-card__bio {
  max-width: 40rem;
}

.page-collaborators .collab-card__bio p {
  margin: 0 0 1.05rem;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.91rem;
  line-height: 1.92;
  letter-spacing: 0.055em;
  color: rgba(255, 255, 255, 0.72);
}

html[lang="en"] .page-collaborators .collab-card__bio p {
  font-family: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.page-collaborators .collab-card__works-head {
  margin: 1.5rem 0 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.88);
}

html[lang="zh-CN"] .page-collaborators .collab-card__works-head {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: none;
}

.page-collaborators .collab-card__works-body {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
}

html[lang="en"] .page-collaborators .collab-card__works-body {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.98rem;
}

.page-collaborators .collab-error {
  text-align: center;
  color: var(--muted);
  padding: 48px 24px;
}

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

  .page-collaborators .collab-card--reverse .collab-card__media {
    order: 0;
  }

  .page-collaborators .collab-card__frame {
    max-width: 280px;
    max-height: 380px;
    margin: 0 auto;
  }

  .page-collaborators .collab-card__head-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-collaborators .collab-card__name {
    text-align: left;
    margin-top: 2px;
    width: 100%;
  }
}
