/* ============================================================
   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;
  --gold-accent:     #D4A853;
}

*, *::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 {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.navbar__logo-icon {
  width: 40px; height: 40px;
}
.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cross-white);
  letter-spacing: 0.02em;
}
.navbar__logo-text span { color: var(--circuit-spark); }
.navbar__links {
  display: flex; gap: 24px; 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; }
.nav-highlight {
  color: var(--circuit-spark) !important;
  font-weight: 600;
}

/* ── 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;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--circuit-spark); color: var(--bible-black);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.btn-primary:hover { background: var(--revelation-cyan); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--cross-white);
  padding: 14px 32px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.btn-secondary:hover { border-color: var(--circuit-spark); color: var(--circuit-spark); }
.btn-large {
  padding: 18px 48px; font-size: 1rem;
}

/* ── STATS STRIP ───────────────────────────────────────── */
.stats-strip {
  background: var(--covenant-navy); padding: 48px 0;
}
.stats-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900;
  color: var(--circuit-spark);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
}

/* ── BOOK SECTION ───────────────────────────────────────── */
.book-section {
  background: linear-gradient(135deg, var(--surface-light) 0%, var(--cross-white) 100%);
  padding: 96px 0;
}
.book-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center;
}
.book-cover {
  display: flex; justify-content: center;
}
.book-cover__inner {
  position: relative; width: 220px; height: 300px;
  perspective: 1000px;
}
.book-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 20px;
  background: linear-gradient(90deg, #1A4B8C, #0D1B2E);
  border-radius: 4px 0 0 4px;
  transform: rotateY(-30deg);
  transform-origin: right center;
}
.book-front {
  position: absolute; left: 15px; top: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #1A4B8C 0%, #0D1B2E 100%);
  border-radius: 0 8px 8px 0;
  padding: 40px 24px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 20px 60px rgba(13,27,46,0.4);
  color: var(--cross-white);
}
.book-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--circuit-spark);
  margin-bottom: 16px;
}
.book-front h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 12px;
}
.book-subtitle {
  font-size: 0.8rem; color: var(--shepherd-blue);
  margin-bottom: 24px; line-height: 1.5;
}
.book-author {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--revelation-cyan);
}
.book-content h2 { margin-bottom: 1.5rem; }
.book-intro {
  font-size: 1.125rem; color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.book-content p { margin-bottom: 1rem; }
.book-content ul { margin-bottom: 1.5rem; }
.book-list {
  list-style: none; padding: 0;
}
.book-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid rgba(26,75,140,0.1);
}
.book-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; background: var(--circuit-spark);
  border-radius: 50%; transform: translateY(-50%);
}
.book-list li:first-child { padding-top: 0; border-top: none; }
.book-meta {
  font-size: 0.875rem; color: var(--text-mid);
  padding: 16px; background: var(--surface-light);
  border-radius: 8px; margin-top: 1.5rem;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about { background: var(--cross-white); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.about__photo { position: relative; }
.about__photo img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 24px 64px rgba(13,27,46,0.15);
}
.about__text { padding-left: 24px; }
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p { margin-bottom: 1rem; color: var(--text-mid); }
.about__stat-box {
  display: inline-flex; gap: 24px;
  background: var(--surface-light); padding: 16px 24px;
  border-radius: 8px;
}
.about__stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.about__stat-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--covenant-navy);
}
.about__stat-item span {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-mid);
}

/* ── SERVICES SECTION ───────────────────────────────────── */
.services {
  background: var(--bible-black);
  color: var(--cross-white);
}
.services .eyebrow { color: var(--circuit-spark); }
.services h2 { color: var(--cross-white); text-align: center; margin-bottom: 1rem; }
.services__intro {
  text-align: center; color: var(--text-light);
  max-width: 600px; margin: 0 auto 64px;
}
.services__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.pillar {
  background: rgba(26,75,140,0.2);
  border: 1px solid rgba(0,170,255,0.15);
  border-radius: 12px; padding: 32px;
  transition: all 0.3s ease;
}
.pillar:hover {
  background: rgba(26,75,140,0.35);
  border-color: var(--circuit-spark);
  transform: translateY(-4px);
}
.pillar__icon { font-size: 2.5rem; margin-bottom: 16px; }
.pillar__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 8px; color: var(--cross-white);
}
.pillar__subtitle {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--circuit-spark); margin-bottom: 20px;
}
.pillar__services { list-style: none; }
.pillar__services li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light); font-size: 0.9rem;
}
.pillar__services li:last-child { border-bottom: none; }
.pillar__services strong {
  display: block; color: var(--cross-white);
  font-size: 0.95rem; margin-bottom: 4px;
}

/* ── AUDIENCE SECTION ───────────────────────────────────── */
.audience {
  background: var(--surface-light);
}
.audience h2 { text-align: center; margin-bottom: 3rem; }
.audience__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.audience__card {
  background: var(--cross-white);
  border-radius: 12px; padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(13,27,46,0.08);
  text-align: center; transition: all 0.3s ease;
}
.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,27,46,0.12);
}
.audience__card__icon { font-size: 3rem; margin-bottom: 20px; }
.audience__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 16px;
}
.audience__card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── PARTNERS STRIP ─────────────────────────────────────── */
.partners {
  background: var(--covenant-navy); padding: 48px 0;
}
.partners__intro {
  text-align: center; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 32px;
}
.partners__logos {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.partner-logo__icon { font-size: 2rem; }
.partner-logo__name {
  font-size: 0.8rem; font-weight: 500;
  color: var(--shepherd-blue);
}

/* ── BLOG SECTION ───────────────────────────────────────── */
.blog { background: var(--cross-white); }
.blog h2 { text-align: center; margin-bottom: 1rem; }
.blog__intro {
  text-align: center; color: var(--text-mid);
  max-width: 600px; margin: 0 auto 48px;
}
.blog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog__card {
  background: var(--surface-light);
  border-radius: 12px; overflow: hidden;
  transition: all 0.3s ease;
}
.blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,27,46,0.12);
}
.blog__card__top {
  background: var(--covenant-navy);
  padding: 32px; text-align: center;
  font-size: 2.5rem;
}
.blog__card__body { padding: 24px; }
.blog__card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 12px;
}
.blog__card__body p { color: var(--text-mid); margin-bottom: 16px; font-size: 0.9rem; }
.blog__card__body a {
  color: var(--circuit-spark); font-weight: 600;
  text-decoration: none; font-size: 0.875rem;
}
.blog__card__body a:hover { text-decoration: underline; }

/* ── QUOTE STRIP ────────────────────────────────────────── */
.quote-strip {
  background: linear-gradient(135deg, var(--covenant-navy), var(--bible-black));
  padding: 80px 0; text-align: center;
}
.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cross-white); line-height: 1.4;
  max-width: 800px; margin: 0 auto 24px;
}
.quote-strip cite {
  font-style: normal; font-size: 0.875rem;
  color: var(--circuit-spark);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--surface-light);
  text-align: center; padding: 96px 24px;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p {
  color: var(--text-mid); max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bible-black);
  color: var(--text-light); padding: 64px 0 32px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 16px;
}
.footer__logo-icon { width: 36px; height: 36px; }
.footer__logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--cross-white);
}
.footer__logo span span { color: var(--circuit-spark); }
.footer__tagline {
  font-size: 0.875rem; color: var(--text-light);
  line-height: 1.6;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.875rem; transition: color 0.2s;
}
.footer__links a:hover { color: var(--circuit-spark); }
.footer__bottom {
  text-align: center; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: var(--text-mid);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__pillars { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; text-align: center; }
  .book-cover { margin-bottom: 48px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .navbar__links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__image { min-height: 300px; }
  .hero__content { padding: 48px 24px; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__text { padding-left: 0; margin-top: 32px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}