/* =============================================
   PLAN OF SALVATION — plan-of-salvation.css
   ============================================= */

.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-active-cta {
  outline: 2px solid var(--white);
}

/* PAGE HERO */
.page-hero {
  background: var(--navy-deep);
  padding: 160px 40px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-eyebrow-sm {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.page-hero-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.6);
}

/* SHARED CONTAINER */
.pos-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

/* INTRO */
.pos-intro {
  background: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid #eee;
}
.pos-intro-inner { text-align: center; }
.pos-intro-heading {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.2;
}
.pos-intro-text {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
  text-align: left;
}
.pos-intro-pull {
  font-family: var(--font-body);
  font-size: 24px;
  font-style: italic;
  color: var(--navy);
  margin-top: 40px;
  padding: 32px 40px;
  border-left: 4px solid var(--navy);
  background: var(--off-white);
  text-align: left;
  line-height: 1.6;
}

/* STEPS SECTION */
.pos-steps-section {
  background: var(--navy);
  padding: 100px 0;
}
.pos-steps-header {
  text-align: center;
  margin-bottom: 72px;
}
.pos-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.pos-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.pos-step-number {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  text-align: center;
  padding-top: 4px;
  flex-shrink: 0;
}
.pos-step-heading {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.pos-step-text {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.pos-verse {
  margin: 24px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--silver);
  background: rgba(255,255,255,0.05);
  border-radius: 0 4px 4px 0;
}
.pos-verse p {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 10px;
}
.pos-verse cite {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  font-style: normal;
}

/* CLOSING CTA */
.pos-cta-section {
  background: var(--navy);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pos-cta-inner { text-align: center; }
.pos-cta-heading {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pos-cta-text {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* RESPONSIVE */
@media (max-width: 680px) {
  .pos-container { padding: 0 24px; }
  .pos-step { grid-template-columns: 1fr; gap: 12px; }
  .pos-step-number { font-size: 40px; text-align: left; }
  .page-hero { padding: 140px 24px 64px; }
  .pos-intro-pull { padding: 24px; }
}
