
/* ============================================================
   LIFT THE LEADER — The Preacher, Inc.
   Brand Color System v2 — Digital Ministry Palette
   ============================================================ */

:root {
  --covenant-navy:   #1A4B8C;
  --shepherd-blue:   #C8DFF0;
  --circuit-spark:   #00AAFF;
  --bible-black:     #0D1B2E;
  --cross-white:     #FFFFFF;
  --revelation-cyan: #7FDFFF;
  --text-dark:       #0D1B2E;
  --text-mid:        #4A6080;
  --text-light:      #C8DFF0;
  --surface-light:   #F0F6FC;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cross-white);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--circuit-spark);
  margin-bottom: 1rem;
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 48px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--covenant-navy);
  box-shadow: 0 4px 24px rgba(13,27,46,0.3);
}
.navbar__inner {
  width: 100%; max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cross-white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.navbar__logo span { color: var(--circuit-spark); }
.navbar__links {
  display: flex; gap: 36px; list-style: none;
}
.navbar__links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--circuit-spark);
  transition: width 0.25s;
}
.navbar__links a:hover { color: #fff; }
.navbar__links a:hover::after { width: 100%; }
.navbar__cta {
  background: var(--circuit-spark); color: var(--bible-black) !important;
  padding: 10px 24px; border-radius: 4px; font-weight: 700 !important;
  font-size: 0.8rem !important; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--revelation-cyan) !important; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background: var(--bible-black);
}
.hero__image {
  position: relative; overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,46,0.2), rgba(13,27,46,0.6));
}
.hero__content {
  background: var(--covenant-navy);
  padding: 80px 64px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__content h1 { color: var(--cross-white); margin-bottom: 1.25rem; }
.hero__content h1 span { color: var(--circuit-spark); }
.hero__sub {
  font-size: 1.125rem; color: var(--text-light);
  margin-bottom: 2.5rem; max-width: 480px; line-height: 1.8;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,170,255,0.2);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--revelation-cyan);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: 4px; padding: 16px 36px;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--circuit-spark); color: var(--bible-black);
}
.btn-primary:hover {
  background: var(--revelation-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,170,255,0.35);
}
.btn-secondary {
  background: transparent; color: var(--cross-white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 34px;
}
.btn-secondary:hover {
  border-color: var(--circuit-spark); color: var(--circuit-spark);
  background: rgba(0,170,255,0.08);
}

/* ── WHO WE ARE ─────────────────────────────────────────── */
.about { background: var(--cross-white); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about__photo {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,75,140,0.18);
  position: relative;
}
.about__photo img { width: 100%; display: block; }
.about__photo::before {
  content: '';
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--circuit-spark); border-radius: 8px; z-index: -1;
}
.about__text h2 { color: var(--covenant-navy); margin-bottom: 1.5rem; }
.about__text p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.0625rem; }
.about__text p:last-child { margin-bottom: 0; }

/* ── WHAT WE OFFER ──────────────────────────────────────── */
.services { background: var(--bible-black); }
.services h2 { color: var(--cross-white); text-align: center; margin-bottom: 1rem; }
.services__intro {
  text-align: center; color: var(--text-light);
  font-size: 1.125rem; max-width: 640px; margin: 0 auto 64px;
}
.services__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,170,255,0.15);
  border-radius: 8px; padding: 40px 32px;
}
.pillar__icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.pillar__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cross-white); margin-bottom: 8px;
}
.pillar__subtitle {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--circuit-spark); margin-bottom: 24px;
}
.pillar__services { list-style: none; }
.pillar__services li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light); font-size: 0.9375rem;
}
.pillar__services li:last-child { border-bottom: none; }
.pillar__services li strong {
  display: block; color: var(--cross-white);
  font-weight: 600; margin-bottom: 4px;
}

/* ── WHO WE HELP ────────────────────────────────────────── */
.audience { background: var(--shepherd-blue); }
.audience h2 { color: var(--covenant-navy); text-align: center; margin-bottom: 64px; }
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.audience__card {
  background: var(--cross-white); border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(26,75,140,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audience__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,75,140,0.18);
}
.audience__card__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.audience__card h3 { color: var(--covenant-navy); margin-bottom: 12px; }
.audience__card p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.75; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog { background: var(--cross-white); }
.blog h2 { color: var(--covenant-navy); text-align: center; margin-bottom: 1rem; }
.blog__intro {
  text-align: center; color: var(--text-mid);
  font-size: 1.0625rem; max-width: 580px; margin: 0 auto 64px;
}
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog__card {
  border: 1px solid rgba(26,75,140,0.12);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,75,140,0.12);
}
.blog__card__top {
  padding: 32px; background: var(--covenant-navy);
  font-size: 2rem; text-align: center;
}
.blog__card__body { padding: 28px; }
.blog__card h3 { color: var(--covenant-navy); margin-bottom: 10px; font-size: 1.125rem; }
.blog__card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.blog__card a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--circuit-spark);
  text-decoration: none; border-bottom: 2px solid var(--circuit-spark);
  padding-bottom: 2px; transition: color 0.2s;
}
.blog__card a:hover { color: var(--covenant-navy); border-color: var(--covenant-navy); }

/* ── FINAL CTA ──────────────────────────────────────────── */
.cta-banner {
  background: var(--covenant-navy); text-align: center;
  padding: 96px 24px;
}
.cta-banner h2 { color: var(--cross-white); margin-bottom: 1rem; }
.cta-banner p {
  color: var(--text-light); font-size: 1.125rem;
  max-width: 560px; margin: 0 auto 2.5rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bible-black); padding: 56px 0 32px;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 48px;
}
.footer__brand { max-width: 300px; }
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--cross-white);
  text-decoration: none; display: block; margin-bottom: 12px;
}
.footer__logo span { color: var(--circuit-spark); }
.footer__tagline { color: var(--text-light); font-size: 0.9rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(200,223,240,0.7); font-size: 0.875rem;
  text-decoration: none; transition: color 0.2s;
}
.footer__links a:hover { color: var(--circuit-spark); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; text-align: center;
  color: rgba(200,223,240,0.4); font-size: 0.8rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { height: 50vh; }
  .hero__content { padding: 56px 32px; }
  .about__grid, .services__pillars, .audience__grid, .blog__grid {
    grid-template-columns: 1fr;
  }
  .navbar { padding: 0 24px; }
  .navbar__links { display: none; }
}


/* ── EXTENDED PALETTE — Light Grey & Black Accents ────── */
:root {
  --steel-grey:    #8A9BB0;
  --light-grey:    #F4F5F7;
  --mid-grey:      #D1D8E0;
  --near-black:    #111827;
  --warm-black:    #1A1A2A;
}

/* ── SECTION DIVIDERS ────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mid-grey), transparent);
  margin: 0;
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--near-black);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--circuit-spark);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-grey);
  margin-top: 8px;
  display: block;
}

/* ── PARTNERS / BRANDS SECTION ───────────────────────── */
.partners {
  background: var(--light-grey);
  padding: 64px 0;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.partners__intro {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-grey);
  margin-bottom: 40px;
}
.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo__icon {
  width: 56px; height: 56px;
  background: var(--covenant-navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.partner-logo__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── QUOTE / TESTIMONIAL PULL ────────────────────────── */
.quote-strip {
  background: var(--warm-black);
  padding: 80px 0;
  text-align: center;
}
.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cross-white);
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.quote-strip blockquote::before {
  content: '\201C';
  color: var(--circuit-spark);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -1.2rem;
  margin-right: 8px;
}
.quote-strip cite {
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-grey);
}

/* ── ABOUT UPDATE — grey accent box ─────────────────── */
.about__stat-box {
  background: var(--light-grey);
  border-left: 4px solid var(--circuit-spark);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 28px;
  display: flex;
  gap: 32px;
}
.about__stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--covenant-navy);
}
.about__stat-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-grey);
}

/* ── PILLAR UPDATE — black top border ───────────────── */
.pillar {
  border-top: 3px solid var(--circuit-spark);
}

/* ── FAQ PAGE STYLES ─────────────────────────────────── */
.faq-hero {
  background: var(--bible-black);
  padding: 140px 0 80px;
  text-align: center;
}
.faq-hero h1 { color: var(--cross-white); margin-bottom: 1rem; }
.faq-hero p { color: var(--text-light); font-size: 1.125rem; max-width: 560px; margin: 0 auto; }

.faq-section { background: var(--cross-white); padding: 80px 0; }
.faq-section h2 {
  color: var(--covenant-navy);
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-grey);
}
.faq-grid { max-width: 860px; margin: 0 auto; }
.faq-category { margin-bottom: 64px; }

.faq-item {
  border-bottom: 1px solid var(--mid-grey);
}
.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--near-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--circuit-spark);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item__answer {
  padding: 0 0 20px;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__logos { gap: 28px; }
  .about__stat-box { flex-direction: column; gap: 16px; }
}
