/* ── PAGE HERO ── */
    .page-hero {
      position: relative;
      width: 100%;
      min-height: 480px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: url('images/hero-bg.jpg') center/cover no-repeat;
      filter: brightness(0.38);
      z-index: 0;
    }
    .page-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(71,87,1,0.78) 0%, rgba(165,198,21,0.18) 100%);
    }
    .page-hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 110px 24px 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .page-hero-left { display: flex; flex-direction: column; gap: 12px; }
    .page-hero-label {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--color-primary);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .page-hero-label::before {
      content: '';
      display: block;
      width: 30px;
      height: 2px;
      background: var(--color-primary);
      border-radius: 2px;
    }
    .page-hero-title {
      font-family: var(--font-heading);
      font-size: clamp(32px, 4.5vw, 50px);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin: 0;
    }
    .page-hero-subtitle {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      max-width: 460px;
      line-height: 1.7;
    }
    /* Breadcrumb card */
    .page-breadcrumb {
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 18px 28px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      white-space: nowrap;
    }
    .page-breadcrumb a {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      transition: color .3s;
    }
    .page-breadcrumb a:hover { color: var(--color-primary); }
    .bc-sep { color: var(--color-primary); font-size: 10px; display: flex; gap: 1px; }
    .page-breadcrumb .bc-current {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }
    /* bottom gold line */
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary) 0%, #e8f59a 50%, var(--color-primary) 100%);
      z-index: 2;
    }

/* ── PAGE HERO RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero {
    min-height: 560px;
  }
  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 20px 50px;
    gap: 24px;
  }
  .page-hero-subtitle {
    max-width: 100%;
  }
  .page-breadcrumb {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 620px;
  }
  .page-hero-inner {
    padding: 100px 16px 44px;
  }
}