/*
Theme Name: Black Octopus Premium
Theme URI: https://blackoctopusproductions.com/
Author: Black Octopus Productions
Description: A bespoke, page-builder-free film production theme.
Version: 1.3.4
Requires at least: 6.7
Requires PHP: 8.1
Text Domain: black-octopus-premium
*/

.admin-bar .site-header {
  top: 32px;
}

.inner-main {
  min-height: 75vh;
  padding: clamp(10rem, 18vh, 14rem) var(--pad) clamp(6rem, 12vh, 10rem);
  background:
    radial-gradient(circle at 78% 10%, rgba(132, 28, 25, 0.2), transparent 34rem),
    #080908;
}

.inner-shell {
  width: min(74rem, 100%);
  margin: 0 auto;
}

.inner-shell__label {
  margin: 0 0 1.5rem;
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.inner-shell h1 {
  max-width: 14ch;
  margin: 0 0 3rem;
  font-family: var(--condensed);
  font-size: clamp(4rem, 11vw, 10rem);
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.inner-content {
  max-width: 52rem;
  color: #d5d2ca;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.inner-content > * + * {
  margin-top: 1.5em;
}

.inner-content h2,
.inner-content h3 {
  margin-top: 2.25em;
  color: var(--paper);
  font-family: var(--condensed);
  line-height: 0.95;
  text-transform: uppercase;
}

.inner-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.inner-content h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.inner-content a {
  color: var(--paper);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.press-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 83% 7%, rgba(132, 28, 25, 0.24), transparent 32rem),
    #080908;
  color: var(--paper);
}

.press-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
  min-height: 78svh;
  padding: clamp(11rem, 22vh, 16rem) var(--pad) clamp(5rem, 10vh, 8rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(241, 238, 230, 0.16);
}

.press-hero::after {
  content: "PRESS";
  position: absolute;
  right: -0.035em;
  bottom: -0.18em;
  color: transparent;
  font-family: var(--condensed);
  font-size: clamp(13rem, 34vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.7;
  opacity: 0.14;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(241, 238, 230, 0.8);
}

.press-hero__copy,
.press-hero__note {
  position: relative;
  z-index: 1;
}

.press-hero h1 {
  max-width: 7ch;
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(6rem, 17vw, 17rem);
  letter-spacing: -0.07em;
  line-height: 0.72;
  text-transform: uppercase;
}

.press-hero__note {
  max-width: 28rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--red);
  color: rgba(241, 238, 230, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.press-section {
  padding: clamp(6rem, 12vh, 10rem) var(--pad);
}

.press-section + .press-section {
  border-top: 1px solid rgba(241, 238, 230, 0.16);
}

.press-section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: baseline;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.press-section__head span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

.press-section__head h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: -0.055em;
  line-height: 0.76;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(241, 238, 230, 0.18);
}

.press-card {
  position: relative;
  min-height: clamp(24rem, 39vw, 38rem);
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(241, 238, 230, 0.18);
  border-bottom: 1px solid rgba(241, 238, 230, 0.18);
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.press-card:nth-child(even) {
  border-right: 0;
}

.press-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 0;
  background: var(--paper);
  transition: height 0.45s var(--ease);
}

.press-card:hover,
.press-card:focus-within {
  color: var(--black);
}

.press-card:hover::before,
.press-card:focus-within::before {
  height: 100%;
}

.press-card__top {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(241, 238, 230, 0.48);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.press-card:hover .press-card__top,
.press-card:focus-within .press-card__top {
  color: rgba(8, 9, 8, 0.56);
}

.press-card h3 {
  max-width: 12ch;
  margin: auto 0 2rem;
  font-family: var(--condensed);
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
}

.press-card blockquote {
  max-width: 39rem;
  margin: 0;
  color: rgba(241, 238, 230, 0.72);
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.16;
  transition: color 0.35s ease;
}

.press-card:hover blockquote,
.press-card:focus-within blockquote {
  color: rgba(8, 9, 8, 0.72);
}

.press-card__link {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.press-card__link span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.press-card__link:hover span,
.press-card__link:focus-visible span {
  transform: translate(0.25rem, -0.25rem);
}

.contact-page {
  min-height: 100vh;
  background: #080908;
  color: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(0, 1.2fr);
  min-height: 100svh;
}

.contact-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(11rem, 20vh, 15rem) var(--pad) clamp(4rem, 8vh, 7rem);
  overflow: hidden;
  isolation: isolate;
  background: #070807;
}

.contact-intro::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 6, 5, 0.97) 0%, rgba(5, 6, 5, 0.18) 68%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.36), transparent),
    url("assets/cara-close.jpg") 46% center / cover;
  filter: grayscale(0.18) contrast(1.12) brightness(0.58);
}

.contact-intro::after {
  content: "CONTACT";
  position: absolute;
  right: -0.06em;
  bottom: -0.1em;
  z-index: -1;
  color: transparent;
  font-family: var(--condensed);
  font-size: clamp(9rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.7;
  opacity: 0.18;
  -webkit-text-stroke: 1px rgba(241, 238, 230, 0.8);
}

.contact-intro h1 {
  display: grid;
  max-width: 100%;
  margin: 1.2rem 0 2rem;
  font-family: var(--condensed);
  font-size: clamp(3.75rem, 5vw, 6.25rem);
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.contact-intro h1 span {
  display: block;
  white-space: nowrap;
}

.contact-intro__copy {
  max-width: 31rem;
  margin: 0;
  color: rgba(241, 238, 230, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.contact-intro__details {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(9rem, 0.65fr);
  gap: 1.5rem;
  max-width: 38rem;
  margin: clamp(2.5rem, 6vh, 5rem) 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(241, 238, 230, 0.25);
}

.contact-intro__details div {
  display: grid;
  gap: 0.55rem;
}

.contact-intro__details dt {
  color: var(--red);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-intro__details dd {
  margin: 0;
  color: rgba(241, 238, 230, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10rem, 18vh, 14rem) clamp(2rem, 7vw, 8rem) clamp(5rem, 10vh, 8rem);
  background:
    linear-gradient(rgba(8, 9, 8, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 8, 0.025) 1px, transparent 1px),
    #d8d5ca;
  background-size: 32px 32px;
  color: var(--black);
}

.contact-form__head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 6vh, 5rem);
}

.contact-form__head h2 {
  max-width: 9ch;
  margin: 1.2rem 0 0;
  font-family: var(--condensed);
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

.contact-form__head p:last-child {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: #5c5a55;
  line-height: 1.65;
}

.contact-form .forminator-ui {
  max-width: 46rem;
}

.contact-form .forminator-custom-form {
  min-height: 34rem;
  overflow-anchor: none;
}

.contact-form .forminator-custom-form:not(:has(.forminator-row)) {
  display: grid;
  place-items: center;
}

.contact-form .forminator-custom-form:not(:has(.forminator-row))::after {
  content: "Loading secure form…";
  color: rgba(8, 9, 8, 0.5);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form .forminator-ui .forminator-row {
  margin-bottom: 1.6rem !important;
}

.contact-form .forminator-ui .forminator-label {
  margin-bottom: 0.6rem !important;
  color: #080908 !important;
  font-size: 0.58rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.contact-form .forminator-ui .forminator-input,
.contact-form .forminator-ui .forminator-textarea {
  padding: 1rem 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 9, 8, 0.6) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #080908 !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

.contact-form .forminator-ui .forminator-input:focus,
.contact-form .forminator-ui .forminator-textarea:focus {
  border-bottom-color: var(--red) !important;
}

.contact-form .forminator-ui .forminator-input::placeholder,
.contact-form .forminator-ui .forminator-textarea::placeholder {
  color: rgba(8, 9, 8, 0.42) !important;
}

.contact-form .forminator-ui .forminator-textarea {
  min-height: 9rem !important;
  resize: vertical !important;
}

.contact-form .forminator-ui .forminator-button-submit {
  min-height: 3.4rem !important;
  margin-top: 1rem !important;
  padding: 1rem 1.5rem !important;
  border: 1px solid #080908 !important;
  border-radius: 0 !important;
  background: #080908 !important;
  color: var(--paper) !important;
  font-size: 0.6rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease !important;
}

.contact-form .forminator-ui .forminator-button-submit:hover,
.contact-form .forminator-ui .forminator-button-submit:focus-visible {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.contact-form .forminator-ui .forminator-description,
.contact-form .forminator-ui .forminator-error-message {
  font-size: 0.72rem !important;
}

@media (min-width: 901px) {
  .contact-intro {
    position: sticky;
    top: 0;
    height: 100svh;
    align-self: start;
  }
}

@media (max-width: 900px) {
  .press-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .press-hero {
    min-height: 70svh;
  }

  .press-hero__note {
    max-width: 38rem;
  }

  .contact-intro {
    min-height: 78svh;
  }

  .contact-form {
    padding-top: clamp(5rem, 10vh, 8rem);
  }
}

@media (max-width: 620px) {
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card,
  .press-card:nth-child(even) {
    min-height: 27rem;
    border-right: 0;
  }

  .press-section__head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-intro h1 {
    max-width: 100%;
    font-size: clamp(3.55rem, 15vw, 4.5rem);
    line-height: 0.8;
  }

  .contact-intro__details {
    grid-template-columns: 1fr;
  }
}

.film-page {
  background: #050605;
  color: var(--paper);
}

.film-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(10rem, 20vh, 15rem) var(--pad) clamp(5rem, 11vh, 8rem);
  overflow: hidden;
  isolation: isolate;
  background: #070807;
}

.film-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: var(--film-hero);
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.15) brightness(0.72);
  transform: scale(1.025);
  animation: film-hero-drift 12s var(--ease) both;
}

.film-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.12) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, transparent 58%, rgba(0, 0, 0, 0.34) 100%);
}

.film-hero__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 77% 42%, transparent 0 16rem, rgba(0, 0, 0, 0.14) 32rem);
}

.film-hero__copy {
  position: relative;
  z-index: 2;
  width: min(62rem, 76vw);
}

.film-hero h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(7rem, 19vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.68;
  text-transform: uppercase;
}

.film-hero__logline {
  max-width: 46rem;
  margin: clamp(2rem, 5vh, 3.5rem) 0 0;
  font-family: var(--condensed);
  font-size: clamp(1.55rem, 3.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.film-hero__index {
  position: absolute;
  right: var(--pad);
  bottom: 4rem;
  color: transparent;
  font-family: var(--condensed);
  font-size: clamp(13rem, 34vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.65;
  opacity: 0.22;
  -webkit-text-stroke: 1px rgba(241, 238, 230, 0.82);
}

.film-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(241, 238, 230, 0.82);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.film-button:hover,
.film-button:focus-visible {
  background: var(--paper);
  color: #070807;
}

.film-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(241, 238, 230, 0.16);
  border-bottom: 1px solid rgba(241, 238, 230, 0.16);
}

.film-facts p {
  display: grid;
  gap: 0.8rem;
  min-height: 9rem;
  align-content: center;
  margin: 0;
  padding: 1.5rem var(--pad);
  border-right: 1px solid rgba(241, 238, 230, 0.16);
}

.film-facts p:last-child {
  border-right: 0;
}

.film-facts span,
.film-credits span,
.film-next a > span {
  color: rgba(241, 238, 230, 0.48);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.film-facts strong {
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.film-story {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(20rem, 1fr);
  gap: clamp(4rem, 11vw, 13rem);
  padding: clamp(8rem, 16vh, 13rem) var(--pad);
}

.film-story h2,
.film-credits h2,
.film-watch h2,
.cara-trailer-cta h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.film-story__content {
  max-width: 48rem;
  color: #d2cfc7;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

.film-story__content > * {
  margin-top: 0;
}

.film-story__content > * + * {
  margin-top: 1.6em;
}

.film-credits {
  padding: clamp(7rem, 14vh, 11rem) var(--pad);
  background:
    linear-gradient(112deg, rgba(104, 18, 17, 0.72), rgba(37, 8, 8, 0.25) 56%, transparent),
    #0b0a09;
}

.film-credits h2 {
  margin-bottom: clamp(4rem, 9vh, 7rem);
}

.film-credits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(241, 238, 230, 0.18);
}

.film-credits__grid p {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  margin: 0;
  padding: 2.25rem 2rem 2.25rem 0;
  border-bottom: 1px solid rgba(241, 238, 230, 0.18);
}

.film-credits__grid p + p {
  padding-left: 2rem;
  border-left: 1px solid rgba(241, 238, 230, 0.18);
}

.film-credits__grid strong {
  font-family: var(--condensed);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.film-credits__grid .film-credits__wide {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}

.film-credits__wide strong {
  max-width: 76rem;
}

.film-watch {
  padding: clamp(8rem, 15vh, 12rem) var(--pad);
  background: var(--black);
}

.film-watch__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 7vh, 5.5rem);
}

.film-watch__head a {
  flex: 0 0 auto;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(241, 238, 230, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-player {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.66)),
    var(--film-poster) center / cover;
  border: 1px solid rgba(241, 238, 230, 0.2);
}

.film-player::before,
.film-player::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.film-player::before {
  inset: 1rem;
  border: 1px solid rgba(241, 238, 230, 0.2);
}

.film-player::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(241, 238, 230, 0.14);
}

.film-player button {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.film-player__play {
  display: grid;
  width: clamp(5.5rem, 10vw, 8rem);
  aspect-ratio: 1;
  place-items: center;
  padding-left: 0.25em;
  border: 1px solid rgba(241, 238, 230, 0.78);
  border-radius: 50%;
  font-size: 1.2rem;
  transition:
    transform 0.35s var(--ease),
    background-color 0.35s ease,
    color 0.35s ease;
}

.film-player button:hover .film-player__play,
.film-player button:focus-visible .film-player__play {
  transform: scale(1.08);
  background: var(--paper);
  color: var(--black);
}

.film-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.film-player.is-playing::before,
.film-player.is-playing::after {
  display: none;
}

.cara-trailer-cta {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #0a0908;
}

.cara-trailer-cta__image {
  min-height: 38rem;
  background:
    linear-gradient(90deg, transparent 58%, #0a0908 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 56%),
    url("assets/cara-close.jpg") 48% 36% / cover;
  filter: saturate(0.7) contrast(1.16);
}

.cara-trailer-cta__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(5rem, 10vw, 10rem) var(--pad) clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
}

.cara-trailer-cta h2 {
  max-width: 8ch;
}

.cara-trailer-cta__copy > p:not(.inner-shell__label) {
  max-width: 29rem;
  margin: 2rem 0 0;
  color: #bbb8b0;
  line-height: 1.7;
}

.film-next {
  padding: clamp(7rem, 14vh, 10rem) var(--pad);
  background: #d8d5ca;
  color: #080908;
}

.film-next .inner-shell__label {
  color: #781a19;
}

.film-next__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.film-next a {
  position: relative;
  min-height: clamp(22rem, 48vw, 42rem);
  display: grid;
  align-content: end;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(8, 9, 8, 0.28);
  color: var(--paper);
}

.film-next a::before,
.film-next a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
}

.film-next a::before {
  background: var(--next-film) center / cover;
  filter: saturate(0.4) contrast(1.18) brightness(0.66);
  transition: transform 0.8s var(--ease);
}

.film-next a::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 68%);
}

.film-next a:hover::before,
.film-next a:focus-visible::before {
  transform: scale(1.045);
}

.film-next a > span {
  color: rgba(241, 238, 230, 0.66);
}

.film-next a strong {
  margin-top: 0.75rem;
  font-family: var(--condensed);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -0.055em;
  line-height: 0.75;
  text-transform: uppercase;
}

.film-next a i {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  font-style: normal;
}

@keyframes film-hero-drift {
  from {
    transform: scale(1.065);
  }

  to {
    transform: scale(1.025);
  }
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  padding: clamp(7rem, 13vh, 11rem) var(--pad);
  overflow: hidden;
  background: #d8d5ca;
  color: #080908;
}

.newsletter::after {
  content: "SIGNAL";
  position: absolute;
  right: -0.03em;
  bottom: -0.18em;
  color: rgba(8, 9, 8, 0.05);
  font-family: var(--condensed);
  font-size: clamp(10rem, 31vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.7;
  pointer-events: none;
}

.newsletter__copy,
.newsletter__form {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  max-width: 9ch;
  margin: 1.5rem 0 0;
  font-family: var(--condensed);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.newsletter__form {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(8, 9, 8, 0.24);
  background: rgba(216, 213, 202, 0.78);
  backdrop-filter: blur(12px);
}

.newsletter__form p {
  margin: 0;
  line-height: 1.65;
}

.newsletter__form .mailpoet_form {
  margin: 0 !important;
}

.newsletter__form input[type="email"],
.newsletter__form input[type="text"] {
  width: 100% !important;
  padding: 1rem 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #080908 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #080908 !important;
}

.newsletter__form input[type="submit"],
.newsletter__form button {
  margin-top: 1.5rem !important;
  padding: 0.9rem 1.25rem !important;
  border: 1px solid #080908 !important;
  border-radius: 0 !important;
  background: #080908 !important;
  color: #f1eee6 !important;
  font-size: 0.62rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.error-code {
  display: block;
  color: var(--red);
  font-family: var(--condensed);
  font-size: clamp(8rem, 26vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .film-hero {
    min-height: 92svh;
    padding-bottom: 5rem;
  }

  .film-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.14) 72%, rgba(0, 0, 0, 0.38) 100%);
  }

  .film-hero__copy {
    width: 100%;
  }

  .film-hero h1 {
    font-size: clamp(6rem, 32vw, 10rem);
  }

  .film-hero__index {
    right: -0.02em;
    bottom: 3rem;
    font-size: 52vw;
  }

  .film-hero__logline {
    max-width: 28rem;
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .film-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .film-facts p:nth-child(2) {
    border-right: 0;
  }

  .film-facts p {
    min-height: 7rem;
  }

  .film-story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .film-credits__grid {
    grid-template-columns: 1fr;
  }

  .film-credits__grid p + p {
    padding-left: 0;
    border-left: 0;
  }

  .film-credits__grid .film-credits__wide {
    grid-column: auto;
  }

  .film-watch__head {
    align-items: start;
    flex-direction: column;
  }

  .film-player::before {
    inset: 0.55rem;
  }

  .cara-trailer-cta {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .cara-trailer-cta__image {
    min-height: 62vh;
    background:
      linear-gradient(0deg, #0a0908 0%, transparent 34%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent),
      url("assets/cara-close.jpg") 48% 36% / cover;
  }

  .cara-trailer-cta__copy {
    padding-top: 1rem;
  }

  .film-next__grid {
    grid-template-columns: 1fr;
  }

  .film-next a {
    min-height: 65vh;
  }

  .newsletter {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-hero::before {
    animation: none;
    transform: none;
  }
}
