/* Full-bleed hero: the image carries the entire first screen. */
.site-header {
  position: relative;
  border-bottom: 0;
}

.site-header::after {
  content: none;
}

body::before {
  content: none;
}

.hero::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
  pointer-events: none;
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 94px);
  overflow: hidden;
  background: #e4e4e0;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(241, 241, 238, .18) 0%, rgba(241, 241, 238, .04) 46%, transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  margin: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(52vw, 700px);
  min-height: calc(100vh - 94px);
  padding: 5.6rem 2rem 5.2rem clamp(9.6rem, 12vw, 13.2rem);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100%;
  min-height: 0;
  border-right: 0;
  padding: 1.7rem 1.25rem 0;
  background: transparent;
}

.hero-rail b {
  left: 1.25rem;
}

@media (max-width: 980px) {
  .hero,
  .hero-copy {
    min-height: calc(100svh - 75px);
  }

  .hero-copy {
    width: min(74vw, 620px);
    padding: 5rem 1.75rem 4.5rem max(7.2rem, 12vw);
  }

  .hero-rail {
    display: flex;
    width: auto;
    padding: 1.45rem 1rem 0;
  }

  .hero-rail b {
    left: 1rem;
  }

  .hero-art {
    display: block;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .hero,
  .hero-copy {
    min-height: 39rem;
  }

  .hero-copy {
    width: 100%;
    padding: 5.25rem 1.6rem 2.8rem;
  }

  .hero-art {
    display: block;
    min-height: 0;
  }

  .hero-art img {
    object-position: 60% center;
  }
}
