/* ==============================================
   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;
}

/* 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;
}


/* Mountain range rising from the bottom (matches the home hero) */
.ch-ph-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  z-index: 1;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%271440%27%20height%3D%27440%27%20viewBox%3D%270%200%201440%20440%27%20preserveAspectRatio%3D%27none%27%3E%3Cpolygon%20points%3D%270%2C440%20180.0%2C110%20360.0%2C440%20540.0%2C110%20720.0%2C440%20900.0%2C110%201080.0%2C440%201260.0%2C110%201440.0%2C440%27%20fill%3D%27%23ffffff%27%20opacity%3D%271%27%2F%3E%3Cpolyline%20points%3D%270%2C440%20180.0%2C110%20360.0%2C440%20540.0%2C110%20720.0%2C440%20900.0%2C110%201080.0%2C440%201260.0%2C110%201440.0%2C440%27%20fill%3D%27none%27%20stroke%3D%27%23d4b06e%27%20stroke-width%3D%276%27%20opacity%3D%271%27%2F%3E%3C%2Fsvg%3E") bottom center / 100% 100% no-repeat;
}

/* 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;
}
