.featured-film {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin: 18px 0 72px;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid #ffffff24;
  background: linear-gradient(145deg, #252321, #12110f);
}
.featured-kicker {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .17em;
  color: var(--gold);
  font-weight: 500;
}
.featured-film h3 {
  font-family: Italiana, serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  margin: 20px 0;
}
.featured-film-copy > p:not(.featured-kicker):not(.featured-disclosure) {
  color: #b8b1a7;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}
.case-study {
  margin: 30px 0 0;
}
.case-study div {
  padding: 16px 0;
  border-top: 1px solid #ffffff24;
}
.case-study div:last-child {
  border-bottom: 1px solid #ffffff24;
}
.case-study dt {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.case-study dd {
  margin: 7px 0 0;
  color: #b8b1a7;
  font-size: 12px;
  line-height: 1.6;
}
.featured-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.featured-link:hover { color: var(--gold); }
.featured-disclosure {
  margin-top: 34px;
  color: #888178;
  font-size: 12px;
  line-height: 1.55;
  max-width: 520px;
}
.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080808;
  box-shadow: 0 28px 70px #0008;
  overflow: hidden;
}
.film-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #080808;
  object-fit: contain;
}
.film-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px 34px;
  background: linear-gradient(#000000b3, transparent);
  color: #eee9df;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}
.case-study-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 34px;
  border-top: 1px solid #ffffff24;
}
.case-study-cta .featured-kicker { margin: 0 0 10px; }
.case-study-cta h4 {
  max-width: 720px;
  margin: 0;
  font-family: Italiana, serif;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}
.case-study-cta-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 220px;
  padding: 17px 18px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-study-cta-link:hover { background: #fff; }
.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  visibility: hidden;
}
.film-frame.is-playing iframe { visibility: visible; }
.film-frame.is-playing .film-poster { display: none; }
.film-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #080808;
  color: var(--cream);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.film-poster:hover img { transform: scale(1.025); }
.film-poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0000000d 30%, #00000070 100%);
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: #eee9dfed;
  color: #12110f;
  box-shadow: 0 14px 40px #0007;
  transition: transform .25s ease, background .25s ease;
}
.play-button span { margin-left: 4px; font-size: 19px; }
.film-poster:hover .play-button { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.poster-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .featured-film { grid-template-columns: 1fr; margin-bottom: 48px; }
  .featured-film-copy { order: 2; }
  .film-frame { order: 1; }
  .case-study-cta { order: 3; align-items: stretch; }
}
@media (max-width: 520px) {
  .featured-film { padding: 18px; margin-inline: -1vw; }
  .featured-film h3 { font-size: 42px; }
  .featured-film-copy > p:not(.featured-kicker):not(.featured-disclosure) { font-size: 15px; }
  .case-study-cta { display: block; }
  .case-study-cta-link { width: 100%; margin-top: 24px; }
}
