/* ============================================================
   SURGE RECOVERY — Stylesheet v1.0
   Colors: Deep Blue #1B3D6B | Brand Blue #3A8FC7 | Gold #F0A728
   Fonts: Playfair Display (headings) + Inter (body)
============================================================ */

:root {
  --blue-deep:   #1B3D6B;
  --blue-brand:  #3A8FC7;
  --blue-mid:    #2E6DA4;
  --gold:        #F0A728;
  --gold-dark:   #D4891A;
  --gold-light:  #FCC845;
  --cream:       #FDF8F2;
  --cream-dark:  #F2EAE0;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #E2D9CC;
  --white:       #FFFFFF;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --radius:    12px;
  --transition: 0.3s ease;
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ======================== COUNTDOWN BAR ======================== */
.countdown-bar {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #1B3D6B 0%, #2E6DA4 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
}
.countdown-label {
  color: #F0A728;
  font-size: 0.9375rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 120px;
  text-align: right;
}
.countdown-timer { color: rgba(255,255,255,0.85); font-weight: 500; }
@media (max-width: 600px) {
  .countdown-bar { flex-direction: column; gap: 2px; padding: 8px 16px; top: 64px; }
  .countdown-label { text-align: center; min-width: unset; }
}

/* ======================== NAVIGATION ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 28px rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 54px; width: auto; background: #ffffff; border-radius: 4px; }
.nav-logo-svg { height: 54px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 7px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-brand); background: rgba(58,143,199,0.08); }

.nav-cta {
  background: linear-gradient(160deg, var(--gold-light), var(--gold-dark)) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(240,167,40,0.22) !important;
  letter-spacing: 0.01em !important;
  font-size: 0.875rem !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 18px rgba(240,167,40,0.40) !important;
  filter: brightness(1.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--cream); color: var(--blue-brand); }
.mobile-menu .btn-primary { margin-top: 10px; text-align: center; justify-content: center; }

/* ======================== HERO ======================== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 114px;
}
.hero-short { min-height: 52vh; }

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #0C1D35 0%, #1B3D6B 48%, #2563A8 100%);
  background-size: cover;
  background-position: center;
}
.hero-bg-warm {
  background: linear-gradient(135deg, #1B3A4A 0%, #1B3D6B 50%, #2A6090 100%);
}
.hero-bg-gold {
  background: linear-gradient(135deg, #1B3D6B 0%, #2E4E7A 40%, #3A6899 100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg,
    rgba(27,61,107,0.78) 0%,
    rgba(27,61,107,0.55) 60%,
    rgba(58,143,199,0.30) 100%);
}
.hero-overlay-light {
  background: linear-gradient(170deg,
    rgba(27,61,107,0.68) 0%,
    rgba(27,61,107,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 880px;
  padding: 48px 28px;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(240,167,40,0.12);
  border: 1px solid rgba(240,167,40,0.30);
  color: #FFD166;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.0rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  opacity: 0.80;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative wave at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(240,167,40,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,167,40,0.42);
  filter: brightness(1.05);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-1px);
}
.btn-blue {
  background: var(--blue-brand);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(58,143,199,0.25);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(58,143,199,0.40);
}
.btn-ghost {
  background: transparent;
  color: var(--blue-brand);
  border-color: rgba(58,143,199,0.30);
}
.btn-ghost:hover {
  background: rgba(58,143,199,0.06);
  border-color: var(--blue-brand);
}
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ======================== SECTIONS ======================== */
.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 116px 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--blue-deep); color: var(--white); }
.section-gold  { background: var(--gold); }

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 58px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--gold-light); }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 800;
  line-height: 1.07;
  color: var(--blue-deep);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.82;
  letter-spacing: 0.01em;
}
.section-dark .section-header p { color: rgba(255,255,255,0.78); }

/* ======================== CARDS ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.08);
  border-color: rgba(58,143,199,0.4);
}
.card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0;
  color: white;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-mid); line-height: 1.75; font-size: 0.9375rem; }

/* ======================== IMAGE PLACEHOLDERS ======================== */
.img-placeholder {
  background: var(--cream-dark);
  border: 2px dashed #C8BDB0;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 36px;
  text-align: center;
  color: var(--text-light);
  transition: all var(--transition);
}
.img-placeholder:hover { border-color: var(--blue-brand); }
.img-placeholder svg {
  width: 52px; height: 52px;
  margin-bottom: 16px;
  opacity: 0.35;
  color: var(--text-mid);
}
.img-placeholder p {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-mid);
}
.img-placeholder small {
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-light);
}
.img-placeholder-tall  { min-height: 460px; }
.img-placeholder-short { min-height: 220px; }
.img-placeholder-wide  { min-height: 380px; }
.two-col-photo { width:100%;height:460px;object-fit:cover;border-radius:var(--radius);display:block; }
.community-photo { width:100%;height:300px;object-fit:cover;border-radius:var(--radius);display:block; }

/* ======================== TWO-COLUMN ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.two-col-text .eyebrow { display: block; margin-bottom: 12px; }
.two-col-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.two-col-text p:last-of-type { margin-bottom: 28px; }

/* ======================== SCRIPTURE BLOCK ======================== */
.scripture-block {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius);
  padding: 48px 52px;
  text-align: center;
  border-left: 5px solid var(--gold);
}
.scripture-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--blue-deep);
  line-height: 1.68;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.scripture-ref {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ======================== QUOTE BANNER ======================== */
.quote-banner {
  background: var(--blue-deep);
  padding: 84px 28px;
  text-align: center;
}
.quote-banner blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  max-width: 840px;
  margin: 0 auto 20px;
  line-height: 1.48;
  letter-spacing: 0.005em;
}
.quote-banner cite {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.06em;
}

/* ======================== TIMELINE ======================== */
.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-brand), rgba(58,143,199,0.15));
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  position: absolute;
  left: -44px;
  top: 4px;
  width: 46px; height: 46px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  z-index: 1;
}
.timeline-dot svg { width: 18px; height: 18px; }
.timeline-dot.gold { background: var(--gold); }
.timeline-dot.brand { background: var(--blue-brand); }

.timeline-body { flex: 1; }
.timeline-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.timeline-body p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ======================== WHERE BOX ======================== */
.where-box {
  background: var(--blue-deep);
  border-radius: var(--radius);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  color: var(--white);
}
.where-item .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}
.where-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.where-item p {
  opacity: 0.76;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.where-item a { color: var(--gold-light); text-decoration: underline; }

/* ======================== AUDIENCE ITEMS ======================== */
.audience-list { max-width: 820px; margin: 0 auto; }
.audience-item {
  display: flex;
  gap: 26px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.audience-item:last-child { border-bottom: none; }
.audience-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(58,143,199,0.1), rgba(27,61,107,0.06));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin-top: 4px;
  color: var(--blue-brand);
}
.audience-icon svg { width: 24px; height: 24px; }
.audience-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.audience-item p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ======================== BELIEF GRID ======================== */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.belief-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.belief-item:hover {
  border-color: rgba(58,143,199,0.35);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.belief-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  margin-top: 2px;
}
.belief-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.belief-item p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ======================== INFO CALLOUT ======================== */
.callout {
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
}
.callout-blue { background: rgba(58,143,199,0.08); border-left: 4px solid var(--blue-brand); }
.callout-gold { background: rgba(240,167,40,0.08); border-left: 4px solid var(--gold); }
.callout-red  { background: rgba(220,53,69,0.06);  border-left: 4px solid #DC3545; }
.callout-icon { font-size: 0; width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.callout-icon svg { width: 22px; height: 22px; }
.callout-blue .callout-icon { background: rgba(58,143,199,0.12); color: var(--blue-brand); }
.callout-gold .callout-icon { background: rgba(240,167,40,0.12); color: var(--gold-dark); }
.callout-red  .callout-icon { background: rgba(220,53,69,0.08); color: #DC3545; }
.callout h4 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--blue-deep); margin-bottom: 8px; }
.callout p  { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.75; }
.callout a  { color: var(--blue-brand); text-decoration: underline; }

/* ======================== RESOURCE ITEMS ======================== */
.resource-list { display: flex; flex-direction: column; gap: 14px; }
.resource-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.resource-item:hover {
  border-color: var(--blue-brand);
  transform: translateX(5px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.resource-icon {
  width: 46px; height: 46px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  flex-shrink: 0;
  color: var(--blue-brand);
}
.resource-icon svg { width: 22px; height: 22px; }
.resource-text h4 { font-weight: 600; color: var(--blue-deep); margin-bottom: 3px; }
.resource-text p  { font-size: 0.875rem; color: var(--text-light); }
.resource-arrow   { margin-left: auto; color: var(--text-light); font-size: 18px; }

/* ======================== STORY CARDS ======================== */
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.story-mark {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 10px; left: 20px;
}
.story-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.82;
  font-size: 1.0625rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 28px;
}
.story-author { font-weight: 700; color: var(--blue-deep); font-size: 0.9375rem; }
.story-detail { font-size: 0.875rem; color: var(--text-light); margin-top: 3px; }

/* ======================== CONTACT DETAILS ======================== */
.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  flex-shrink: 0;
  color: var(--blue-brand);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-detail h4 { font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.contact-detail p  { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.7; }
.contact-detail a  { color: var(--blue-brand); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px rgba(58,143,199,0.12);
}
textarea { resize: vertical; min-height: 140px; }

/* ======================== CTA BAND ======================== */
.cta-band {
  background: linear-gradient(160deg, #0C1D35 0%, #1B3D6B 55%, #1E4A7A 100%);
  padding: 116px 28px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 110%, rgba(58,143,199,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.cta-band p {
  font-size: 1.0625rem;
  opacity: 0.74;
  max-width: 540px;
  margin: 0 auto 46px;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ======================== STUDY CALLOUT ======================== */
.study-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.study-book {
  flex-shrink: 0;
  width: 100px;
}
.study-book-cover {
  width: 100px; height: 140px;
  background: linear-gradient(145deg, #2E6DA4, #1B3D6B);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  padding: 10px;
  font-family: var(--font-heading);
  font-style: italic;
  line-height: 1.4;
  box-shadow: 4px 4px 14px rgba(0,0,0,0.18);
}
.study-text .eyebrow { display: block; margin-bottom: 10px; }
.study-text h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 10px; }
.study-text p  { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.75; }

/* ======================== BIO CARD ======================== */
.bio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.bio-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.08); }
.bio-photo { width: 100%; aspect-ratio: 3/4; }
.bio-info { padding: 28px; }
.bio-info h3 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--blue-deep); margin-bottom: 4px; }
.bio-info .role { font-size: 0.875rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 12px; }
.bio-info p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; }

/* ======================== TEAM GRID ======================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* ======================== STAT STRIP ======================== */
.stat-strip {
  background: var(--cream);
  padding: 56px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--blue-deep);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item h3 span { color: var(--gold); }
.stat-item p { color: var(--text-mid); font-size: 0.9rem; font-weight: 500; }

/* ======================== FOOTER ======================== */
.footer {
  background: #0B1E38;
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 52px;
}
.footer-brand-logo {
  display: inline-block;
  background: white;
  border-radius: 10px;
  padding: 8px 16px;
  margin-bottom: 8px;
}
.footer-brand-logo img {
  height: 40px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.66;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 0.9rem;
  opacity: 0.68;
  transition: opacity var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { opacity: 1; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 1;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-verse {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.875rem;
  max-width: 480px;
  text-align: right;
}

/* ======================== PAGE CONTENT ======================== */
.page-top { padding-top: 74px; }
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 { font-family: var(--font-heading); font-size: 2.1rem; color: var(--blue-deep); margin: 44px 0 16px; line-height: 1.25; }
.prose h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--blue-deep); margin: 32px 0 12px; }
.prose p  { color: var(--text-mid); line-height: 1.88; margin-bottom: 22px; }
.prose ul { list-style: disc; padding-left: 26px; margin-bottom: 22px; color: var(--text-mid); }
.prose ul li { margin-bottom: 9px; line-height: 1.75; }
.prose strong { color: var(--text-dark); font-weight: 600; }

/* ======================== DIVIDER ======================== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ======================== FAQ ======================== */
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.faq-item p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.8; }

/* ── Scroll Animations ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,168,0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(37,99,168,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2.5s ease infinite; }

/* ── Hero animations ── */
.hero-content { animation: fadeUp 0.9s ease both; }
.hero-content .eyebrow-badge { animation: fadeUp 0.7s ease both; }
.hero-content h1 { animation: fadeUp 0.8s 0.1s ease both; }
.hero-content p  { animation: fadeUp 0.8s 0.2s ease both; }
.hero-content .hero-actions { animation: fadeUp 0.8s 0.35s ease both; }

/* ── Cross Decorations ── */
.cross-deco {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
}
.cross-deco svg { width: 100%; height: 100%; fill: #ffffff; }
.hero-crosses { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* ── Hero photo overlay ── */
.hero-bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,29,53,0.88) 0%, rgba(27,61,107,0.78) 50%, rgba(37,99,168,0.65) 100%);
}

/* ======================== UTILITIES ======================== */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-blue    { color: var(--blue-brand); }
.text-muted   { color: var(--text-light); }
.font-heading { font-family: var(--font-heading); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .where-box   { grid-template-columns: 1fr; gap: 32px; }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section     { padding: 64px 0; }
  .section-lg  { padding: 80px 0; }
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .hero        { min-height: 72vh; }
  .hero-short  { min-height: 44vh; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; }
  .two-col     { grid-template-columns: 1fr; gap: 36px; }
  .belief-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .where-box   { padding: 36px 28px; }
  .study-card  { flex-direction: column; }
  .form-row    { grid-template-columns: 1fr; }
  .timeline    { padding-left: 52px; }
  .scripture-block { padding: 36px 28px; }
  .footer-verse { text-align: left; }
  .footer-bottom { flex-direction: column; }
  .cta-band h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-band .btn-group { flex-direction: column; align-items: center; gap: 12px; }
  .cta-band .btn-group .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 540px) {
  .container        { padding: 0 18px; }
  .hero-content     { padding: 32px 18px; }
  .card             { padding: 28px 24px; }
  .where-box        { padding: 28px 22px; }
  .cta-band         { padding: 64px 18px; }
  .quote-banner     { padding: 64px 18px; }
  .stats-row        { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav-inner        { padding: 0 18px; }
}

/* ======================== EVENING PROGRESS TRACKER ======================== */
.evening-tracker-wrap { padding: 56px 0 0; }
.evening-progress { display: flex; align-items: flex-start; position: relative; margin-bottom: 52px; padding: 0 20px; }
.evening-progress-line { position: absolute; top: 34px; left: 6%; right: 6%; height: 2px; background: var(--border); z-index: 0; }
.evening-progress-fill { position: absolute; top: 34px; left: 6%; height: 2px; background: linear-gradient(to right, var(--gold), var(--blue-brand)); width: 0; z-index: 1; transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.evening-progress.animated .evening-progress-fill { width: 88%; }
.step-marker { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.step-marker-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: all 0.5s ease; color: var(--text-light); flex-shrink: 0; }
.step-marker-dot svg { width: 18px; height: 18px; }
.step-marker.active .step-marker-dot { background: var(--gold); border-color: var(--gold); color: white; box-shadow: 0 0 0 6px rgba(240,167,40,0.15); }
.step-marker-time { font-size: 0.62rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.08em; white-space: nowrap; text-align: center; }
.step-marker.active .step-marker-time { color: var(--gold); }
.step-marker-label { font-size: 0.68rem; color: var(--text-light); text-align: center; max-width: 68px; line-height: 1.3; margin-top: 4px; display: none; }

/* ======================== STEP CARDS ======================== */
.evening-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 36px 38px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.step-card::before { content: attr(data-num); position: absolute; top: -20px; right: 14px; font-family: var(--font-heading); font-size: 7.5rem; font-weight: 700; color: var(--cream-dark); line-height: 1; pointer-events: none; z-index: 0; }
.step-card > * { position: relative; z-index: 1; }
.step-card:hover { border-color: rgba(58,143,199,0.35); box-shadow: 0 10px 36px rgba(0,0,0,0.07); transform: translateY(-3px); }
.step-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.step-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue-brand), var(--blue-deep)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.step-card-icon.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.step-card-icon svg { width: 22px; height: 22px; }
.step-card-meta { display: flex; flex-direction: column; }
.step-card-time { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.step-card h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--blue-deep); margin: 0; line-height: 1.25; }
.step-card p { color: var(--text-mid); line-height: 1.78; font-size: 0.9375rem; margin-top: 12px; }

/* ======================== CALENDAR SECTION ======================== */
.cal-section { background: var(--blue-deep); padding: 100px 0; }
.cal-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.cal-text .eyebrow { color: var(--gold-light); display: block; margin-bottom: 12px; }
.cal-text h2 { color: white; font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 20px; }
.cal-text > p { color: rgba(255,255,255,0.72); line-height: 1.78; margin-bottom: 28px; font-size: 1.0625rem; }
.dates-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.date-item { display: flex; align-items: center; gap: 14px; padding: 13px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: white; transition: background 0.2s; }
.date-item:hover { background: rgba(255,255,255,0.1); }
.date-month-pill { background: var(--gold); color: var(--blue-deep); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; flex-shrink: 0; min-width: 38px; text-align: center; }
.date-full { font-size: 0.9375rem; font-weight: 600; flex: 1; }
.date-dow { font-size: 0.8rem; opacity: 0.45; margin-right: 4px; }
.date-time { font-size: 0.8rem; opacity: 0.55; white-space: nowrap; }
.cal-buttons { display: flex; flex-direction: column; gap: 10px; }
.cal-btn { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 10px; font-weight: 600; font-size: 0.925rem; cursor: pointer; transition: all 0.2s; text-decoration: none; border: none; font-family: var(--font-body); width: 100%; }
.cal-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cal-btn-google { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.cal-btn-google:hover { background: rgba(255,255,255,0.16); }
.cal-btn-ics { background: var(--gold); color: var(--blue-deep); }
.cal-btn-ics:hover { background: var(--gold-light); }
.map-embed-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
.map-embed-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-addr-bar { margin-top: 14px; padding: 14px 18px; background: rgba(255,255,255,0.07); border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: space-between; gap: 12px; color: white; }
.map-addr-bar span { font-size: 0.875rem; opacity: 0.7; }
.map-addr-bar a { font-size: 0.875rem; font-weight: 600; color: var(--gold-light); white-space: nowrap; text-decoration: none; }

/* ======================== PRAYER REQUEST SECTION ======================== */
.prayer-section { padding: 100px 0; background: var(--white); }
.prayer-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.prayer-intro .eyebrow { display: block; margin-bottom: 12px; }
.prayer-intro h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--blue-deep); line-height: 1.2; margin-bottom: 20px; }
.prayer-intro p { color: var(--text-mid); line-height: 1.78; margin-bottom: 14px; font-size: 1.0625rem; }
.prayer-intro .scripture-block { margin-top: 32px; }
.prayer-form-card { background: var(--cream); border-radius: 16px; padding: 44px; border: 1px solid var(--border); }
.prayer-form-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 6px; }
.prayer-form-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }
.prayer-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.prayer-cb { display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.2s; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); background: white; }
.prayer-cb input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--blue-brand); flex-shrink: 0; margin: 0; }
.prayer-cb:has(input:checked) { border-color: var(--blue-brand); background: rgba(58,143,199,0.07); color: var(--blue-brand); }
.prayer-followup { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.prayer-followup label { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; cursor: pointer; font-weight: 500; }
.prayer-followup input[type="radio"] { accent-color: var(--blue-brand); width: 15px; height: 15px; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.confidential-note { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; line-height: 1.6; }

/* ======================== REACH OUT SECTION ======================== */
.reach-section { background: var(--blue-deep); padding: 100px 0; }
.reach-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.reach-intro h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); color: white; line-height: 1.2; margin: 12px 0 16px; }
.reach-intro .eyebrow { color: var(--gold-light); }
.reach-intro > p { color: rgba(255,255,255,0.72); line-height: 1.78; margin-bottom: 28px; font-size: 1.0625rem; }
.reach-jim { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; padding: 20px 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; }
.reach-jim-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid rgba(255,255,255,0.2); }
.reach-jim-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.reach-jim-info h3 { font-family: var(--font-heading); font-size: 1.1rem; color: white; margin-bottom: 2px; }
.reach-jim-info p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.5; }
.reach-links { display: flex; flex-direction: column; gap: 10px; }
.reach-link { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: white; text-decoration: none; transition: all 0.2s; }
.reach-link:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.2); }
.reach-link-icon { width: 42px; height: 42px; background: rgba(240,167,40,0.18); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.reach-link-icon svg { width: 18px; height: 18px; }
.reach-link-body { flex: 1; }
.reach-link-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); line-height: 1; margin-bottom: 3px; }
.reach-link-value { font-size: 1.0625rem; font-weight: 600; }
.reach-link-arrow { opacity: 0.4; }
.crisis-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); border-radius: 14px; padding: 36px; }
.crisis-panel h3 { font-family: var(--font-heading); color: white; font-size: 1.15rem; margin-bottom: 6px; }
.crisis-panel > p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
.crisis-items { display: flex; flex-direction: column; gap: 8px; }
.crisis-item { display: flex; align-items: center; gap: 14px; padding: 13px 16px; background: rgba(255,255,255,0.06); border-radius: 8px; }
.crisis-item-body { flex: 1; }
.crisis-item-body strong { display: block; font-size: 0.875rem; color: white; font-weight: 600; margin-bottom: 2px; }
.crisis-item-body span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.crisis-item a { color: var(--gold-light); font-weight: 700; font-size: 0.95rem; white-space: nowrap; text-decoration: none; }

/* ======================== YOUR NEXT STEP (index) ======================== */
.next-step-section { background: var(--cream); padding: 100px 0; }
.next-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 48px auto 0; }
.next-step-card { background: white; border-radius: 14px; padding: 44px 36px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.next-step-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.next-step-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.next-step-card:nth-child(1)::after { background: var(--blue-deep); }
.next-step-card:nth-child(2)::after { background: var(--blue-brand); }
.next-step-card:nth-child(3)::after { background: var(--gold); }
.next-step-num { display: inline-flex; width: 60px; height: 60px; border-radius: 50%; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 22px; }
.num-1 { background: var(--blue-deep); }
.num-2 { background: var(--blue-brand); }
.num-3 { background: var(--gold); color: var(--blue-deep); }
.next-step-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--blue-deep); margin-bottom: 12px; }
.next-step-card p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.75; }
.next-step-connector { display: none; }
.next-step-cta { text-align: center; margin-top: 44px; }

/* ======================== RESPONSIVE ADDITIONS ======================== */
@media (max-width: 1024px) {
  .cal-layout { grid-template-columns: 1fr; gap: 52px; }
  .prayer-layout { grid-template-columns: 1fr; gap: 48px; }
  .reach-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 860px) {
  .next-step-grid { grid-template-columns: 1fr; max-width: 480px; }
  .evening-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .evening-progress { display: none; }
  .step-card::before { font-size: 5rem; }
  .cal-section, .prayer-section, .reach-section, .next-step-section { padding: 72px 0; }
  .prayer-form-card { padding: 28px 22px; }
  .prayer-checkboxes { grid-template-columns: 1fr; }
  .crisis-panel { padding: 24px 18px; }
  .reach-jim { flex-direction: column; align-items: flex-start; }
}

/* ======================== GOOGLE BUSINESS PROFILE CALENDAR ======================== */
.gbp-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 8px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: var(--font-body);
}
.gbp-card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px 18px;
  border-bottom: 1px solid #f0f2f5;
}
.gbp-header-icon {
  width: 48px; height: 48px;
  background: linear-gradient(145deg, #1a73e8, #1558b0);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,115,232,0.30);
}
.gbp-header-icon svg { width: 22px; height: 22px; }
.gbp-card-header h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.gbp-card-header p {
  font-size: 0.8rem;
  color: #5f6368;
  line-height: 1.4;
}
.gbp-dates {
  list-style: none;
  padding: 6px 0 4px;
  margin: 0;
}
.gbp-date-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 24px;
  transition: background 0.15s;
  cursor: default;
}
.gbp-date-row:hover { background: #f8f9fa; }
.gbp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1a73e8;
  flex-shrink: 0;
}
.gbp-date-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202124;
  flex: 1;
}
.gbp-time {
  font-size: 0.8125rem;
  color: #5f6368;
  white-space: nowrap;
}
.gbp-card-footer {
  display: flex;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid #f0f2f5;
  flex-wrap: wrap;
}
.gbp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.005em;
}
.gbp-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.gbp-btn-primary {
  background: #1a73e8;
  color: white;
  box-shadow: 0 1px 6px rgba(26,115,232,0.30);
}
.gbp-btn-primary:hover { background: #1557b0; transform: none; box-shadow: 0 2px 10px rgba(26,115,232,0.40); }
.gbp-btn-secondary {
  background: transparent;
  color: #1a73e8;
  border: 1.5px solid #dadce0;
}
.gbp-btn-secondary:hover { background: #f0f6ff; border-color: #1a73e8; }
@media (max-width: 540px) {
  .gbp-card-footer { flex-direction: column; }
  .gbp-btn { justify-content: center; }
}

/* ======================== FOOTER COLUMN REFINEMENTS ======================== */
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  font-size: 0.875rem;
  opacity: 0.62;
  transition: opacity var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { opacity: 1; color: white; }
.footer-bottom {
  font-size: 0.82rem;
  opacity: 0.42;
}
.footer-verse {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  max-width: 480px;
  text-align: right;
  opacity: 0.55;
}

/* ======================== PROSE / SECTION BODY REFINEMENTS ======================== */
.section-header .eyebrow { display: block; }
.cta-band .eyebrow { color: var(--gold-light); margin-bottom: 18px; display: block; }
.next-step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.bio-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.timeline-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.where-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.callout h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.audience-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.belief-item h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
