/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: #454545;
  color: rgba(235, 243, 255, 0.6);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Variables ─────────────────────────────────────────── */
:root {
  --nav-bg:      rgba(20, 20, 20, 0.92);
  --section-bg:  #454545;
  --darker-bg:   #333;
  --rust:        rgba(47, 28, 24, 0.8);
  --rust-hex:    #2f1c18;
  --white:       #fff;
  --parallax-h:  75vh;
}

/* ── Nav ───────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #252525;
  transition: background 0.3s;
}
#nav.scrolled { background: #1e1e1e; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px;
}
#nav.scrolled .nav-inner { padding: 14px 32px; }

.nav-logo { display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
}
.nav-links a {
  font-family: 'Agdasima', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(235, 243, 255, 0.9); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ──────────────────────────────────────────────── */
#home {
  min-height: 165vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background:
    url('https://images.squarespace-cdn.com/content/v1/5e28edfa752be803fc52cc15/1613016755141-3VU4Y9C6WYEWBG5NCORC/Bulletproof4_light_COVER.jpg?format=2500w') center top / cover no-repeat;
  background-attachment: scroll;
  padding: 96px 24px 0;
  text-align: center;
}

.hero-laurels {
  width: min(880px, 92vw);
  margin: 0 auto 20px;
}

.film-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(4rem, 12vw, 120px);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1;
  color: rgba(20, 20, 20, 0.89);
  text-transform: uppercase;
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  border: 2px solid rgba(20, 20, 20, 0.7);
  color: rgba(20, 20, 20, 0.85);
  font-family: 'Agdasima', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 40px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
}
.btn:hover {
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
}

/* ── Parallax dividers ─────────────────────────────────── */
.parallax {
  height: var(--parallax-h);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-1 {
  background-image:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url('https://images.squarespace-cdn.com/content/v1/5e28edfa752be803fc52cc15/1579754205732-6O07IP5GC58P59ZWE3LU/bulletproof_miniature_16x9.jpg?format=2500w');
  background-color: #1a1a1a;
}
.parallax-2 {
  background-image:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url('https://images.squarespace-cdn.com/content/v1/5e28edfa752be803fc52cc15/1633711982053-LDRSKPLM7HP0R8HEFXT8/Bulletproof5_sweep_cr-Emily-Topper-16x9.jpg?format=2500w');
  background-color: #1a1a1a;
}
.parallax-3 {
  background-image:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url('https://images.squarespace-cdn.com/content/v1/5e28edfa752be803fc52cc15/1579757798343-RNN04I3SP08GAI179TT3/Bulletproof_PubStill_013.jpg?format=2500w');
  background-color: #1a1a1a;
}

/* ── Sections ──────────────────────────────────────────── */
.section {
  background: var(--section-bg);
  padding: 80px 24px;
}
.section.darker { background: var(--darker-bg); }

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Agdasima', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(47, 28, 24, 0.9);
  margin-bottom: 40px;
}

/* ── About ─────────────────────────────────────────────── */
#about p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(235, 243, 255, 0.7);
  margin-bottom: 1.5em;
}

/* ── Trailer ───────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-poster {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.12); }
.play-btn svg { width: 100%; height: 100%; }

/* ── Press ─────────────────────────────────────────────── */
.press-quote {
  padding: 0;
  margin-bottom: 48px;
  text-align: right;
}
.press-quote blockquote {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(235, 243, 255, 0.75);
  margin-bottom: 10px;
}
.press-quote cite {
  font-family: 'Agdasima', sans-serif;
  font-size: 1.15rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 28, 24, 0.9);
  font-weight: 700;
  display: block;
}
.press-quote cite a { color: inherit; }
.press-quote cite a:hover { text-decoration: underline; }

/* ── Watch ─────────────────────────────────────────────── */
.watch-region {
  margin-bottom: 56px;
}
.watch-region h2 {
  font-family: 'Agdasima', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.5);
  margin-bottom: 28px;
}
.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 16px;
}
.platform-logos a {
  display: inline-flex;
  align-items: center;
}
.platform-logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.platform-logos img:hover { opacity: 1; }

.screenings-title {
  font-family: 'Agdasima', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(47, 28, 24, 0.9);
  margin: 56px 0 24px;
}
.screenings-list {
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(235, 243, 255, 0.65);
}
.screenings-list a { color: rgba(235, 243, 255, 0.65); }
.screenings-list a:hover { color: #fff; text-decoration: underline; }
.screenings-list strong { color: rgba(235, 243, 255, 0.85); }

/* ── Team ──────────────────────────────────────────────── */
.team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: start;
}
.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
}
.team-member h2 {
  font-family: 'Agdasima', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.85);
  margin-bottom: 4px;
}
.team-member .role {
  font-family: 'Agdasima', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(47, 28, 24, 0.85);
  margin-bottom: 16px;
}
.team-member p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(235, 243, 255, 0.65);
}

.team-credits {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  margin-top: 16px;
}
.team-credits h2 {
  font-family: 'Agdasima', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.35);
  margin-bottom: 6px;
  margin-top: 24px;
}
.team-credits h2:first-child { margin-top: 0; }
.team-credits p {
  font-family: 'Agdasima', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.8);
  margin-bottom: 4px;
}

.team-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.funder-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.team-logos img {
  height: 135px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}
.grasshopper-logo img {
  height: 120px;
}

/* ── Contact ───────────────────────────────────────────── */
#contact { background: var(--darker-bg); }
.contact-block {
  margin-bottom: 40px;
}
.contact-block h2 {
  font-family: 'Agdasima', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(235, 243, 255, 0.35);
  margin-bottom: 10px;
}
.contact-block a {
  font-family: 'Agdasima', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(235, 243, 255, 0.75);
  transition: color 0.2s;
}
.contact-block a:hover { color: #fff; }

footer {
  background: #111;
  text-align: center;
  padding: 24px;
  font-family: 'Agdasima', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #nav { background: #252525; }

  .nav-inner { justify-content: flex-end; padding: 16px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #252525;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 1.1rem;
    text-align: left;
  }

  .parallax { background-attachment: scroll; }
  #home { background-attachment: scroll; }

  .team-member {
    grid-template-columns: 1fr;
  }
  .team-member img {
    width: 140px;
    height: 140px;
  }

  .platform-logos img { height: 30px; }

  .film-title { letter-spacing: 0.06em; }
}
