
/* Page Hero (shorter version for sub-pages) */
.page-hero {
  position: relative; padding: 70px 0 50px; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-section) 100%);
  z-index: 0;
}
.page-hero .hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
