/* ============================================================
   HERO
   ============================================================ */

.hero {
  background-color: var(--navy-dark); /* fallback while image loads */
  background-image: var(--hero-bg-sm); /* mobile-first: small image */
  background-size: cover;
  background-position: center 38%; /* keep steeple + building in frame */
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* Dark gradient overlay: strong on the left (where text lives), fading right
   so the sun flare and scenery show through. A second layer darkens the very
   top edge so the eyebrow text is always readable. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,18,40,0.45) 0%, transparent 18%),
    linear-gradient(to right,  rgba(8,18,40,0.82) 0%, rgba(8,18,40,0.60) 45%, rgba(8,18,40,0.28) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 700px; }
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__times {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hero__time {
  border-left: 3px solid var(--gold);
  padding-left: 0.85rem;
}
.hero__time-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.15rem;
}
.hero__time-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
