/* ================================================================
   Panacea — Inner Page Hero
   Matches the shop-locations (.sl-hero) design.
   ================================================================ */

.ph-section {
  background:
    linear-gradient(rgba(1, 61, 29, 0.72), rgba(1, 61, 29, 0.72)),
    url('../img/retail-12.jpg') center / cover no-repeat,
    #013d1d;
  color: #fff;
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Radial green accent glows */
.ph-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 60%, rgba(59, 183, 126, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(2, 166, 80, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

/* Curved bottom edge — matches sl-hero::after */
.ph-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: #ffffff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.ph-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #3bb77e;
  margin: 0 0 18px;
}
.ph-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #3bb77e;
  flex-shrink: 0;
}

/* Heading */
.ph-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 18px;
}
.ph-title em {
  font-style: italic;
  color: #3bb77e;
}

/* Subtitle */
.ph-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ph-section { padding: 140px 0 60px; }
  .ph-inner   { padding: 0 28px; }
}
@media (max-width: 680px) {
  .ph-section { padding: 120px 0 52px; }
  .ph-inner   { padding: 0 20px; }
  .ph-sub     { font-size: 14.5px; }
}
