/* =============================================
   NEW WAVE OF GLOBAL REVIVAL OUTREACH
   Black & White — Light / Dark Mode
   ============================================= */

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

/* ── THEME VARIABLES ─────────────────────────── */

:root {
  --bg:        #ffffff;
  --bg-alt:    #f6f6f6;
  --bg-dark:   #111111;
  --text:      #111111;
  --text-2:    #555555;
  --muted:     #999999;
  --border:    #e8e8e8;
  --surface:   #f6f6f6;
  --font:      'Inter', sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --tr:        0.25s ease;
}

[data-theme="dark"] {
  --bg:        #0d0d0d;
  --bg-alt:    #161616;
  --bg-dark:   #000000;
  --text:      #f0f0f0;
  --text-2:    #aaaaaa;
  --muted:     #666666;
  --border:    #2a2a2a;
  --surface:   #1a1a1a;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.7);
}

/* ── BASE ────────────────────────────────────── */

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ──────────────────────────────── */

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.45); }

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.h2-light { color: #ffffff; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-desc { color: var(--text-2); font-size: 1rem; line-height: 1.8; }
.desc-light { color: rgba(255,255,255,0.5); }

/* ── BUTTONS ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
  gap: 8px;
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { opacity: 0.8; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--text); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.btn-white {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}
.btn-white:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ── NAVBAR ─────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr);
}
.navbar.scrolled {
  background: #000000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-inner {
  width: 100%;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — anchored to far left */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
  border-radius: 8px;
  padding: 0 6px;
  transition: background var(--tr);
}
/* Logo on scrolled dark navbar — no pill needed, navbar is already dark */
.navbar.scrolled .nav-logo { background: transparent; }

.nav-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity var(--tr);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.navbar.scrolled .nav-links a:hover { color: #ffffff; }

.nav-give-btn {
  padding: 9px 20px !important;
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-radius: var(--radius) !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  font-weight: 700 !important;
}
.nav-give-btn::after { display: none !important; }
.nav-give-btn:hover { background: rgba(255,255,255,0.25) !important; }
.navbar.scrolled .nav-give-btn {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
  flex-shrink: 0;
}
.navbar.scrolled .theme-toggle {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #ffffff;
}
.theme-toggle:hover { opacity: 0.75; }

[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--tr);
}
.navbar.scrolled .hamburger span { background: #ffffff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV DROPDOWN ───────────────────────────── */

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-chevron {
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--tr);
  display: inline-block;
  margin-top: 1px;
}

.nav-dropdown-wrap:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 20px 6px 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--border);
  border-top: none;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text) !important;
  border-radius: 6px;
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown-trigger::after { display: none !important; }
.nav-dropdown a:hover {
  background: var(--surface);
  color: var(--text) !important;
}

/* Keep dropdown links dark even on unscrolled navbar */
.nav-dropdown a { color: var(--text) !important; }

/* ── HERO SLIDESHOW ─────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

/* Placeholder slides — replace background with url('images/photo.jpg') */
.slide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.slide-1 { background: url('Homepage Images/cross-field.jpg') center center / cover no-repeat; }
.slide-2 { background: url('Homepage Images/holy-bible-with-rays-light-coming-out-ai-generative.jpg') center center / cover no-repeat; }
.slide-3 { background: url('Homepage Images/spirituality-religion-hands-folded-prayer-holy-bible-church-concept-faith.jpg') center center / cover no-repeat; }
.slide-4 { background: url('Homepage Images/silhouette-handsome-asian-man-praying.jpg') center center / cover no-repeat; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 100px 28px 60px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.82;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slide dots */
.slide-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.slide-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 4px;
}

/* ── INFO BAR ────────────────────────────────── */

.info-bar {
  background: var(--bg-dark);
  color: #ffffff;
}
[data-theme="dark"] .info-bar { background: #080808; border-top: 1px solid #1e1e1e; }

.info-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  flex-direction: column;
  padding: 28px 56px;
  gap: 5px;
  flex: 1;
  max-width: 340px;
}
.info-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.info-item span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

.info-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 16px 0;
}

/* ── ABOUT ──────────────────────────────────── */

.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--text-2); margin-bottom: 16px; line-height: 1.85; font-size: 1rem; }

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.tag {
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.about-img-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img { width: 100%; height: 100%; object-fit: contain; }

/* ── ABOUT SUB-SECTIONS ─────────────────────── */

.sub-about { background: var(--bg); }
.sub-about-alt { background: var(--bg-alt); }

.sub-about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.sub-about-header { position: sticky; top: 100px; }
.sub-about-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* Vision & Mission cards */
.sub-about-body { display: flex; flex-direction: column; gap: 16px; }

.vm-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.vm-card-dark {
  background: var(--bg-dark);
  border-color: transparent;
}
.vm-card-dark .vm-label { color: rgba(255,255,255,0.45); }
.vm-card-dark p { color: rgba(255,255,255,0.75); }

.vm-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 12px;
}
.vm-card p { color: var(--text-2); font-size: 1rem; line-height: 1.8; margin: 0; }

/* Burden & Call */
.burden-intro {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.burden-points { display: flex; flex-direction: column; gap: 24px; }

.burden-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.burden-point:hover {
  border-color: var(--text);
  box-shadow: var(--shadow);
}

.bp-icon {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--border);
  width: 36px; height: 36px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.burden-point strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.burden-point p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; margin: 0; }

/* What to Expect */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expect-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--tr);
}
.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text);
}

.expect-icon { font-size: 1.8rem; margin-bottom: 14px; }
.expect-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.expect-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .sub-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .sub-about-header { position: static; }
  .expect-grid { grid-template-columns: 1fr; }
}

/* ── INNER PAGES ────────────────────────────── */

.inner-page-hero {
  background: var(--bg-dark);
  padding: 120px 0 72px;
  margin-top: 96px;
}
[data-theme="dark"] .inner-page-hero { background: var(--surface); border-bottom: 1px solid var(--border); }

.inner-page-hero .eyebrow { color: rgba(255,255,255,0.55); }
.inner-page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin: 10px 0 16px; }
.inner-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.7; margin: 0; }
[data-theme="dark"] .inner-page-hero h1 { color: var(--text); }
[data-theme="dark"] .inner-page-hero .eyebrow { color: var(--muted); }
[data-theme="dark"] .inner-hero-sub { color: var(--text-2); }

.inner-page-content { background: var(--bg); }

.inner-narrow { max-width: 760px; }

.inner-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 560px) {
  .inner-page-nav { flex-direction: column; }
  .inner-page-nav .btn { width: 100%; text-align: center; }
  .inner-page-hero { padding: 100px 0 56px; }
}

/* ── PILLAR SECTIONS (About Sub-Pages) ──────── */
.pillar-container { max-width: 920px; margin: 0 auto; padding: 0 28px; }

.pillar-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.pillar-section:last-of-type { border-bottom: none; }

.pillar-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.pillar-img-wrap:hover .pillar-img { transform: scale(1.03); }

.pillar-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pillar-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 18px;
}
.pillar-body p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 620px;
}
.pillar-body p:last-child { margin-bottom: 0; }

.pillar-quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--text);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

.intro-img-wrap {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
}
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.expect-list { display: flex; flex-direction: column; gap: 14px; margin: 0 0 32px; }
.expect-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--tr), filter var(--tr);
}
.expect-list-item:hover { transform: translateX(5px); filter: brightness(1.08); }
.expect-list-item .eli-dash { font-size: 1.1rem; color: var(--muted); flex-shrink: 0; margin-top: 1px; }
.expect-list-item p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin: 0; }

/* Expect-list item colors */
.expect-list-item:nth-child(1) { background: #2C5EAD; border-color: transparent; }
.expect-list-item:nth-child(2) { background: #D92243; border-color: transparent; }
.expect-list-item:nth-child(3) { background: #7B3FA0; border-color: transparent; }
.expect-list-item:nth-child(4) { background: #0D5C63; border-color: transparent; }
.expect-list-item:nth-child(5) { background: #1A5C3A; border-color: transparent; }
.expect-list-item:nth-child(6) { background: #000000; border-color: transparent; }
.expect-list-item:nth-child(1) .eli-dash,
.expect-list-item:nth-child(2) .eli-dash,
.expect-list-item:nth-child(3) .eli-dash,
.expect-list-item:nth-child(4) .eli-dash,
.expect-list-item:nth-child(5) .eli-dash,
.expect-list-item:nth-child(6) .eli-dash { color: rgba(255,255,255,0.5); }
.expect-list-item:nth-child(1) p,
.expect-list-item:nth-child(2) p,
.expect-list-item:nth-child(3) p,
.expect-list-item:nth-child(4) p,
.expect-list-item:nth-child(5) p,
.expect-list-item:nth-child(6) p { color: #ffffff !important; }

/* Alternating two-column grid */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pillar-grid .pillar-img-wrap {
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
}
.pillar-grid.pillar-reverse .pillar-img-wrap { order: 2; }
.pillar-grid.pillar-reverse .pillar-body { order: 1; }
.pillar-grid .pillar-body p { max-width: 100%; }

/* ── WHAT WE BRING — centered image + list grid ─ */
.wwb-center-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.wwb-portrait-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 300px;
  flex-shrink: 0;
}

.wwb-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .wwb-center-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wwb-portrait-wrap { width: 100%; }
}

/* Centered pillar (middle section) */
.pillar-center-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.pillar-center-wrap .pillar-body p { max-width: 100%; margin-left: auto; margin-right: auto; }
.pillar-center-wrap .pillar-quote { text-align: left; }
.pillar-center-wrap .expect-list { text-align: left; }
.pillar-center-wrap .vm-card { text-align: left; }

/* Accent colors */
.color-blue { color: #2C5EAD !important; }
.color-red  { color: #D92243 !important; }
.color-dark { color: #091413 !important; }
[data-theme="dark"] .color-dark { color: #e8f0ef !important; }

.pillar-quote { border-left-color: #2C5EAD; }

@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 28px; }
  .pillar-grid.pillar-reverse .pillar-img-wrap,
  .pillar-grid.pillar-reverse .pillar-body { order: unset; }
  .pillar-grid .pillar-img-wrap { aspect-ratio: 16 / 7; margin-bottom: 0; }
}

@media (max-width: 640px) {
  .pillar-img-wrap { aspect-ratio: 4 / 3; }
  .intro-img-wrap { aspect-ratio: 4 / 3; }
}

/* ── MANDATE BANNER ─────────────────────────── */

.mandate-banner {
  background: var(--bg-dark);
  padding: 88px 0;
}
[data-theme="dark"] .mandate-banner { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.mandate-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.58;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  border: none;
  padding: 0;
}
[data-theme="dark"] .mandate-quote { color: var(--text); }

.mandate-quote cite {
  display: block;
  margin-top: 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(255,255,255,0.35);
}
[data-theme="dark"] .mandate-quote cite { color: var(--muted); }

/* ── FOUNDER ────────────────────────────────── */

.founder { background: var(--bg-alt); }

.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 88px;
  align-items: start;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-text h2 { margin-bottom: 6px; }
.founder-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 28px;
  display: block;
}
.founder-text p { color: var(--text-2); line-height: 1.85; margin-bottom: 16px; font-size: 1rem; }

.founder-quote {
  margin: 28px 0 32px;
  padding-left: 20px;
  border-left: 3px solid var(--text);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.68;
}

/* ── WATCH ──────────────────────────────────── */

.watch { background: var(--bg-dark); }
[data-theme="dark"] .watch { background: #080808; border-top: 1px solid #1e1e1e; }

.watch-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.watch-featured {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
[data-theme="dark"] .watch-featured { background: var(--surface); border-color: var(--border); }

.watch-thumb {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: background var(--tr);
}
.watch-thumb:hover { background: rgba(255,255,255,0.09); }

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}

.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  transition: all var(--tr);
  padding-left: 3px;
  position: relative;
}
.play-btn::before,
.play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.play-btn::after { animation-delay: 1.2s; }
.watch-thumb:hover .play-btn { background: rgba(255,255,255,0.22); transform: scale(1.06); }

.watch-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: #ffffff;
  color: #111111;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.watch-body { padding: 24px; }
.watch-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.watch-body h3 { font-size: 1.25rem; font-weight: 700; color: #ffffff; margin: 8px 0 10px; line-height: 1.3; letter-spacing: -0.01em; }
.watch-body p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }

.watch-list { display: flex; flex-direction: column; gap: 8px; }

.watch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: all var(--tr);
}
[data-theme="dark"] .watch-item { background: var(--surface); border-color: var(--border); }
.watch-item:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
[data-theme="dark"] .watch-item:hover { background: var(--bg-alt); }

.watch-item-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.watch-item-info h4 { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.82); margin-bottom: 2px; }
.watch-item-info span { font-size: 0.73rem; color: rgba(255,255,255,0.3); }

/* ── MINISTRIES ─────────────────────────────── */

.ministries { background: var(--bg); }

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.min-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: none;
  background: #091413;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.min-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 64px rgba(0,0,0,0.22); filter: brightness(1.06); }

/* Watermark decorative symbols */
.min-card::before {
  position: absolute;
  right: -14px;
  bottom: -20px;
  font-size: 9rem;
  line-height: 1;
  opacity: 0.1;
  color: #ffffff;
  pointer-events: none;
  font-weight: 900;
}
.ministries-grid .min-card:nth-child(1)::before { content: '✝'; font-size: 9rem; }
.ministries-grid .min-card:nth-child(2)::before { content: '◻'; font-size: 9rem; bottom: -10px; }
.ministries-grid .min-card:nth-child(3)::before { content: '◎'; font-size: 10rem; }
.ministries-grid .min-card:nth-child(4)::before { content: '◉'; font-size: 9rem; }
.ministries-grid .min-card:nth-child(5)::before { content: '✦'; font-size: 8rem; bottom: -8px; }
.ministries-grid .min-card:nth-child(6)::before { content: '◈'; font-size: 9rem; }

.min-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.min-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  flex: 1;
  margin-bottom: 32px;
}
.min-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr);
}
.min-link:hover { color: #ffffff; }

/* Ministry card individual colors */
.ministries-grid .min-card:nth-child(1) { background: #2C5EAD; }
.ministries-grid .min-card:nth-child(2) { background: #000000; }
.ministries-grid .min-card:nth-child(3) { background: #7B3FA0; }
.ministries-grid .min-card:nth-child(4) { background: #D92243; }
.ministries-grid .min-card:nth-child(5) { background: #0D5C63; }
.ministries-grid .min-card:nth-child(6) { background: #1A5C3A; }

/* ── EVENTS ─────────────────────────────────── */

.events { background: var(--bg-alt); }

.events-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.events-top h2 { margin-bottom: 0; }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.event-featured {
  background: #0D5C63;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.event-featured:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 64px rgba(0,0,0,0.18); filter: brightness(1.06); }
.event-featured .event-type { color: rgba(255,255,255,0.6); }
.event-featured .event-body h3 { color: #ffffff; }
.event-featured .event-body p { color: rgba(255,255,255,0.8); }
.event-featured .event-meta { color: rgba(255,255,255,0.6); }
.event-featured .btn-primary {
  background: #ffffff;
  color: #0D5C63;
  border-color: #ffffff;
}

.event-img {
  position: relative;
  aspect-ratio: 16/7;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.event-img-dark {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
}

/* ── CALENDAR WIDGET ─────────────────────────── */
.event-img-cal {
  background: linear-gradient(135deg, #1a3a7a 0%, #2C5EAD 100%);
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/8;
  padding: 28px 32px;
}

.event-cal {
  width: 100%;
  max-width: 340px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month-year {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cal-prev, .cal-next {
  color: rgba(255,255,255,0.45);
  font-size: 1.4rem;
  line-height: 1;
  cursor: default;
  user-select: none;
}

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  gap: 2px;
}

.cal-days-header span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-empty { /* placeholder for blank cells */ }

.cal-day {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 6px 2px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.2s ease;
}

.cal-day.cal-featured {
  background: #ffffff;
  color: #2C5EAD;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  position: relative;
}

.cal-day.cal-featured::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.event-tag-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.event-date-badge {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-align: center;
  min-width: 52px;
}
.date-day { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.date-month { display: block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }

.event-body { padding: 24px; }
.event-type { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.event-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 8px 0 10px; line-height: 1.3; letter-spacing: -0.01em; }
.event-body p { font-size: 0.875rem; color: var(--text-2); margin-bottom: 14px; line-height: 1.7; }
.event-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }

.events-list { display: flex; flex-direction: column; gap: 12px; }

.event-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.event-list-item:hover { transform: translateX(6px); filter: brightness(1.07); }

/* Event list item colors */
.events-list .event-list-item:nth-child(1) { background: #D92243; }
.events-list .event-list-item:nth-child(2) { background: #2C5EAD; }
.events-list .event-list-item:nth-child(3) { background: #1A5C3A; }
.events-list .event-list-item:nth-child(1) .eli-date span,
.events-list .event-list-item:nth-child(2) .eli-date span,
.events-list .event-list-item:nth-child(3) .eli-date span { color: #ffffff; }
.events-list .event-list-item:nth-child(1) .eli-type,
.events-list .event-list-item:nth-child(2) .eli-type,
.events-list .event-list-item:nth-child(3) .eli-type { color: rgba(255,255,255,0.6); }
.events-list .event-list-item:nth-child(1) h4,
.events-list .event-list-item:nth-child(2) h4,
.events-list .event-list-item:nth-child(3) h4 { color: #ffffff; }
.events-list .event-list-item:nth-child(1) p,
.events-list .event-list-item:nth-child(2) p,
.events-list .event-list-item:nth-child(3) p { color: rgba(255,255,255,0.7); }
.events-list .event-list-item:nth-child(1) .eli-join,
.events-list .event-list-item:nth-child(2) .eli-join,
.events-list .event-list-item:nth-child(3) .eli-join { color: rgba(255,255,255,0.9); }

.eli-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 40px; text-align: center;
}
.eli-date span:first-child { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; }
.eli-date span:last-child { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

.eli-info { flex: 1; }
.eli-type { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.eli-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 3px 0; }
.eli-info p { font-size: 0.78rem; color: var(--muted); margin: 0; }

a.event-list-link { text-decoration: none; cursor: pointer; }
a.event-list-link:hover { border-color: var(--text); transform: translateX(4px); }
.eli-join { color: var(--text); font-weight: 600; }

/* ── GIVE ───────────────────────────────────── */

.give {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
}
[data-theme="dark"] .give { background: #080808; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }

.give-content { max-width: 660px; margin: 0 auto; padding: 0 28px; }
.give-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 22px; }
.give-content p { color: rgba(255,255,255,0.55); line-height: 1.88; margin-bottom: 40px; font-size: 1.02rem; }
.give-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESOURCES ──────────────────────────────── */

.resources { background: var(--bg); }

.resources-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.res-card {
  border-radius: var(--radius-lg);
  border: none;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.res-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 64px rgba(0,0,0,0.22); filter: brightness(1.06); }

/* Per-card colors */
.res-c1 { background: #2C5EAD; }
.res-c2 { background: #7B3FA0; }
.res-c3 { background: #D92243; }
.res-c4 { background: #0D5C63; }

/* All colored cards — white text */
.res-c1 .res-tag, .res-c2 .res-tag,
.res-c3 .res-tag, .res-c4 .res-tag {
  color: #ffffff;
  background: rgba(255,255,255,0.18);
}
.res-c1 h3, .res-c2 h3, .res-c3 h3, .res-c4 h3 { color: #ffffff; }
.res-c1 p,  .res-c2 p,  .res-c3 p,  .res-c4 p  { color: #ffffff !important; }
.res-c1 .res-link, .res-c2 .res-link,
.res-c3 .res-link, .res-c4 .res-link {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.5);
}
.res-c1 .res-link:hover, .res-c2 .res-link:hover,
.res-c3 .res-link:hover, .res-c4 .res-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Watermark decorative symbols */
.res-c1::before, .res-c2::before,
.res-c3::before, .res-c4::before {
  position: absolute;
  right: -12px;
  bottom: -18px;
  font-size: 9rem;
  line-height: 1;
  opacity: 0.1;
  color: #ffffff;
  pointer-events: none;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.res-c1::before { content: '✝'; }
.res-c2::before { content: '◎'; font-size: 10rem; }
.res-c3::before { content: '✦'; font-size: 8rem; bottom: -10px; }
.res-c4::before { content: '◈'; font-size: 9rem; }

.res-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  width: fit-content;
}
.res-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.res-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; flex: 1; margin-bottom: 22px; }
.res-link { font-size: 0.82rem; font-weight: 700; color: var(--text); border-bottom: 1.5px solid var(--border); display: inline-block; transition: color var(--tr), border-color var(--tr); }
.res-link:hover { border-color: var(--text); }

/* ── CONTACT ────────────────────────────────── */

.contact { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-2); line-height: 1.85; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.contact-item span { font-size: 0.95rem; color: var(--text); }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--tr);
}
.soc-btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.soc-btn.soc-icon-only { padding: 10px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; }

.contact-form-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-box form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fgroup { display: flex; flex-direction: column; gap: 7px; }
.fgroup label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--tr);
  -webkit-appearance: none;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--text); }
.fgroup textarea { resize: vertical; }
.form-feedback { font-size: 0.85rem; text-align: center; min-height: 1.2em; color: #16a34a; }

/* ── FOOTER ─────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  padding: 72px 0 32px;
}
[data-theme="dark"] .footer { background: #000000; border-top: 1px solid var(--border); }

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

/* Footer top-left logo */
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all var(--tr);
}
.footer-social a:hover { background: rgba(255,255,255,0.16); color: #ffffff; }

.footer-nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fnav-col { display: flex; flex-direction: column; gap: 10px; }
.fnav-col h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.25); margin-bottom: 6px; }
.fnav-col a { font-size: 0.875rem; color: rgba(255,255,255,0.48); transition: color var(--tr); }
.fnav-col a:hover { color: #ffffff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.22); transition: color var(--tr); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* Footer bottom-right logo */
.footer-bottom-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.5;
  transition: opacity var(--tr);
}
.footer-bottom-logo:hover { opacity: 0.75; }

/* ── ABOUT MODAL ────────────────────────────── */

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.about-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.about-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.about-modal.open .about-modal-panel {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}
.modal-close-btn:hover { background: var(--border); }

.modal-body { display: flex; flex-direction: column; gap: 20px; }

.modal-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── SCROLL REVEAL ──────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────── */

@media (max-width: 1024px) {
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 340px 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  .about-grid,
  .watch-grid,
  .events-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .ministries-grid { grid-template-columns: 1fr 1fr; }
  .events-top { flex-direction: column; align-items: flex-start; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; font-size: 1.15rem; }
  .hamburger { display: flex; }

  .info-bar-inner { flex-direction: column; }
  .info-item { max-width: none; padding: 18px 28px; }
  .info-sep { width: 100%; height: 1px; margin: 0; }

  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .ministries-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .give-ctas { flex-direction: column; align-items: center; }
  .resources-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
}
