.scene {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  padding: 0.75rem;
  background: var(--bg);
}

.nav {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0;
  pointer-events: none;
}

.nav__brand,
.nav__buy {
  pointer-events: auto;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
}

.nav__mark {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
}

.nav__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.35rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: #141414;
  color: #f4f4f2;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.hero {
  width: 100%;
  height: calc(100dvh - 1.5rem);
}

.hero__card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.15rem;
  background: #ecece8;
}

.hero__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__media--silver {
  z-index: 1;
}

.hero__ripple {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.hero__card.is-rippling .hero__media--silver {
  opacity: 0;
}

.hero__copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.25rem);
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: min(22rem, 38vw);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__brand {
  font-family: var(--font);
  font-size: clamp(0.7rem, 0.95vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(20, 20, 20, 0.45);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4.25rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.hero__text {
  font-family: var(--font);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.58);
  max-width: 18rem;
}

@media (max-width: 560px) {
  .scene {
    padding: 0.55rem;
  }

  .nav {
    top: 0.55rem;
    left: 0.55rem;
    right: 0.55rem;
    padding: 0.85rem 0.85rem 0;
  }

  .nav__buy {
    height: 2.2rem;
    padding: 0 1rem;
    font-size: 0.72rem;
  }

  .hero {
    height: calc(100dvh - 1.1rem);
  }

  .hero__card {
    border-radius: 0.9rem;
  }

  .hero__media {
    object-position: 68% 28%;
  }

  .hero__copy {
    left: 1.1rem;
    right: 1.1rem;
    top: auto;
    bottom: 1.35rem;
    max-width: none;
    transform: none;
    gap: 0.55rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero__text {
    max-width: 16rem;
    font-size: 0.88rem;
  }
}
