/* ============================================================
   HERO.CSS — Hero Section
   Retaining Wall Guys

   Full-bleed photo hero: a real project photo fills the section, a dark
   gradient sits over it for text legibility, and the headline/CTA sit on
   top. Until a photo is tagged in the dashboard (Settings > Gallery,
   category "Homepage — Hero background photo"), .hero__bg stays empty
   and the section just shows as a solid dark surface — never a
   placeholder image.
============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 48px 96px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--slate-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.03;
  color: var(--offwhite);
  margin-bottom: 18px;
}
.hero__headline em { font-style: normal; }

.hero__sub {
  font-size: 1.08rem;
  color: var(--base-rock);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    min-height: 640px;
    padding: 132px 20px 56px;
  }
}
