/* ═══════════════════════════════════════════════════════════════
   21 · PAGE HERO  (used on inner pages — About, Contact, FAQ, etc.)
   Shorter than the home hero · breadcrumb · cinematic
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  height: 460px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-900);
}
.page-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,27,46,0.5), rgba(14,27,46,0.85)),
    linear-gradient(90deg, rgba(14,27,46,0.6), transparent);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(760px + var(--container-pad) * 2);
  padding-inline: var(--container-pad);
  box-sizing: border-box;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }
.breadcrumb__current { color: var(--gold-400); }

.page-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #fff;
}
.page-hero__title em { font-style: italic; color: var(--gold-400); font-weight: 300; }

.page-hero__desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
}
