/* ==========================================================================
   UNSTOPPABLE — DESIGN TOKENS
   Palette:
     --ink        Deep navy, primary dark / headings on light bg
     --royal      Royal blue, gradients & dark sections
     --gold       Gold accent, CTAs & highlights
     --gold-soft  Softer gold for glows / borders
     --mist       Light grey section background
     --white      Pure white
     --text-body  Body copy grey-blue
   Type:
     Display  — 'Plus Jakarta Sans' (modern sans, used with restraint: hero,
                 section titles, scripture, wordmark)
     Body     — 'Manrope' (sans, body copy, UI)
     Utility  — 'Manrope' uppercase, tracked, for eyebrows/labels
   Signature element:
     "Dawn horizon" — a rising gold gradient glow with soft light rays and
     drifting particles in the hero, echoed as a scripture band rhythm
     between every major section: a quiet, recurring breath of the finished
     work of Christ that carries the page from section to section.
   ========================================================================== */

:root {
  --ink: #0a1a34;
  --ink-deep: #050d1c;
  --royal: #14335f;
  --royal-2: #1b3a6b;
  --gold: #c9a24a;
  --gold-light: #e8cd83;
  --mist: #f6f7fa;
  --white: #ffffff;
  --text-body: #57627a;
  --text-body-light: rgba(255, 255, 255, 0.76);
  --border-soft: rgba(11, 30, 61, 0.08);
  --shadow-soft: 0 30px 70px -30px rgba(6, 14, 30, 0.45);
  --shadow-card: 0 14px 36px -16px rgba(11, 30, 61, 0.2);
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: clamp(96px, 12vw, 180px);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ==========================================================================
   REVEAL-ON-SCROLL (fade, slide-left, slide-right variants)
   ========================================================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal { transform: translateY(26px); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: translate(0, 0); }

/* Slight stagger for grouped children revealed together */
.vision-grid .vision-card:nth-child(2) { transition-delay: 0.05s; }
.vision-grid .vision-card:nth-child(3) { transition-delay: 0.1s; }

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.14;
  color: var(--ink);
}
.section-title.light,
.light .section-title { color: var(--white); }
.section-lead {
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 620px;
}
.section-lead.light, .light .section-lead { color: var(--text-body-light); }
.section-head { max-width: 720px; margin-bottom: 72px; }

/* ==========================================================================
   BUTTONS (with ripple)
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 18px 36px -12px rgba(201, 162, 74, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -14px rgba(201, 162, 74, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }

/* Ripple element injected by JS */
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.55);
  animation: rippleAnim 0.7s var(--ease);
  pointer-events: none;
  z-index: -1;
}
@keyframes rippleAnim {
  to { transform: scale(2.6); opacity: 0; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--border-soft);
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 13px; border-color: var(--gold); }
.link-arrow.light { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }

/* ==========================================================================
   SCRIPTURE BAND — recurring signature transition between sections
   ========================================================================== */
.scripture-band {
  background: var(--mist);
  padding: 68px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.scripture-band.alt { background: var(--white); }
.scripture-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scripture-mark { color: var(--gold); margin-bottom: 20px; opacity: 0.85; }
.scripture-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
}
.scripture-ref {
  margin-top: 16px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(8, 19, 39, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.5);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo-icon {
  display: block;
  height: 57px;
  width: auto;
}
.nav-logo-dot { color: var(--gold); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-link:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:not(.nav-cta):hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO — cinematic centrepiece
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(130% 95% at 50% 0%, var(--royal-2) 0%, var(--ink) 55%, var(--ink-deep) 100%);
}

/* Soft light rays sweeping from top */
.hero-rays {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130%;
  background:
    conic-gradient(from 200deg at 50% -10%,
      rgba(232, 205, 131, 0) 0deg,
      rgba(232, 205, 131, 0.10) 8deg,
      rgba(232, 205, 131, 0) 16deg,
      rgba(232, 205, 131, 0) 40deg,
      rgba(232, 205, 131, 0.07) 48deg,
      rgba(232, 205, 131, 0) 56deg,
      rgba(232, 205, 131, 0) 100deg,
      rgba(232, 205, 131, 0.09) 108deg,
      rgba(232, 205, 131, 0) 116deg);
  animation: raysDrift 22s linear infinite;
  pointer-events: none;
  transform-origin: 50% 0%;
}
@keyframes raysDrift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.18) 0%, rgba(201, 162, 74, 0) 62%);
  pointer-events: none;
}

/* Floating particles container — populated by JS */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation-name: particleFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: 0.75; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-620px) translateX(var(--drift, 30px)); }
}

.hero-horizon {
  position: absolute;
  bottom: -340px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 750px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(232, 205, 131, 0.3), rgba(232, 205, 131, 0) 70%);
  filter: blur(8px);
  animation: dawnRise 7s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes dawnRise {
  from { opacity: 0.5; transform: translateX(-50%) translateY(14px); }
  to   { opacity: 0.95; transform: translateX(-50%) translateY(-14px); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, rgba(0,0,0,0) 45%, rgba(3, 8, 18, 0.55) 100%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; will-change: transform; }
.hero-title {
  font-size: clamp(1.48rem, 3.15vw, 2.48rem);
  line-height: 1.12;
  color: var(--white);
  margin: 20px 0 26px;
}
.hero-title-accent {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  margin: 7px auto 0;
  animation: cueMove 2s ease-in-out infinite;
}
@keyframes cueMove {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: var(--section-y) 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: center;
}
.about-media { position: relative; }
.about-quote-mark {
  position: absolute;
  top: -54px;
  left: -6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
  pointer-events: none;
}
.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-photo-frame:hover .about-photo { transform: scale(1.04); }
.about-accent-line {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-accent-ring {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: ringFloat 6s var(--ease) infinite alternate;
}
@keyframes ringFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}
.about-copy .about-bio p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}
.about-copy .section-title { margin: 18px 0 30px; }

/* ==========================================================================
   VISION — feature panels
   ========================================================================== */
.vision { padding: var(--section-y) 0; background: var(--mist); }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vision-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.vision-card:hover { transform: translateY(-8px); box-shadow: 0 28px 55px -20px rgba(11, 30, 61, 0.28); }
.vision-card:hover::before { transform: scaleX(1); }
.vision-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.16), rgba(201, 162, 74, 0.04));
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.vision-card:hover .vision-icon { transform: scale(1.1) rotate(-4deg); background: linear-gradient(135deg, rgba(201, 162, 74, 0.28), rgba(201, 162, 74, 0.08)); }
.vision-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--ink); }
.vision-card p { color: var(--text-body); line-height: 1.7; font-size: 0.97rem; }

/* ==========================================================================
   VIDEO SECTION — cinematic
   ========================================================================== */
.video-section {
  position: relative;
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, var(--ink-deep), var(--royal) 55%, var(--ink-deep));
  overflow: hidden;
}
.video-section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.14) 0%, rgba(201, 162, 74, 0) 65%);
  pointer-events: none;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(232, 205, 131, 0.14), 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 120px -20px rgba(201, 162, 74, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-more { margin-top: 34px; text-align: center; }

/* Watch Messages gallery */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-gallery-loading,
.video-gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 12px 0 0;
}
.video-previous {
  margin-top: 64px;
}
.video-previous .section-head {
  margin-bottom: 28px;
}
.video-previous-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}
.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.65);
  color: var(--white);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 205, 131, 0.35);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.7), 0 0 40px -18px rgba(201, 162, 74, 0.35);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-deep);
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.video-card:hover .video-card-thumb img { transform: scale(1.04); }
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 13, 28, 0.28);
  transition: background 0.3s var(--ease);
}
.video-card:hover .video-card-play { background: rgba(5, 13, 28, 0.4); }
.video-card-play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(201, 162, 74, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-card:hover .video-card-play span {
  transform: scale(1.06);
  background: var(--gold-light);
}
.video-card-play svg { margin-left: 3px; }
.video-card-title {
  margin: 0;
  padding: 16px 16px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   CONNECT / SOCIAL — animated cards
   ========================================================================== */
.connect {
  position: relative;
  padding: var(--section-y) 0;
  text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--royal-2), var(--ink-deep) 75%);
  overflow: hidden;
}
.connect-glow {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.12), rgba(201, 162, 74, 0) 70%);
  pointer-events: none;
}
.connect-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.connect .section-lead { margin-left: auto; margin-right: auto; }
.social-grid {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 128px;
  padding: 28px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.social-card .social-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.social-card .social-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body-light);
  transition: color 0.4s var(--ease);
}
.social-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 22px 44px -18px rgba(201, 162, 74, 0.3);
}
.social-card:hover .social-icon { background: var(--gold); color: var(--ink); }
.social-card:hover .social-label { color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink-deep);
  padding: 76px 0 40px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-verse {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 520px;
  line-height: 1.6;
}
.footer-verse-ref {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.social-row { display: flex; gap: 16px; }
.social-row-small { margin: 18px 0 6px; }
.social-row-small .social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.social-row-small .social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-copy { color: rgba(255, 255, 255, 0.4); font-size: 0.82rem; margin-top: 8px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-frame { max-width: 420px; margin: 0 auto; }
  .about-quote-mark { top: -46px; }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-logo-icon { height: 48px; }
  .video-gallery { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-logo-icon { height: 30px; }

  .nav-toggle {
    padding: 14px;
    margin-right: -6px;
    transition: transform 0.35s var(--ease);
  }
  .nav-toggle.open {
    position: fixed;
    top: max(18px, env(safe-area-inset-top, 0px));
    right: max(18px, env(safe-area-inset-right, 0px));
    z-index: 120;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 105;
    height: 100dvh;
    min-height: 100vh;
    width: min(88vw, 340px);
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding:
      calc(max(88px, env(safe-area-inset-top, 0px) + 64px))
      28px
      calc(max(36px, env(safe-area-inset-bottom, 0px) + 24px))
      28px;
    background:
      linear-gradient(165deg, rgba(12, 28, 52, 0.88) 0%, rgba(5, 13, 28, 0.94) 48%, rgba(5, 13, 28, 0.97) 100%);
    backdrop-filter: blur(28px) saturate(1.15);
    -webkit-backdrop-filter: blur(28px) saturate(1.15);
    border-left: 1px solid rgba(232, 205, 131, 0.14);
    box-shadow:
      -28px 0 64px rgba(0, 0, 0, 0.48),
      -6px 0 32px rgba(201, 162, 74, 0.07),
      inset 1px 0 0 rgba(255, 255, 255, 0.04);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }
  .nav-menu.open li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-menu.open li:nth-child(1) { transition-delay: 0.07s; }
  .nav-menu.open li:nth-child(2) { transition-delay: 0.13s; }
  .nav-menu.open li:nth-child(3) { transition-delay: 0.19s; }
  .nav-menu.open li:nth-child(4) { transition-delay: 0.25s; }

  .nav-menu .nav-link:not(.nav-cta) {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 16px 16px 18px;
    margin-bottom: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    border-left: 3px solid transparent;
    transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
  }
  .nav-menu .nav-link:not(.nav-cta)::after {
    display: none;
  }
  .nav-menu .nav-link:not(.nav-cta)::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    opacity: 0.72;
    background: center / contain no-repeat;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-menu .nav-link[href='#about']::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8cd83' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  }
  .nav-menu .nav-link[href='#vision']::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8cd83' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  }
  .nav-menu .nav-link[href='#connect']::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8cd83' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
  }
  .nav-menu .nav-link:not(.nav-cta):active {
    transform: scale(0.98);
  }
  .nav-menu .nav-link:not(.nav-cta):hover,
  .nav-menu .nav-link:not(.nav-cta):focus-visible {
    color: var(--gold-light);
    background: rgba(201, 162, 74, 0.1);
  }
  .nav-menu .nav-link:not(.nav-cta):hover::before,
  .nav-menu .nav-link:not(.nav-cta):focus-visible::before {
    opacity: 1;
    transform: scale(1.06);
  }
  .nav-menu .nav-link.is-active {
    color: var(--gold-light);
    background: rgba(201, 162, 74, 0.12);
    border-left-color: var(--gold);
  }
  .nav-menu .nav-link.is-active::before {
    opacity: 1;
  }

  .nav-menu .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
    padding: 17px 24px;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 16px;
    box-shadow:
      0 10px 32px rgba(201, 162, 74, 0.38),
      0 2px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .nav-menu .nav-cta:hover {
    box-shadow:
      0 14px 36px rgba(201, 162, 74, 0.45),
      0 4px 12px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  .nav-menu .nav-cta::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--ink);
  }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(5, 13, 28, 0.52);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
    animation: navBackdropFade 0.45s var(--ease) forwards;
  }
  @keyframes navBackdropFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  :root { --section-y: 84px; }
  .scripture-band { padding: 52px 0; }
  .vision-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 48px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .social-card { width: 104px; padding: 22px 10px; }
  .video-gallery { grid-template-columns: 1fr; gap: 20px; }
}
