/* ===========================
   FILM HERO
=========================== */

.film-hero-section {
  min-height: 92vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 42%, rgba(255, 200, 0, .16), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(109, 20, 20, .25), transparent 34%),
    linear-gradient(to bottom, #030303, #090909);
}

/* FILM GRAIN */
.film-grain {
  position: absolute;
  inset: 0;
  opacity: .13;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 30% 30%, rgba(255,255,255,.12) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* SPOTLIGHT */
.film-spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 45%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.58), rgba(0,0,0,.95));
  pointer-events: none;
}

/* REC */
.film-rec {
  position: absolute;
  top: 135px;
  right: 55px;
  z-index: 4;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.film-rec span {
  width: 10px;
  height: 10px;
  background: #d61f1f;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(214,31,31,.75);
}

/* TIMECODE */
.film-timecode {
  position: absolute;
  bottom: 45px;
  right: 55px;
  z-index: 4;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

/* FILM STRIP */
.film-strip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 42px;
  opacity: .18;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.55) 0 18px,
      transparent 18px 42px
    );
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  pointer-events: none;
}

.film-strip-top {
  top: 92px;
}

.film-strip-bottom {
  bottom: 0;
}

/* MAIN LAYOUT */
.film-hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 90px;
  align-items: center;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,.7);
  transition: .3s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* TEXT */
.film-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(62px, 8vw, 124px);
  line-height: .88;
  margin-bottom: 34px;
  color: var(--white);
}

.film-hero-content h1::first-line {
  color: var(--primary);
}

.film-hero-subtitle {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
}

.film-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 42px 0 34px;
}

.film-hero-trust {
  max-width: 680px;
  padding-left: 22px;
  border-left: 4px solid var(--primary);
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}

.film-hero-trust strong {
  color: var(--primary);
}

/* CAMERA FRAME */
.film-hero-frame {
  display: flex;
  justify-content: flex-end;
}

.camera-frame {
  width: min(500px, 100%);
  min-height: 560px;
  position: relative;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.camera-frame::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
}

.camera-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,200,0,.12), transparent 32%),
    linear-gradient(to top, rgba(0,0,0,.9), transparent 60%);
  pointer-events: none;
}

.camera-screen {
  position: absolute;
  inset: 60px;
  z-index: 2;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  border: 1px solid rgba(255,200,0,.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
}

.camera-screen span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.camera-screen h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.camera-screen p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
}

/* FRAME CORNERS */
.frame-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  z-index: 3;
  border-color: var(--primary);
  opacity: .9;
}

.top-left {
  top: 34px;
  left: 34px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.top-right {
  top: 34px;
  right: 34px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.bottom-left {
  bottom: 34px;
  left: 34px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.bottom-right {
  bottom: 34px;
  right: 34px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .film-hero-section {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .film-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .breadcrumb,
  .film-hero-buttons {
    justify-content: center;
  }

  .film-hero-subtitle,
  .film-hero-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .film-hero-trust {
    text-align: left;
  }

  .film-hero-frame {
    justify-content: center;
  }

  .film-rec,
  .film-timecode {
    display: none;
  }
}

@media (max-width: 600px) {
  .film-hero-content h1 {
    font-size: 56px;
  }

  .film-hero-buttons {
    flex-direction: column;
  }

  .camera-frame {
    min-height: 420px;
  }

  .camera-screen {
    inset: 42px;
    padding: 28px;
  }
}