/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --ink: #0a0f08;
  --forest-deep: #0d2818;
  --forest: #1a4a2e;
  --forest-mid: #2d7a4f;
  --forest-bright: #3da668;
  --gold: #c8a623;
  --gold-bright: #f0c93a;
  --gold-pale: #fdf6dc;
  --cobalt: #0f2d6e;
  --cobalt-mid: #1e4db7;
  --cobalt-light: #4a7cd4;
  --sky: #dceeff;
  --cream: #faf8f3;
  --off-white: #f2ede4;
  --text: #1a2318;
  --text-mid: #4a5c44;
  --text-light: #7a8c74;
  --white: #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(200,166,35,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
}
body:hover .cursor { opacity:1; }
a:hover ~ .cursor, button:hover ~ .cursor { width:20px; height:20px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: stretch;
  height: 72px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
#navbar.scrolled {
  background: rgba(10,15,8,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  text-decoration: none;
  background: var(--forest-deep);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  padding-right: 52px;
  min-width: 280px;
  transition: background 0.3s;
}
.nav-brand:hover { background: var(--forest); }
.nav-brand img {
  height: 64px; width: 64px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(200,166,35,0.35));
}
.nav-brand-text .top {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-brand-text .bot {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 20px;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content:'';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
}
.btn-give {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.2s !important;
  text-decoration: none;
}
.btn-give:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }
.btn-give::after { display:none !important; }
.btn-members {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85) !important;
  padding: 9px 18px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.2s !important;
  text-decoration: none;
}
.btn-members:hover { border-color: var(--gold); color: var(--gold-bright) !important; }
.btn-members::after { display:none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
  background: transparent;
  border: none;
}
.hamburger span { width:24px; height:2px; background:white; border-radius:2px; transition:0.3s; display:block; }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 890;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--gold-bright); }
#mobile-nav .close-btn {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 28px;
  color: white;
  cursor: none;
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-bar {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 800;
  height: 38px;
  background: var(--gold);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: top 0.4s;
  border-top: 2px solid rgba(0,0,0,0.12);
  border-bottom: 2px solid rgba(0,0,0,0.12);
}
#navbar.scrolled ~ .ticker-bar { top: 64px; }
.ticker-overflow { flex: 1; overflow: hidden; position: relative; }
.ticker-overflow::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, var(--gold), transparent);
  z-index: 2;
}
.ticker-overflow::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to left, var(--gold), transparent);
  z-index: 2;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  align-items: center;
  height: 100%;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.t-sep {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--forest);
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes tickerMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-label {
  background: var(--forest-deep);
  color: var(--gold-bright);
  padding: 0 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 3px solid rgba(200,166,35,0.4);
  gap: 8px;
}
.ticker-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4cdd7a;
  box-shadow: 0 0 0 0 rgba(76,221,122,0.5);
  animation: tickerPulse 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes tickerPulse { 0%,100%{box-shadow:0 0 0 0 rgba(76,221,122,0.5)} 50%{box-shadow:0 0 0 6px transparent} }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 108px;
  background: linear-gradient(145deg, #050e07 0%, #0a1f10 30%, #0c1e30 65%, #080f06 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,74,46,0.72) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(13,32,96,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(13,40,24,0.5) 0%, transparent 50%),
    linear-gradient(90deg, #050e07 0%, rgba(8,15,6,0.6) 45%, rgba(0,0,0,0.15) 100%),
    url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from{transform:scale(1)} to{transform:scale(1.08)} }
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10,15,8,0.85) 0%,
    rgba(13,40,24,0.6) 40%,
    rgba(15,45,110,0.4) 100%
  );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 60px 80px;
  width: 100%;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left-col {
  display: flex;
  flex-direction: column;
}
.hero-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-church-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-church-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(200,166,35,0.2);
}
.hero-photo-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--forest-deep);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hpb-cross {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 2px;
}
.hpb-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hpb-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-right-col { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-eyebrow-line {
  width: 50px;
  height: 2px;
  background: var(--gold-bright);
}
.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.9;
  color: white;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.hero-headline .line-accent { color: var(--gold-bright); display: block; }
.hero-headline .line-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  display: block;
}
.hero-theme-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,0.7);
  margin-top: 28px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-theme-line::before, .hero-theme-line::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold);
}
.hero-service-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.service-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  padding: 14px 28px;
  transition: all 0.3s;
}
.service-pill:first-child { border-radius: 6px 0 0 6px; }
.service-pill:last-child { border-radius: 0 6px 6px 0; border-right: 1px solid rgba(255,255,255,0.12); }
.service-pill:hover { background: rgba(200,166,35,0.15); border-color: rgba(200,166,35,0.3); }
.service-pill .sp-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 4px; }
.service-pill .sp-time { font-size: 18px; font-weight: 800; color: white; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.cta-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 18px 44px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(200,166,35,0.35);
  border: none;
  cursor: none;
  display: inline-block;
}
.cta-primary:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,166,35,0.5); }
.cta-ghost {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 16px 36px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: none;
  display: inline-block;
}
.cta-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(200,166,35,0.08); }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  z-index: 10;
}
.scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-bright);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0%{left:-100%} 100%{left:100%} }

/* ============================================================
   SECTION SYSTEM
   ============================================================ */
.section-wrap { padding: 100px 60px; max-width: 1300px; margin: 0 auto; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.3; margin: 0 60px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 16px;
}
.eyebrow::before { content:''; width:30px; height:2px; background:var(--gold); }
.eyebrow.light { color: var(--gold-bright); }
.eyebrow.light::before { background: var(--gold-bright); }

.display-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.display-title.light { color: white; }
.display-title span { color: var(--gold); }

.body-text { font-size: 17px; color: var(--text-mid); line-height: 1.8; max-width: 620px; }
.body-text.light { color: rgba(255,255,255,0.65); }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-wrap { background: var(--cream); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-img-stack { position: relative; }
.wi-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.wi-photo {
  object-fit: cover;
  object-position: center 30%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.wi-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--forest-deep);
  border: 3px solid var(--gold);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.wi-badge .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}
.wi-badge .label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

.welcome-text-side { padding-left: 10px; }
.scripture-quote {
  background: var(--forest-deep);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.scripture-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: white; line-height: 1.7; }
.scripture-quote cite { font-size: 12px; color: var(--gold-bright); font-style: normal; letter-spacing: 1px; font-weight: 700; display: block; margin-top: 8px; }

.times-grid {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 28px;
}
.time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.time-row:last-child { border: none; }
.time-row:hover { background: var(--gold-pale); }
.time-row .name { font-size: 15px; font-weight: 700; color: var(--text); }
.time-row .day { font-size: 12px; color: var(--text-light); font-weight: 600; }
.time-row .time { font-size: 16px; font-weight: 900; color: var(--forest-mid); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }

/* ============================================================
   ANNIVERSARY SECTION
   ============================================================ */
.anni-wrap {
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.anni-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(200,166,35,0.03) 40px,
      rgba(200,166,35,0.03) 41px
    );
}
.anni-bg-circle {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(200,166,35,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.anni-bg-circle:nth-child(2) { width: 600px; height: 600px; border-color: rgba(200,166,35,0.08); }
.anni-bg-circle:nth-child(3) { width: 400px; height: 400px; border-color: rgba(200,166,35,0.1); }
.ann-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(280px, 38vw, 520px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,166,35,0.07);
  text-stroke: 1px rgba(200,166,35,0.07);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  text-shadow:
    0 0 80px rgba(200,166,35,0.12),
    0 0 160px rgba(200,166,35,0.07),
    0 0 300px rgba(200,166,35,0.04);
  animation: anniBgPulse 4s ease-in-out infinite;
}
@keyframes anniBgPulse {
  0%, 100% {
    -webkit-text-stroke-color: rgba(200,166,35,0.07);
    text-shadow: 0 0 80px rgba(200,166,35,0.12), 0 0 160px rgba(200,166,35,0.07), 0 0 300px rgba(200,166,35,0.04);
  }
  50% {
    -webkit-text-stroke-color: rgba(200,166,35,0.14);
    text-shadow: 0 0 100px rgba(200,166,35,0.22), 0 0 200px rgba(200,166,35,0.13), 0 0 400px rgba(200,166,35,0.07);
  }
}
.anni-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
}
.anni-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.anni-left .roman {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,166,35,0.15);
  letter-spacing: -8px;
  position: absolute;
  top: -20px;
  left: -20px;
  pointer-events: none;
  user-select: none;
}
.anni-badge-top {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.anni-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 20px;
}
.anni-title .gold { color: var(--gold-bright); display: block; }
.anni-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.countdown-row { display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.cd-box {
  text-align: center;
  min-width: 88px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,166,35,0.2);
  border-radius: 6px;
  padding: 16px 10px 12px;
  position: relative;
  overflow: hidden;
}
.cd-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cd-box:hover::before { transform: scaleX(1); }
.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}
.cd-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-top: 4px; }

.anni-events-list { display: flex; flex-direction: column; gap: 16px; }
.anni-event-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
  cursor: none;
}
.anni-event-item:hover { background: rgba(200,166,35,0.08); border-left-color: var(--gold-bright); transform: translateX(4px); }
.aei-date { text-align: center; }
.aei-date .month { font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.aei-date .day { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: white; line-height: 1; }
.aei-name { font-size: 15px; font-weight: 800; color: white; margin-bottom: 3px; }
.aei-detail { font-size: 12px; color: rgba(255,255,255,0.5); }
.aei-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: none;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.aei-btn:hover { background: var(--gold-bright); }

/* ============================================================
   LIVE STREAM
   ============================================================ */
.stream-wrap { background: #0d1535; position: relative; overflow: hidden; }
.stream-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(29,77,183,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(20,60,120,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 60% 80%, rgba(10,40,80,0.4) 0%, transparent 50%);
}
.stream-inner { max-width: 1300px; margin: 0 auto; padding: 100px 60px; position: relative; }
.stream-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; margin-top: 50px; }
.stream-player-wrap {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.stream-screen {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0d1a;
  gap: 16px;
  padding: 30px;
  border-radius: 12px;
}
.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.4);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7070;
}
.live-dot { width:8px; height:8px; background:#e04040; border-radius:50%; animation:livePulse 1.2s ease infinite; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(220,50,50,0.6)} 50%{box-shadow:0 0 0 8px transparent} }
.stream-logo-wrap { opacity: 0.4; }
.stream-logo-wrap img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.stream-info { text-align: center; }
.stream-info .next { font-size: 14px; font-weight: 800; color: white; }
.stream-info .when { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.stream-note { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 16px; }
.stream-sidebar { display: flex; flex-direction: column; gap: 18px; }
.ss-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.ss-card:hover { border-color: rgba(61,166,104,0.3); }
.ss-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.ss-schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--forest-bright);
  border-radius: 0 6px 6px 0;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.ss-schedule-row:hover { background: rgba(255,255,255,0.07); }
.ss-schedule-row:last-child { margin-bottom: 0; }
.ss-schedule-row .sn { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 600; }
.ss-schedule-row .st { font-size: 14px; color: var(--forest-bright); font-weight: 900; letter-spacing: 0.5px; font-family: 'Barlow Condensed', sans-serif; }
.prayer-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 10px 14px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.prayer-input:focus { outline:none; border-color: var(--gold); }
.prayer-input::placeholder { color: rgba(255,255,255,0.25); }
.prayer-textarea { height: 75px; resize: none; }
.btn-prayer {
  width: 100%;
  background: var(--forest);
  border: none;
  color: white;
  padding: 11px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s;
}
.btn-prayer:hover { background: var(--forest-mid); }

/* ============================================================
   SERMONS
   ============================================================ */
.sermons-wrap { background: var(--off-white); }
.sermon-tabs { display: flex; gap: 4px; margin: 36px 0 40px; border-bottom: 2px solid rgba(0,0,0,0.08); padding-bottom: 0; }
.stab {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s;
}
.stab.active { color: var(--forest); border-bottom-color: var(--gold); }
.stab:hover { color: var(--text); }
.sermon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sermon-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sermon-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.sc-header {
  height: 160px;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-deep), var(--cobalt));
  opacity: 0.9;
}
.sc-header-cross {
  position: relative;
  width: 50px; height: 60px;
  opacity: 0.25;
}
.sc-header-cross::before {
  content:'';
  position:absolute;
  width:10px; height:60px;
  background:white;
  left:50%; transform:translateX(-50%);
  border-radius:2px;
}
.sc-header-cross::after {
  content:'';
  position:absolute;
  width:50px; height:10px;
  background:white;
  top:16px;
  border-radius:2px;
}
.sc-date-tag { position:absolute; top:14px; right:14px; background:var(--gold); color:var(--ink); font-size:10px; font-weight:900; padding:4px 12px; border-radius:2px; letter-spacing:1px; }
.sc-body { padding: 22px; }
.sc-series { font-size:10px; font-weight:900; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.sc-title { font-size:18px; font-weight:800; color:var(--text); margin-bottom:6px; line-height:1.3; }
.sc-ref { font-size:12px; color:var(--text-light); font-style:italic; margin-bottom:18px; }
.sc-actions { display:flex; gap:8px; }
.sc-btn {
  flex:1; padding:9px; border-radius:4px; font-size:11px; font-weight:900;
  letter-spacing:1.5px; text-transform:uppercase; text-align:center;
  text-decoration:none; cursor:pointer; border:none; font-family:'Barlow',sans-serif; transition:0.2s;
}
.sc-btn-fill { background:var(--forest); color:white; }
.sc-btn-fill:hover { background:var(--forest-mid); }
.sc-btn-outline { border:1.5px solid var(--forest); color:var(--forest); background:none; }
.sc-btn-outline:hover { background:var(--forest); color:white; }

/* ============================================================
   GIVING
   ============================================================ */
.giving-wrap {
  background: linear-gradient(150deg, var(--cobalt) 0%, var(--forest-deep) 100%);
  position: relative;
  overflow: hidden;
}
.giving-bg-text {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 240px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.giving-inner { max-width:1300px; margin:0 auto; padding:100px 60px; position:relative; }
.giving-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.giving-left p { max-width: 460px; }
.giving-types { display:flex; flex-direction:column; gap:12px; margin-top:32px; }
.giving-type-btn {
  display:flex; align-items:center; gap:16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius:6px;
  padding:16px 20px;
  cursor: none;
  transition:all 0.2s;
  text-align:left;
  font-family:'Barlow',sans-serif;
}
.giving-type-btn:hover, .giving-type-btn.active { background:rgba(200,166,35,0.12); border-color:rgba(200,166,35,0.35); }
.gtb-label { font-size:15px; font-weight:800; color:white; display:block; }
.gtb-sub { font-size:12px; color:rgba(255,255,255,0.45); }
.gtb-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.15); flex-shrink:0; transition:0.2s; }
.giving-type-btn.active .gtb-dot, .giving-type-btn:hover .gtb-dot { background:var(--gold); }

.giving-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,166,35,0.2);
  border-radius:12px;
  padding: 44px;
  text-align:center;
}
.givelify-logo-wrap {
  display:flex; align-items:center; justify-content:center;
  gap: 12px; margin-bottom: 32px;
}
.givelify-wordmark {
  background: white;
  color: #5b2d8e;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: 'Barlow', sans-serif;
}
.givelify-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.giving-card p { color:rgba(255,255,255,0.6); font-size:15px; margin-bottom:28px; line-height:1.7; }
.btn-give-now {
  display:block;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 44px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(200,166,35,0.3);
  font-family: 'Barlow', sans-serif;
}
.btn-give-now:hover { background:var(--gold-bright); transform:translateY(-3px); box-shadow:0 16px 50px rgba(200,166,35,0.45); }
.giving-verse { font-family:'Playfair Display',serif; font-style:italic; font-size:15px; color:rgba(255,255,255,0.4); margin-top:24px; line-height:1.7; }

/* ============================================================
   MINISTRIES
   ============================================================ */
.min-wrap { background:var(--cream); overflow: visible; position: relative; z-index: 10; }
.min-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; }
.min-card {
  background:white;
  border-radius:8px;
  padding:32px 24px;
  transition:all 0.35s;
  border-bottom:3px solid transparent;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.min-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:var(--gold);
  transform:scaleX(0);
  transition:transform 0.3s;
}
.min-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,0.1); }
.min-card:hover::before { transform:scaleX(1); }
.min-icon-wrap {
  width:56px; height:56px;
  background:var(--forest-deep);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  font-size:24px;
  transition:background 0.3s;
}
.min-card:hover .min-icon-wrap { background:var(--forest); }
.min-card h3 { font-size:17px; font-weight:800; color:var(--text); margin-bottom:8px; }
.min-card p { font-size:13px; color:var(--text-light); line-height:1.6; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-wrap { background:var(--ink); position:relative; overflow:hidden; }
.events-bg { position:absolute; inset:0; background:linear-gradient(135deg, rgba(26,74,46,0.3) 0%, rgba(15,45,110,0.3) 100%); }
.events-inner { max-width:1300px; margin:0 auto; padding:100px 60px; position:relative; }
.events-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:50px; }
.event-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  overflow:hidden;
  transition:all 0.35s;
  cursor:pointer;
}
.event-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(200,166,35,0.2); transform:translateY(-6px); }
.ec-top { padding:24px; border-bottom:1px solid rgba(255,255,255,0.06); display:flex; gap:18px; align-items:center; }
.ec-date {
  background:var(--gold);
  border-radius:6px;
  width:60px; height:60px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  flex-shrink:0;
}
.ec-date .em { font-size:10px; font-weight:900; letter-spacing:1px; text-transform:uppercase; color:rgba(0,0,0,0.6); }
.ec-date .ed { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:900; color:var(--ink); line-height:1; }
.ec-name { font-size:17px; font-weight:800; color:white; margin-bottom:4px; line-height:1.3; }
.ec-type { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.4); }
.ec-body { padding:20px 24px; }
.ec-body p { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.6; margin-bottom:14px; }
.ec-meta { font-size:12px; color:rgba(255,255,255,0.4); display:flex; flex-direction:column; gap:3px; }
.ec-register {
  display:block; margin:16px 24px 24px;
  background:transparent; border:1.5px solid rgba(200,166,35,0.4);
  color:var(--gold-bright); padding:10px;
  border-radius:4px; font-size:12px; font-weight:900; letter-spacing:1.5px;
  text-transform:uppercase; text-align:center; text-decoration:none;
  font-family:'Barlow',sans-serif; transition:all 0.2s; cursor:pointer;
}
.ec-register:hover { background:rgba(200,166,35,0.12); border-color:var(--gold-bright); }

/* ============================================================
   PLAN YOUR VISIT
   ============================================================ */
.visit-wrap { background:var(--off-white); }
.visit-layout { display:grid; grid-template-columns:1fr 1fr; gap:70px; margin-top:50px; align-items:start; }
.visit-steps-list { display:flex; flex-direction:column; gap:0; }
.vstep {
  display:flex; gap:22px;
  padding-bottom:36px;
  position:relative;
}
.vstep:not(:last-child)::after {
  content:'';
  position:absolute;
  left:20px; top:46px; bottom:0;
  width:1px;
  background:linear-gradient(to bottom, var(--gold), transparent);
}
.vstep-num {
  width:42px; height:42px; border-radius:50%;
  background:var(--forest-deep);
  border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif;
  font-size:18px; font-weight:900;
  color:var(--gold-bright);
  flex-shrink:0;
}
.vstep-content h4 { font-size:17px; font-weight:800; color:var(--text); margin-bottom:6px; }
.vstep-content p { font-size:14px; color:var(--text-mid); line-height:1.7; }

.visit-form-card {
  background:white;
  border-radius:12px;
  padding:44px;
  box-shadow:0 20px 60px rgba(0,0,0,0.1);
  position:sticky;
  top:120px;
}
.vfc-title { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:900; text-transform:uppercase; color:var(--text); margin-bottom:4px; }
.vfc-sub { font-size:14px; color:var(--text-light); margin-bottom:28px; }
.fi { margin-bottom:16px; }
.fi label { display:block; font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; color:var(--text); margin-bottom:7px; }
.fi input, .fi select, .fi textarea {
  width:100%; border:1.5px solid #e0ddd7; border-radius:6px;
  padding:12px 16px; font-size:14px; font-family:'Barlow',sans-serif;
  color:var(--text); background:#faf9f7; transition:border-color 0.2s;
}
.fi input:focus, .fi select:focus, .fi textarea:focus { outline:none; border-color:var(--forest); background:white; }
.fi-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.btn-register-visit {
  width:100%; background:var(--forest-deep); border:none;
  color:white; padding:16px; border-radius:6px;
  font-family:'Barlow',sans-serif; font-size:13px; font-weight:900;
  letter-spacing:2px; text-transform:uppercase; cursor:pointer;
  transition:background 0.2s; margin-top:8px;
}
.btn-register-visit:hover { background:var(--forest); }
.address-strip { background:var(--gold-pale); border:1px solid rgba(200,166,35,0.3); border-radius:8px; padding:20px 24px; margin-top:30px; }
.address-strip strong { font-size:13px; font-weight:900; letter-spacing:1px; text-transform:uppercase; color:var(--forest); display:block; margin-bottom:6px; }
.address-strip p { font-size:15px; color:var(--text); font-weight:600; }
.address-strip span { font-size:13px; color:var(--text-light); }
.map-embed { border-radius:8px; overflow:hidden; height:200px; margin-top:16px; }
.map-embed iframe { width:100%; height:100%; border:none; display:block; }

/* ============================================================
   SPIRITUAL GAMES HUB
   ============================================================ */
.games-wrap { background: var(--forest-deep); position:relative; overflow:hidden; }
.games-bg-glow {
  position:absolute;
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(200,166,35,0.08) 0%, transparent 70%);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  animation:gamesGlow 4s ease-in-out infinite alternate;
}
@keyframes gamesGlow { 0%{opacity:0.5; transform:translate(-50%,-50%) scale(0.9)} 100%{opacity:1; transform:translate(-50%,-50%) scale(1.1)} }
.games-inner { max-width:1300px; margin:0 auto; padding:100px 60px; position:relative; }

.age-tabs { display:flex; gap:8px; margin:36px 0 40px; }
.age-tab {
  padding:12px 32px; border:2px solid rgba(255,255,255,0.15);
  border-radius:4px; background:transparent;
  font-family:'Barlow',sans-serif; font-size:13px; font-weight:800;
  letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.5);
  cursor:pointer; transition:all 0.2s;
}
.age-tab.active, .age-tab:hover { border-color:var(--gold); color:var(--gold-bright); background:rgba(200,166,35,0.08); }

.game-arena {
  background:rgba(0,0,0,0.4);
  border:1px solid rgba(200,166,35,0.15);
  border-radius:12px;
  padding:40px;
  min-height:480px;
  position:relative;
}
.game-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.game-title { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:900; text-transform:uppercase; color:white; letter-spacing:1px; }
.game-score-badge {
  background:var(--gold);
  color:var(--ink);
  padding:8px 20px;
  border-radius:4px;
  font-size:14px;
  font-weight:900;
  letter-spacing:1px;
}
.game-progress-bar { height:6px; background:rgba(255,255,255,0.1); border-radius:3px; margin-bottom:32px; overflow:hidden; }
.game-progress-fill { height:100%; background:linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius:3px; transition:width 0.5s ease; }

.quiz-question { font-family:'Playfair Display',serif; font-size:22px; color:white; line-height:1.5; margin-bottom:32px; text-align:center; min-height:80px; }
.quiz-options { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.quiz-opt {
  background:rgba(255,255,255,0.05);
  border:2px solid rgba(255,255,255,0.12);
  border-radius:8px;
  padding:18px 22px;
  text-align:left;
  font-family:'Barlow',sans-serif;
  font-size:15px;
  font-weight:700;
  color:rgba(255,255,255,0.8);
  cursor:pointer;
  transition:all 0.2s;
}
.quiz-opt:hover { background:rgba(200,166,35,0.1); border-color:rgba(200,166,35,0.35); color:white; }
.quiz-opt.correct { background:rgba(45,122,79,0.3); border-color:var(--forest-bright); color:white; }
.quiz-opt.wrong { background:rgba(180,40,40,0.25); border-color:#e05050; color:rgba(255,255,255,0.7); }
.quiz-opt.disabled { cursor:not-allowed; pointer-events:none; }

.game-feedback {
  text-align:center;
  padding:24px;
  border-radius:8px;
  margin:20px 0;
  font-size:17px;
  font-weight:800;
  display:none;
}
.game-feedback.correct { background:rgba(45,122,79,0.2); color:#6ee09a; display:block; }
.game-feedback.wrong { background:rgba(180,40,40,0.2); color:#ff9090; display:block; }

.game-result {
  text-align:center;
  padding:40px 20px;
  display:none;
}
.game-result.show { display:block; }
.result-score { font-family:'Barlow Condensed',sans-serif; font-size:80px; font-weight:900; color:var(--gold-bright); line-height:1; }
.result-label { font-size:14px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-top:8px; }
.result-msg { font-size:18px; color:white; margin:20px 0 30px; font-family:'Playfair Display',serif; font-style:italic; }
.btn-play-again {
  background:var(--gold); color:var(--ink);
  border:none; padding:16px 40px; border-radius:4px;
  font-family:'Barlow',sans-serif; font-size:14px; font-weight:900;
  letter-spacing:2px; text-transform:uppercase; cursor:pointer; transition:0.2s;
}
.btn-play-again:hover { background:var(--gold-bright); }

/* Leaderboard */
.leaderboard-wrap { margin-top:40px; }
.lb-title { font-size:12px; font-weight:900; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:flex; align-items:center; gap:12px; }
.lb-title::after { content:''; flex:1; height:1px; background:rgba(200,166,35,0.2); }
.lb-row {
  display:grid; grid-template-columns:36px 1fr auto auto;
  gap:14px; align-items:center;
  padding:12px 16px; border-radius:6px;
  transition:background 0.2s;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.lb-row:hover { background:rgba(255,255,255,0.04); }
.lb-rank { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:900; color:rgba(255,255,255,0.3); text-align:center; }
.lb-rank.top1 { color:var(--gold-bright); }
.lb-rank.top2 { color:#c0c0c0; }
.lb-rank.top3 { color:#cd7f32; }
.lb-name { font-size:14px; font-weight:700; color:rgba(255,255,255,0.8); }
.lb-cat { font-size:11px; color:rgba(255,255,255,0.3); font-weight:600; }
.lb-score { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:900; color:var(--gold-bright); }

/* ============================================================
   MEMBERS PORTAL
   ============================================================ */
.portal-wrap { background: var(--ink); }
.portal-inner { max-width:1300px; margin:0 auto; padding:100px 60px; }
.portal-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-top:50px; }
.portal-login-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:44px;
}
.plc-title { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:900; text-transform:uppercase; color:white; margin-bottom:6px; }
.plc-sub { font-size:14px; color:rgba(255,255,255,0.45); margin-bottom:28px; }
.dark-input {
  width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:6px; padding:13px 16px; color:white; font-family:'Barlow',sans-serif;
  font-size:14px; margin-bottom:14px; transition:border-color 0.2s;
}
.dark-input:focus { outline:none; border-color:var(--gold); background:rgba(255,255,255,0.09); }
.dark-input::placeholder { color:rgba(255,255,255,0.25); }
.btn-sign-in {
  width:100%; background:var(--gold); color:var(--ink); border:none;
  padding:15px; border-radius:6px; font-family:'Barlow',sans-serif;
  font-size:13px; font-weight:900; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; transition:0.2s;
}
.btn-sign-in:hover { background:var(--gold-bright); }
.portal-or { text-align:center; color:rgba(255,255,255,0.25); font-size:12px; margin:16px 0; }
.btn-register-member {
  width:100%; background:transparent; border:1.5px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.65); padding:13px; border-radius:6px;
  font-family:'Barlow',sans-serif; font-size:12px; font-weight:800;
  letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; transition:0.2s;
}
.btn-register-member:hover { border-color:var(--gold); color:var(--gold-bright); }
.portal-features-list { display:flex; flex-direction:column; gap:14px; }
.pfl-item {
  display:flex; gap:16px; align-items:center;
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07);
  border-radius:8px; padding:18px 22px; transition:all 0.2s; cursor:pointer;
}
.pfl-item:hover { background:rgba(200,166,35,0.07); border-color:rgba(200,166,35,0.2); }
.pfl-icon {
  width:44px; height:44px; background:rgba(200,166,35,0.15); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
  border:1px solid rgba(200,166,35,0.2);
}
.pfl-title { font-size:15px; font-weight:800; color:white; margin-bottom:3px; }
.pfl-desc { font-size:12px; color:rgba(255,255,255,0.4); }
#portal-logged-in { display:none; }

/* ============================================================
   DIRECTORY
   ============================================================ */
.dir-wrap { background:var(--cream); }
.dir-form-card {
  background:white;
  border-radius:12px;
  padding:50px;
  max-width:760px;
  margin:50px auto 0;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}
.dir-form-card h3 { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:900; text-transform:uppercase; color:var(--text); margin-bottom:6px; }
.dir-form-card .sub { font-size:14px; color:var(--text-light); margin-bottom:32px; }
.privacy-note { background:var(--gold-pale); border:1px solid rgba(200,166,35,0.3); border-radius:6px; padding:16px 20px; font-size:13px; color:var(--text-mid); margin-top:16px; }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leaders-wrap { background:var(--off-white); }
.leaders-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); gap:18px; margin-top:16px; }
.leader-featured {
  grid-column: span 2;
  display: flex;
  flex-direction: row !important;
  max-width: 480px;
}
.leader-featured .lc-photo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.leader-featured .lc-body { padding: 20px 22px; }
.leader-featured .lc-body h3 { font-size: 17px; }
.lc-add-placeholder { opacity: 0.45; border: 2px dashed var(--border) !important; }
.lc-add-placeholder:hover { opacity: 0.7; }
@media (max-width: 600px) {
  .leader-featured { grid-column: span 1; flex-direction: column !important; }
  .leader-featured .lc-photo { width: 100%; height: 140px; border-radius: 8px 8px 0 0; }
}
.leaders-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,166,35,0.2);
  margin-top: 48px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.leaders-section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.leader-card {
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
  transition:all 0.35s;
  cursor:pointer;
}
.leader-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(0,0,0,0.14); }
.lc-photo {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--forest-deep), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
}
.lc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lc-photo-overlay { position:absolute; bottom:0; left:0; right:0; height:60px; background:linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.lc-body { padding:16px 18px 18px; }
.lc-body h3 { font-size:15px; font-weight:800; color:var(--text); margin-bottom:3px; }
.lc-role { font-size:10px; font-weight:900; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.lc-body p { font-size:12px; color:var(--text-light); line-height:1.55; margin-top:4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { background:var(--forest-deep); position:relative; overflow:hidden; }
.contact-bg { position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%, rgba(15,45,110,0.4) 0%, transparent 60%); }
.contact-inner { max-width:1300px; margin:0 auto; padding:100px 60px; position:relative; }
.contact-layout { display:grid; grid-template-columns:1fr 1.4fr; gap:70px; margin-top:50px; align-items:start; }
.contact-info-list { display:flex; flex-direction:column; gap:28px; }
.ci-item { display:flex; gap:18px; align-items:flex-start; }
.ci-dot {
  width:46px; height:46px; border-radius:8px;
  background:rgba(200,166,35,0.12);
  border:1px solid rgba(200,166,35,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.ci-item h4 { font-size:12px; font-weight:900; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:5px; }
.ci-item p { font-size:15px; color:rgba(255,255,255,0.7); line-height:1.6; }
.social-row { display:flex; gap:10px; margin-top:24px; }
.soc-btn {
  width:44px; height:44px; border-radius:8px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:rgba(255,255,255,0.6); text-decoration:none;
  transition:all 0.2s; cursor:pointer;
}
.soc-btn:hover { background:rgba(200,166,35,0.15); border-color:var(--gold); color:var(--gold-bright); }
.contact-form-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:44px;
}
.cfc-title { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:900; text-transform:uppercase; color:white; margin-bottom:24px; }
.dark-select {
  width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:6px; padding:13px 16px; color:white; font-family:'Barlow',sans-serif;
  font-size:14px; margin-bottom:14px; transition:border-color 0.2s; appearance:none;
}
.dark-select:focus { outline:none; border-color:var(--gold); }
.dark-select option { background:#0a0f08; }
.dark-textarea {
  width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:6px; padding:13px 16px; color:white; font-family:'Barlow',sans-serif;
  font-size:14px; resize:none; height:120px; transition:border-color 0.2s;
}
.dark-textarea:focus { outline:none; border-color:var(--gold); }
.dark-textarea::placeholder { color:rgba(255,255,255,0.25); }
.btn-send {
  width:100%; background:var(--gold); color:var(--ink); border:none;
  padding:16px; border-radius:6px; font-family:'Barlow',sans-serif;
  font-size:13px; font-weight:900; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; transition:0.2s; margin-top:4px;
}
.btn-send:hover { background:var(--gold-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background:var(--ink); border-top:1px solid rgba(200,166,35,0.15); }
.footer-top { max-width:1300px; margin:0 auto; padding:70px 60px 50px; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; }
.fb-logo { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.fb-logo img { width:60px; height:60px; border-radius:0; border:none; object-fit:contain; filter:drop-shadow(0 0 6px rgba(200,166,35,0.3)); }
.fb-logo-text .top { font-family:'Playfair Display',serif; font-size:14px; font-weight:700; color:var(--gold-bright); }
.fb-logo-text .bot { font-size:10px; color:rgba(255,255,255,0.4); letter-spacing:2px; text-transform:uppercase; }
.fb-desc { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.8; max-width:280px; }
.fb-theme { font-family:'Playfair Display',serif; font-style:italic; font-size:14px; color:var(--gold); margin-top:14px; }
.fc-head { font-size:11px; font-weight:900; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:18px; }
.fc a { display:block; font-size:13px; color:rgba(255,255,255,0.4); text-decoration:none; margin-bottom:10px; transition:color 0.2s; }
.fc a:hover { color:var(--gold-bright); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { max-width:1300px; margin:0 auto; padding:20px 60px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom-inner p { font-size:12px; color:rgba(255,255,255,0.3); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,0.3); text-decoration:none; transition:0.2s; }
.footer-legal a:hover { color:var(--gold-bright); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display:none; position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,0.8); backdrop-filter:blur(8px);
  align-items:center; justify-content:center;
  padding:20px;
}
.modal-overlay.open { display:flex; }
.modal-box {
  background:var(--cream);
  border-radius:12px;
  padding:50px;
  max-width:560px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
  box-shadow:0 30px 100px rgba(0,0,0,0.5);
  animation:modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
.modal-box.dark { background:var(--forest-deep); }
@keyframes modalIn { from{opacity:0;transform:scale(0.9) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.modal-close {
  position:absolute; top:18px; right:18px;
  width:34px; height:34px; border-radius:50%;
  border:none; background:rgba(0,0,0,0.1); cursor:pointer;
  font-size:16px; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
.modal-close:hover { background:rgba(0,0,0,0.2); }
.modal-box.dark .modal-close { background:rgba(255,255,255,0.1); color:white; }
.modal-box.dark .modal-close:hover { background:rgba(255,255,255,0.2); }
.modal-title-bar { margin-bottom:28px; }
.modal-title-bar h2 { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:900; text-transform:uppercase; color:var(--text); }
.modal-box.dark .modal-title-bar h2 { color:white; }
.modal-title-bar p { font-size:14px; color:var(--text-light); margin-top:6px; }
.modal-box.dark .modal-title-bar p { color:rgba(255,255,255,0.5); }
.success-box { background:rgba(45,122,79,0.15); border:1px solid var(--forest-mid); border-radius:8px; padding:20px; text-align:center; margin-top:16px; display:none; }
.success-box.show { display:block; }
.success-box p { color:var(--forest-mid); font-weight:700; font-size:15px; }

/* Toast */
.toast {
  position:fixed; bottom:30px; right:30px;
  background:var(--forest-deep);
  border:1px solid rgba(200,166,35,0.3);
  border-radius:8px; padding:16px 24px;
  font-size:14px; font-weight:700;
  color:white; z-index:9999;
  transform:translateY(80px); opacity:0;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width:340px; line-height:1.5;
  box-shadow:0 16px 50px rgba(0,0,0,0.4);
}
.toast.show { transform:translateY(0); opacity:1; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.delay-1 { transition-delay:0.1s; }
.reveal.delay-2 { transition-delay:0.2s; }
.reveal.delay-3 { transition-delay:0.3s; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .nav-links a { font-size:11px; padding:6px 10px; }
  .nav-brand { min-width:220px; }
}
@media (max-width:900px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-brand { clip-path:none; }
  .welcome-grid, .anni-layout, .visit-layout, .portal-grid, .contact-layout, .giving-layout { grid-template-columns:1fr; }
  .stream-layout, .events-grid { grid-template-columns:1fr; }
  .min-grid, .leaders-grid { grid-template-columns:1fr 1fr; }
  .sermon-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .section-wrap { padding:70px 30px; }
  .hero-content { padding:40px 30px 60px; }
  .hero-headline { font-size:72px; }
  .quiz-options { grid-template-columns:1fr; }
  .wi-badge { right:0; bottom:-10px; }
}
@media (max-width:600px) {
  .min-grid, .leaders-grid, .sermon-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .hero-headline { font-size:56px; }
  .ticker-bar { top:64px; }
  .dir-form-card, .visit-form-card { padding:28px; }
}

/* ============================================================
   25TH ANNIVERSARY ANNOUNCEMENT BANNER
   ============================================================ */
.anni-announce-bar {
  position: relative;
  z-index: 80;
  background: linear-gradient(90deg, var(--forest-deep) 0%, #0a1f0a 40%, var(--forest-deep) 100%);
  border-top: 1px solid rgba(200,166,35,0.15);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}
.anni-announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200,166,35,0.06) 30%, rgba(200,166,35,0.10) 50%, rgba(200,166,35,0.06) 70%, transparent 100%);
  animation: anniBannerShimmer 3s ease-in-out infinite;
}
@keyframes anniBannerShimmer {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.anni-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 50px 11px 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.anni-announce-star {
  color: var(--gold);
  font-size: 13px;
  animation: anniStarSpin 6s linear infinite;
  flex-shrink: 0;
}
@keyframes anniStarSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}
.anni-announce-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.anni-announce-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.anni-announce-pipe {
  color: rgba(200,166,35,0.4);
  font-size: 16px;
}
.anni-announce-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
}
.anni-announce-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.anni-announce-cta:hover {
  background: var(--gold-bright);
  transform: scale(1.04);
}
.anni-announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(200,166,35,0.5);
  font-size: 18px;
  cursor: none;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.2s;
}
.anni-announce-close:hover { color: var(--gold); }
@media (max-width: 600px) {
  .anni-announce-label, .anni-announce-pipe { display: none; }
  .anni-announce-text { font-size: 13px; }
}

/* ============================================================
   ANNIVERSARY REDESIGN — reference image style
   ============================================================ */
.anni-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.anni-circle-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.anni-glow-ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200,166,35,0.12) 0%, transparent 70%);
  box-shadow:
    0 0 60px rgba(200,166,35,0.3),
    0 0 120px rgba(200,166,35,0.15),
    0 0 0 2px rgba(200,166,35,0.08),
    inset 0 0 40px rgba(200,166,35,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowPulse 3s ease-in-out infinite;
  position: relative;
}
.anni-glow-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(200,166,35,0.25);
}
.anni-glow-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(200,166,35,0.12);
}
@keyframes glowPulse {
  0%,100%{box-shadow:0 0 60px rgba(200,166,35,0.3),0 0 120px rgba(200,166,35,0.15);}
  50%{box-shadow:0 0 80px rgba(200,166,35,0.5),0 0 160px rgba(200,166,35,0.25);}
}
.anni-circle-inner {
  text-align: center;
  background: radial-gradient(circle, rgba(13,40,24,0.95) 0%, rgba(10,15,8,0.98) 100%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(200,166,35,0.3);
  position: relative;
  z-index: 2;
}
.anni-big-num {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}
.anni-circle-lbl {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  display: block;
}
.anni-celebrating {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 16px;
}
.anni-pastor-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}
.anni-pastor-sub {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.anni-pastor-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 560px;
}
.anni-details-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.adb-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.adb-row {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}
.adb-row:last-child { border: none; }
.adb-row strong { color: white; }

.anni-resources-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(200,166,35,0.4);
  color: var(--gold-bright);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
}
.anni-resources-link:hover { background: rgba(200,166,35,0.1); border-color: var(--gold-bright); }
.anni-events-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 20px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition: background 0.2s;
}
.anni-events-toggle:hover { background: rgba(200,166,35,0.1); border-color: rgba(200,166,35,0.3); }

/* ============================================================
   LIVE STREAM — reference image navy style
   ============================================================ */
.stream-player-col { display: flex; flex-direction: column; }
.stream-desc-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}
.stream-tap-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--forest-bright);
  box-shadow: 0 0 30px rgba(61,166,104,0.5);
  margin: 0 auto 12px;
  animation: tapGlow 2s ease-in-out infinite alternate;
}
@keyframes tapGlow {
  from { box-shadow: 0 0 20px rgba(61,166,104,0.4); }
  to { box-shadow: 0 0 50px rgba(61,166,104,0.8); }
}
.stream-platform-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.stream-platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
}
.stream-platform-btn.yt { background: #cc0000; color: white; }
.stream-platform-btn.yt:hover { background: #e00000; transform: translateY(-2px); }
.stream-platform-btn.fb { background: #1877f2; color: white; }
.stream-platform-btn.fb:hover { background: #2a87ff; transform: translateY(-2px); }
.ss-subscribe { }
.ss-never-miss {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.btn-subscribe-stream {
  background: var(--forest-bright);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-subscribe-stream:hover { background: #3da668; }
.ss-give-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #e06e10;
  color: white;
  padding: 18px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
}
.ss-give-btn:hover { background: #f07c20; transform: translateY(-2px); }

/* ============================================================
   SOCIAL ICONS — colored variants
   ============================================================ */
.soc-btn.soc-fb { color: #1877f2; }
.soc-btn.soc-fb:hover { background: rgba(24,119,242,0.15); border-color: #1877f2; color: #1877f2; }
.soc-btn.soc-yt { color: #cc0000; }
.soc-btn.soc-yt:hover { background: rgba(204,0,0,0.15); border-color: #cc0000; color: #cc0000; }
.soc-btn.soc-ig { color: #e1306c; }
.soc-btn.soc-ig:hover { background: rgba(225,48,108,0.15); border-color: #e1306c; color: #e1306c; }

/* ============================================================
   MINISTRY DROPDOWN
   ============================================================ */
.min-dropdown-wrap { position: relative; z-index: 400; overflow: visible !important; }
#ministries .section-wrap { overflow: visible; }
.min-select-box {
  background: white;
  border: 1.5px solid #e0ddd7;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.min-select-box:hover { border-color: var(--gold); }
.min-arrow { font-size: 14px; color: var(--text-light); transition: transform 0.3s; }
.min-arrow.open { transform: rotate(180deg); }
.min-dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid #e0ddd7;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 420px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  z-index: 500;
  display: none;
  animation: dropIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
.min-dropdown-list.open { display: block; }
@keyframes dropIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.min-dd-item {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: none;
  border-bottom: 1px solid #f0ede7;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.min-dd-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.min-dd-item:last-child { border: none; }
.min-dd-item:hover { background: var(--gold-pale); color: var(--forest); padding-left: 26px; }

/* ============================================================
   MINISTRY POPUP MODAL CONTENT
   ============================================================ */
.min-modal-content { }
.min-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.min-gallery-tile {
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: linear-gradient(135deg, var(--forest-deep), var(--cobalt));
  border: 1px solid rgba(255,255,255,0.08);
}
.min-modal-tabs { display: flex; gap: 4px; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.min-mtab {
  padding: 9px 20px; border: none; background: none;
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light);
  cursor: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: 0.2s;
}
.min-mtab.active { color: var(--forest); border-bottom-color: var(--gold); }
.min-contact-btn {
  display: block; width: 100%; margin-top: 20px;
  background: var(--forest); color: white; border: none;
  padding: 14px; border-radius: 8px; font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  cursor: none; transition: 0.2s;
}
.min-contact-btn:hover { background: var(--forest-mid); }

/* ============================================================
   PRAYER REQUEST FULL SECTION — reference image style
   ============================================================ */
.prayer-section-full {
  background: #111827;
  position: relative;
  overflow: hidden;
}
.prayer-layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.prayer-divider-line {
  width: 60px;
  height: 3px;
  background: var(--forest-bright);
  border-radius: 2px;
  margin: 24px 0;
}
.prayer-italic-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
}
.prayer-scriptures { display: flex; flex-direction: column; gap: 0; }
.ps-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ps-item:last-child { border: none; }
.ps-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: white;
  flex-shrink: 0; margin-top: 2px;
}
.ps-item p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.prayer-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}
.btn-submit-prayer {
  width: 100%;
  background: var(--forest-bright);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-submit-prayer:hover { background: #45b873; }

/* ============================================================
   RESOURCES MODAL CONTENT
   ============================================================ */
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.res-item {
  background: var(--off-white);
  border: 1px solid #e0ddd7;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
  cursor: none;
  text-decoration: none;
}
.res-item:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.res-icon {
  width: 40px; height: 40px;
  background: var(--forest-deep);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.res-icon svg { width: 20px; height: 20px; }
.res-name { font-size: 14px; font-weight: 800; color: var(--text); }
.res-type { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .anni-layout { grid-template-columns: 1fr; }
  .anni-circle-col { display: none; }
  .prayer-layout { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }
  .min-modal-gallery { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .prayer-layout { padding: 50px 20px; }
  .stream-platform-btns { grid-template-columns: 1fr; }
}


/* ============================================================
   V4 ADDITIONS — Welcome Section Visual
   ============================================================ */
.wi-styled-visual {
  background: linear-gradient(135deg, #0d2818 0%, #0d2060 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,166,35,0.2);
}
.wi-styled-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,166,35,0.08) 0%, transparent 70%);
}
.wi-cross-icon {
  position: relative;
  width: 60px;
  height: 80px;
  z-index: 1;
}
.cross-v {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 10px;
  height: 100%;
  background: rgba(200,166,35,0.7);
  border-radius: 4px;
}
.cross-h {
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(200,166,35,0.7);
  border-radius: 4px;
}
.wi-church-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}
.wi-est {
  font-size: 12px;
  color: rgba(200,166,35,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

/* ============================================================
   V4 ADDITIONS — Anniversary Circle Enhanced
   ============================================================ */
.anni-watermark-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anni-watermark-25 {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 260px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(200,166,35,0.12);
  letter-spacing: -10px;
  pointer-events: none;
  z-index: 0;
  animation: watermarkBreath 4s ease-in-out infinite;
  user-select: none;
}
@keyframes watermarkBreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.anni-orbit-1 {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(200,166,35,0.2);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.anni-orbit-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200,166,35,0.1);
  border-radius: 50%;
  animation: orbitSpin 28s linear infinite reverse;
  pointer-events: none;
  z-index: 1;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.anni-glow-ring {
  position: relative;
  z-index: 2;
  animation: glowPulse 3s ease-in-out infinite;
}
  50% { box-shadow: 0 0 70px rgba(200,166,35,0.45), 0 0 130px rgba(200,166,35,0.2); }
}
.anni-big-num {
  animation: bigNumPulse 2.5s ease-in-out infinite;
  display: block;
}
@keyframes bigNumPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px rgba(200,166,35,0.3); }
  50% { transform: scale(1.08); text-shadow: 0 0 50px rgba(200,166,35,0.9), 0 0 80px rgba(200,166,35,0.4); }
}


/* ============================================================
   V4 ADDITIONS — Game Mode Buttons
   ============================================================ */
.game-mode-btns {
  display: flex;
  gap: 10px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}
.game-mode-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}
.game-mode-btn:hover {
  background: rgba(200,166,35,0.12);
  border-color: rgba(200,166,35,0.4);
  color: var(--gold-bright);
}
.game-mode-btn.active {
  background: rgba(200,166,35,0.2);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Scramble game styles */
.scramble-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--gold-bright);
  text-align: center;
  margin: 20px 0 12px;
  word-break: break-all;
}
.scramble-clue {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}
.scramble-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.scramble-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}
.scramble-hint-btn {
  background: rgba(200,166,35,0.1);
  border: 1px solid rgba(200,166,35,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.scramble-hint-btn:hover { background: rgba(200,166,35,0.2); }
.scramble-progress {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  margin-top: 12px;
}

/* Verse fill styles */
.verse-fill-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 16px 0 24px;
  font-style: italic;
}
.verse-fill-blank {
  display: inline-block;
  min-width: 80px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 800;
  padding: 0 8px;
  text-align: center;
}
.verse-fill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.word-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 20px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.word-chip:hover {
  background: rgba(200,166,35,0.15);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.verse-ref {
  font-size: 13px;
  color: rgba(200,166,35,0.7);
  margin-top: 20px;
  font-weight: 700;
}

/* ============================================================
   V4 ADDITIONS — Admin Panel
   ============================================================ */
.admin-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: rgba(10,15,8,0.9);
  border: 1px solid rgba(200,166,35,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  z-index: 9000;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-toggle-btn:hover {
  background: rgba(200,166,35,0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: scale(1.08);
}
.admin-panel {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  height: 100vh;
  background: #0a0f08;
  border-left: 1px solid rgba(200,166,35,0.2);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.admin-panel.open { right: 0; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200,166,35,0.15);
  position: sticky;
  top: 0;
  background: #0a0f08;
  z-index: 1;
}
.admin-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.admin-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  padding: 4px 8px;
}
.admin-close-btn:hover { color: white; }
.admin-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.admin-field {
  margin-bottom: 14px;
}
.admin-field label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.admin-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 12px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  transition: 0.2s;
  box-sizing: border-box;
}
.admin-input:focus {
  outline: none;
  border-color: rgba(200,166,35,0.5);
  background: rgba(255,255,255,0.07);
}
.btn-admin-save {
  background: rgba(200,166,35,0.15);
  border: 1px solid rgba(200,166,35,0.3);
  border-radius: 6px;
  padding: 10px 20px;
  color: var(--gold-bright);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}
.btn-admin-save:hover {
  background: rgba(200,166,35,0.25);
  border-color: var(--gold-bright);
}
.btn-admin-logout {
  background: rgba(180,50,50,0.15);
  border: 1px solid rgba(180,50,50,0.3);
  border-radius: 6px;
  padding: 12px 20px;
  color: rgba(255,130,130,0.8);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}
.btn-admin-logout:hover { background: rgba(180,50,50,0.25); }
.admin-status {
  display: none;
  color: #6fcf97;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(111,207,151,0.1);
  border-radius: 4px;
  border-left: 3px solid #6fcf97;
}
#adminDashboard { display: none; }
#adminDashboard.visible { display: block; }
.admin-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.admin-ticker-item button {
  background: none;
  border: none;
  color: rgba(255,100,100,0.6);
  cursor: pointer;
  font-size: 14px;
  margin-left: auto;
  padding: 0 4px;
  transition: 0.15s;
}
.admin-ticker-item button:hover { color: rgba(255,100,100,1); }
