.hero {
  display: grid;
  min-height: min(78vh, 760px);
  background: var(--fashion-hero-wash);
}

.hero__media,
.hero__copy {
  min-height: 42vh;
}

.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--fashion-accent-soft);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 42vh;
  display: grid;
  place-items: center;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9aa3ad;
  font-size: 0.85rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--fashion-space-6) var(--fashion-gutter) var(--fashion-space-7);
  gap: 1.25rem;
}

.hero__copy p {
  max-width: 28rem;
  color: var(--fashion-muted);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero__copy {
    padding: var(--fashion-space-8);
    justify-content: center;
  }
}
