/**
 * Section Hero block — full-bleed image with a dimmed overlay and cream
 * (secondary) text. Square, flat; matches the v2.0.2 brand. Self-contained.
 * Tokens: primary #1B1612, cream #FFFEF4.
 */
.jixaw-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fffef4;
}
.jixaw-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jixaw-hero__overlay {
  position: absolute;
  inset: 0;
}
.jixaw-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem clamp(20px, 5vw, 62px);
  /* Title + subtitle centered in the photo (client request, applies to all pages). */
  text-align: center;
}
/* Cream text on the dark overlay (overrides the theme's primary heading color). */
.jixaw-hero__eyebrow {
  color: #fffef4;
  margin: 0 0 0.5rem;
}
.jixaw-hero__title {
  color: #fffef4;
  margin: 0;
}
.jixaw-hero__subtitle {
  color: #fffef4;
  /* auto inline margins so the width-capped subtitle centers under the title */
  margin: 0.75rem auto 0;
  max-width: 40rem;
}
