/* ============================================================
   EMPOWERING PASTORS — Shared Stylesheet
   Design tokens: Parchment #F5F0E6 | Near-black #1B1916
   Gold #B8862F | Ember #8E3A2C | Slate #3C4A51
   Fonts: Fraunces (headlines) | Hanken Grotesk (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --parchment: #F5F0E6;
  --dark:      #1B1916;
  --gold:      #B8862F;
  --ember:     #8E3A2C;
  --slate:     #3C4A51;
  --ff-head:   'Fraunces', Georgia, serif;
  --ff-body:   Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--parchment);
  color: var(--dark);
  font-size: 19px;
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

.section-parchment { background: var(--parchment); }
.section-dark { background: var(--dark); color: #fff; }
.section-slate { background: var(--slate); color: #fff; }

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

h1 { font-family: var(--ff-head); font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; line-height: 1.08; }
h2 { font-family: var(--ff-head); font-size: clamp(30px, 3.8vw, 48px); font-weight: 600; line-height: 1.15; }
h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 600; line-height: 1.3; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ── NAV ────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  background: var(--gold);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 3px;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .88 !important; color: #fff !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-cta { border-radius: 0; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 56px 0 36px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand .nav-logo { font-size: 19px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.5); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }

.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── HOME — HERO ────────────────────────────────────────── */
.hero-home {
  background: var(--dark);
  color: #fff;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,134,47,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home .container { position: relative; z-index: 1; }
.hero-home h1 { max-width: 820px; margin-bottom: 28px; }
.hero-home p { max-width: 600px; font-size: 21px; color: rgba(255,255,255,.78); margin-bottom: 40px; }

/* ── HOME — PROCESS ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

.process-item {}
.process-num {
  font-family: var(--ff-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 12px;
}
.process-item h3 { font-size: 18px; margin-bottom: 8px; }
.process-item p { font-size: 17px; color: rgba(27,25,22,.7); }

/* ── HOME — COHORT ──────────────────────────────────────── */
.cohort-section { background: var(--dark); color: #fff; }
.cohort-section .eyebrow { color: var(--gold); }
.cohort-section h2 { color: #fff; max-width: 600px; margin-bottom: 20px; }
.cohort-section p { max-width: 680px; color: rgba(255,255,255,.78); font-size: 20px; margin-bottom: 44px; }

.stats-row {
  display: flex;
  gap: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: .5px;
}

/* ── PULL QUOTE ─────────────────────────────────────────── */
.pull-quote {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  color: rgba(255,255,255,.9);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.45;
}
.pull-quote cite {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band { background: var(--parchment); text-align: center; padding: 80px 0; }
.cta-band h2 { margin-bottom: 28px; }

/* ── ABOUT — HERO ───────────────────────────────────────── */
.hero-about {
  background: var(--dark);
  color: #fff;
  padding: 110px 0 90px;
}
.hero-about h1 { max-width: 680px; margin-bottom: 24px; }
.hero-about p { max-width: 560px; font-size: 18px; color: rgba(255,255,255,.78); }

/* ── ABOUT — STATS ──────────────────────────────────────── */
.about-stats {
  background: var(--parchment);
  padding: 80px 0;
}
.stats-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) { .stats-four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-four { grid-template-columns: 1fr; } }

.stat-box { text-align: center; padding: 32px 16px; border-top: 2px solid var(--gold); }
.stat-box .stat-num { font-size: 42px; color: var(--dark); }
.stat-box .stat-label { color: rgba(27,25,22,.6); }

/* ── ABOUT — BIO ────────────────────────────────────────── */
.bio-section { background: var(--parchment); padding: 0 0 90px; }
.bio-section h2 { margin-bottom: 28px; }
.bio-section p { font-size: 18px; line-height: 1.8; color: rgba(27,25,22,.85); }

/* ── ABOUT — CTA SLATE ──────────────────────────────────── */
.cta-slate { background: var(--slate); color: #fff; text-align: center; padding: 80px 0; }
.cta-slate .eyebrow { color: var(--gold); }
.cta-slate h2 { color: #fff; margin-bottom: 28px; }

/* ── PARTNERS ───────────────────────────────────────────── */
.hero-partners {
  background: var(--dark);
  color: #fff;
  padding: 110px 0 90px;
}
.hero-partners h1 { max-width: 680px; margin-bottom: 24px; }
.hero-partners p { max-width: 560px; font-size: 18px; color: rgba(255,255,255,.78); }

.mission-section { background: var(--parchment); }
.mission-section h2 { margin-bottom: 24px; }
.mission-section p { font-size: 20px; line-height: 1.8; max-width: 820px; }

.perks-section { background: var(--parchment); padding-top: 0; }
.perks-section h2 { margin-bottom: 24px; }
.perks-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: rgba(27,25,22,.85);
}
.perks-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.perks-list li::after {
  display: none;
}
/* Use a check icon via pseudo */
.perks-list li .check {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 2px;
}
.perks-list li .check svg { width: 11px; height: 11px; }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  margin-bottom: 44px;
}
@media (max-width: 860px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tiers-grid { grid-template-columns: 1fr; } }

.tier-card {
  border: 1px solid rgba(27,25,22,.12);
  border-radius: 6px;
  padding: 28px 22px;
  position: relative;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.tier-card:hover { box-shadow: 0 8px 32px rgba(27,25,22,.1); transform: translateY(-3px); }
.tier-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }

.tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price span { font-size: 15px; font-weight: 400; color: rgba(27,25,22,.5); }
.tier-desc {
  font-size: 14px;
  color: rgba(27,25,22,.65);
  line-height: 1.5;
  margin-top: 12px;
}

/* ── SUBSCRIBE ──────────────────────────────────────────── */
.hero-subscribe {
  background: var(--dark);
  color: #fff;
  padding: 110px 0 90px;
}
.hero-subscribe h1 { max-width: 680px; margin-bottom: 24px; }
.hero-subscribe p { max-width: 560px; font-size: 18px; color: rgba(255,255,255,.78); margin-bottom: 36px; }

.subscribe-features { background: var(--parchment); }
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 640px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.feature-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
.feature-item h4 { font-family: var(--ff-head); font-size: 17px; margin-bottom: 4px; }
.feature-item p { font-size: 15px; color: rgba(27,25,22,.65); margin: 0; }

.subscribe-form-section { background: var(--parchment); padding-top: 0; }
.brevo-wrap {
  max-width: 620px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,25,22,.08);
  margin-top: 32px;
}
.brevo-wrap iframe { display: block; width: 100%; border: none; }

/* ── NEWSLETTER POPUP ────────────────────────────────────── */
/* (injected via JS — see popup-init in each HTML file) */
