:root {
  --gold: #d4af6a;
  --gold-bright: #e8c887;
  --black: #0a0908;
  --black-soft: #141210;
  --card: #1c1916;
  --text: #f2ede3;
  --text-dim: #b9b0a0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; letter-spacing: 0.02em; }
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,175,106,0.18);
}
nav .brand { display: flex; align-items: center; gap: 10px; }
nav .brand a { display: flex; }
nav .brand img { height: 56px; width: auto; }
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav ul a { text-decoration: none; color: var(--text-dim); transition: color 0.25s; }
nav ul a:hover { color: var(--gold-bright); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-bright);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.55) 55%, var(--black) 100%),
    url('83367440_119637412912058_8094900080257007616_n.jpg') center 30% / cover no-repeat;
}
.hero-inner { position: relative; z-index: 2; padding: 140px 24px 80px; max-width: 820px; }
.hero-logo { width: min(78vw, 460px); margin: 0 auto 28px; filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6)); }
.hero p.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--gold-bright);
  font-style: italic;
  margin-bottom: 18px;
}
.hero p.sub {
  color: var(--text-dim);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 2px;
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-gold { background: var(--gold); color: #1a1508; border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold-bright); background: transparent; }
.btn-outline:hover { background: rgba(212,175,106,0.1); transform: translateY(-2px); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* SECTION generic */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 12px;
  color: var(--text);
}
.rule {
  width: 60px; height: 1px; background: var(--gold); margin: 20px auto 0;
}

/* ABOUT (homepage teaser) */
.about { background: var(--black-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 20px; }
.about-copy p strong { color: var(--gold-bright); font-style: normal; }
.about-copy .btn { margin-top: 6px; }
.about-photo { position: relative; }
.about-photo img { border: 1px solid rgba(212,175,106,0.25); }
.about-photo::before {
  content: '';
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,175,106,0.18);
  border: 1px solid rgba(212,175,106,0.18);
}
.pillar {
  background: var(--black);
  padding: 40px 26px;
  text-align: center;
}
.pillar .icon { font-size: 1.8rem; margin-bottom: 14px; }
.pillar h3 { font-size: 1.05rem; color: var(--gold-bright); margin-bottom: 10px; letter-spacing: 0.03em; }
.pillar p { color: var(--text-dim); font-family: Arial, Helvetica, sans-serif; font-size: 0.9rem; }

/* TRAILER */
.trailer { background: var(--black-soft); }
.video-frame {
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,106,0.3);
  padding: 10px;
  background: var(--card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-frame iframe { width: 100%; aspect-ratio: 560 / 314; height: auto; display: block; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 6px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}
.gallery-grid figure:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(1); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* CAST & CREW */
.cast { background: var(--black-soft); }
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.crew-card {
  background: var(--card);
  border: 1px solid rgba(212,175,106,0.18);
  padding: 32px 24px;
  text-align: center;
}
.crew-card .role { font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold); margin-bottom: 10px; }
.crew-card .name { font-size: 1.25rem; color: var(--text); }
.studio-line {
  text-align: center;
  color: var(--text-dim);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}
.studio-line strong { color: var(--gold-bright); }

/* FOLLOW / CTA */
.follow {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.75), rgba(10,9,8,0.92)),
    url('81953120_103906371151829_5680627112667512832_n.jpg') center / cover no-repeat;
  padding: 110px 24px;
}
.follow h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; }
.follow p { color: var(--text-dim); font-family: Arial, Helvetica, sans-serif; max-width: 520px; margin: 0 auto 34px; }
.contact-line { margin-top: 30px; font-family: Arial, Helvetica, sans-serif; font-size: 0.9rem; color: var(--text-dim); }
.contact-line a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(232,200,135,0.4); }

footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(212,175,106,0.15);
  background: var(--black);
}
footer img { height: 26px; margin: 0 auto 14px; opacity: 0.85; }
footer p { font-family: Arial, Helvetica, sans-serif; font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* ABOUT PAGE */
.about-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 60%, var(--black) 100%),
    url('81932542_103906764485123_5006293745134469120_n.jpg') center 22% / cover no-repeat;
}
.about-hero.hero-videos {
  background:
    linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 60%, var(--black) 100%),
    url('videos-hero.jpg') center 32% / cover no-repeat;
}
.about-hero.hero-quiz {
  background:
    linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 60%, var(--black) 100%),
    url('quiz-hero.jpg') center 30% / cover no-repeat;
}
.about-hero-inner { position: relative; z-index: 2; padding: 140px 24px 70px; max-width: 780px; }
.about-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-top: 14px;
  color: var(--text);
}
.about-hero .lead {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--gold-bright);
  font-style: italic;
  max-width: 640px;
}

.synopsis { background: var(--black-soft); }
.synopsis .wrap { max-width: 760px; }
.synopsis p {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.synopsis p:first-of-type::first-letter {
  font-size: 3.2rem;
  color: var(--gold-bright);
  float: left;
  line-height: 0.8;
  padding-right: 10px;
  padding-top: 6px;
  font-family: Georgia, serif;
}
.synopsis p strong { color: var(--gold-bright); font-style: normal; }

.story-photo-wrap { padding-top: 0; }
.story-photo {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.story-photo img { border: 1px solid rgba(212,175,106,0.25); width: 100%; }
.story-photo figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cta-band { background: var(--black-soft); text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); font-family: Arial, Helvetica, sans-serif; max-width: 520px; margin: 0 auto 32px; }

/* QUIZ */
.quiz { background: var(--black-soft); }
.quiz-form { max-width: 720px; margin: 0 auto; }
.quiz-card {
  background: var(--card);
  border: 1px solid rgba(212,175,106,0.18);
  padding: 32px;
  margin-bottom: 24px;
}
.quiz-card .q-num {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.quiz-card .q-text {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}
.quiz-options { display: grid; gap: 10px; }
.quiz-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(212,175,106,0.15);
  background: rgba(212,175,106,0.03);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.quiz-options label:hover { border-color: rgba(212,175,106,0.4); color: var(--text); }
.quiz-options input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.quiz-options input[type="radio"]:checked + span { color: var(--gold-bright); }
.quiz-options label:has(input:checked) { border-color: var(--gold); background: rgba(212,175,106,0.08); color: var(--gold-bright); }

.quiz-entrant {
  background: var(--card);
  border: 1px solid rgba(212,175,106,0.18);
  padding: 32px;
  margin-bottom: 32px;
}
.quiz-entrant label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.quiz-entrant input {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,106,0.25);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 20px;
}
.quiz-entrant input:last-of-type { margin-bottom: 0; }
.quiz-entrant input::placeholder { color: var(--text-dim); }

.quiz-submit { text-align: center; }
.quiz-submit .btn { border: none; cursor: pointer; }
.quiz-note {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 18px;
}
.quiz-note a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(232,200,135,0.4); }

/* VIDEOS */
.videos-page { background: var(--black-soft); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.video-card {
  background: var(--card);
  border: 1px solid rgba(212,175,106,0.18);
}
.video-card video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-card .video-info { padding: 20px 22px; }
.video-card .video-tag {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.video-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.video-card p { color: var(--text-dim); font-family: Arial, Helvetica, sans-serif; font-size: 0.9rem; }
.video-card.featured { grid-column: 1 / -1; }
.video-card.featured video { aspect-ratio: 21 / 9; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  nav ul {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,9,8,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212,175,106,0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  nav ul.open { max-height: 400px; }
  nav ul li { width: 100%; text-align: center; }
  nav ul a {
    display: block;
    padding: 18px 0;
    border-top: 1px solid rgba(212,175,106,0.08);
  }
  .hero-inner { padding-top: 120px; }
}
