/* Release Candidate 01 Banner R1: public-opening layer only.
   PA-04.11 Production UX LOCK files remain untouched. */

/* Internal build badge is not part of the public-facing release. */
.vp-build-badge { display: none !important; }

.hero.release-opening-hero {
  min-height: auto;
  padding: clamp(.35rem, 1vw, .75rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.hero.release-opening-hero .hero-inner {
  width: min(100%, 860px);
}

/* Public visual is a restrained banner, not a full-screen hero. */
.release-opening-visual {
  position: relative;
  width: 100%;
  height: clamp(210px, 28vw, 300px);
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 1px solid rgba(169,136,79,.52);
  border-radius: clamp(.85rem, 2vw, 1.25rem);
  background: #050918;
  box-shadow: 0 10px 30px rgba(12,18,35,.11);
}

.release-opening-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,9,24,.015), rgba(5,9,24,.08));
}

.release-opening-visual img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center 66%;
}

.release-opening-context {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  margin: .15rem 0 .45rem;
  padding: .38rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(169,136,79,.22);
  background: rgba(255,255,255,.48);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .04em;
}

.release-opening-context b {
  color: var(--ink);
  font-weight: 700;
}

.release-media-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: .9rem;
}

.release-media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .58rem .9rem;
  border: 1px solid rgba(22,36,56,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: var(--ink);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 650;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.release-media-link:hover {
  transform: translateY(-1px);
  border-color: rgba(169,136,79,.5);
  box-shadow: 0 8px 22px rgba(25,32,45,.08);
}

.release-media-link:focus-visible {
  outline: 3px solid rgba(169,136,79,.55);
  outline-offset: 3px;
}

.release-media-note {
  margin: .65rem auto 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero.release-opening-hero .hero-inner {
    width: 100%;
  }

  .release-opening-visual {
    /* iPhone: banner stays subordinate to the opening copy. */
    height: clamp(138px, 36vw, 174px);
    margin-bottom: .8rem;
    border-radius: .9rem;
    box-shadow: 0 8px 22px rgba(12,18,35,.09);
  }

  .release-opening-visual img {
    /* Keep the emblem, mountain, river and train; trim excess night sky. */
    object-position: center 70%;
  }

  .release-opening-context {
    font-size: .66rem;
  }

  .release-media-links {
    gap: .42rem;
  }

  .release-media-link {
    min-height: 40px;
    padding: .52rem .76rem;
    font-size: .75rem;
  }
}

@media (max-width: 390px) {
  .release-opening-visual {
    height: 136px;
  }
  .release-opening-context {
    gap: .3rem;
    padding-inline: .6rem;
    letter-spacing: .02em;
  }
}
