/*    PF BASE      */

/*    GLOBAL TYPE DEFAULTS   */

body{
  font-size: 16px;
}

p,
ul,
ol{
  margin-top: 0;
}

p{
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 1em;
}

main a:not(.pf-btn){
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/*    SECTION RHYTHM   */

.pf-section{
  padding: 20px 0;
}

.pf-section--tight{
  padding: 18px 0;
}

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

.pf-section--soft2{
  background: #f8dfce;
}

.pf-section--none{
  background: #fff;
}

.pf-section--dark{
  background: #333333;
  color: #fff;
}

/* Shared section padding helper */
.pf-section-pad{
  padding: 72px 0;
}

/*    TYPOGRAPHY   */

.pf-h1{
  margin: 0 0 18px;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pf-h2{
  margin: 0 0 16px;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 700;
}

.pf-h3{
  margin: 0 0 12px;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 700;
}

.pf-h4{
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.pf-lead{
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1em;
}

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

.pf-text p,
.pf-text ul,
.pf-text ol{
  font-size: inherit;
  line-height: inherit;
}

.pf-text p:last-child,
.pf-text ul:last-child,
.pf-text ol:last-child{
  margin-bottom: 0;
}

.pf-eyebrow{
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/*    WIDTH / ALIGNMENT HELPERS   */

.pf-max-text{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.pf-max-text--wide{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pf-max-text--narrow{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

.pf-center .pf-lead,
.pf-center .pf-text,
.pf-center .pf-max-text,
.pf-center .pf-max-text--wide,
.pf-center .pf-max-text--narrow{
  margin-left: auto;
  margin-right: auto;
}

/*    STACK HELPERS   */

.pf-stack > * + *{
  margin-top: 18px;
}

.pf-stack--sm > * + *{
  margin-top: 12px;
}

.pf-stack--lg > * + *{
  margin-top: 28px;
}

/*    LIST DEFAULTS   */

.pf-list{
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.pf-list li + li{
  margin-top: 8px;
}

/* Shared card base */
.pf-card-base{
  background: var(--pf-soft, #f8f8f8);
  border-radius: var(--pf-radius-sm, 0.25rem);
  padding: 2rem;
}

/* Shared 2-col grid that collapses on mobile */
.pf-grid-2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Fade-up animation — used across landing, campaign, and seasonal pages */
.fade-up{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible{
  opacity: 1;
  transform: translateY(0);
}

/*    RESPONSIVE   */

@media (max-width: 1100px){
  .pf-section{
    padding: 20px 0;
  }

  .pf-section--tight{
    padding: 18px 0;
  }

  .pf-lead{
    font-size: 1.25rem;
  }

  .pf-max-text{
    max-width: 900px;
  }

  .pf-max-text--wide{
    max-width: 980px;
  }

  .pf-max-text--narrow{
    max-width: 760px;
  }
}

@media (max-width: 760px){
  .pf-section{
    padding: 16px 0;
  }

  .pf-section--tight{
    padding: 16px 0;
  }

  .pf-h1{
    font-size: clamp(18px, 9vw, 24px);
  }

  .pf-h2{
    font-size: clamp(16px, 7vw, 20px);
  }

  .pf-h3{
    font-size: 16px;
  }

  .pf-lead{
    font-size: 16px;
    line-height: 1.55;
  }

  .pf-text,
  p{
    font-size: 14px;
    line-height: 1.6;
  }

  .pf-max-text,
  .pf-max-text--wide,
  .pf-max-text--narrow{
    max-width: 100%;
  }

  .pf-grid-2col{
    grid-template-columns: 1fr;
  }
}
