/* Film Festival page */

.hero--filmfest {
  background:
    radial-gradient(ellipse at center 25%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0c0c0c 0%, #050505 100%);
}

.hero--filmfest::before {
  background:
    linear-gradient(90deg, rgba(232, 85, 154, 0.1) 0%, rgba(94, 168, 232, 0.1) 100%),
    rgba(0, 0, 0, 0.45);
}

.hero--filmfest .hero__media {
  background: #000;
}

.hero--filmfest .hero__media img {
  object-position: center 55%;
  filter: brightness(0.58) contrast(1.15) saturate(0.95);
}

.page-film-festival .event-logo {
  max-width: min(28rem, 88vw);
}

.hero--filmfest .filmfest-tagline {
  font-family: var(--font-secondary);
  font-size: clamp(1.9rem, 4.2vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0.5rem auto 0.35rem;
}

.hero--filmfest .page-subhead {
  font-size: clamp(0.95rem, 2.1vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e8559a 0%, #5ea8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Feature strip — gradient band with copy + Kent card */
.filmfest-feature-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    linear-gradient(90deg, rgba(232, 85, 154, 0.14) 0%, rgba(94, 168, 232, 0.14) 100%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(232, 85, 154, 0.08),
    0 0 32px rgba(94, 168, 232, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.filmfest-feature-copy {
  text-align: left;
  max-width: 52ch;
}

.filmfest-feature-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-secondary);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e8559a 0%, #5ea8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.filmfest-feature-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.65;
  color: rgba(237, 233, 226, 0.88);
}

.filmfest-director-card {
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(232, 85, 154, 0.12),
    0 12px 28px rgba(94, 168, 232, 0.1);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .filmfest-director-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
      0 0 0 1px rgba(232, 85, 154, 0.2),
      0 16px 36px rgba(94, 168, 232, 0.15);
  }
}

.filmfest-headshot {
  width: min(14rem, 40vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: #000;
}

.filmfest-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.92);
}

.filmfest-headshot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.95) 100%
  );
  pointer-events: none;
}

.filmfest-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  text-align: left;
}

.filmfest-caption .name {
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #fff;
}

.filmfest-caption .meta {
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .filmfest-feature-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  .filmfest-feature-copy {
    max-width: none;
  }

  .filmfest-director-card {
    justify-self: center;
    width: min(100%, 16rem);
  }

  .filmfest-headshot {
    width: 100%;
  }
}
