/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a1a0f 0%,
    #0d2414 40%,
    #14361e 80%,
    #1a4a28 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 36px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.squarespace-cdn.com/content/v1/68f3622e619c810aa4ead18e/be8053ab-13c2-4d14-a4e5-082766f5115f/IMG_20251204_171914.jpg")
    center/cover no-repeat;
  opacity: 0.35;
}
.page-hero-eyebrow {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow span::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-hero-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.page-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 26, 15, 0.55);
  backdrop-filter: blur(4px);
  padding: 10px 5%;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.page-breadcrumb a:hover {
  color: var(--gold);
}
.page-breadcrumb .sep {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 0 24px 28px;
    height: 240px;
  }
  .page-breadcrumb {
    padding: 10px 24px;
  }
}
