/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 20px 80px;
  will-change: transform, opacity;
}
.overline {
  letter-spacing: 0.5px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--rose);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(58px, 11.5vw, 138px);
  line-height: 0.88;
  margin: 22px 0 10px;
}
.hero h1 .amp {
  font-style: italic;
  color: var(--teal);
  padding: 0 0.08em;
}
.hero-date {
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 3px;
  margin-top: 6px;
}
.hero-sub {
  max-width: 480px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.scroll {
  display: none;
}
.scroll-desktop {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-desktop:after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--champagne), transparent);
}
