.stage{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
}

video.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sits above the video, fades to solid background just before the clip ends,
   so the reveal never depends on the video's own final frame being blank. */
.fade-cover{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
}

/* Content overlay, hidden until the video has faded to the background */
.content{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vh 6vw;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.content.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.content-inner{
  max-width: 620px;
}

h1{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 28px 0;
  color: var(--cream);
}

.subtext{
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 0 40px 0;
}

.privacy-link{
  position: fixed;
  right: 6vw;
  bottom: 5vh;
  z-index: 3;
  color: var(--cream-dim);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  opacity: 0;
  transition: opacity 1.1s ease 0.3s, color 0.15s ease;
}

.privacy-link.is-visible{
  opacity: 1;
}

.privacy-link:hover{
  color: var(--cream);
}

@media (max-width: 640px){
  .content{ padding: 6vh 7vw; }
  h1{ font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .privacy-link{ right: 7vw; bottom: 4vh; }
}

@media (prefers-reduced-motion: reduce){
  .content, .privacy-link{
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
}
