/*    PF COMPONENTS      */

/*  PAGE HEADER (NO IMAGE)  */

.pf-page-header {
  padding: 48px 0 32px;
}

.pf-page-header__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.pf-page-header .pf-lead {
  max-width: 920px;
}

/* Modifiers */

.pf-page-header--center {
  text-align: center;
}

.pf-page-header--center .pf-page-header__inner {
  max-width: 920px;
  margin: 0 auto;
}

.pf-page-header--center .pf-lead {
  margin-left: auto;
  margin-right: auto;
}

.pf-page-header--dark {
  background-color: #333333;
  color: #ffffff;
  padding: 72px 0 56px;
}

.pf-page-header--dark .pf-h1,
.pf-page-header--dark .pf-lead,
.pf-page-header--dark .pf-kicker,
.pf-page-header--dark .pf-text {
  color: #ffffff;
}


/*    IMAGE HERO  */

.pf-image-hero {
  position: relative;
  min-height: clamp(45rem, 92vh, 53.75rem);
  background-image: var(--pf-hero-img);
  background-size: cover;
  background-position: 80% 60%;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
  background-color: #333;
}

/* Default overlay/protects the LEFT side (text on left) */
.pf-image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Flipped overlay/protects the RIGHT side (text on right) */
.pf-image-hero--text-right::before {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.10) 35%,
    rgba(0,0,0,0.50) 62%,
    rgba(0,0,0,0.72) 100%
  );
}

.pf-image-hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 6.875rem 0;
}

.pf-image-hero__content {
  color: #fff;
  max-width: 31.25rem;
}

.pf-image-hero__content--left,
.pf-image-hero__content--right {
  width: 40%;
  max-width: 36.5rem;
}

.pf-image-hero__content--left  { margin-right: auto; }
.pf-image-hero__content--right { margin-left: auto; text-align: left; }

/* Typography */
.pf-image-hero .pf-h1,
.pf-image-hero .pf-h2,
.pf-image-hero .pf-hero__title {
  margin: 0 0 1.125rem;
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.28);
}

.pf-image-hero .pf-lead,
.pf-image-hero .pf-hero__lead {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.28);
}

/* Boosted text shadow when text sits on a busy/light background */
.pf-image-hero--text-right .pf-hero__title,
.pf-image-hero--text-right .pf-hero__lead,
.pf-image-hero--text-right .pf-eyebrow {
  text-shadow: 0 0 40px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.6);
}

.pf-image-hero .pf-eyebrow {
  color: rgba(255,255,255,0.82);
}

/* Ghost button */
.pf-image-hero .pf-btn--ghost {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.pf-image-hero .pf-btn--ghost:hover,
.pf-image-hero .pf-btn--ghost:focus {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

/* Dark text modifier */
.pf-image-hero--darktext .pf-image-hero__content,
.pf-image-hero--darktext .pf-hero__content { color: #222; }

.pf-image-hero--darktext .pf-h1,
.pf-image-hero--darktext .pf-h2,
.pf-image-hero--darktext .pf-hero__title {
  color: #222 !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext .pf-lead,
.pf-image-hero--darktext .pf-hero__lead {
  color: #2f2f2f !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext .pf-eyebrow {
  color: #444 !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext::before {
  background: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .pf-image-hero__inner {
    min-height: 560px;
    padding: 72px 0;
  }
  .pf-image-hero .pf-h1,
  .pf-image-hero .pf-h2,
  .pf-image-hero .pf-hero__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 760px) {
  .pf-image-hero::before,
  .pf-image-hero--text-right::before {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.00) 90%
    ) !important;
  }
  .pf-image-hero__inner {
    min-height: 460px;
    padding: 56px 0;
  }
  .pf-image-hero .pf-h1,
  .pf-image-hero .pf-h2,
  .pf-image-hero .pf-hero__title {
    font-size: 1.875rem;
    line-height: 1.1;
  }
  .pf-image-hero .pf-lead,
  .pf-image-hero .pf-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
  }
  .pf-image-hero__content--left,
  .pf-image-hero__content--right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/*  CORE BELIEF 	 */
.pf-core-belief {
  border-top: 3px solid var(--pf-red);
  border-bottom: 3px solid var(--pf-red);
  background: none;
  padding: 56px 0;
  margin: 0;
  max-width: none;
}

.pf-core-belief__none {
  background: none;
  padding: 56px 0;
  margin: 0;
  max-width: none;	
}

.pf-core-belief__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.pf-core-belief__heading {
  position: sticky;
  top: 32px; 
}

.pf-core-belief__heading .pf-h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  margin: 0;
}

.pf-core-belief__body p {
  margin: 0 0 20px;
  line-height: 1.65;
}

.pf-core-belief__body p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .pf-core-belief {
    padding: 40px 0;
  }
  .pf-core-belief__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pf-core-belief__heading {
    position: static;
  }
}
/*  IMAGE TABS 	 */

.pf-image-tabs__stage {
  position: relative;
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.pf-image-tabs__img {
  width: 100%;
  height: clamp(420px, 58vh, 660px);
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.pf-image-tabs__tabs {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.pf-image-tabs__tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(248,244,240,0.68);
  color: rgba(17,17,17,0.78);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.pf-image-tabs__tab:hover,
.pf-image-tabs__tab:focus {
  background: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.82);
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.pf-image-tabs__tab.is-active {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.pf-image-tabs__overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 600px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.16);
  z-index: 2;
}

.pf-image-tabs__overlay-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.pf-image-tabs__overlay-desc {
  margin: 0 0 14px;
  color: rgba(0,0,0,0.72);
}

.pf-image-tabs__overlay-link {
  display: inline-block;
  font-weight: 800;
  color: #bb1654;
  text-decoration: none;
  border-bottom: 2px solid rgba(187,22,84,.35);
  padding-bottom: 2px;
}

.pf-image-tabs__overlay-link:hover,
.pf-image-tabs__overlay-link:focus {
  color: #941246;
  border-bottom-color: #bb1654;
}

.pf-image-tabs__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.10) 35%,
    rgba(0,0,0,0) 60%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 760px) {
  .pf-image-tabs__tabs {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
    justify-content: flex-start;
  }
  .pf-image-tabs__tab {
    padding: 9px 12px;
    font-size: 12px;
  }
  .pf-image-tabs__overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/*    SHARED SPLIT SYSTEM   */

.pf-split .pf-split__grid{
  display: grid;
  gap: 40px;
  align-items: center;
}

.pf-split .pf-split__media{
  min-width: 0;
  position: relative;
}

.pf-split .pf-split__media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-split .pf-split__content{
  min-width: 0;
}

.pf-split .pf-split__content-inner{
  min-width: 0;
}

/* STORY SPLIT */
.pf-split--story .pf-split__grid{
  grid-template-columns: 1.05fr 0.95fr;
}

.pf-split--story .pf-split__media img{
  border-radius: 18px;
  min-height: 420px;
}

.pf-split--story .pf-split__content-inner{
  max-width: 560px;
}

/* EMPHASIS SPLIT */
.pf-split--emphasis .pf-split__grid{
  grid-template-columns: 1.22fr 0.78fr;
  gap: 36px;
}

.pf-split--emphasis .pf-split__media::after{
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  z-index: -1;
}

.pf-split--emphasis .pf-split__media img{
  border-radius: 12px;
  min-height: 420px;
  object-position: center 35%;
}

.pf-split--emphasis .pf-split__content-inner{
  max-width: 460px;
  padding-left: 18px;
  border-left: 4px solid var(--pf-red);
}

/* ACTION SPLIT */
.pf-split--action .pf-split__grid{
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
}

.pf-split--action .pf-split__media img{
  border-radius: 18px;
  min-height: 360px;
}

.pf-split--action .pf-split__content-inner{
  max-width: 520px;
}

/* Responsive */
@media (max-width: 991px){
  .pf-split .pf-split__grid,
  .pf-split--story .pf-split__grid,
  .pf-split--emphasis .pf-split__grid,
  .pf-split--action .pf-split__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pf-split--story .pf-split__media img,
  .pf-split--emphasis .pf-split__media img,
  .pf-split--action .pf-split__media img{
    min-height: 300px;
  }

  .pf-split--emphasis .pf-split__content-inner{
    max-width: none;
    padding-left: 0;
    border-left: 0;
    padding-top: 18px;
    border-top: 4px solid var(--pf-red);
  }

  .pf-split--story .pf-split__content-inner,
  .pf-split--action .pf-split__content-inner{
    max-width: none;
  }

  .pf-split--emphasis .pf-split__media::after{
    inset: -10px;
  }
}

@media (max-width: 767px){
  .pf-split .pf-split__grid{
    gap: 20px;
  }

  .pf-split--story .pf-split__media img,
  .pf-split--emphasis .pf-split__media img,
  .pf-split--action .pf-split__media img{
    min-height: 240px;
  }
}
/* 	ECOSYSTEM BAND 		*/

.pf-ecosystem--banded {
  background: #f6f6f6;
}

.pf-ecosystem-topband {
  background: #333333;
}

.pf-ecosystem-topsplit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: #333333;
}

.pf-ecosystem-topsplit__media {
  min-height: 100%;
}

.pf-ecosystem-topsplit__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.pf-ecosystem-topsplit__content {
  display: flex;
  align-items: center;
  background: #333333;
  color: #fff;
  padding: 48px 56px;
  min-width: 0;
}

.pf-ecosystem-topsplit__content-inner {
  max-width: 640px;
  min-width: 0;
}

.pf-ecosystem-topsplit__content-inner .pf-h2 {
  margin: 0 0 16px;
  color: #fff;
}

.pf-ecosystem-topsplit__content-inner .pf-text {
  margin: 0;
  max-width: 58ch;
  color: rgba(255,255,255,0.9);
}

.pf-ecosystem-bottomband {
  padding: 40px 0;
  background: #f6f6f6;
}

.pf-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
}

.pf-eco-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.pf-eco-item > div {
  min-width: 0;
}

.pf-eco-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(187,22,84,0.08);
  color: var(--pf-red);
  flex-shrink: 0;
}

.pf-eco-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-eco-item h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--pf-dark);
}

.pf-eco-item p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(0,0,0,0.76);
}

@media (max-width: 1100px) {
  .pf-ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }
}

@media (max-width: 900px) {
  .pf-ecosystem-topsplit {
    grid-template-columns: 1fr;
  }
  .pf-ecosystem-topsplit__media img {
    min-height: 300px;
  }
  .pf-ecosystem-topsplit__content {
    padding: 32px 24px;
  }
  .pf-ecosystem-topsplit__content-inner {
    max-width: none;
  }
  .pf-ecosystem-topsplit__content-inner .pf-text {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .pf-ecosystem-bottomband {
    padding: 36px 0;
  }
  .pf-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pf-eco-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .pf-eco-icon {
    width: 40px;
    height: 40px;
  }
  .pf-eco-icon svg {
    width: 20px;
    height: 20px;
  }
  .pf-eco-item h3 {
    font-size: 1.125rem;
  }
}


/*  PROGRAM CARDS  */

.pf-program-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.pf-program-card {
  display: flex;
  flex-direction: column;
}

.pf-program-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 14px;
}

.pf-program-card__title {
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
}

.pf-program-card__text {
  font-size: 1rem;
  line-height: 1.65;
}

.pf-program-card__link {
  margin-top: 12px;
}


/*  GENERIC CARD  */

.pf-card {
  padding: 24px;
  background: #fff;
}

.pf-card__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pf-card__text {
  font-size: 1rem;
  line-height: 1.65;
}


/*  SPLIT LAYOUT (.pf-split1)  */

.pf-split1__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pf-split1__img img {
  width: 100%;
  height: auto;
}


/*  SPLIT SECTION (.pf-split-section)  */

.pf-split-section {
  display: grid;
  align-items: start;
  min-width: 0;
}

.pf-split-section--even          { grid-template-columns: 1fr 1fr; }
.pf-split-section--media-heavy   { grid-template-columns: 60% 40%; }
.pf-split-section--media-heavy-2 { grid-template-columns: 70% 30%; }
.pf-split-section--content-heavy { grid-template-columns: 40% 60%; }
.pf-split-section--content-heavy-2 { grid-template-columns: 30% 70%; }

.pf-split-section__content {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding: 56px 64px 56px 48px;
}

.pf-split-section__content-inner {
  max-width: 520px;
  min-width: 0;
}

.pf-split-section__content-inner .pf-h2 {
  margin: 0 0 16px;
}

.pf-split-section__content-inner p {
  margin: 0 0 22px;
}

.pf-split-section__content-inner p:last-child {
  margin-bottom: 0;
}

.pf-split-section__media {
  min-width: 0;
}

.pf-split-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Dark content panel */
.pf-split-section__content--dark {
  background: #333333;
  color: #fff;
}

.pf-split-section__content--dark .pf-h2    { color: #fff; }
.pf-split-section__content--dark .pf-eyebrow { color: rgba(255,255,255,0.78); }
.pf-split-section__content--dark p          { color: rgba(255,255,255,0.9); }

/* Dark section variant */
.pf-split-section--dark {
  background: #333333;
  color: #fff;
}

.pf-split-section--dark .pf-split-section__content { background: #333333; color: #fff; }
.pf-split-section--dark .pf-h2                     { color: #fff; }
.pf-split-section--dark .pf-text,
.pf-split-section--dark .pf-lead,
.pf-split-section--dark p                          { color: rgba(255,255,255,0.9); }

@media (max-width: 900px) {
  .pf-split-section {
    grid-template-columns: 1fr !important;
  }
  .pf-split-section__content {
    padding: 32px 24px;
  }
}


/*  SECTION INTRO  */

.pf-section-intro {
  text-align: center;
  margin-bottom: 28px;
}

.pf-section-intro > .pf-max-text,
.pf-section-intro > .pf-max-text--wide,
.pf-section-intro > .pf-max-text--narrow {
  margin-left: auto;
  margin-right: auto;
}

.pf-section-intro .pf-lead {
  margin-left: auto;
  margin-right: auto;
}


/*  BUTTONS  */

.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.pf-btn:hover         { text-decoration: none; }
.pf-btn:focus         { outline: none; }
.pf-btn:focus-visible { outline: 2px solid rgba(0,0,0,0.2); outline-offset: 2px; }

.pf-btn--primary {
  background: var(--pf-red);
  border-color: var(--pf-red);
  color: #fff;
}
.pf-btn--primary:hover,
.pf-btn--primary:focus {
  background: #a31545;
  border-color: #a31545;
  color: #fff;
}

.pf-btn--ghost {
  background: transparent;
  border-color: var(--pf-red);
  color: var(--pf-red);
}
.pf-btn--ghost:hover,
.pf-btn--ghost:focus {
  background: rgba(187,22,84,0.06);
  border-color: var(--pf-red);
  color: var(--pf-red);
}

.pf-btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--pf-red);
}
.pf-btn--light:hover,
.pf-btn--light:focus {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
  color: var(--pf-red);
}

/* Buttons on image */
.pf-btn--on-image {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.65);
  color: #111111;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}
.pf-btn--on-image:hover,
.pf-btn--on-image:focus {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.9);
  color: #000;
  transform: translateY(-1px);
}

.pf-btn--on-image-strong {
  background: rgba(255,255,255,0.96);
  border-color: #ffffff;
  color: #000;
}


/*  TEXT CTA 	 */

.pf-text-cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--pf-orange);
  padding-bottom: 2px;
  color: inherit;
}

.pf-text-cta:hover { text-decoration: none; }


/* 	 CARD CTA LINKS 	 */

.pf-wit-story__cta {
  color: var(--pf-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(197,23,86,0.35);
  padding-bottom: 2px;
  transition: all .18s ease;
}

.pf-wit-story__cta:hover,
.pf-wit-story__cta:focus {
  color: #a31247;
  border-bottom-color: currentColor;
}


/* 	 STATUS / NOTICE CARD 		 */


.pf-status {
  padding: 6px 0;
}

.pf-status-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #f7f7f7;
  border-left: 6px solid var(--pf-red);
  border-radius: 18px;
}

.pf-status-card h2 {
  margin-bottom: 12px;
}

.pf-status-card p:last-child {
  margin-bottom: 0;
}


/* 	 BAND / CALLOUT 	 */

.pf-band       { padding: 36px; }
.pf-band--dark { background: #333; color: #fff; }


/* 	 STORY BLOCK 		 */

.pf-story-block {
  padding: 56px 0;
  background: #333333;
}

.pf-story-block__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 32px;
  align-items: center;
}

.pf-story-block__content                   { color: #fff; padding: 0; }
.pf-story-block__content .pf-eyebrow       { color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.pf-story-block__content .pf-h2            { color: #fff; margin: 0 0 16px; }
.pf-story-block__content p                 { color: rgba(255,255,255,0.9); margin: 0 0 22px; line-height: 1.65; }
.pf-story-block__content p:last-child      { margin-bottom: 0; }

.pf-story-block__media        { margin: 0; }
.pf-story-block__media img    {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .pf-story-block__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pf-story-block__media img {
    max-height: none;
  }
}


/*  IMPACT BLOCK 	 */

.pf-impact-grid-shared {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.pf-impact-grid-shared .pf-impact__item {
  font-size: 1rem;
  line-height: 1.65;
}


/*  ACTION / CTA BAND  */

.pf-action {
  padding: 56px 0;
}

.pf-action .pf-container {
  text-align: center;
}

.pf-action__intro {
  max-width: 900px;
  margin: 0 auto 34px;
}

.pf-action__paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.pf-action__path {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 220px;
  padding: 18px 30px 14px;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.pf-action__path:hover {
  transform: translateY(-2px);
}

/* Divider between paths */
.pf-action__path:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,255,255,0.28);
}

.pf-action__path h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
}

.pf-action__path p {
  margin: 0 0 18px;
  max-width: 24ch;
  line-height: 1.55;
}

.pf-action__path span {
  margin-top: auto;
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
}

/* Action variants */
.pf-action--red  { background: var(--pf-red); color: #fff; }
.pf-action--dark { background: #333333;        color: #fff; }

/* Typography on dark/red surfaces — use targeted selectors, not wildcard */
.pf-action--red  h2, .pf-action--red  h3, .pf-action--red  span,
.pf-action--dark h2, .pf-action--dark h3, .pf-action--dark span { color: #fff; }

.pf-action--red  p,
.pf-action--dark p { color: rgba(255,255,255,0.9); }

.pf-action--red  a,
.pf-action--dark a { color: #fff; text-decoration: none; }

.pf-action--red  a:hover,
.pf-action--dark a:hover { text-decoration: underline; }

/* Light variant */
.pf-action--light { background: #f6f6f6; color: var(--pf-dark); }
.pf-action--light .pf-action__path {
  background: #fff;
  border: 1px solid #e5e5e5;
}
.pf-action--light .pf-action__path:hover { background: #fafafa; }

@media (max-width: 1100px) {
  .pf-action__paths {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pf-action__path {
    min-height: 0;
    padding: 8px 0;
  }
  .pf-action__path:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .pf-action          { padding: 42px 0; }
  .pf-action__intro   { margin-bottom: 26px; }
  .pf-action__path h3 { font-size: 1.25rem; }
}


/*  3-STEP PROCESS 	 */

.pf-ff-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
}

.pf-ff-step {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 28px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.pf-ff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(187,22,84,0.08);
  color: var(--pf-red);
}

.pf-ff-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-ff-title {
  margin: 0 0 12px;
  font-size: 1.625rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--pf-dark);
}

.pf-ff-text {
  margin: 0;
  line-height: 1.65;
  color: rgba(0,0,0,0.76);
}

@media (max-width: 1100px) {
  .pf-ff-model {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pf-ff-step {
    padding: 26px 24px 24px;
  }
}

@media (max-width: 760px) {
  .pf-ff-model   { margin-top: 24px; }
  .pf-ff-title   { font-size: 1.375rem; }
  .pf-ff-icon    { width: 50px; height: 50px; margin-bottom: 16px; }
  .pf-ff-icon svg { width: 22px; height: 22px; }
}


/*  PROOF / OUTCOME SECTION 	 */

.pf-proof-section { background: #f6f6f6; }

.pf-proof {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.pf-proof .pf-eyebrow    { margin-bottom: 14px; color: var(--pf-red); }

.pf-proof__hero {
  margin: 0 0 10px;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pf-red);
}

.pf-proof__headline {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--pf-dark);
}

.pf-proof__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
}

.pf-proof__supporting {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
}

.pf-proof__item {
  position: relative;
  padding: 18px 22px 6px;
  text-align: center;
}

.pf-proof__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 8px;
  width: 1px;
  background: rgba(0,0,0,0.10);
}

.pf-proof__item strong {
  display: block;
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--pf-dark);
}

.pf-proof__item span {
  display: block;
  max-width: 18ch;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(0,0,0,0.76);
}

@media (max-width: 1100px) {
  .pf-proof              { margin-bottom: 30px; }
  .pf-proof__supporting  { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
  .pf-proof__item:nth-child(odd)::before { display: none; }
}

@media (max-width: 760px) {
  .pf-proof              { margin-bottom: 24px; }
  .pf-proof__text        { font-size: 1rem; line-height: 1.6; }
  .pf-proof__supporting  { grid-template-columns: 1fr; gap: 18px; }
  .pf-proof__item        { padding: 0; }
  .pf-proof__item::before { display: none; }
  .pf-proof__item strong  { font-size: 2rem; }
  .pf-proof__item span    { max-width: 22ch; }
}


/* 	 STATS SECTION 		 */

.pf-stats         { background: #f6f6f6; }

.pf-stats__intro {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.pf-stats__intro .pf-h2   { margin: 0 0 14px; }
.pf-stats__intro .pf-text {
  margin: 0 auto;
  max-width: 760px;
}

.pf-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pf-stat {
  padding: 26px 20px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  text-align: center;
}

.pf-stat__number {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--pf-dark);
}

.pf-stat__label {
  margin: 0;
  line-height: 1.45;
  color: rgba(0,0,0,0.76);
}

.pf-stat--highlight {
  background: rgba(187,22,84,0.08);
  border: 1px solid rgba(187,22,84,0.16);
}

.pf-stat--highlight .pf-stat__number { color: var(--pf-red); }

@media (max-width: 1200px) { .pf-stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .pf-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

@media (max-width: 760px) {
  .pf-stats__intro  { margin-bottom: 26px; }
  .pf-stats__grid   { grid-template-columns: 1fr; gap: 18px; }
  .pf-stat          { padding: 22px 18px 20px; }
  .pf-stat__number  { font-size: 2.25rem; }
}


/* 	 FOOTER BOTTOM 		 */

.pf-site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.pf-footer-copy,
.pf-footer-privacy {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.pf-footer-copy    { color: rgba(255,255,255,0.82); }
.pf-footer-privacy { color: #fff; text-decoration: none; white-space: nowrap; }
.pf-footer-privacy:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .pf-site-footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* Final CTA */
.pf-final-cta{
  position: relative;
  width: 100%;
  min-height: 720px;
  background-image: url('../img/community/phoenix-family-family-support-cta.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 24px 80px;
}

.pf-final-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.10) 22%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.22) 100%
  );
  pointer-events: none;
}

.pf-final-cta__content{
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  margin-right: 40px;
}

.pf-final-cta__title{
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pf-final-cta__text{
  margin: 0 auto 28px;
  max-width: 28ch;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
}

.pf-final-cta__button{
  display: inline-block;
  padding: 14px 32px;
  background: #bb1654;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  border-radius: 0;
  transition: background .18s ease;
}

.pf-final-cta__button:hover{
  background: #333333;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px){
  .pf-final-cta{
    min-height: 620px;
    padding: 72px 20px 64px;
    background-position: 62% center;
  }
}

@media (max-width: 767px){
  .pf-final-cta{
    min-height: 520px;
    padding: 56px 16px 48px;
    background-position: 68% center;
  }

  .pf-final-cta__text{
    max-width: 22ch;
  }

  .pf-final-cta__button{
    padding: 13px 26px;
    font-size: 14px;
  }
}

/* 	 RESPONSIVE (shared) 	 */

@media (max-width: 900px) {
  .pf-program-grid  { grid-template-columns: 1fr 1fr; }
  .pf-split1__grid  { grid-template-columns: 1fr; }       /* FIXED: was .pf-split__grid */
}

@media (max-width: 600px) {
  .pf-program-grid  { grid-template-columns: 1fr; }
}
