/* =====================================================================
 *  program-hero.css — Living in Riverdale (2026-06-30)
 *  Full-bleed image hero for the 12 program pages, replacing the old
 *  property-detail gallery header. Rebuilds the supplied Relume layout
 *  (tagline + short heading + paragraph + two buttons over an image with a
 *  dark overlay) in the site's brand system. Token-only: no new fonts, no new
 *  colors (brand tokens + white text + a dark scrim). Renders visible by
 *  default (no scroll-reveal JS on program pages).
 * =================================================================== */
.pf-program-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(30rem, 62vh, 42rem);
}
.pf-program-hero-media { position: absolute; inset: 0; z-index: 0; }
.pf-program-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* left-weighted dark green-black scrim so white text is legible over any image */
.pf-program-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(9, 20, 15, 0.78) 0%,
    rgba(9, 20, 15, 0.60) 48%,
    rgba(9, 20, 15, 0.34) 100%);
}
/* Top padding clears the fixed navbar, which renders as a tall ~200px logo bar at
 * rest on every breakpoint, so the heading is never hidden under the logo. */
.pf-program-hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding-top: clamp(13rem, 16vw, 14rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.pf-program-hero-content { max-width: 40rem; }
.pf-program-hero-tag {
  color: #ffffff; letter-spacing: 0.03em; margin-bottom: 0.85rem;
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase; opacity: 0.92;
}
.pf-program-hero-title {
  color: #ffffff; margin: 0 0 1rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.01em;
}
.pf-program-hero-lead {
  color: rgba(255, 255, 255, 0.92); margin: 0 0 1.85rem; max-width: 44ch;
  font-family: var(--font-body); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.6;
}
.pf-program-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 767px) {
  .pf-program-hero { min-height: 24rem; }
  .pf-program-hero-cta .rt-button { flex: 1 1 auto; }
}
