:root{
  --indigo:#45007a;
  --coral:#fe5f55;
  --antique:#f0e7d8;
  --orchid:#ca61c3;
  --champagne:#fae3c6;

  --text-dark:#1f1f1f;
  --text-light:#ffffff;

  --grad-primary:linear-gradient(135deg,var(--indigo),var(--orchid));
  --grad-accent:linear-gradient(135deg,var(--coral),var(--orchid));

  --radius:18px;
  --shadow:0 10px 25px rgba(0,0,0,.12);
  --shadow-soft:0 8px 18px rgba(0,0,0,.10);
}

/* =========================
   Base / Resets
   ========================= */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"PT Sans",Arial,sans-serif;
  background:var(--antique);
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block}
a{color:inherit}
a:hover{color:inherit}
main{overflow-x:hidden}

/* Bootstrap helpers you rely on */
.container{position:relative}

/* =========================
   Typography
   ========================= */
h1,h2,h3,h4,h5,h6{
  font-family:"Playfair Display",Georgia,serif;
  letter-spacing:.2px;
}
.section-head{
  text-align:center;
  margin-bottom:26px;
}
.section-head h2{
  font-weight:700;
  margin:0 0 10px;
}
.section-head p{
  margin:0 auto;
  max-width:850px;
  opacity:.86;
  font-size:1.05rem;
}

/* =========================
   Sections
   ========================= */
.section{
  padding:72px 0;
}
.bg-soft{
  background:rgba(250,227,198,.65);
}
.section-dark{
  background:linear-gradient(180deg,rgba(69,0,122,.94),rgba(45,0,85,.98));
  color:#fff;
}
.section-dark .section-head p{opacity:.88}
.section-faq-purple{
  background:linear-gradient(180deg,rgba(69,0,122,.92),rgba(45,0,85,.98));
  color:#fff;
}
.section-faq-purple .section-head p{opacity:.88}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:var(--indigo);
}
.hero-media{position:absolute;inset:0}
.hero-embed{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:100vw;height:56.25vw; /* 16:9 */
  min-width:177.78vh;
  min-height:100vh;
  border:0;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.78));
}
.hero-content{
  position:relative;
  z-index:4;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 0 96px;
}
.hero-card{
  background:rgba(240,231,216,.14);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  border-radius:24px;
  padding:28px 26px;
  text-align:center;
  max-width:980px;
  width:92%;
}
.hero-kicker{
  margin:0 0 10px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:.95rem;
}
.hero-note{
  margin:14px 0 0;
  opacity:.88;
  font-weight:700;
}
.hero-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Loader overlay for the hero video */
.hero-loader{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.30);
  z-index:5;
  transition:opacity .2s ease;
}
.hero-loader.is-hidden{
  opacity:0;
  pointer-events:none;
}
.hero-spinner{
  width:54px;height:54px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.28);
  border-top-color:#fff;
  animation:spin .9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* Countdown text */
.countdown-text{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin:10px 0 4px;
  font-family:"PT Sans",Arial,sans-serif;
}
.countdown-text > span{
  display:inline-flex;
  gap:6px;
  align-items:baseline;
  color:var(--text-dark);
  padding:0;
}
.countdown-text > span > span:first-child{
  font-size:1.55rem;
  font-weight:800;
  line-height:1;
}
.countdown-text > span > span:last-child{
  font-size:.92rem;
  opacity:.85;
  text-transform:uppercase;
  letter-spacing:.4px;
}

/* =========================
   Buttons (matches your design)
   ========================= */
.btn{
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  letter-spacing:.2px;
}
.btn-cta{
  background:var(--grad-primary) !important;
  color:white !important;
  border:none !important;
  box-shadow:0 10px 20px rgba(0,0,0,.14);
}
.btn-cta:hover{
  filter:saturate(1.05) brightness(1.04);
  transform:translateY(-1px);
}
.btn-outline{
  background:transparent !important;
  border:1px solid rgba(31,31,31,.35) !important;
  color:var(--text-dark) !important;
}
.btn-outline:hover{
  border-color:rgba(31,31,31,.55) !important;
  background:rgba(255,255,255,.35) !important;
}

/* =========================
   Benefit cards
   ========================= */
.cardx{
  height:100%;
  background:rgba(255,255,255,.50);
  border:1px solid rgba(69,0,122,.10);
  border-radius:20px;
  padding:22px 20px;
  box-shadow:var(--shadow-soft);
}
.cardx h3{
  margin:0 0 10px;
  font-weight:700;
}
.cardx p{margin:0;opacity:.86}

/* =========================
   Cast
   ========================= */
.cast-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.cast-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.cast-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.cast-card figcaption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:14px 60px 14px 14px;
  font-weight:800;
  color:white;
  background:linear-gradient(transparent,rgba(0,0,0,.76));
}

/* =========================
   Creative team (CIRCULAR 500x500 + NAME UNDER)
   ========================= */
.section-dark .team-clean{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:18px;
  padding:10px 0;
}
.team-avatar-big{
  width:500px;
  height:500px;
  border-radius:50%;
  object-fit:cover;
  object-position:center;
  display:block;

  border:6px solid rgba(255,255,255,.12);
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}
.team-name-big{
  margin:0;
  line-height:1.15;
  font-weight:800;
  letter-spacing:.2px;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}
.team-name-big br{
  content:"";
  display:block;
  margin-top:10px;
}

/* =========================
   Pricing
   ========================= */
.price-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  max-width:950px;
  margin:0 auto;
}
.price-card{
  background:rgba(255,255,255,.56);
  border:1px solid rgba(69,0,122,.12);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.price-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 50px rgba(0,0,0,.16);
  border-color:rgba(254,95,85,.35);
}
.price-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.price-top h3{margin:0;font-weight:700}
.price{
  font-family:"Playfair Display",Georgia,serif;
  font-weight:700;
  font-size:2.1rem;
}
.feature-list{
  margin:0 0 16px;
  padding-left:18px;
  opacity:.92;
}
.feature-list li{margin:6px 0}

/* =========================
   Trailer section (FORCE 16:9 for all embeds, incl. 4:3 sources)
   ========================= */
.trailer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.trailer-card{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.65);
}

.video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#000;
}

/* Default: fill + crop to 16:9 mask */
.video-frame iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:177.78%;
  height:100%;
  transform:translate(-50%,-50%);
  border:0;
}

/* If the video is taller (e.g., 4:3), this keeps it covered */
@supports (aspect-ratio: 1 / 1){
  .video-frame iframe{
    width:100%;
    height:177.78%;
  }
}


/* =========================
   FAQ (accordion)
   ========================= */
.faq{max-width:980px;margin:0 auto}
.faq-item{
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  margin-bottom:12px;
}
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 18px;
  background:transparent;
  border:0;
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-q::after{
  content:"+";
  font-weight:900;
  opacity:.9;
}
.faq-item.open .faq-q::after{content:"–"}
.faq-a{
  height:0;
  overflow:hidden;
  transition:height .25s ease;
}
.faq-a-inner{
  padding:0 18px 18px;
  opacity:.92;
  line-height:1.55;
}

/* =========================
   Testimonials
   ========================= */
.praise-section{background:rgba(250,227,198,.65)}
.praise-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.praise-video{
  background:rgba(255,255,255,.55);
  border:1px solid rgba(69,0,122,.10);
  border-radius:18px;
  padding:10px;
  box-shadow:var(--shadow-soft);
}
.praise-frame{
  border-radius:14px;
  overflow:hidden;
  aspect-ratio:5/7;
  background:#000;
}
.praise-frame iframe{width:100%;height:100%;border:0}

/* =========================================================
   DINE TO DONATE – APPLEBEE'S BANNER
   Modern Glass Gradient Section
   ========================================================= */

.dine-banner{
  position:relative;
  padding:90px 0;
  background:
    linear-gradient(135deg, rgba(69,0,122,.95), rgba(202,97,195,.85)),
    radial-gradient(circle at 20% 20%, rgba(255,0,0,.25), transparent 50%);
  color:#fff;
  overflow:hidden;
}

.dine-inner{
  display:flex;
  flex-wrap:wrap;
  gap:60px;
  align-items:center;
  justify-content:space-between;
}

.dine-left{
  flex:1 1 520px;
}

.dine-right{
  flex:1 1 320px;
  text-align:center;
}

.dine-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  padding:6px 14px;
  border-radius:999px;
  font-size:.85rem;
  letter-spacing:.5px;
  margin-bottom:18px;
}

.dine-title{
  font-size:2.2rem;
  font-weight:800;
  line-height:1.2;
  margin-bottom:18px;
}

.dine-title span{
  color:#fae3c6;
}

.dine-text{
  font-size:1.1rem;
  margin-bottom:14px;
  opacity:.95;
}

.dine-subtext{
  opacity:.85;
  margin-bottom:28px;
}

.dine-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.dine-btn{
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:all .2s ease;
  display:inline-block;
}

.dine-btn.primary{
  background:#e31837; /* Applebee’s red */
  color:#fff;
}

.dine-btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.dine-btn.secondary{
  background:rgba(255,255,255,.15);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}

.dine-btn.secondary:hover{
  background:rgba(255,255,255,.25);
}

.dine-address{
  font-size:.95rem;
  opacity:.75;
}

.dine-logo{
  max-width:220px;
  margin:0 auto 20px;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.35));
}

.dine-tagline{
  font-size:1rem;
  opacity:.9;
}

.dine-tagline span{
  opacity:.7;
  font-size:.9rem;
}

@media (max-width:768px){
  .dine-inner{
    text-align:center;
  }
  .dine-actions{
    justify-content:center;
  }
}

/* Cast modal trigger button (small arrow on each card) */
.cast-caption-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cast-more-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:#fff;
  padding:0;
  margin:0;
  cursor:pointer;
  font-size:1.25rem;
  line-height:1;
  opacity:.95;
}
.cast-more-btn:hover{
  transform:translateY(-1px);
  opacity:1;
}

/* =========================
   Sponsors marquee
   ========================= */
.sponsor-marquee{
  position:relative;
  overflow:hidden;
  padding:18px 0;
  background:rgba(255,255,255,.65);
}
.marquee-track{
  display:flex;
  gap:18px;
  align-items:center;
  will-change:transform;
  padding:0 18px;
  transform:translateX(0);
}
.sponsor-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  text-decoration:none;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.sponsor-link img{
  width:300px;height:150px;
  object-fit:cover;
  border-radius:16px;
}
.sponsor-hover-zone{
  position:absolute;
  top:0;bottom:0;
  width:18%;
  z-index:3;
}
.sponsor-hover-left{left:0}
.sponsor-hover-right{right:0}
.sponsor-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid rgba(31,31,31,.18);
  background:rgba(255,255,255,.75);
  z-index:4;
  display:none; /* shown on small screens */
  font-size:28px;
  line-height:40px;
  padding:0;
  cursor:pointer;
}
.sponsor-arrow-left{left:12px}
.sponsor-arrow-right{right:12px}

/* Visionaries: make image clickable + arrow overlay */
.team-photo-wrap{
  position:relative;
  width:fit-content;
  margin:0 auto;
  cursor:pointer;
}

/* Arrow button on bottom-left (matches your Vimeo preference too) */
.team-more-btn{
  position:absolute;
  left:18px;
  bottom:18px;
  appearance:none;
  border:0;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.28);
  transition:transform .15s ease, background .15s ease, opacity .15s ease;
  opacity:.95;
}
.team-more-btn:hover{
  transform:translateY(-1px);
  background:rgba(0,0,0,.36);
  opacity:1;
}
.team-more-btn i{
  font-size:1.25rem;
  line-height:1;
}

/* =========================
   Footer
   ========================= */
.footer{
  background:linear-gradient(180deg,rgba(69,0,122,.85),rgba(69,0,122,1));
  color:white;
  padding:70px 0;
}
.footer a{color:rgba(255,255,255,.92);text-decoration:none}
.footer a:hover{color:#fff;text-decoration:underline}
.footer input.form-control{
  border-radius:999px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
}
.footer input.form-control::placeholder{color:rgba(255,255,255,.70)}
.social-btn{
  display:inline-flex;
  width:40px;height:40px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.78);
  color:#fff;
  text-decoration:none;
}
.social-btn:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 991.98px){
  .cast-grid{grid-template-columns:repeat(3,1fr)}
  .praise-grid{grid-template-columns:repeat(2,1fr)}
  .price-grid{grid-template-columns:1fr;max-width:560px}

  /* keep creative team circles responsive */
  .team-avatar-big{
    width:min(500px,82vw);
    height:min(500px,82vw);
  }
}
@media (max-width: 767.98px){
  .section{padding:58px 0}
  .cast-grid{grid-template-columns:repeat(2,1fr)}
  .trailer-grid{grid-template-columns:1fr}
  .praise-grid{grid-template-columns:1fr}
  .hero-content{padding-bottom:72px}
  .countdown-text > span > span:first-child{font-size:1.35rem}
  .sponsor-arrow{display:inline-flex;align-items:center;justify-content:center}
  .sponsor-hover-zone{display:none} /* mobile uses arrows/drag */
}
@media (max-width: 420px){
  .cast-grid{grid-template-columns:1fr}
  .hero-card{padding:22px 18px}
}

/* =========================
   Cast + Visionaries modal triggers
   ========================= */
.bio-trigger{cursor:pointer}

/* Cast intro block */
.cast-intro{
  max-width:980px;
  margin:0 auto 22px;
  padding:0;
  text-align:center;
  background:transparent;
  border:none;
  box-shadow:none;
}
.cast-intro-title{
  margin:0 0 10px;
  font-weight:800;
  line-height:1.1;
}
.cast-intro-title span{
  opacity:.88;
  font-weight:700;
}
.cast-intro-text{margin:0 0 10px;opacity:.88}
.cast-intro-hint{margin:0;opacity:.75;font-weight:700}

/* Cast "more" button overlay */
.cast-card{position:relative}
.cast-more-btn{
  position:absolute;
  right:12px;
  bottom:12px;
  left:auto;
  top:auto;

  border:0;
  background:rgba(0,0,0,.40);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 10px 25px rgba(0,0,0,.22);
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
  z-index:3;
}
.cast-more-btn:hover{
  transform:translateY(-2px) scale(1.03);
  background:rgba(0,0,0,.55);
}
.cast-more-btn i{font-size:22px;line-height:1}

/* Visionaries overlay button */
.team-photo-wrap{position:relative; display:inline-block}
.team-more-btn{
  position:absolute;
  left:18px;
  bottom:18px;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  width:52px;
  height:52px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 14px 35px rgba(0,0,0,.30);
  transition:transform .15s ease, background .15s ease;
}
.team-more-btn:hover{transform:translateY(-2px) scale(1.03); background:rgba(0,0,0,.50)}
.team-more-btn i{font-size:24px;line-height:1}

/* =========================
   Bio Modal styling
   ========================= */
.bio-modal{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg,rgba(69,0,122,.96),rgba(45,0,85,.98));
  color:#fff;
}
.bio-modal .modal-header{
  border-bottom:1px solid rgba(250,227,198,.18);
}
.bio-modal-sub{opacity:.75;font-size:.95rem}
.bio-modal-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:18px;
  align-items:start;
}
.bio-modal-photo img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(250,227,198,.22);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}
.bio-modal-name{
  margin:0 0 6px;
  font-weight:800;
}
.bio-modal-role{
  margin:0 0 12px;
  opacity:.88;
  font-weight:700;
}
.bio-modal-text{margin:0;opacity:.92;line-height:1.6}

@media (max-width: 767.98px){
  .bio-modal-grid{grid-template-columns:1fr}
  .team-more-btn{left:14px;bottom:14px;width:46px;height:46px}
  .cast-more-btn{width:42px;height:42px}
}


/* =========================================================
   Director Spotlight (Donald Gray) — text left, 5×7 video right
   ========================================================= */
.director-feature{
  width:100%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(250,227,198,.16);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.25);
}

.director-feature-grid{
  display:grid;
  grid-template-columns:1fr minmax(220px, 320px);
  gap:18px;
  align-items:center;
}

.director-feature-kicker{
  display:inline-block;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.78rem;
  opacity:.88;
  margin-bottom:8px;
}

.director-feature-name{
  margin:0 0 6px;
  font-weight:800;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}

.director-feature-role{
  margin:0 0 12px;
  font-weight:800;
  opacity:.9;
  color:rgba(250,227,198,.95);
}

.director-feature-text{
  margin:0 0 16px;
  opacity:.9;
  line-height:1.6;
  color:rgba(255,255,255,.92);
}

.director-bio-trigger{
  border-color:rgba(255,255,255,.35) !important;
  color:#fff !important;
}

.director-bio-trigger:hover{
  background:rgba(255,255,255,.10) !important;
  border-color:rgba(255,255,255,.55) !important;
}

.director-video-portrait{
  width:100%;
  aspect-ratio:5 / 7;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  border:1px solid rgba(250,227,198,.18);
}

.director-video-portrait iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.director-video-note{
  margin-top:8px;
  text-align:center;
  font-size:.85rem;
  opacity:.75;
}

@media (max-width: 991.98px){
  .director-feature-grid{
    grid-template-columns:1fr;
  }
  .director-video-portrait{
    max-width:420px;
    margin:0 auto;
  }
}


/* =========================
   QUICK FIXES (cast arrows + cast intro box)
   ========================= */

/* Put cast arrows at bottom-right and keep them off the names */
.cast-more-btn{
  left:auto !important;
  right:12px !important;
  top:auto !important;
  bottom:12px !important;
}

/* Give the name gradient room so the arrow never covers the text */
.cast-card figcaption{
  padding-right:64px !important;
}

/* Remove the boxed background from the cast intro/title block (center text only) */
.cast-intro{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  text-align:center;
}



/* =========================================================
   Director Feature Banner (matches Applebee's style)
   ========================================================= */
.director-feature-section{
  position:relative;
  padding:90px 0;
  background:
    linear-gradient(135deg, rgba(69,0,122,.95), rgba(202,97,195,.85)),
    radial-gradient(circle at 20% 20%, rgba(254,95,85,.20), transparent 55%);
  color:#fff;
  overflow:hidden;
}

.director-feature{
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  padding:34px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.director-feature-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:34px;
  align-items:center;
}

.director-feature-kicker{
  display:inline-block;
  background:rgba(255,255,255,.14);
  padding:6px 14px;
  border-radius:999px;
  font-size:.85rem;
  letter-spacing:.6px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.director-feature-name{
  margin:0 0 6px;
  font-weight:800;
  font-size:2.2rem;
  line-height:1.1;
  color:#fff;
}

.director-feature-role{
  margin:0 0 14px;
  font-weight:800;
  opacity:.9;
  letter-spacing:.4px;
}

.director-feature-text{
  margin:0 0 18px;
  font-size:1.05rem;
  line-height:1.6;
  opacity:.92;
}

/* Make outline button readable on purple banner */
.director-feature-section .btn-outline{
  border-color:rgba(255,255,255,.42) !important;
  color:#fff !important;
}
.director-feature-section .btn-outline:hover{
  background:rgba(255,255,255,.14) !important;
  border-color:rgba(255,255,255,.60) !important;
}

.director-video-portrait{
  width:min(320px, 72vw);
  aspect-ratio: 5 / 7; /* 5x7 portrait */
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 22px 55px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}

.director-video-portrait iframe{
  width:100%;
  height:100%;
  border:0;
}

.director-video-note{
  margin-top:10px;
  font-size:.9rem;
  opacity:.80;
  text-align:center;
}

/* Responsive */
@media (max-width: 991.98px){
  .director-feature{ padding:26px; }
  .director-feature-grid{
    grid-template-columns: 1fr;
    gap:22px;
    text-align:center;
  }
  .director-feature-media{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
}


/* =========================================================
   Genius overrides: Cast intro no box + arrows bottom-right
   ========================================================= */
.cast-intro{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}
.cast-more-btn{
  left:auto !important;
  top:auto !important;
  right:12px !important;
  bottom:12px !important;
}
.cast-card figcaption{
  padding-right:60px !important; /* keep names clear of arrow */
}
/* ===== CAST TITLE (Fancy) ===== */
.cast-head{ margin-bottom: 28px; }

.cast-eyebrow{
  display:inline-block;
  font-weight:800;
  letter-spacing:2.4px;
  text-transform:uppercase;
  font-size:.78rem;
  opacity:.75;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(69,0,122,.08);
  border:1px solid rgba(69,0,122,.10);
  margin-bottom:12px;
}

.cast-title{
  font-weight:800;
  margin:0 0 10px;
  line-height:1.05;
}

.cast-title span{
  background: linear-gradient(135deg, rgba(69,0,122,1), rgba(202,97,195,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.cast-subtitle{
  margin:0 auto;
  max-width:900px;
  opacity:.88;
  font-size:1.07rem;
}

.cast-divider{
  width:140px;
  height:3px;
  border-radius:999px;
  margin:18px auto 0;
  background: linear-gradient(90deg, rgba(69,0,122,1), rgba(202,97,195,1));
  opacity:.9;
}