:root {
  --black: #0b0a08;
  --char: #151210;
  --panel: #1c1815;
  --cream: #efe1c6;
  --gold: #b08d3f;
  --gold-bright: #d4ac5c;
  --gray: #8a8378;
  --line: rgba(239, 225, 198, 0.14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
.display {
  font-family: "Bevan", serif;
  letter-spacing: 0.5px;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
a {
  color: var(--gold-bright);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(11, 10, 8, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-title {
  font-family: "Bevan", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  color: var(--gray);
}
.nav-links a:hover {
  color: var(--gold-bright);
  text-decoration: none;
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.9) contrast(1.05);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--black) 5%,
    rgba(11, 10, 8, 0.35) 45%,
    rgba(11, 10, 8, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 90px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.94;
  color: var(--cream);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.hero h1 .accent {
  color: var(--gold-bright);
}
.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: 1.05rem;
  color: #d8cdb8;
}
.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
}
.hero-meta strong {
  color: var(--cream);
  font-weight: 600;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* SECTIONS */
section {
  padding: 110px 0;
}
.section-head {
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: 1.9rem;
  color: var(--cream);
  margin-top: 10px;
}
.rule {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  width: 80px;
  margin: 14px 0 0;
}

/* SYNOPSIS */
.synopsis {
  background: var(--char);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.synopsis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.synopsis p {
  font-size: 1.15rem;
  color: #e4d8c0;
  font-style: italic;
  font-family: "Inter", serif;
}
.synopsis-img {
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 840px) {
  .synopsis-grid {
    grid-template-columns: 1fr;
  }
}

/* LOGLINE CALLOUT */
.logline {
  text-align: center;
  padding: 70px 0;
}
.logline blockquote {
  font-family: "Bevan", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto;
  color: var(--gold-bright);
}
.logline cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* CAST */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cast-card {
  background: var(--black);
  padding: 36px 28px;
  position: relative;
}
.cast-photo {
  width: 85%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(15%) contrast(1.05);
  border: 1px solid var(--line);
  border-radius: 15%;
}
.cast-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Bevan", serif;
  font-size: 2rem;
  color: rgba(176, 141, 63, 0.18);
}
.cast-card h3 {
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 700;
  font-family: "Inter";
}
.cast-card .role {
  color: var(--gold);
  font-style: italic;
  margin-top: 4px;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}

/* GALLERY */
.gallery {
  background: var(--char);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border: 1px solid var(--line);
}
.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* FILMMAKER */
.filmmaker-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.filmmaker-mark {
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bevan", serif;
  font-size: 2.4rem;
  color: var(--gold);
}
.filmmaker-grid p {
  font-size: 1.05rem;
  color: #d8cdb8;
  max-width: 60ch;
}
.filmmaker-grid strong {
  color: var(--cream);
}
@media (max-width: 640px) {
  .filmmaker-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA / WATCH */
.cta {
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(176, 141, 63, 0.1),
      transparent 60%
    ),
    var(--black);
}
.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.cta p {
  color: var(--gray);
  margin-bottom: 36px;
}
.btn {
  display: inline-block;
  padding: 16px 38px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
}
.placeholder-note {
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--char);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: "Bevan", serif;
  font-size: 1.1rem;
  color: var(--cream);
}
.footer-tag {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 6px;
}
.footer-contact {
  font-size: 0.9rem;
  color: var(--gray);
  text-align: right;
}
.footer-contact a {
  color: var(--cream);
}
.footer-contact div {
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .footer-contact {
    text-align: left;
  }
}

/* IMG PLACEHOLDER STYLE */
.img-ph {
  background: repeating-linear-gradient(
    45deg,
    #201c18,
    #201c18 10px,
    #241f1a 10px,
    #241f1a 20px
  );
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 120px;
}
