:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --gold: #c69a42;
  --gold-light: #efdca7;
  --text: #f3f3f3;
  --muted: #a8a8a8;
  --line: #343434;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 154, 66, 0.25);
}

.brand,
.nav-links a,
h1,
h2,
h3,
.eyebrow,
.button {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.nav-links a:hover { color: var(--gold-light); }

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 154, 66, 0.35);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 32%, rgba(198,154,66,.14), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.42), rgba(0,0,0,.74)),
    linear-gradient(0deg, rgba(0,0,0,.9), transparent 58%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 8vw, 100px) clamp(22px, 6vw, 90px);
  max-width: 980px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}
h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(56px, 8.5vw, 118px);
  line-height: 0.88;
  margin: 0;
  color: var(--gold-light);
}
.tagline {
  font-size: clamp(22px, 3vw, 36px);
  margin: 24px 0 0;
  color: #fff;
  line-height: 1.15;
}
.tagline span { color: var(--gold-light); }
.hero-logline {
  max-width: 720px;
  margin: 26px 0 0;
  color: #e0e0e0;
  font-size: clamp(16px, 2vw, 20px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(22px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.section-heading h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  color: var(--gold);
  font-size: clamp(46px, 6vw, 82px);
  line-height: .9;
  margin: 0 0 22px;
}
.centered { text-align: center; }
.compact-heading { margin-bottom: 34px; }


.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.65fr);
  gap: clamp(32px, 7vw, 110px);
  background: var(--panel);
}
.copy-block {
  max-width: 900px;
  font-size: 18px;
  color: #ddd;
}
.lead-copy p:first-child {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  color: #fff;
}
.copy-block p { margin-top: 0; }

.why-section {
  background:
    linear-gradient(135deg, rgba(198,154,66,.08), transparent 35%),
    #0c0c0c;
}
.why-statement {
  max-width: 1060px;
  margin: 0 auto;
}
.why-statement h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .9;
  color: var(--gold-light);
  margin: 0 0 26px;
}
.why-statement p {
  max-width: 900px;
  font-size: 18px;
  color: #dadada;
}
.quote-line {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(198,154,66,.4);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(62px, 9vw, 130px);
  line-height: .85;
  color: var(--gold);
}

.ensemble-section { background: #090909; }
.ensemble-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.character-card,
.cast-card,
.team-card {
  background: var(--panel);
  border: 1px solid rgba(198, 154, 66, .35);
  overflow: hidden;
}
.character-card {
  transition: transform .2s ease, border-color .2s ease;
}
.character-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,220,167,.7);
}
.character-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
}
.card-copy { padding: 20px 18px 22px; }
.character-card h3,
.cast-card h3,
.team-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px;
}
.character-card p {
  margin: 0 0 12px;
  color: #d6d6d6;
  font-size: 15px;
}
.character-card .label {
  color: var(--gold-light);
  font-weight: 800;
}

.cast-section { background: var(--panel); }
.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.cast-card {
  text-align: center;
  padding-bottom: 18px;
  background: #0e0e0e;
}
.cast-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  filter: none;
}
.cast-card h3 {
  margin: 18px 10px 0;
  font-size: 28px;
}

.team-section { background: #0b0b0b; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.team-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
}
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}
.team-card p { color: #d8d8d8; }
.team-card .eyebrow { margin-bottom: 6px; }

.status-section { background: #080808; }
.status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.status-grid div {
  border: 1px solid rgba(198, 154, 66, .42);
  padding: 22px 16px;
  text-align: center;
  color: var(--gold-light);
  font-weight: 800;
  background: rgba(255,255,255,.025);
}

.contact-section {
  background: radial-gradient(circle at center, #1b1b1b 0%, #080808 72%);
}
.contact-box {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.contact-box h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  color: var(--gold-light);
  font-size: clamp(52px, 7vw, 94px);
  line-height: .9;
  margin: 0 0 18px;
}
.contact-box p { color: #d9d9d9; font-size: 18px; }
.contact-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--gold);
  color: #070707;
  font-weight: 900;
  border: 1px solid var(--gold);
}
.button.secondary {
  background: transparent;
  color: var(--gold-light);
}
.button:hover { filter: brightness(1.1); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(22px, 6vw, 90px);
  color: var(--muted);
  background: #050505;
}
.site-footer a { color: var(--gold-light); }

@media (max-width: 1180px) {
  .ensemble-grid,
  .cast-grid,
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 12px 18px; font-size: 12px; }
  .hero { min-height: 68vh; }
  .split-section,
  .ensemble-grid,
  .cast-grid,
  .status-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
