:root {
  --navy: #0f0a2e;
  --royal: #1a0f5e;
  --purple: #28166f;
  --violet: #5B21B6;
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --slate: #64748b;
  --light: #e2e8f0;
  --card-shadow: 0 4px 24px rgba(40,22,111,0.10);
  --card-hover: 0 16px 48px rgba(40,22,111,0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a1a; overflow-x: hidden; background: var(--white); }

/* ── ANNOUNCEMENT TICKER ── */
.ticker-wrap {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 200;
}
.ticker-wrap::before, .ticker-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2;
}
.ticker-wrap::before { left:0; background: linear-gradient(to right, var(--gold), transparent); }
.ticker-wrap::after  { right:0; background: linear-gradient(to left, var(--gold), transparent); }
.ticker-track {
  display:inline-flex; gap:4rem;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-weight:700; font-size:0.82rem; letter-spacing:0.04em; text-transform:uppercase; }
.ticker-item span { background: var(--navy); color: var(--gold); padding:0.15rem 0.6rem; border-radius:4px; margin-right:0.5rem; font-size:0.7rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 2rem;
}
.topbar-inner { max-width:1400px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.topbar-left { display:flex; gap:1.25rem; align-items:center; min-width:0; }
.topbar-contact-link { color:rgba(255,255,255,0.8); text-decoration:none; display:flex; align-items:center; gap:0.4rem; transition:color 0.2s; white-space:nowrap; flex-shrink:0; }
.topbar-contact-link:hover { color:var(--gold); }
.topbar-tagline { color:rgba(255,255,255,0.45); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.topbar-right { display:flex; gap:0.75rem; align-items:center; flex-shrink:0; }
@media (max-width: 640px) {
  .topbar-text { display:none; }
  .topbar-tagline { display:none; }
  .topbar-left { gap:0.75rem; }
}
.social-pill {
  width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:white; text-decoration:none; transition:var(--transition);
}
.social-pill:hover { background:var(--gold); color:var(--navy); transform:translateY(-2px); }

/* ── STICKY NAV ── */
/* Offset anchor targets so sticky nav doesn't obscure them */
#impact, #about, #parish, #ministries, #events, #beliefs, #resources, #gallery, #give, #connect, #home, #leadership {
  scroll-margin-top: 80px;
}

.nav-wrapper {
  position: sticky; top:0; z-index:1000;
  background:rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(40,22,111,0.08);
  box-shadow: 0 2px 24px rgba(40,22,111,0.08);
}
.nav-inner { max-width:1400px; margin:0 auto; padding:0.85rem 2rem; display:flex; justify-content:space-between; align-items:center; gap:2rem; }
.logo { display:flex; align-items:center; gap:0.85rem; text-decoration:none; }
.logo-mark {
  width:46px; height:46px; flex-shrink:0;
}
.logo-mark img { width:100%; height:100%; object-fit:contain; display:block; }
.logo-name { font-size:1.1rem; font-weight:800; color:var(--purple); line-height:1.2; }
.logo-sub-name { display:block; font-size:0.7rem; font-weight:600; color:var(--gold); letter-spacing:0.04em; opacity:0.85; margin-top:0.1rem; }
.footer-brand h3 .logo-sub-name { font-size:0.8rem; }
.ldr-tier-sub { font-weight:600; opacity:0.75; letter-spacing:0.08em; }
.logo-tagline { font-size:0.68rem; color:var(--slate); font-weight:500; }
.nav-links { display:flex; gap:0.25rem; list-style:none; align-items:center; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:flex; align-items:center; gap:0.25rem;
  padding:0.5rem 0.85rem; border-radius:8px;
  text-decoration:none; color:#1a1a1a; font-weight:600; font-size:0.875rem;
  transition:var(--transition);
}
.nav-links > li > a:hover { color:var(--purple); background:rgba(40,22,111,0.05); }
.nav-links > li > a.active { color:var(--purple); }
.has-dropdown:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  background:white; border-radius:var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border:1px solid rgba(40,22,111,0.06);
  min-width:200px; padding:0.5rem;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:var(--transition);
}
.dropdown a { display:block; padding:0.6rem 1rem; color:#1a1a1a; text-decoration:none; border-radius:6px; font-size:0.85rem; font-weight:500; transition:background 0.2s; }
.dropdown a:hover { background:rgba(40,22,111,0.06); color:var(--purple); }
.nav-actions { display:flex; gap:0.75rem; align-items:center; }
.btn { display:inline-flex; align-items:center; gap:0.4rem; padding:0.6rem 1.25rem; border-radius:50px; font-weight:700; font-size:0.85rem; text-decoration:none; cursor:pointer; border:none; transition:var(--transition); }
.btn-outline { border:2px solid var(--purple); color:var(--purple); background:transparent; }
.btn-outline:hover { background:var(--purple); color:white; }
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--violet)); color:white; box-shadow:0 4px 16px rgba(91,33,182,0.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(91,33,182,0.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color:var(--navy); box-shadow:0 4px 16px rgba(212,175,55,0.3); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(212,175,55,0.4); }
.live-badge {
  display:inline-flex; align-items:center; gap:0.4rem;
  padding:0.5rem 1rem; background:#dc2626; color:white;
  border-radius:50px; font-weight:700; font-size:0.8rem; text-decoration:none;
  animation: livePulse 2s ease-in-out infinite;
}
.live-dot { width:8px; height:8px; background:white; border-radius:50%; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(220,38,38,0.4)} 50%{box-shadow:0 0 0 8px rgba(220,38,38,0)} }

/* ── HERO — CINEMATIC PHOTO CAROUSEL ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Photo slides stack absolutely behind content */
.hero-slides { position:absolute; inset:0; z-index:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 8s ease-in-out;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity:1;
  transform: scale(1);
}
/* Real photos — full-bleed backgrounds */
.slide-1  { background-image: url('../images/hero/slide-1.jpg');  background-position: center center; }
.slide-2  { background-image: url('../images/hero/slide-2.jpg');  background-position: center top; }
.slide-3  { background-image: url('../images/hero/slide-3.jpg');  background-position: center center; }
.slide-4  { background-image: url('../images/hero/slide-4.jpg');  background-position: center center; }
.slide-5  { background-image: url('../images/hero/slide-5.jpg');  background-position: center center; }
.slide-6  { background-image: url('../images/hero/slide-6.jpg');  background-position: center center; }
.slide-7  { background-image: url('../images/hero/slide-7.jpg');  background-position: center center; }
.slide-8  { background-image: url('../images/hero/slide-8.jpg');  background-position: center center; }
.slide-9  { background-image: url('../images/hero/slide-9.jpg');  background-position: center center; }
.slide-10 { background-image: url('../images/hero/slide-10.jpg'); background-position: center center; }
.slide-11 { background-image: url('../images/hero/slide-11.jpg'); background-position: center center; }

/* Dark gradient overlay so text always reads clearly */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(
    to right,
    rgba(10,5,30,0.58) 0%,
    rgba(10,5,30,0.35) 40%,
    rgba(10,5,30,0.08) 70%,
    rgba(10,5,30,0.00) 100%
  );
}
/* Bottom fade so stats float above */
.hero-overlay::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:180px;
  background: linear-gradient(to top, rgba(10,5,30,0.40), transparent);
}

/* Photo caption label bottom-right */
.hero-caption {
  position:absolute; bottom:120px; right:2.5rem; z-index:10;
  background:rgba(0,0,0,0.45); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.12); border-radius:8px;
  padding:0.5rem 1rem; color:rgba(255,255,255,0.8);
  font-size:0.75rem; font-weight:600; letter-spacing:0.04em;
  opacity:0; transition:opacity 0.6s ease 0.8s;
  pointer-events:none;
}
.hero-caption.visible { opacity:1; }

/* Main content positioned left, overlaid */
.hero-inner {
  position:relative; z-index:10;
  max-width:1400px; margin:0 auto; padding:5rem 2rem 2rem;
  width:100%; flex:1; display:flex; align-items:center;
}
.hero-content { max-width:640px; }

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.5rem 1.25rem; background:rgba(212,175,55,0.15); border:1px solid rgba(212,175,55,0.35);
  border-radius:50px; color:var(--gold); font-size:0.8rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; margin-bottom:1.5rem;
}
.hero-eyebrow-dot { width:6px; height:6px; background:var(--gold); border-radius:50%; animation:blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { font-size:clamp(2.5rem, 5vw, 4.25rem); font-weight:900; line-height:1.08; color:white; margin-bottom:1.25rem; text-shadow:0 2px 20px rgba(0,0,0,0.4); }
.hero-title .highlight { color:var(--gold); position:relative; display:inline-block; }
.hero-title .highlight::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--gold), transparent);
  border-radius:2px;
}
.hero-sub {
  font-size:1.1rem; color:rgba(255,255,255,0.85); line-height:1.75;
  margin-bottom:0.75rem; text-shadow:0 1px 8px rgba(0,0,0,0.3);
}
/* Per-slide story line — transitions in/out */
.hero-story {
  font-size:1rem; font-weight:700; color:var(--gold);
  line-height:1.5; margin-bottom:1.75rem;
  opacity:1; transform:translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height:1.5em;
}
.hero-story.fade-out { opacity:0; transform:translateY(10px); }
.hero-story.fade-in  { opacity:1; transform:translateY(0); }
/* Slide-specific secondary CTA */
.hero-slide-cta {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.55rem 1.1rem; border-radius:50px;
  border:1px solid rgba(212,175,55,0.5); color:var(--gold);
  font-size:0.8rem; font-weight:700; text-decoration:none;
  background:rgba(212,175,55,0.1); backdrop-filter:blur(8px);
  transition:var(--transition);
  opacity:1; transform:translateY(0);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, background 0.2s, border-color 0.2s;
}
.hero-slide-cta:hover { background:rgba(212,175,55,0.25); border-color:var(--gold); }
.hero-slide-cta.fade-out { opacity:0; transform:translateY(8px); }
.hero-slide-cta.fade-in  { opacity:1; transform:translateY(0); }
.hero-ctas { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; margin-bottom:2.5rem; }

/* Watch pill — replaces old video card */
.watch-pill {
  display:inline-flex; align-items:center; gap:0.75rem;
  padding:0.65rem 1.25rem; background:rgba(255,255,255,0.12); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.25); border-radius:50px; color:white;
  font-weight:600; font-size:0.85rem; cursor:pointer; text-decoration:none;
  transition:var(--transition);
}
.watch-pill:hover { background:rgba(255,255,255,0.2); }
.watch-pill-play {
  width:32px; height:32px; border-radius:50%; background:white;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* Impact stats band — gold bar between hero and content */
.impact-band {
  background: linear-gradient(135deg, var(--gold) 0%, #c8961a 60%, var(--gold-light) 100%);
  padding: 0;
}
.impact-band-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.impact-stat {
  padding: 1.75rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.impact-stat:hover { background: rgba(0,0,0,0.06); }
.impact-band-divider {
  width: 1px; background: rgba(15,10,46,0.15); align-self: stretch; margin: 1rem 0;
}
.stat-num { font-size: 2.1rem; font-weight: 900; color: var(--navy); display: block; line-height: 1; margin-bottom: 0.3rem; }
.stat-lbl { font-size: 0.72rem; color: rgba(15,10,46,0.65); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; }

/* ── MISSION & VISION ── */
.mv-section {
  background: var(--navy);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mv-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 3.5rem; align-items: start;
}
.mv-divider {
  background: rgba(212,175,55,0.2); align-self: stretch;
  margin: 0.5rem 0;
}
.mv-label {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.6rem;
}
.mv-heading {
  font-size: 1rem; font-weight: 900; color: white;
  margin-bottom: 0.85rem; line-height: 1.3;
}
.mv-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.mv-list li {
  font-size: 0.875rem; color: rgba(255,255,255,0.72);
  line-height: 1.6; padding-left: 1.1rem; position: relative;
}
.mv-list li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.mv-motto {
  font-size: 1rem; font-weight: 700; font-style: italic;
  color: white; line-height: 1.55; margin: 0;
  border-left: 3px solid var(--gold); padding-left: 1.1rem;
}
.mv-motto cite {
  display: block; margin-top: 0.6rem;
  font-size: 0.75rem; font-weight: 800; font-style: normal;
  color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .mv-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mv-divider { display: none; }
}

/* Slide navigation — dots + arrows */
.hero-nav {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:20; display:flex; align-items:center; gap:0.75rem;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%; border:2px solid rgba(255,255,255,0.5);
  background:transparent; cursor:pointer; transition:var(--transition);
}
.hero-dot.active { background:var(--gold); border-color:var(--gold); width:24px; border-radius:4px; }
.hero-arrow {
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.1); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:white; transition:var(--transition);
}
.hero-arrow:hover { background:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.5); }

/* Progress bar — thin gold line sweeping across bottom */
.hero-progress {
  position:absolute; bottom:0; left:0; height:3px; z-index:20;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width:0%; transition:none;
}
.hero-progress.animating {
  transition: width 5s linear;
  width:100%;
}

/* Scroll cue */
.scroll-cue {
  position:absolute; bottom:6.5rem; left:50%; transform:translateX(-50%);
  z-index:20; display:flex; flex-direction:column; align-items:center; gap:0.4rem;
  color:rgba(255,255,255,0.5); font-size:0.68rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue-line { width:1px; height:28px; background:rgba(255,255,255,0.3); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Responsive */
@media (max-width:768px) {
  .hero-caption { display:none; }
  .hero-inner { padding:4rem 1.25rem 2rem; }
}

/* keep old float-* references inert */
.hero-media, .hero-video-card, .hero-float-card, .hero-grid, .hero-orb-1, .hero-orb-2 { display:none; }
.play-ring { display:none; }
.float-icon, .float-num, .float-lbl { display:none; }

/* ── GIVING SECTION ── */
.giving-section {
  background: linear-gradient(145deg, #080420 0%, #120838 40%, #1a0a50 70%, #0f0530 100%);
  position: relative; overflow: hidden;
}
.giving-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(91,33,182,0.15) 0%, transparent 55%);
}
.giving-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; text-align: center;
}
.giving-eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.giving-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: 0.65rem;
}
.giving-headline em { color: var(--gold); font-style: normal; }
.giving-body {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 2rem;
}

/* Frequency toggle */
.freq-toggle {
  display: flex; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 4px;
  margin-bottom: 1.5rem; gap: 4px; border: 1px solid rgba(255,255,255,0.1);
}
.freq-btn {
  flex: 1; padding: 0.55rem; border: none; border-radius: 7px; background: none;
  font-size: 0.85rem; font-weight: 700; cursor: pointer; color: rgba(255,255,255,0.5);
  transition: var(--transition); font-family: inherit;
}
.freq-btn.active { background: rgba(255,255,255,0.12); color: white; }

/* Fund selector */
.form-label {
  display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; text-align: left;
}
.form-fund-select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 0.9rem; color: white;
  background: rgba(255,255,255,0.07);
  font-family: inherit; cursor: pointer; margin-bottom: 1.25rem;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-fund-select:focus { border-color: rgba(212,175,55,0.5); }
.form-fund-select option { background: #120838; color: white; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Amount presets */
.amount-presets {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.amount-preset {
  padding: 0.65rem 0.4rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  background: rgba(255,255,255,0.06); font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.7);
  cursor: pointer; text-align: center; transition: var(--transition); font-family: inherit;
}
.amount-preset:hover { border-color: rgba(212,175,55,0.5); color: var(--gold); }
.amount-preset.active { background: rgba(212,175,55,0.15); color: var(--gold); border-color: var(--gold); }
.amount-custom-wrap {
  position: relative; margin-bottom: 1.25rem; display: none;
}
.amount-custom-prefix {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: rgba(255,255,255,0.4); font-size: 0.95rem; pointer-events: none;
}
#giveAmountCustom {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 1rem; font-weight: 700; color: white;
  background: rgba(255,255,255,0.07);
  font-family: inherit; outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
#giveAmountCustom:focus { border-color: rgba(212,175,55,0.5); }

/* Name field */
#giverName, #giverEmail {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 0.9rem; color: white; font-family: inherit;
  background: rgba(255,255,255,0.07);
  outline: none; margin-bottom: 1.25rem; transition: border-color 0.2s;
  box-sizing: border-box;
}
#giverName::placeholder, #giverEmail::placeholder { color: rgba(255,255,255,0.3); }
#giverName:focus, #giverEmail:focus { border-color: rgba(212,175,55,0.5); }

/* Give button */
.give-now-btn {
  width: 100%; padding: 1rem; border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #c8961a 100%);
  color: var(--navy); font-size: 1rem; font-weight: 900;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit; box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.give-now-btn:hover:not(:disabled) {
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,0.4);
}
.give-now-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.give-security {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin-top: 0.85rem; font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.give-security svg { flex-shrink: 0; color: rgba(255,255,255,0.35); }

/* Recurring note */
.recurring-note {
  display: none; font-size: 0.75rem; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.6rem 0.85rem;
  margin-bottom: 1rem; line-height: 1.5; text-align: left;
}
.recurring-note.show { display: block; }

/* ── SECTION COMMONS ── */
.section { padding:3.75rem 2rem; }
.section-inner { max-width:1400px; margin:0 auto; }
.section-tag {
  display:inline-block; padding:0.35rem 1rem;
  background:rgba(40,22,111,0.08); color:var(--purple);
  border-radius:50px; font-size:0.72rem; font-weight:800;
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:0.85rem;
}
.section-title { font-size:clamp(1.8rem,3.5vw,2.75rem); font-weight:900; color:var(--navy); margin-bottom:0.85rem; line-height:1.15; }
.section-sub { font-size:1.05rem; color:var(--slate); line-height:1.75; max-width:580px; }
.section-header-center { text-align:center; margin-bottom:2.5rem; }
.section-header-center .section-sub { margin:0 auto; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── FIND YOUR PARISH (combined) ── */
.parish-section { background:white; }
.finder-layout {
  display:grid; grid-template-columns:1fr 1.25fr; gap:2rem; align-items:start;
}
/* Left panel */
.finder-left { display:flex; flex-direction:column; gap:1.25rem; }
.finder-search-wrap {
  display:flex; gap:0.75rem; align-items:center;
  background:white; border:2px solid var(--light); border-radius:50px;
  padding:0.4rem 0.4rem 0.4rem 1.25rem;
  box-shadow:0 4px 20px rgba(40,22,111,0.07);
  transition:border-color 0.2s;
}
.finder-search-wrap:focus-within { border-color:var(--purple); }
.finder-search-wrap input {
  flex:1; border:none; background:none; font-size:0.95rem; outline:none; color:var(--navy);
}
.finder-search-wrap input::placeholder { color:rgba(40,22,111,0.3); }
.finder-search-wrap button {
  padding:0.6rem 1.25rem; background:var(--purple); color:white;
  border:none; border-radius:30px; font-weight:700; font-size:0.84rem; cursor:pointer;
  transition:var(--transition); flex-shrink:0;
}
.finder-search-wrap button:hover { background:var(--royal); }

.nation-tabs {
  display:flex; gap:0.3rem; flex-wrap:wrap;
}
.nation-tab {
  display:flex; align-items:center; gap:0.3rem;
  padding:0.35rem 0.7rem; border-radius:30px; border:1.5px solid var(--light);
  font-weight:600; font-size:0.75rem; cursor:pointer; background:white;
  transition:var(--transition); color:var(--slate); white-space:nowrap;
}
@media (min-width:900px) {
  .nation-tabs { flex-wrap:nowrap; }
}
.nation-tab.active { background:var(--purple); color:white; border-color:var(--purple); }
.nation-tab:hover:not(.active) { border-color:var(--purple); color:var(--purple); }
.nation-tab .nt-count {
  display:inline-block; font-size:0.65rem; font-weight:800;
  background:rgba(40,22,111,0.1); color:var(--purple);
  border-radius:10px; padding:0.05rem 0.4rem; min-width:20px; text-align:center;
}
.nation-tab.active .nt-count { background:rgba(255,255,255,0.25); color:white; }

/* Parish list inside left panel */
.parish-list-wrap {
  max-height:420px; overflow-y:auto;
  display:flex; flex-direction:column; gap:0.65rem;
  padding-right:0.25rem;
  scrollbar-width:thin; scrollbar-color:var(--light) transparent;
}
.parish-list-wrap::-webkit-scrollbar { width:4px; }
.parish-list-wrap::-webkit-scrollbar-thumb { background:var(--light); border-radius:2px; }
.parish-item {
  display:flex; gap:1rem; align-items:start;
  padding:1rem 1.1rem; border-radius:12px;
  border:1.5px solid var(--light); cursor:pointer;
  transition:var(--transition); position:relative;
  background:white;
}
.parish-item:hover, .parish-item.selected {
  border-color:var(--purple); box-shadow:0 4px 20px rgba(40,22,111,0.1);
  background:rgba(40,22,111,0.02);
}
.parish-item.selected { border-color:var(--purple); border-left-width:4px; }
.pi-flag { font-size:1.3rem; flex-shrink:0; line-height:1; margin-top:0.1rem; }
.pi-body { flex:1; min-width:0; }
.pi-name { font-weight:800; font-size:0.9rem; color:var(--navy); margin-bottom:0.2rem; line-height:1.3; }
.pi-address { font-size:0.75rem; color:var(--slate); margin-bottom:0.3rem; }
.pi-times { font-size:0.72rem; color:var(--violet); font-weight:600; }
.pi-badge {
  position:absolute; top:0.75rem; right:0.75rem;
  font-size:0.6rem; font-weight:800; padding:0.2rem 0.5rem; border-radius:20px;
}
.pi-badge.open { background:#dcfce7; color:#166534; }
.pi-badge.new  { background:#fef3c7; color:#92400e; }
.parish-count-line {
  font-size:0.78rem; color:var(--slate); padding:0 0.25rem;
}
.parish-count-line strong { color:var(--purple); }

/* Right panel — Leaflet map */
.finder-map-panel {
  position:sticky; top:100px;
  border-radius:20px; overflow:hidden;
  box-shadow:0 8px 40px rgba(40,22,111,0.14);
  border:1.5px solid rgba(40,22,111,0.1);
  height:540px;
}
#parishMap {
  width:100%; height:100%;
}
/* Leaflet popup custom styling */
.leaflet-popup-content-wrapper {
  border-radius:14px !important;
  box-shadow:0 8px 32px rgba(40,22,111,0.18) !important;
  border:1.5px solid rgba(40,22,111,0.1);
  padding:0 !important;
  overflow:hidden;
}
.leaflet-popup-content { margin:0 !important; width:auto !important; }
.leaflet-popup-tip { background:white !important; }
.map-popup {
  padding:1rem 1.25rem; min-width:220px;
}
.map-popup-flag { font-size:1.1rem; margin-bottom:0.25rem; }
.map-popup-name { font-size:0.95rem; font-weight:800; color:#1e1065; line-height:1.3; margin-bottom:0.3rem; }
.map-popup-address { font-size:0.75rem; color:#64748b; margin-bottom:0.3rem; }
.map-popup-times { font-size:0.72rem; color:#5b21b6; font-weight:600; margin-bottom:0.6rem; }
.map-popup-badge {
  display:inline-block; font-size:0.62rem; font-weight:800;
  padding:0.18rem 0.5rem; border-radius:20px; margin-bottom:0.6rem;
}
.map-popup-badge.open { background:#dcfce7; color:#166534; }
.map-popup-badge.new  { background:#fef3c7; color:#92400e; }
.map-popup-actions { display:flex; gap:0.5rem; flex-wrap:wrap; }
.map-popup-btn {
  font-size:0.72rem; font-weight:700; padding:0.35rem 0.75rem;
  border-radius:6px; text-decoration:none; display:inline-block;
  transition:opacity 0.2s;
}
.map-popup-btn.primary { background:#28166f; color:white; }
.map-popup-btn.secondary { background:#f1f0ff; color:#28166f; }
.map-popup-btn:hover { opacity:0.85; }

/* ── EVENTS ── */
.events-section { background:var(--off-white); }
.events-layout {
  display:grid; grid-template-columns:1fr 1px 1fr;
  gap:0; background:white; border-radius:24px;
  border:1.5px solid var(--light);
  box-shadow:0 4px 32px rgba(40,22,111,0.07);
  overflow:hidden;
}
.events-divider { background:var(--light); }

/* Featured panel */
.featured-event {
  background:linear-gradient(145deg, var(--navy) 0%, #1e1065 55%, var(--violet) 100%);
  padding:2.75rem; color:white; position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}
.featured-event::before {
  content:''; position:absolute; top:-40%; right:-15%;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,0.1), transparent 65%);
  pointer-events:none;
}
.featured-event::after {
  content:''; position:absolute; bottom:-25%; left:-10%;
  width:260px; height:260px; border-radius:50%;
  background:radial-gradient(circle, rgba(91,33,182,0.28), transparent 65%);
  pointer-events:none;
}
.event-chip {
  display:inline-flex; align-items:center; gap:0.4rem;
  background:rgba(212,175,55,0.15); border:1px solid rgba(212,175,55,0.35);
  color:var(--gold); padding:0.3rem 0.8rem; border-radius:50px;
  font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.09em;
  margin-bottom:1.25rem; position:relative; z-index:1; width:fit-content;
}
.featured-event-title { font-size:1.75rem; font-weight:900; margin-bottom:1.1rem; line-height:1.2; position:relative; z-index:1; }
.event-details { display:flex; flex-direction:column; gap:0.55rem; margin-bottom:auto; padding-bottom:2rem; position:relative; z-index:1; }
.event-detail { display:flex; align-items:center; gap:0.55rem; font-size:0.875rem; opacity:0.85; }
.event-ctas { display:flex; gap:0.85rem; flex-wrap:wrap; position:relative; z-index:1; padding-top:2rem; border-top:1px solid rgba(255,255,255,0.1); }
.btn-white { background:white; color:var(--purple); font-weight:700; padding:0.65rem 1.35rem; border-radius:50px; text-decoration:none; font-size:0.84rem; transition:var(--transition); display:inline-flex; align-items:center; gap:0.4rem; }
.btn-white:hover { background:var(--gold); color:var(--navy); transform:translateY(-2px); }
.btn-ghost { border:1.5px solid rgba(255,255,255,0.35); color:white; font-weight:700; padding:0.65rem 1.35rem; border-radius:50px; text-decoration:none; font-size:0.84rem; transition:var(--transition); display:inline-flex; align-items:center; gap:0.4rem; }
.btn-ghost:hover { border-color:white; background:rgba(255,255,255,0.1); }

/* Sidebar panel */
.events-sidebar { display:flex; flex-direction:column; }
.upcoming-card {
  display:grid; grid-template-columns:56px 1fr;
  gap:0 1rem; align-items:center;
  padding:1.1rem 1.75rem;
  border-bottom:1px solid var(--light);
  transition:var(--transition); cursor:pointer; text-decoration:none;
}
.upcoming-card:last-of-type { border-bottom:none; }
.upcoming-card:hover { background:rgba(40,22,111,0.03); }
.upcoming-card:hover .upcoming-name { color:var(--purple); }
.upcoming-cal {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:var(--off-white); border:1.5px solid var(--light);
  border-radius:10px; padding:0.3rem 0.2rem; flex-shrink:0;
  width:48px; height:48px;
}
.upcoming-cal-mon { font-size:0.55rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--violet); line-height:1; }
.upcoming-cal-day { font-size:1.2rem; font-weight:900; color:var(--navy); line-height:1.1; }
.upcoming-name { font-weight:700; font-size:0.9rem; color:var(--navy); line-height:1.3; margin-bottom:0.2rem; transition:color 0.2s; }
.upcoming-meta { font-size:0.75rem; color:var(--slate); display:flex; align-items:center; gap:0.3rem; }
.view-all-link {
  display:flex; align-items:center; justify-content:center; gap:0.5rem;
  padding:1rem 1.75rem; margin-top:auto;
  color:var(--purple); font-weight:700; font-size:0.84rem; text-decoration:none;
  border-top:1.5px solid var(--light);
  transition:var(--transition);
}
.view-all-link:hover { background:rgba(40,22,111,0.04); color:var(--violet); }

/* ── MINISTRIES ── */
.ministries-section { background: white; }
.ministries-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; }
.ministry-card {
  background:white; border-radius:var(--radius);
  padding:2rem; border:2px solid var(--light);
  transition:var(--transition); position:relative; overflow:hidden; cursor:pointer;
}
.ministry-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  opacity:0; transition:opacity 0.35s ease;
  border-radius:var(--radius); z-index:0;
}
.ministry-card:hover::before { opacity:1; }
.ministry-card:hover { transform:translateY(-8px); box-shadow:var(--card-hover); border-color:transparent; }
.ministry-card:hover .mc-icon-wrap { background:rgba(255,255,255,0.2); }
.ministry-card:hover .mc-name, .ministry-card:hover .mc-desc, .ministry-card:hover .mc-link { color:white; }
.mc-icon-wrap {
  width:60px; height:60px; border-radius:14px;
  background: linear-gradient(135deg, rgba(40,22,111,0.1), rgba(91,33,182,0.1));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.25rem; position:relative; z-index:1; transition:var(--transition);
}
.mc-name { font-size:1.2rem; font-weight:800; color:var(--navy); margin-bottom:0.6rem; position:relative; z-index:1; transition:color 0.3s; }
.mc-desc { font-size:0.87rem; color:var(--slate); line-height:1.65; margin-bottom:1rem; position:relative; z-index:1; transition:color 0.3s; }
.mc-link { font-size:0.82rem; font-weight:700; color:var(--purple); text-decoration:none; display:inline-flex; align-items:center; gap:0.35rem; position:relative; z-index:1; transition:color 0.3s; }

/* provinces-section merged into parish-section */

/* ── RESOURCES / CONTENT ── */
.resources-section { background:white; }
.content-tabs-nav { display:flex; gap:0.5rem; justify-content:center; margin-bottom:2.5rem; flex-wrap:wrap; }
.ctab {
  padding:0.6rem 1.5rem; border-radius:50px; border:2px solid var(--light);
  font-weight:600; font-size:0.875rem; cursor:pointer; background:white;
  transition:var(--transition);
}
.ctab.active { background:var(--purple); color:white; border-color:var(--purple); }
.ctab:hover:not(.active) { border-color:var(--purple); color:var(--purple); }
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; }
.resource-card { background:white; border-radius:var(--radius); overflow:hidden; box-shadow:0 2px 16px rgba(40,22,111,0.06); transition:var(--transition); }
.resource-card:hover { transform:translateY(-8px); box-shadow:var(--card-hover); }
.resource-thumb {
  height:180px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.resource-thumb.sermon { background:linear-gradient(135deg, var(--navy), var(--violet)); }
.resource-thumb.devotional { background:linear-gradient(135deg, #7c3aed, #a855f7); }
.resource-thumb.news { background:linear-gradient(135deg, #0369a1, #0ea5e9); }
.thumb-play {
  width:52px; height:52px; background:rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; border:2px solid rgba(255,255,255,0.5);
}
.resource-body { padding:1.5rem; }
.resource-meta { font-size:0.72rem; font-weight:800; color:var(--violet); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.5rem; }
.resource-title { font-size:1.05rem; font-weight:800; color:var(--navy); margin-bottom:0.5rem; line-height:1.3; }
.resource-excerpt { font-size:0.82rem; color:var(--slate); line-height:1.6; margin-bottom:1rem; }
.resource-link { font-size:0.82rem; font-weight:700; color:var(--purple); text-decoration:none; display:inline-flex; align-items:center; gap:0.35rem; }

/* ── WHAT WE BELIEVE ── */
.beliefs-section { background:var(--off-white); padding-top:2.5rem; padding-bottom:2.5rem; }
.beliefs-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1.75rem;
}
.belief-tile {
  background:white; border-radius:var(--radius); padding:1.25rem 1.35rem;
  border:2px solid var(--light); transition:var(--transition);
  display:flex; flex-direction:column; gap:0.35rem;
}
.belief-tile:hover { border-color:var(--purple); box-shadow:0 8px 32px rgba(91,33,182,0.1); }
.belief-icon {
  width:40px; height:40px; border-radius:10px;
  background:linear-gradient(135deg,rgba(40,22,111,0.08),rgba(91,33,182,0.12));
  display:flex; align-items:center; justify-content:center; margin-bottom:0.6rem; flex-shrink:0;
}
.belief-title { font-size:0.92rem; font-weight:800; color:var(--navy); margin-bottom:0; }
.belief-body { font-size:0.81rem; color:var(--slate); line-height:1.55; }
/* mobile accordion */
.beliefs-accordion { display:none; margin-top:2rem; }
.baccord-item { border-bottom:1px solid var(--light); }
.baccord-trigger {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 0; background:none; border:none; cursor:pointer; text-align:left;
}
.baccord-trigger-left { display:flex; align-items:center; gap:0.85rem; }
.baccord-trigger-icon {
  width:38px; height:38px; border-radius:10px; flex-shrink:0;
  background:linear-gradient(135deg,rgba(40,22,111,0.08),rgba(91,33,182,0.12));
  display:flex; align-items:center; justify-content:center;
}
.baccord-title { font-size:0.95rem; font-weight:800; color:var(--navy); }
.baccord-chevron {
  width:20px; height:20px; color:var(--slate); flex-shrink:0;
  transition:transform 0.25s ease;
}
.baccord-item.open .baccord-chevron { transform:rotate(180deg); }
.baccord-body {
  font-size:0.85rem; color:var(--slate); line-height:1.65;
  overflow:hidden; max-height:0; transition:max-height 0.3s ease, padding 0.3s ease;
  padding:0 0 0 3.1rem;
}
.baccord-item.open .baccord-body { max-height:200px; padding-bottom:1rem; }

/* ── RESOURCES — carousel arrows (hidden desktop, shown mobile) ── */
.resources-carousel-wrap { position:relative; }
.res-arrow {
  display:none;
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; width:36px; height:36px;
  background:white; border:2px solid var(--light);
  border-radius:50%; cursor:pointer;
  font-size:1rem; color:var(--navy);
  box-shadow:0 2px 10px rgba(40,22,111,0.12);
  align-items:center; justify-content:center;
  transition:var(--transition);
}
.res-arrow:hover { background:var(--purple); color:white; border-color:var(--purple); }
.res-arrow-prev { left:-18px; }
.res-arrow-next { right:-18px; }
.res-arrow:disabled { opacity:0.3; pointer-events:none; }

/* ── RESOURCES — mobile snap scroll ── */
@media (max-width:768px) {
  .resources-section .section-inner { overflow:visible; }
  .resources-carousel-wrap { margin:0 -1.25rem; padding:0 1.25rem; overflow:visible; }
  .res-arrow { display:flex; }
  .res-arrow-prev { left:-4px; }
  .res-arrow-next { right:-4px; }
  .resources-grid {
    display:flex; flex-wrap:nowrap;
    overflow-x:auto; scroll-snap-type:x mandatory;
    gap:1rem; padding:0.25rem 0 1rem;
    scrollbar-width:none;
  }
  .resources-grid::-webkit-scrollbar { display:none; }
  .resource-card {
    min-width:78vw; max-width:78vw; scroll-snap-align:start; flex-shrink:0;
  }
  .resource-thumb { height:140px; }
}

/* ── MINISTRIES — mobile accordion ── */
.ministries-accordion { display:none; }
.maccord-item { border-bottom:1px solid var(--light); }
.maccord-trigger {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 0; background:none; border:none; cursor:pointer; text-align:left;
}
.maccord-trigger-left { display:flex; align-items:center; gap:0.85rem; }
.maccord-trigger-icon {
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,rgba(40,22,111,0.08),rgba(91,33,182,0.12));
  display:flex; align-items:center; justify-content:center;
}
.maccord-title { font-size:0.95rem; font-weight:800; color:var(--navy); }
.maccord-chevron {
  width:20px; height:20px; color:var(--slate); flex-shrink:0;
  transition:transform 0.25s ease;
}
.maccord-item.open .maccord-chevron { transform:rotate(180deg); }
.maccord-body {
  font-size:0.85rem; color:var(--slate); line-height:1.65;
  overflow:hidden; max-height:0; transition:max-height 0.3s ease, padding 0.3s ease;
  padding:0 0 0 3.4rem;
}
.maccord-item.open .maccord-body { max-height:200px; padding-bottom:1.25rem; }
.maccord-link {
  display:inline-block; margin-top:0.6rem; font-size:0.82rem;
  font-weight:700; color:var(--purple); text-decoration:none;
}

@media (max-width:768px) {
  .ministries-grid { display:none; }
  .ministries-accordion { display:block; }
  .beliefs-grid { display:none; }
  .beliefs-accordion { display:block; }
}

/* ── GALLERY ── */
.gallery-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, #2d1080 100%);
  position:relative; overflow:hidden;
}
.gallery-section::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(91,33,182,0.15) 0%, transparent 50%);
}
.gallery-inner { position:relative; z-index:1; }

/* ── FEATURED EVENT SPOTLIGHT ── */
.gallery-spotlight {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border-radius:20px; overflow:hidden;
  margin-bottom:3.5rem;
  box-shadow:0 24px 64px rgba(0,0,0,0.45);
}
.spotlight-video {
  position:relative; aspect-ratio:16/9; background:#0a0514;
  cursor:pointer; overflow:hidden;
}
.spotlight-video img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.5s ease;
}
.spotlight-video:hover img { transform:scale(1.04); }
.spotlight-play {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:72px; height:72px; border-radius:50%;
  background:rgba(212,175,55,0.92); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--navy);
  transition:transform 0.25s ease, background 0.25s ease;
  pointer-events:none;
}
.spotlight-video:hover .spotlight-play { transform:translate(-50%,-50%) scale(1.1); background:var(--gold); }
.spotlight-badge {
  position:absolute; top:1rem; left:1rem;
  background:rgba(212,175,55,0.9); color:var(--navy);
  font-size:0.68rem; font-weight:800; padding:0.25rem 0.65rem;
  border-radius:4px; letter-spacing:0.08em; text-transform:uppercase;
}
.spotlight-info {
  background:rgba(255,255,255,0.06); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1); border-left:none;
  padding:2.5rem;
  display:flex; flex-direction:column; justify-content:space-between;
}
.spotlight-eyebrow {
  font-size:0.72rem; font-weight:700; color:var(--gold); letter-spacing:0.12em;
  text-transform:uppercase; margin-bottom:0.6rem;
}
.spotlight-title {
  font-size:1.65rem; font-weight:800; color:white; line-height:1.25; margin-bottom:1rem;
}
.spotlight-desc {
  font-size:0.9rem; color:rgba(255,255,255,0.72); line-height:1.65; margin-bottom:1.5rem; flex:1;
}
.spotlight-meta {
  display:flex; gap:1.25rem; margin-bottom:1.75rem;
}
.spotlight-meta-item {
  font-size:0.78rem; color:rgba(255,255,255,0.6);
}
.spotlight-meta-item strong { color:white; display:block; font-size:0.9rem; margin-bottom:0.1rem; }
.spotlight-actions { display:flex; gap:0.75rem; flex-wrap:wrap; }
.spotlight-watch-btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.65rem 1.35rem; background:var(--gold); color:var(--navy);
  border-radius:8px; font-size:0.84rem; font-weight:800; text-decoration:none;
  transition:var(--transition);
}
.spotlight-watch-btn:hover { background:var(--gold-light); }
.spotlight-photos-btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.65rem 1.35rem; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2); color:white;
  border-radius:8px; font-size:0.84rem; font-weight:700; text-decoration:none;
  cursor:pointer; transition:var(--transition);
}
.spotlight-photos-btn:hover { background:rgba(255,255,255,0.18); }

/* ── YEAR FILTERS ── */
.gallery-year-bar {
  display:flex; align-items:center; gap:0.5rem;
  flex-wrap:wrap; margin-bottom:1.75rem;
}
.gallery-year-label {
  font-size:0.72rem; font-weight:700; color:rgba(255,255,255,0.45);
  letter-spacing:0.1em; text-transform:uppercase; margin-right:0.5rem;
}
.gyf-btn {
  padding:0.4rem 1.1rem; border-radius:30px; font-size:0.78rem; font-weight:700;
  cursor:pointer; transition:var(--transition); border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.65);
}
.gyf-btn.active, .gyf-btn:hover {
  background:var(--gold); border-color:var(--gold); color:var(--navy);
}

/* ── ALBUM CARDS CAROUSEL ── */
.album-carousel-outer { overflow:hidden; }
.album-track {
  display:flex; gap:1.25rem;
  transition:transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.album-card {
  flex-shrink:0; width:calc(25% - 0.95rem);
  border-radius:16px; overflow:hidden;
  border:2px solid rgba(255,255,255,0.08);
  cursor:pointer; position:relative;
  transition:transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background:#0d0820;
}
.album-card:hover { transform:translateY(-6px); box-shadow:0 24px 56px rgba(0,0,0,0.5); }
.album-card.active {
  border-color:var(--gold);
  box-shadow:0 0 0 1px var(--gold), 0 24px 56px rgba(212,175,55,0.2);
}
.album-cover {
  position:relative; aspect-ratio:4/3; overflow:hidden;
}
.album-cover img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.55s cubic-bezier(.4,0,.2,1);
}
.album-card:hover .album-cover img,
.album-card.active .album-cover img { transform:scale(1.07); }
.album-cover-gradient {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,5,30,0.9) 0%, rgba(10,5,30,0.2) 55%, transparent 100%);
}
.album-cover-meta {
  position:absolute; bottom:0; left:0; right:0; padding:1rem;
}
.album-year-pill {
  display:inline-block; font-size:0.65rem; font-weight:800; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--gold); background:rgba(212,175,55,0.15);
  border:1px solid rgba(212,175,55,0.35); border-radius:20px;
  padding:0.2rem 0.6rem; margin-bottom:0.45rem;
}
.album-cover-count {
  display:flex; align-items:center; gap:0.75rem;
}
.album-photo-count {
  font-size:0.72rem; color:rgba(255,255,255,0.75); font-weight:600;
}
.album-photo-count span { color:white; font-weight:800; }
.album-video-count {
  font-size:0.72rem; color:rgba(212,175,55,0.85); font-weight:600;
}
.album-video-count span { color:var(--gold); font-weight:800; }
.album-info {
  padding:1rem;
}
.album-event-name {
  font-size:0.95rem; font-weight:800; color:white; line-height:1.3; margin-bottom:0.35rem;
}
.album-location {
  font-size:0.75rem; color:rgba(255,255,255,0.5);
}
.album-view-row {
  display:flex; align-items:center; justify-content:space-between; margin-top:0.75rem;
}
.album-view-btn {
  font-size:0.72rem; font-weight:700; color:var(--gold);
  background:rgba(212,175,55,0.1); border:1px solid rgba(212,175,55,0.25);
  border-radius:6px; padding:0.3rem 0.7rem; cursor:pointer;
  display:flex; align-items:center; gap:0.3rem; transition:var(--transition);
}
.album-card.active .album-view-btn,
.album-card:hover .album-view-btn {
  background:var(--gold); color:var(--navy);
}
.album-card[data-filtered="true"] { display:none; }

/* ── CAROUSEL CONTROLS ── */
.album-carousel-nav {
  display:flex; align-items:center; justify-content:center;
  gap:0.85rem; margin-top:1.25rem;
}
.ac-arrow {
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.06); color:white; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:var(--transition);
}
.ac-arrow:hover:not(:disabled) { border-color:var(--gold); color:var(--gold); background:rgba(212,175,55,0.1); }
.ac-arrow:disabled { opacity:0.25; cursor:default; }
.ac-dots { display:flex; gap:6px; align-items:center; }
.ac-dot {
  width:7px; height:7px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,0.25); transition:var(--transition); padding:0;
}
.ac-dot.active { background:var(--gold); transform:scale(1.4); }

/* ── EXPANDED ALBUM PANEL ── */
/* ── ALBUM MODAL ── */
.album-modal-backdrop {
  position:fixed; inset:0; z-index:8000;
  background:rgba(5,2,20,0.82); backdrop-filter:blur(10px);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
  display:flex; align-items:flex-end; justify-content:center;
}
@media (min-width:768px) {
  .album-modal-backdrop { align-items:center; }
}
.album-modal-backdrop.open { opacity:1; pointer-events:all; }

.album-modal {
  position:relative; width:100%; max-width:960px;
  background:linear-gradient(160deg, #1a0f5e 0%, #0d0730 100%);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px 20px 0 0;
  padding:2rem 1.5rem 2.5rem;
  max-height:92vh; overflow-y:auto;
  transform:translateY(40px); opacity:0;
  transition:transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.3s ease;
}
@media (min-width:768px) {
  .album-modal {
    border-radius:20px;
    padding:2rem 2.25rem 2.5rem;
    transform:translateY(20px) scale(0.97);
  }
}
.album-modal-backdrop.open .album-modal {
  transform:translateY(0) scale(1); opacity:1;
}

/* drag handle (mobile) */
.album-modal-handle {
  width:40px; height:4px; border-radius:2px;
  background:rgba(255,255,255,0.2); margin:0 auto 1.5rem;
}
@media (min-width:768px) { .album-modal-handle { display:none; } }

.album-modal-header {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:1.5rem; gap:1rem;
}
.album-modal-title { font-size:1.25rem; font-weight:800; color:white; line-height:1.3; }
.album-modal-subtitle { font-size:0.8rem; color:rgba(255,255,255,0.5); margin-top:0.3rem; }
.album-modal-close {
  flex-shrink:0; width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.7); font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.album-modal-close:hover { background:rgba(255,255,255,0.18); color:white; }

/* Featured photo */
.album-modal-featured {
  width:100%; aspect-ratio:16/9; border-radius:14px; overflow:hidden;
  position:relative; margin-bottom:1.25rem; background:#0a051e;
}
.album-modal-featured img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:opacity 0.2s ease;
}
.album-modal-featured-cap {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(5,2,20,0.85) 0%, transparent 100%);
  padding:1.25rem 1rem 0.85rem;
  font-size:0.8rem; font-weight:600; color:rgba(255,255,255,0.9);
}
.album-modal-featured-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:0 0.75rem; pointer-events:none;
}
.amf-arrow {
  pointer-events:all; width:40px; height:40px; border-radius:50%;
  background:rgba(5,2,20,0.6); border:1px solid rgba(255,255,255,0.2);
  color:white; font-size:1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
}
.amf-arrow:hover { background:rgba(212,175,55,0.3); border-color:var(--gold); }
.album-modal-featured-counter {
  position:absolute; top:0.75rem; right:0.75rem;
  background:rgba(5,2,20,0.65); border:1px solid rgba(255,255,255,0.15);
  border-radius:20px; padding:0.2rem 0.65rem;
  font-size:0.7rem; font-weight:700; color:rgba(255,255,255,0.85);
}
.album-modal-featured { cursor:zoom-in; }
.album-modal-featured::after {
  content:'⤢ Expand';
  position:absolute; top:0.75rem; left:0.75rem;
  background:rgba(5,2,20,0.55); border:1px solid rgba(255,255,255,0.15);
  border-radius:20px; padding:0.2rem 0.65rem;
  font-size:0.65rem; font-weight:700; color:rgba(255,255,255,0.7);
  opacity:0; transition:opacity 0.2s;
  pointer-events:none;
}
.album-modal-featured:hover::after { opacity:1; }

/* Filmstrip */
.album-modal-strip-label {
  font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); margin-bottom:0.6rem;
}
/* reuse existing .media-strip-wrap / .media-strip / .media-item */
.album-modal .media-item { width:160px; }
.album-modal .media-item.is-active-thumb {
  outline:2px solid var(--gold); outline-offset:2px;
  border-radius:10px;
}

/* Mixed media strip */
.media-strip-wrap { position:relative; }
.media-strip {
  display:flex; gap:0.75rem; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:0.5rem; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.15) transparent;
}
.media-strip::-webkit-scrollbar { height:4px; }
.media-strip::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.15); border-radius:2px; }
.media-item {
  flex-shrink:0; width:200px; aspect-ratio:3/2;
  border-radius:10px; overflow:hidden; position:relative;
  cursor:pointer; scroll-snap-align:start;
}
.media-item img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.45s ease;
}
.media-item:hover img { transform:scale(1.07); }
.media-item-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,5,30,0.8) 0%, transparent 60%);
  opacity:0; transition:opacity 0.3s;
  display:flex; flex-direction:column; justify-content:flex-end; padding:0.65rem;
}
.media-item:hover .media-item-overlay { opacity:1; }
.media-item-label {
  font-size:0.7rem; font-weight:600; color:white; line-height:1.3;
}
/* Video indicator */
.media-item.is-video::before {
  content:''; position:absolute; inset:0;
  background:rgba(10,5,30,0.35);
  z-index:1;
}
.media-item.is-video .media-play-icon {
  position:absolute; top:50%; left:50%; z-index:2;
  transform:translate(-50%,-50%);
  width:42px; height:42px; border-radius:50%;
  background:rgba(212,175,55,0.9);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; color:var(--navy);
  transition:transform 0.25s, background 0.25s;
}
.media-item.is-video:hover .media-play-icon { transform:translate(-50%,-50%) scale(1.12); background:var(--gold); }
.media-item.is-video .media-item-overlay { z-index:3; }
.media-type-tag {
  position:absolute; top:0.5rem; right:0.5rem; z-index:4;
  font-size:0.6rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase;
  padding:0.15rem 0.45rem; border-radius:4px;
}
.media-type-tag.photo-tag { background:rgba(255,255,255,0.15); color:rgba(255,255,255,0.9); }
.media-type-tag.video-tag { background:rgba(212,175,55,0.85); color:var(--navy); }

.strip-scroll-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:50%; z-index:5;
  background:rgba(10,5,30,0.75); border:1px solid rgba(255,255,255,0.2);
  color:white; font-size:0.9rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.strip-scroll-btn:hover { background:rgba(212,175,55,0.25); border-color:var(--gold); }
.strip-scroll-prev { left:-14px; }
.strip-scroll-next { right:-14px; }

/* ── LIGHTBOX ── */
.glb-overlay {
  position:fixed; inset:0; z-index:9000;
  background:rgba(5,2,20,0.97); backdrop-filter:blur(16px);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
  display:flex; align-items:center; justify-content:center;
}
.glb-overlay.open { opacity:1; pointer-events:all; }
.glb-inner {
  position:relative; max-width:1100px; width:100%; max-height:92vh;
  display:flex; align-items:center; justify-content:center;
}
.glb-img {
  max-width:100%; max-height:86vh; border-radius:12px;
  box-shadow:0 32px 80px rgba(0,0,0,0.6); object-fit:contain;
  transition:opacity 0.2s ease;
}
.glb-close {
  position:fixed; top:1.25rem; right:1.5rem;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  font-size:1.2rem; color:white; cursor:pointer; z-index:9001;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
.glb-close:hover { background:rgba(255,255,255,0.2); }
.glb-arrow {
  position:fixed; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  font-size:1.4rem; color:white; cursor:pointer; z-index:9001;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
}
.glb-arrow:hover { background:rgba(212,175,55,0.25); border-color:var(--gold); }
.glb-prev { left:1rem; }
.glb-next { right:1rem; }
.glb-meta {
  position:fixed; bottom:1.5rem; left:50%; transform:translateX(-50%);
  display:flex; align-items:center; gap:1.25rem;
  background:rgba(10,5,30,0.8); padding:0.6rem 1.4rem; border-radius:30px;
  backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.1);
  pointer-events:none; white-space:nowrap;
}
.glb-caption { font-size:0.82rem; color:rgba(255,255,255,0.85); }
.glb-counter { font-size:0.75rem; color:rgba(255,255,255,0.4); }

/* ── VIDEO MODAL ── */
.yt-modal-backdrop {
  position:fixed; inset:0; z-index:9500;
  background:rgba(5,2,20,0.95); backdrop-filter:blur(16px);
  opacity:0; pointer-events:none; transition:opacity 0.3s ease;
  display:flex; align-items:center; justify-content:center; padding:1.5rem;
}
.yt-modal-backdrop.open { opacity:1; pointer-events:all; }
.yt-modal {
  width:100%; max-width:900px; position:relative;
  transform:scale(0.95); opacity:0;
  transition:transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.3s ease;
}
.yt-modal-backdrop.open .yt-modal { transform:scale(1); opacity:1; }
.yt-modal-ratio {
  position:relative; padding-bottom:56.25%; height:0; border-radius:16px;
  overflow:hidden; background:#000;
  box-shadow:0 32px 80px rgba(0,0,0,0.7);
}
.yt-modal-ratio iframe {
  position:absolute; inset:0; width:100%; height:100%; border:none;
}
.yt-modal-close {
  position:absolute; top:-48px; right:0;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:white; font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
.yt-modal-close:hover { background:rgba(255,255,255,0.22); }

/* ── LEADERSHIP ── */
.leadership-section {
  background: var(--off-white);
  padding-bottom: 4rem;
}
.leadership-section .section-tag { background:rgba(40,22,111,0.08); color:var(--violet); }
.leadership-section .section-title { color:var(--navy); }
.leadership-section .section-sub { color:var(--slate); }

/* ── TIER EXPLORER SHELL ── */
.ldr-explorer {
  display:grid; grid-template-columns:260px 1fr; gap:0;
  border-radius:24px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.06);
  min-height:480px;
  background:linear-gradient(160deg, #1a0f5e 0%, #0d0730 100%);
  box-shadow:0 24px 80px rgba(10,5,30,0.22), 0 4px 16px rgba(10,5,30,0.12);
}

/* LEFT RAIL */
.ldr-rail {
  background:rgba(0,0,0,0.2);
  border-right:1px solid rgba(255,255,255,0.07);
  display:flex; flex-direction:column; padding:0.5rem 0;
}
.ldr-rail-item {
  display:flex; align-items:center; gap:0.85rem;
  padding:1rem 1.25rem; cursor:pointer; position:relative;
  transition:background 0.22s ease;
  border-left:3px solid transparent;
}
.ldr-rail-item:hover { background:rgba(255,255,255,0.05); }
.ldr-rail-item.active {
  background:rgba(212,175,55,0.08);
  border-left-color:var(--gold);
}
.ldr-rail-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
  background:rgba(255,255,255,0.2);
  transition:background 0.22s, transform 0.22s;
}
.ldr-rail-item.active .ldr-rail-dot { background:var(--gold); transform:scale(1.3); }
.ldr-rail-item:hover:not(.active) .ldr-rail-dot { background:rgba(255,255,255,0.5); }
.ldr-rail-text { flex:1; min-width:0; }
.ldr-rail-title {
  font-size:0.8rem; font-weight:700; color:rgba(255,255,255,0.55);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  transition:color 0.22s;
}
.ldr-rail-item.active .ldr-rail-title,
.ldr-rail-item:hover .ldr-rail-title { color:white; }
.ldr-rail-count {
  font-size:0.65rem; color:rgba(255,255,255,0.3);
  margin-top:0.15rem; transition:color 0.22s;
}
.ldr-rail-item.active .ldr-rail-count { color:rgba(212,175,55,0.7); }

/* connector line between dots */
.ldr-rail-item:not(:last-child) .ldr-rail-dot::after {
  content:''; position:absolute; left:calc(1.25rem + 4px - 0.5px);
  top:calc(1rem + 8px + 2px); width:1px;
  height:calc(100% - 8px - 4px);
  background:rgba(255,255,255,0.07);
}

/* RIGHT PANEL */
.ldr-panel {
  background:rgba(255,255,255,0.03);
  display:flex; flex-direction:column; overflow:hidden;
}

/* Tier header inside panel */
.ldr-panel-header {
  padding:1.5rem 1.75rem 1rem;
  border-bottom:1px solid rgba(255,255,255,0.06);
  flex-shrink:0;
}
.ldr-panel-eyebrow {
  font-size:0.62rem; font-weight:800; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.3rem;
}
.ldr-panel-title {
  font-size:1.15rem; font-weight:900; color:white; line-height:1.3;
}
.ldr-panel-desc {
  font-size:0.78rem; color:rgba(255,255,255,0.45); margin-top:0.3rem; line-height:1.5;
}

/* Cards grid inside panel — scrollable */
.ldr-cards-wrap {
  flex:1; overflow-y:auto; padding:1.25rem 1.75rem 1.5rem;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.1) transparent;
}
.ldr-cards-wrap::-webkit-scrollbar { width:4px; }
.ldr-cards-wrap::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.1); border-radius:2px; }

/* Overseer tier: single large card */
.ldr-cards.is-overseer {
  display:grid; grid-template-columns:1fr;
}
.ldr-cards {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(152px, 1fr));
  gap:1rem;
}

/* Individual card */
.ldr-card {
  border-radius:16px; overflow:hidden; cursor:pointer;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  transition:transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position:relative;
}
.ldr-card:hover {
  transform:translateY(-4px);
  border-color:rgba(212,175,55,0.4);
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
}

/* Overseer card layout */
.ldr-cards.is-overseer .ldr-card {
  display:grid; grid-template-columns:200px 1fr; min-height:220px;
}
.ldr-card-photo {
  position:relative; overflow:hidden;
  background:linear-gradient(160deg,#4c1d95,#7c3aed,#a78bfa);
  display:flex; align-items:center; justify-content:center;
}
.ldr-cards:not(.is-overseer) .ldr-card-photo { aspect-ratio:1/1; }
.ldr-card-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.ldr-card-photo-gradient {
  position:absolute; inset:0;
  background:linear-gradient(135deg,transparent 40%,rgba(10,5,30,0.5));
}
.ldr-initials {
  font-size:1.8rem; font-weight:900; color:rgba(255,255,255,0.5);
  letter-spacing:-0.02em; line-height:1; font-family:var(--font-head);
  position:relative; z-index:1; text-shadow:0 2px 12px rgba(0,0,0,0.3);
}
.ldr-cards.is-overseer .ldr-initials { font-size:3rem; }
/* Gradient variety for initials cards */
.ldr-card-photo[data-grad="1"] { background:linear-gradient(135deg,#1e1b4b,#4c1d95,#7c3aed); }
.ldr-card-photo[data-grad="2"] { background:linear-gradient(135deg,#0f172a,#1e3a5f,#2563eb); }
.ldr-card-photo[data-grad="3"] { background:linear-gradient(135deg,#14532d,#166534,#15803d); }
.ldr-card-photo[data-grad="4"] { background:linear-gradient(135deg,#431407,#9a3412,#c2410c); }
.ldr-card-photo[data-grad="5"] { background:linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
.ldr-card-photo[data-grad="6"] { background:linear-gradient(135deg,#2d1b69,#553c9a,#6b46c1); }
.ldr-card-photo[data-grad="7"] { background:linear-gradient(135deg,#0c1a2e,#1a3a5c,#1e5f8a); }

.ldr-card-body {
  padding:0.9rem 1rem 1rem; display:flex; flex-direction:column; justify-content:center;
}
.ldr-cards.is-overseer .ldr-card-body { padding:1.5rem 1.75rem; }
.ldr-card-tier-tag {
  font-size:0.6rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.4rem;
}
.ldr-card-name {
  font-size:0.88rem; font-weight:800; color:white; line-height:1.3; margin-bottom:0.2rem;
}
.ldr-cards.is-overseer .ldr-card-name { font-size:1.4rem; margin-bottom:0.35rem; }
.ldr-card-role {
  font-size:0.7rem; color:rgba(255,255,255,0.45); line-height:1.4;
}
.ldr-cards.is-overseer .ldr-card-role { font-size:0.85rem; }
.ldr-card-quote {
  display:none; font-size:0.82rem; font-style:italic;
  color:rgba(255,255,255,0.65); line-height:1.65; margin-top:1rem;
  border-left:2px solid var(--gold); padding-left:0.85rem;
}
.ldr-cards.is-overseer .ldr-card-quote { display:block; }
.ldr-card-cta {
  display:inline-flex; align-items:center; gap:0.35rem; margin-top:1.25rem;
  font-size:0.72rem; font-weight:700; color:var(--gold);
  background:none; border:1px solid rgba(212,175,55,0.3);
  border-radius:20px; padding:0.4rem 0.9rem; cursor:pointer; width:fit-content;
  transition:background 0.2s, border-color 0.2s;
}
.ldr-card-cta:hover { background:rgba(212,175,55,0.12); border-color:var(--gold); }
.ldr-card-open-hint {
  position:absolute; bottom:0.65rem; right:0.75rem;
  font-size:0.6rem; font-weight:700; color:rgba(255,255,255,0.25);
  opacity:0; transition:opacity 0.2s;
}
.ldr-card:hover .ldr-card-open-hint { opacity:1; }
.ldr-card-tba { opacity:0.55; pointer-events:none; cursor:default; }
.ldr-card-tba .ldr-initials { letter-spacing:0; }

/* ── LEADER DETAIL PANEL (side drawer) ── */
.ldp-backdrop {
  position:fixed; inset:0; z-index:8500;
  background:rgba(5,2,20,0.6); backdrop-filter:blur(8px);
  opacity:0; pointer-events:none; transition:opacity 0.3s ease;
}
.ldp-backdrop.open { opacity:1; pointer-events:all; }
.ldp-panel {
  position:fixed; top:0; right:0; bottom:0; z-index:8501;
  width:min(460px,100vw); background:white;
  box-shadow:-16px 0 80px rgba(10,5,30,0.3);
  transform:translateX(100%); transition:transform 0.38s cubic-bezier(.22,1,.36,1);
  display:flex; flex-direction:column; overflow:hidden;
}
.ldp-backdrop.open .ldp-panel { transform:translateX(0); }
.ldp-photo {
  width:100%; aspect-ratio:4/3; overflow:hidden; position:relative; flex-shrink:0;
  background:linear-gradient(135deg,#4c1d95,#7c3aed,#c4b5fd);
  display:flex; align-items:center; justify-content:center;
}
.ldp-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.ldp-photo-gradient {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(13,7,48,0.88) 0%, transparent 55%);
}
.ldp-photo-nameplate { position:absolute; bottom:0; left:0; right:0; padding:1.25rem 1.5rem 1rem; }
.ldp-name { font-size:1.35rem; font-weight:900; color:white; line-height:1.25; }
.ldp-role-tag {
  display:inline-block; font-size:0.62rem; font-weight:800; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--navy); background:var(--gold);
  border-radius:4px; padding:0.18rem 0.5rem; margin-top:0.45rem;
}
.ldp-initials-large {
  font-size:5rem; font-weight:900; color:rgba(255,255,255,0.18);
  font-family:var(--font-head); line-height:1; position:relative; z-index:1;
}
.ldp-close {
  position:absolute; top:1rem; right:1rem; z-index:10;
  width:38px; height:38px; border-radius:50%;
  background:rgba(5,2,20,0.5); border:1px solid rgba(255,255,255,0.2);
  color:white; font-size:1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background 0.2s;
}
.ldp-close:hover { background:rgba(5,2,20,0.8); }
.ldp-body {
  flex:1; overflow-y:auto; padding:1.5rem;
  display:flex; flex-direction:column; gap:1.1rem;
}
.ldp-quote {
  font-size:0.93rem; font-style:italic; color:var(--navy);
  background:rgba(212,175,55,0.07); border-left:3px solid var(--gold);
  border-radius:0 10px 10px 0; padding:0.9rem 1rem; line-height:1.7;
}
.ldp-quote cite {
  display:block; font-style:normal; font-size:0.68rem; font-weight:700;
  color:var(--violet); margin-top:0.4rem; letter-spacing:0.05em; text-transform:uppercase;
}
.ldp-meta-grid { display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; }
.ldp-meta-item { background:var(--off-white); border-radius:10px; padding:0.65rem 0.75rem; }
.ldp-meta-label {
  font-size:0.6rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--slate); margin-bottom:0.2rem;
}
.ldp-meta-value { font-size:0.85rem; font-weight:700; color:var(--navy); }
.ldp-bio { font-size:0.875rem; color:var(--slate); line-height:1.75; }
.ldp-contact {
  font-size:0.78rem; color:var(--violet); font-weight:600;
  display:flex; align-items:center; gap:0.4rem; text-decoration:none;
}
.ldp-contact:hover { text-decoration:underline; }
.ldp-nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1.5rem; border-top:1px solid rgba(40,22,111,0.08);
  flex-shrink:0;
}
.ldp-nav-btn {
  font-size:0.78rem; font-weight:700; color:var(--navy);
  background:none; border:1px solid rgba(40,22,111,0.15);
  border-radius:20px; padding:0.45rem 1rem; cursor:pointer;
  transition:background 0.2s, border-color 0.2s;
}
.ldp-nav-btn:hover { background:rgba(40,22,111,0.06); border-color:var(--violet); color:var(--violet); }
.ldp-nav-btn:disabled { opacity:0.28; cursor:default; pointer-events:none; }
.ldp-nav-counter { font-size:0.72rem; color:var(--slate); font-weight:600; }

/* ── MOBILE: stack rail above panel ── */
@media (max-width:768px) {
  .ldr-explorer { grid-template-columns:1fr; grid-template-rows:auto 1fr; min-height:unset; }
  .ldr-rail { flex-direction:row; overflow-x:auto; border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); padding:0; scrollbar-width:none; }
  .ldr-rail::-webkit-scrollbar { display:none; }
  .ldr-rail-item { flex-direction:column; align-items:center; gap:0.4rem; padding:0.85rem 1rem; border-left:none; border-bottom:3px solid transparent; white-space:nowrap; flex-shrink:0; }
  .ldr-rail-item.active { border-bottom-color:var(--gold); border-left-color:transparent; }
  .ldr-rail-item:not(:last-child) .ldr-rail-dot::after { display:none; }
  .ldr-rail-count { display:none; }
  .ldr-cards.is-overseer .ldr-card { grid-template-columns:1fr; }
  .ldr-cards.is-overseer .ldr-card-photo { aspect-ratio:16/9; }
  .ldr-cards.is-overseer .ldr-card-body { padding:1.25rem; }
  .ldr-card-quote { display:none !important; }
  .ldp-panel { width:100vw; }
}

/* ── CONTACT ── */
.contact-section { background:var(--off-white); padding:3.5rem 2rem; }
.contact-inner { max-width:680px; margin:0 auto; }
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; margin-bottom:0.75rem;
}
.contact-field {
  width:100%; padding:0.85rem 1rem;
  border:1.5px solid var(--light); border-radius:10px;
  font-size:0.9rem; color:var(--navy); font-family:inherit;
  background:white; outline:none; transition:border-color 0.2s; box-sizing:border-box;
}
.contact-field::placeholder { color:#94a3b8; }
.contact-field:focus { border-color:var(--purple); }
.contact-field.full { grid-column:1/-1; }
textarea.contact-field { resize:vertical; min-height:120px; line-height:1.55; }
.contact-submit {
  width:100%; padding:0.95rem; border:none; border-radius:10px;
  background:var(--purple); color:white; font-size:0.95rem; font-weight:800;
  cursor:pointer; font-family:inherit; transition:var(--transition);
  margin-top:0.25rem;
}
.contact-submit:hover { background:var(--violet); transform:translateY(-2px); box-shadow:0 8px 24px rgba(91,33,182,0.25); }
.contact-note { font-size:0.75rem; color:var(--slate); margin-top:0.85rem; text-align:center; }

/* ── FOOTER ── */
.footer { background:var(--navy); color:white; padding:4.5rem 2rem 2rem; }
.footer-inner { max-width:1400px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand h3 { font-size:1.3rem; font-weight:900; margin-bottom:0.75rem; }
.footer-brand p { color:rgba(255,255,255,0.55); font-size:0.875rem; line-height:1.75; margin-bottom:1.5rem; }
.footer-socials { display:flex; gap:0.6rem; }
.footer-col h4 { font-size:0.875rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.5); margin-bottom:1.25rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.65rem; }
.footer-col ul a { color:rgba(255,255,255,0.65); text-decoration:none; font-size:0.875rem; transition:color 0.2s; }
.footer-col ul a:hover { color:var(--gold); }
.footer-divider { height:1px; background:rgba(255,255,255,0.08); margin-bottom:2rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-bottom p { color:rgba(255,255,255,0.4); font-size:0.8rem; }
.footer-bottom-links { display:flex; gap:1.5rem; list-style:none; }
.footer-bottom-links a { color:rgba(255,255,255,0.4); text-decoration:none; font-size:0.8rem; transition:color 0.2s; }
.footer-bottom-links a:hover { color:rgba(255,255,255,0.8); }
.rccg-global-badge {
  padding:0.35rem 0.85rem; background:rgba(212,175,55,0.15);
  border:1px solid rgba(212,175,55,0.3); border-radius:20px;
  color:var(--gold); font-size:0.72rem; font-weight:700;
}

/* ── BACK TO TOP ── */
.back-top {
  position:fixed; bottom:2rem; right:2rem; z-index:500;
  width:44px; height:44px; border-radius:50%;
  background:var(--purple); color:white; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(40,22,111,0.4);
  transition:var(--transition); opacity:0; pointer-events:none;
}
.back-top.show { opacity:1; pointer-events:all; }
.back-top:hover { background:var(--violet); transform:translateY(-4px); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-media { display:none; }

  .events-layout { grid-template-columns:1fr; }
  .ministries-grid { grid-template-columns:repeat(2,1fr); }
  .finder-layout { grid-template-columns:1fr; }
  .finder-map-panel { display:none; }
  .gallery-spotlight { grid-template-columns:1fr; }
  .album-card { width:calc(50% - 0.65rem); }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links, .nav-actions .btn-outline { display:none; }
  .impact-band-inner { grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; }
  .impact-stat { padding:1.25rem 0.75rem; }
  .stat-num { font-size:1.6rem; }
  .hero-ctas { flex-direction:column; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .album-card { width:calc(100% - 0rem); }
  .media-item { width:160px; }
  .impact-band-inner { grid-template-columns:1fr 1fr; }
  .impact-band-divider { display:none; }
  .impact-stat { border-bottom: 1px solid rgba(15,10,46,0.12); }
  .impact-stat:nth-child(5), .impact-stat:nth-child(7) { border-bottom: none; }
}

/* ── MOBILE NAV TOGGLE ── */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:24px; height:2px; background:var(--navy); border-radius:2px; transition:var(--transition); }
@media (max-width:768px) { .hamburger { display:flex; } }
