/* ── Page Hero (inner pages) ── */

.page-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 35vw, 440px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Background image */
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a6b8a;
}

/* Blue gradient overlay */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 94, 145, 0.3), #05365b);
  opacity: 0.85;
}

/* Top dark gradient for nav readability */
.page-hero__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
}

/* Content */
.page-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 5rem 1.5rem 2rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

@media (max-width: 768px) {
  .page-hero {
    height: clamp(260px, 50vw, 340px);
  }

  .page-hero__content {
    padding: 4.5rem 1.25rem 1.5rem;
  }
}
