.hero-section {
  min-height: calc(100vh - 60px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-photo {
  width: clamp(260px, 48vw, 400px);
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 30px 60px -30px rgba(80,60,30,.25);
  background: #fff;
  padding: 10px;
  margin: 0 auto 2.5rem;
}

.hero-photo__image {
  width: 100%;
  height: 100%;
  border-radius: 0.85rem;
  object-fit: cover;
  object-position: 50% 68%;
  display: block;
}

.hero-names {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-ampersand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
  margin: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-ampersand {
    margin: 0 1rem;
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-tagline {
    font-size: 1.5rem;
  }
}

.hero-divider {
  margin-bottom: 2rem;
}

.hero-date-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-date {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .hero-date {
    font-size: 1.875rem;
  }
}

.hero-venue {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

@media (min-width: 640px) {
  .hero-venue {
    font-size: 1rem;
  }
}

.scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
