.hero {
  min-height: 0;
  height: auto;
  aspect-ratio: 1983 / 793;
  background: #2d1b12;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 17, 10, 0.78) 0%, rgba(32, 17, 10, 0.50) 43%, rgba(32, 17, 10, 0.045) 75%),
    linear-gradient(0deg, rgba(20, 10, 5, 0.32), transparent 50%);
}

.hero-content {
  width: min(560px, 48vw);
  margin-left: clamp(1.5rem, 6vw, 6rem);
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

.hero h1 span {
  font-size: clamp(3rem, 6vw, 6rem);
}

.hero h1 strong {
  font-size: clamp(1.55rem, 3.35vw, 3.2rem);
}

.hero h1 i {
  margin: clamp(.65rem, 1vw, 1rem) 0;
}

.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin: clamp(.9rem, 1.6vw, 1.5rem) 0;
}

.about-accent > img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(62%, 360px);
  height: auto;
  object-fit: contain;
  clip-path: ellipse(48.25% 46.78% at 49.41% 47.75%);
}

@media (max-width: 1000px) {
  .hero {
    display: block;
    aspect-ratio: auto;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1983 / 793;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 3rem clamp(1.5rem, 7vw, 4rem) 4rem;
    background: #2d1b12;
  }

  .hero h1 span {
    font-size: clamp(3.5rem, 11vw, 6rem);
  }

  .hero h1 strong {
    font-size: clamp(1.9rem, 6vw, 3.2rem);
  }

  .hero-copy {
    max-width: 680px;
    font-size: clamp(1.15rem, 3vw, 1.4rem);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(31, 16, 9, 0.16), rgba(31, 16, 9, 0.03) 65%, rgba(31, 16, 9, 0.34));
  }
}

@media (max-width: 760px) {
  .hero-content {
    padding: 2.5rem 1.5rem 3.5rem;
  }
}
