.zw-hero {
  position: relative;
  background: var(--zw-dark);
  color: var(--zw-white);
  overflow: hidden;
  padding: calc(var(--zw-nav-h) + 1.5rem) 0 0;
}

.zw-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.zw-hero__copy {
  padding: 1.25rem 0 3.5rem;
  max-width: 34rem;
}

.zw-hero__title {
  margin: 0;
  font-size: clamp(2.15rem, 8vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.zw-hero__rule {
  display: block;
  width: 7.5rem;
  height: 3px;
  margin: 1.15rem 0 1.1rem;
  background: var(--zw-orange);
  border-radius: 2px;
}

.zw-hero__text {
  margin: 0 0 1.6rem;
  max-width: 22rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--zw-muted);
}

.zw-hero__cta {
  font-size: 1.05rem;
  padding: 0.95rem 1.7rem;
}

.zw-hero__visual {
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.zw-hero__photo {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  mix-blend-mode: lighten;
}

.zw-hero__slope {
  height: 72px;
  margin-top: -1px;
  background: var(--zw-white);
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 640px) {
  .zw-hero__copy {
    padding-bottom: 4.5rem;
  }

  .zw-hero__visual {
    min-height: 360px;
  }
}

@media (min-width: 960px) {
  .zw-hero {
    padding-top: var(--zw-nav-h);
    min-height: min(100vh, 820px);
  }

  .zw-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: calc(min(100vh, 820px) - var(--zw-nav-h) - 88px);
  }

  .zw-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 5.5rem;
  }

  .zw-hero__visual {
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 0;
  }

  .zw-hero__photo {
    width: min(100%, 640px);
    max-height: 100%;
  }

  .zw-hero__slope {
    height: 96px;
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zw-hero__photo {
    mix-blend-mode: normal;
  }
}
