/* Full-bleed hero; fixed main-theme header overlays the top (no gap). */
.is-landing-view #landing-hero.section-hero,
.admin-bar.is-landing-view #landing-hero.section-hero {
  margin-top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  padding-top: 0;
}

/* Navy overlay → transparent (replaces previous dark scrims). */
.section-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(11, 63, 99, 0.92) 0%,
    rgb(11 63 99 / 12%) 42%,
    rgba(11, 63, 99, 0) 100%
  );
}

/* Headline is title case (global `.section-hero h1` applies uppercase from theme CSS). */
.section-hero .hero-headline {
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Anniversary logo: entrance on first paint (before headline slide). */
@keyframes section-hero-mark-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#landing-hero .section-hero__mark {
  transform-origin: left center;
  animation: section-hero-mark-in 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.05s both;
}

@media (prefers-reduced-motion: reduce) {
  #landing-hero .section-hero__mark {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
