.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 20px 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark,
.menu-button {
  pointer-events: auto;
}

.wordmark {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.menu-button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(18,18,18,.96);
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-links {
  display: grid;
  gap: 18px;
  text-align: center;
}

.menu-links a {
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .95;
  text-decoration: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 158px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .8;
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cover-wrap {
  position: relative;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  border-radius: var(--radius);
  background: rgba(255,255,255,.46);
  filter: blur(18px);
  z-index: -1;
}

.cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(18,18,18,.20);
}

.release-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(18,18,18,.16);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-copy {
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.22;
  letter-spacing: -.035em;
}

.footer {
  padding: 42px 0 64px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
