:root {
  --bg: #060606;
  --bg-soft: #10100e;
  --panel: #15130f;
  --gold: #d8b168;
  --gold-deep: #9d7732;
  --text: #f5ead1;
  --muted: rgba(245, 234, 209, 0.72);
  --line: rgba(216, 177, 104, 0.22);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(160, 113, 35, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0b0a 0%, #050505 100%);
  font-family: "PingFang SC", "Helvetica Neue", sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.intro-band,
.feature-split,
.poster-section,
.rights-section,
.story-section,
.news-section,
.site-footer {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  width: 100%;
  margin: 0;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(18px);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.logo-mark svg {
  width: 38px;
  height: 38px;
}

.logo-copy strong,
.hero-copy h1,
.intro-band h2,
.text-panel h3,
.section-head h2,
.poster-copy h3,
.banner-copy h2,
.story-copy h2,
.news-copy h3,
.image-copy h3,
.footer-title {
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", serif;
}

.logo-copy strong {
  display: block;
  font-size: 1.08rem;
}

.logo-copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.site-logo {
    display: block;
    height: 80px;
    width: auto;
    object-fit: contain;
  }
.desktop-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.desktop-nav a,
.mobile-nav nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.mobile-nav nav a:hover,
.desktop-nav a.is-active,
.mobile-nav nav a.is-active {
  color: var(--gold);
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 180px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 8, 7, 0.96);
}

main {
  padding-bottom: 72px;
}

.hero,
.immersive-banner {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 88vh;
}

.hero img,
.immersive-banner img,
.visual-card img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12));
}

.hero-copy,
.banner-copy,
.image-copy,
.news-copy {
  position: absolute;
  z-index: 1;
}

.hero-copy {
  left: min(9vw, 120px);
  right: 24px;
  bottom: 9vh;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.intro-band h2,
.section-head h2,
.banner-copy h2,
.story-copy h2 {
  margin: 0;
  line-height: 1.08;
  font-weight: 500;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.8vw, 6.2rem);
}

.lead,
.intro-band p,
.text-panel p,
.poster-copy p,
.banner-copy p,
.story-copy p,
.news-copy p,
.rights-copy p,
.footer-meta span,
.site-footer p {
  color: var(--muted);
  line-height: 1.88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions a {
  padding: 12px 22px;
  border: 1px solid rgba(245, 234, 209, 0.2);
  border-radius: 999px;
  background: rgba(216, 177, 104, 0.14);
}

.hero-actions .ghost-link {
  background: rgba(10, 10, 10, 0.34);
}

.intro-band {
  padding: 96px 0 26px;
  text-align: center;
}

.intro-band h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.intro-band p:last-child {
  max-width: 780px;
  margin: 20px auto 0;
}

.feature-split,
.rights-layout,
.story-section,
.quick-links,
.page-copy-grid,
.info-grid,
.two-column-grid,
.support-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.feature-split {
  grid-template-columns: 1.12fr 0.88fr;
  padding-top: 46px;
}

.quick-links {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 40px;
}

.rights-layout {
  grid-template-columns: 0.76fr 1.24fr;
}

.story-section {
  grid-template-columns: 0.86fr 1.14fr;
  padding-top: 110px;
}

.page-copy-grid,
.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card,
.text-panel,
.poster-card,
.rights-copy,
.news-card,
.quick-card,
.info-card,
.support-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.text-panel,
.rights-copy {
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25, 23, 18, 0.96), rgba(10, 10, 9, 0.98));
}

.text-panel h3,
.image-copy h3,
.poster-copy h3,
.news-copy h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.18;
}

.stat-list,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stat-list span,
.footer-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(216, 177, 104, 0.08);
}

.image-copy,
.news-copy {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.visual-card::after,
.poster-card::after,
.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.7));
}

.image-copy,
.news-copy {
  position: absolute;
}

.quick-card {
  min-height: 320px;
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.quick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.quick-copy h3 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", serif;
  font-size: 1.9rem;
}

.section-head {
  margin-bottom: 28px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.poster-section,
.rights-section,
.news-section,
.page-section {
  padding-top: 110px;
}

.page-hero {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-copy {
  position: absolute;
  left: min(8vw, 110px);
  right: 24px;
  bottom: 64px;
  z-index: 1;
  max-width: 760px;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 500;
}

.page-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.page-intro {
  max-width: 880px;
  padding-top: 84px;
}

.page-intro h2 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 500;
}

.page-intro p,
.text-block p,
.text-block li,
.info-card p,
.support-card p,
.bullet-list li {
  color: var(--muted);
  line-height: 1.9;
}

.text-block,
.info-card,
.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25, 23, 18, 0.96), rgba(10, 10, 9, 0.98));
}

.text-block h3,
.info-card h3,
.support-card h3 {
  margin: 0 0 14px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

.text-block ul,
.bullet-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.page-media {
  min-height: 420px;
}

.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-grid,
.news-grid {
  display: grid;
  gap: 20px;
}

.poster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster-card img {
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.poster-copy {
  padding: 20px 22px 24px;
}

.immersive-banner {
  min-height: 560px;
  margin-top: 110px;
}

.banner-copy {
  left: min(8vw, 110px);
  bottom: 72px;
  max-width: 720px;
}

.banner-copy h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.wide-visual {
  min-height: 520px;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  min-height: 420px;
}

.info-card,
.support-card {
  min-height: 240px;
}

.site-footer {
  margin-top: 110px;
  padding: 28px 0 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .feature-split,
  .rights-layout,
  .story-section,
  .poster-grid,
  .news-grid,
  .quick-links,
  .page-copy-grid,
  .info-grid,
  .two-column-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero {
    min-height: 72vh;
  }
}

@media (max-width: 720px) {
  .site-header,
  .intro-band,
  .feature-split,
  .poster-section,
  .rights-section,
  .story-section,
  .news-section,
  .site-footer,
  .quick-links,
  .page-shell {
    width: min(100% - 28px, 1280px);
  }

  .site-header {
     padding: 12px 14px;
  }

  .hero-copy,
  .banner-copy,
  .page-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .hero-copy h1,
  .section-head h2,
  .banner-copy h2,
  .intro-band h2,
  .story-copy h2,
  .page-hero-copy h1,
  .page-intro h2 {
    font-size: 2.35rem;
  }

  .intro-band,
  .poster-section,
  .rights-section,
  .news-section {
    padding-top: 72px;
  }

  .immersive-banner,
  .wide-visual,
  .news-card {
    min-height: 320px;
  }

  .text-panel,
  .rights-copy {
    padding: 22px;
  }

  .story-section {
    padding-top: 72px;
  }
}
.hero-slider {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

