.nav {
  opacity: 1;
  transform: none;
  justify-content: flex-end;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-cluster .nav-links {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

.nav-cluster:hover .nav-links,
.nav-cluster:focus-within .nav-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hero {
  justify-content: flex-start;
}

.hero .frame-a {
  width: clamp(390px, 43vw, 650px);
  height: min(62vh, 590px);
  left: 5vw;
  top: 18%;
}

.hero-copy {
  position: absolute;
  left: 54vw;
  right: 6vw;
  text-align: left;
}

.hero .hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy .hero-statement {
  max-width: 570px;
  margin-top: 30px;
  color: #aaa;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: .015em;
  text-transform: none;
}

@media (max-width: 800px) {
  .nav-cluster { gap: 12px; }
  .nav-cluster .nav-links { gap: 12px; }

  .hero .frame-a {
    width: 72vw;
    height: 44vh;
    left: -7vw;
    top: 10%;
  }

  .hero-copy {
    left: 18vw;
    right: 7vw;
    top: auto;
    bottom: 15%;
  }

  .hero .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 3.2rem);
  }

  .hero-copy .hero-statement {
    margin-top: 20px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero .frame-a {
    width: 82vw;
    height: 40vh;
    left: -12vw;
  }

  .hero-copy {
    left: 12vw;
    right: 6vw;
  }
}
