.hero{
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px 0 34px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* Idris Films logo */
.hero-logo{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-logo img{
  display: block;
  width: min(100%, 260px);
  height: auto;
}

/* Hero text */
.hero__copy{
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Main hero tagline */
.hero-tagline{
  margin: 0 auto;
  width: min(100%, 1120px);
  max-width: 100%;
  font-size: clamp(26px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 900;
  text-align: center;
}

/* Intro video */
.intro-video{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 6px;
  padding-top: 30px;
  border-top: 1px solid var(--soft-line);
  overflow: hidden;
}

.intro-video__embed{
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--soft-line);
  border-radius: 0;
  overflow: hidden;
  background: #000;
  box-shadow: none;
}

.intro-video__embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-video__copy{
  width: 100%;
  max-width: 560px;
  min-width: 0;
  text-align: left;
  text-align-last: auto;
}

.intro-video__copy p{
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 700;
  text-align: left;
  text-align-last: auto;
}

/* Tablet / small desktop */
@media (max-width: 980px){
  .hero{
    padding-top: 22px;
  }

  .hero-logo img{
    width: min(100%, 260px);
  }

  .intro-video{
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
  }

  .intro-video__copy{
    max-width: 100%;
  }
}

/* Phone */
@media (max-width: 640px){
  .hero{
    gap: 18px;
    padding-top: 18px;
    overflow: hidden;
  }

  .hero-logo img{
    width: min(100%, 220px);
  }

  .hero-tagline{
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(19px, 5.05vw, 24px);
    line-height: .95;
    letter-spacing: -.055em;
    text-align: center;
  }

  .intro-video{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 0;
    padding-top: 22px;
  }

  .intro-video__embed{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .intro-video__copy{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .intro-video__copy p{
    width: 100%;
    max-width: 100%;
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.08;
    letter-spacing: -.02em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}