/* ==============================================
   Page Hero Banner  —  .ch-ph-*
   ============================================== */

.ch-ph-main {
  position: relative;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 2px solid #b9975b;
}

/* Snow canvas (behind overlay) */
.ch-ph-snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Darkening overlay (always present; stronger on left for readability) */
.ch-ph-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 17, 42, 0.98) 0%,
    rgba(0, 17, 42, 0.82) 55%,
    rgba(0, 17, 42, 0.60) 100%
  );
  z-index: 2;
}


/* Inner content */
.ch-ph-inner {
  position: relative;
  z-index: 3;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
}

/* Breadcrumb */
.ch-ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.ch-ph-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.ch-ph-breadcrumb a:hover {
  opacity: 1;
}

.ch-ph-breadcrumb .sep {
  color: var(--text-muted);
  opacity: 0.25;
  font-size: 13px;
}

.ch-ph-breadcrumb .current {
  color: rgba(200, 191, 168, 0.4);
}

/* Title */
.ch-ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
}

.ch-ph-title em {
  font-style: normal;
  color: var(--gold);
}

/* Subtitle */
.ch-ph-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.9rem;
}
