/* ==========================================================================
   HOT POT — website styles  (YELLOW-dominant theme)
   --------------------------------------------------------------------------
   Yellow is the main surface color and red is the accent.
   The red has been deepened (a richer, less-bright red) so that red text on
   yellow — and the red characters-section background — is easier to read.
   Change a color value once below and it updates everywhere.
   ========================================================================== */

:root {
  --red:       #C1121F;   /* deep brand red (accents + characters background) */
  --red-dk:    #8A0D18;   /* darker red for text on yellow */
  --yellow:    #FFD400;   /* main brand yellow */
  --yellow-dk: #C9A400;

  --ink:   #1A1614;       /* near-black text  */
  --muted: #6A6259;       /* soft grey text   */
  --cream: #FFFBF0;       /* page background  */
  --white: #FFFFFF;
  --line:  rgba(0, 0, 0, .10);
}

/* --------------------------------------------------------------------------
   BASE / RESET
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* Centered content column used inside most sections */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

section { padding: 76px 22px; }

/* Small shared text helpers */
.kicker {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}
.center { text-align: center; display: block; }

h2.title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  margin: 10px 0 8px;
}

/* Reusable buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: transform .12s;
}
.btn:hover  { transform: translateY(-2px); }
/* Primary button: deep-red fill, yellow text */
.btn-yellow { background: var(--red); color: var(--yellow); }
.btn-ghost  { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }

/* Little triangular "play" icon used on buttons and the video */
.play {
  width: 0; height: 0;
  border-left: 12px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.play-lg {
  border-left-width: 18px;
  border-top-width: 12px;
  border-bottom-width: 12px;
}

/* --------------------------------------------------------------------------
   NAVIGATION BAR  (yellow bar, deep-red text)
   -------------------------------------------------------------------------- */
header { position: sticky; top: 0; z-index: 60; background: var(--yellow); }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo { font-weight: 800; letter-spacing: 5px; color: var(--red); font-size: 22px; }

.nav-links { display: flex; gap: 24px; align-items: center; font-size: 14px; color: var(--red-dk); }
.nav-links a:hover { color: var(--red); }
.nav-links .cta {
  background: var(--red);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--red);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;   /* bias the crop upward so the faces stay in frame */
}
/* Dark gradient at the BOTTOM only, so the faces (upper area) stay lit
   while the text at the bottom stays readable. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
              rgba(0,0,0,.85) 0%,
              rgba(0,0,0,.55) 30%,
              rgba(0,0,0,0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px 30px;   /* less bottom padding drops the text block lower, off the faces */
  width: 100%;
}
.badge {
  display: inline-block;
  background: var(--red);
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
/* The "A crime comedy…" pill, lifted to the top of the photo */
.hero-badge {
  position: absolute;
  z-index: 3;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  font-size: 15px;
  padding: 8px 20px;
}
.hero h1 {
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: .86;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.75);
}
.hero .genre {
  color: #fff;
  font-size: clamp(11px, 1.4vw, 13px);
  margin: 9px 0 7px;
  font-weight: 500;
  letter-spacing: 1px;
}
.hero .logline {
  color: #fff;
  max-width: 460px;
  font-size: clamp(11px, 1.5vw, 14px);
  margin-bottom: 14px;
}
.btns { display: flex; gap: 10px; flex-wrap: wrap; }
/* Smaller hero buttons */
.hero .btn { padding: 8px 15px; font-size: 12px; gap: 7px; }
.hero .btn .play { border-left-width: 9px; border-top-width: 6px; border-bottom-width: 6px; }

/* --------------------------------------------------------------------------
   LOGLINE BAND  (yellow band, deep-red text)
   -------------------------------------------------------------------------- */
.band { background: var(--yellow); color: var(--red-dk); text-align: center; padding: 52px 22px; }
.band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(19px, 3vw, 27px);
  font-weight: 500;
  line-height: 1.4;
}
.band .em { color: var(--red); font-weight: 700; }

/* --------------------------------------------------------------------------
   SYNOPSIS  (cream background)
   -------------------------------------------------------------------------- */
#synopsis { background: var(--cream); }
.syn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
#synopsis .kicker { color: var(--red); }
#synopsis p { margin-top: 14px; font-size: 17px; }
.syn-img { border-radius: 14px; overflow: hidden; border: 6px solid var(--red); }

/* --------------------------------------------------------------------------
   STORY  (white background)
   -------------------------------------------------------------------------- */
#story { background: var(--white); }
#story .kicker { color: var(--red); }
#story h2.title { margin-bottom: 46px; }

.beat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.beat:nth-child(even) .beat-img { order: 2; }

.beat-img { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.beat-num { font-size: 14px; font-weight: 800; color: var(--red); letter-spacing: 2px; }
.beat h3  { font-size: 24px; margin: 8px 0 10px; font-weight: 800; }
.beat p   { font-size: 16px; color: var(--muted); }

/* --------------------------------------------------------------------------
   CHARACTERS  (deep-red background, yellow headings; cards stay white)
   -------------------------------------------------------------------------- */
#characters { background: var(--red); }
#characters .kicker { color: var(--yellow); }
#characters h2.title { color: var(--yellow); }
#characters .lead { color: #fff; max-width: 640px; margin: 6px 0 40px; font-weight: 500; }

.cast { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

.card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,.25); border: 3px solid var(--ink); }
.card .ph { aspect-ratio: 4 / 3; overflow: hidden; }
.card .ph img { width: 100%; height: 100%; object-fit: cover; }
.card .info { padding: 16px 18px 20px; }
.card .role { font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--red); text-transform: uppercase; }
.card h3   { font-size: 19px; margin: 5px 0 8px; font-weight: 800; }
.card p    { font-size: 14px; color: var(--muted); }
.card .tagl { margin-top: 10px; font-style: italic; color: var(--ink); font-size: 14px; }

/* --------------------------------------------------------------------------
   DIRECTOR'S VISION  (dark background)
   -------------------------------------------------------------------------- */
#vision { background: var(--ink); color: #fff; }
#vision .kicker { color: var(--yellow); }
#vision h2.title { color: #fff; }
.vision-intro { color: #D9D2C7; max-width: 680px; margin-top: 10px; font-size: 16px; }

.vis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 34px; }
.vis-item h4 { color: var(--yellow); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.vis-item p  { color: #D9D2C7; font-size: 15px; }

.swatches { display: flex; gap: 10px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
.sw { width: 52px; height: 52px; border-radius: 8px; }
.arrow { color: #8a8378; font-size: 20px; }

/* --------------------------------------------------------------------------
   DIRECTOR VIDEO  (yellow background, deep-red text)
   -------------------------------------------------------------------------- */
#director { background: var(--yellow); }
.dir-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 36px; align-items: center; }
.videobox { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 16 / 9; background: #000; }
.videobox img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.playcircle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
#director .kicker { color: var(--red-dk); }
#director h2.title { color: var(--red-dk); }
#director p { color: var(--ink); margin-top: 10px; max-width: 420px; }

/* --------------------------------------------------------------------------
   TEAM  (cream background)
   -------------------------------------------------------------------------- */
#team { background: var(--cream); }
#team .kicker { color: var(--red); }
#team h2.title { margin-bottom: 40px; }

.team-lead {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.team-lead img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.team-lead .bio { padding: 26px 30px 26px 22px; }
.team-lead .role { color: var(--red); font-weight: 800; letter-spacing: 1px; font-size: 13px; text-transform: uppercase; }
.team-lead h3 { font-size: 26px; font-weight: 800; margin: 4px 0 12px; }
.team-lead p  { font-size: 15px; color: var(--muted); }
.team-lead p a { color: var(--red); }

.crew { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.crew .m { background: #fff; border-radius: 12px; padding: 20px 22px; border-left: 5px solid var(--red); }
.crew .role { color: var(--red); font-weight: 800; letter-spacing: 1px; font-size: 12px; text-transform: uppercase; }
.crew h4 { font-size: 18px; font-weight: 800; margin: 3px 0 8px; }
.crew p  { font-size: 14px; color: var(--muted); }
.crew p a { color: var(--red); text-decoration: none; }
.crew p a:hover { text-decoration: underline; }

.awards { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.pill { background: var(--yellow); color: var(--red-dk); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 100px; }

/* --------------------------------------------------------------------------
   CALL TO ACTION  (yellow background, deep-red heading)
   -------------------------------------------------------------------------- */
#cta { background: var(--yellow); text-align: center; }
#cta h2 { color: var(--red); font-size: clamp(26px, 4.4vw, 40px); font-weight: 800; margin-bottom: 10px; }
#cta .sub { color: var(--ink); margin-bottom: 26px; font-size: 17px; }

form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
form input { flex: 1; min-width: 230px; padding: 15px 16px; border: 0; border-radius: 8px; font-size: 15px; }
form input:focus { outline: 3px solid var(--red); }

.fmsg { color: var(--red-dk); margin-top: 16px; font-weight: 700; min-height: 22px; }
.contact { margin-top: 34px; color: var(--ink); font-size: 14px; line-height: 1.9; }
.contact a { color: var(--red); text-decoration: underline; }

/* --------------------------------------------------------------------------
   FOOTER  (dark background)
   -------------------------------------------------------------------------- */
footer { background: var(--ink); color: #9a9186; text-align: center; padding: 30px 22px; font-size: 13px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   MOBILE  —  rules that only apply on narrow screens (under 760px).
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--yellow);
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 22px; width: 100%; }
  .menu-btn { display: block; }

  /* On phones the wide cover photo would crop the two side faces, so instead
     of overlaying, show the whole photo and put the text below it. */
  .hero { min-height: 0; display: block; }
  .hero-bg { position: static; width: 100%; height: auto; }
  .hero::after { display: none; }
  .hero-inner { position: static; background: var(--ink); padding: 26px 22px 40px; }
  /* Smaller badge on phones, kept on a single line */
  .hero-badge { font-size: 10px; padding: 3px 12px; letter-spacing: .3px; top: 54px; white-space: nowrap; }

  .syn-grid,
  .beat,
  .dir-grid,
  .team-lead { grid-template-columns: 1fr; }

  .beat:nth-child(even) .beat-img { order: 0; }
  .team-lead img { min-height: 240px; }

  section { padding: 56px 22px; }
}
