/* ═══════════════════════════════════════════════
   MISSION OF CHRIST MINISTRIES — v4.0
   Simple · Professional · Navy + Gold
   No 3D · No cursor · No orbs · No parallax
═══════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ──────────────────────────── */
:root {
  --navy:      #1e3a5f;
  --navy-dk:   #0f2034;
  --navy-lt:   #2a4f7a;
  --gold:      #c8973f;
  --gold-lt:   #e8c56a;
  --gold-dk:   #9a6f25;
  --white:     #ffffff;
  --off:       #f8f6f2;
  --border:    #e2ddd6;
  --text:      #1a2333;
  --text2:     #5a6a7a;
  --shadow:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,.11);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius:    8px;
  --radius-lg: 14px;
  --trans:     .3s ease;
  --max-w:     1160px;
}

/* ── BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff !important;   /* beats wp-block-library body{background:#fff} */
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
.t-disp { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; }
.t-h2   { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
.t-h3   { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
.cream     { color: #ffffff; }
.grad-gold { color: var(--gold); font-style: italic; }
.muted     { color: var(--text2); }

.s-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.s-label::before, .s-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background: var(--gold);
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,63,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-text { padding: 0; color: var(--gold); font-weight: 600; font-size: .9rem; }
.btn-text:hover { gap: 14px; }

/* ── SCROLL PROGRESS BAR ────────────────────── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width .1s linear;
}

/* ── PRELOADER ──────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: opacity .6s ease;
}
.pl-icon {
  position: relative;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.pl-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(200,151,63,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
.pl-cross { width: 28px; height: 28px; position: relative; }
.pl-cross::before, .pl-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}
.pl-cross::before { width: 5px; height: 100%; left: 50%; transform: translateX(-50%); }
.pl-cross::after  { width: 100%; height: 5px; top: 50%; transform: translateY(-50%); }
.pl-num { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pl-pct { font-size: .9rem; }
.pl-txt {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 74px;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), height var(--trans);
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  height: 64px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-cross { width: 32px; height: 32px; position: relative; flex-shrink: 0; }
.logo-cross::before, .logo-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}
.logo-cross::before { width: 5px; height: 100%; left: 50%; transform: translateX(-50%); }
.logo-cross::after  { width: 100%; height: 5px; top: 38%; transform: translateY(-50%); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--trans);
}
.logo-sub {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.site-header.scrolled .logo-name { color: var(--navy); }
.site-header.scrolled .logo-sub  { color: var(--text2); }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.site-header.scrolled .nav-link       { color: var(--text); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--gold); }

.nav-donate {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .84rem;
  margin-left: 10px;
}
.nav-donate:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

/* Hamburger */
#burger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 810; }
#burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}
.site-header.scrolled #burger span { background: var(--navy); }
#burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#burger.open span:nth-child(2) { opacity: 0; }
#burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dk);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,25,50,.72) 0%,
    rgba(10,25,50,.56) 55%,
    rgba(10,25,50,.80) 100%);
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 5% 40px;
  width: 100%;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em { color: var(--gold-lt); font-style: italic; }
.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stat strip */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hss-item {
  flex: 1;
  min-width: 130px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hss-item:last-child { border-right: none; }
.hss-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.hss-lbl {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255,255,255,.55);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-rod {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { opacity:.4; transform: scaleY(1); }
  50%      { opacity:.9; transform: scaleY(.55); }
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap { background: var(--navy); overflow: hidden; padding: 15px 0; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.mi {
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding: 0 26px;
}
.mi-sep { color: var(--gold); margin-left: 6px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ─────────────────────────── */
section { padding: 96px 0; }

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger > *.in { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: .00s; }
.stagger > *:nth-child(2) { transition-delay: .10s; }
.stagger > *:nth-child(3) { transition-delay: .20s; }
.stagger > *:nth-child(4) { transition-delay: .30s; }

/* ── MISSION STATEMENT ──────────────────────── */
.statement-section { background: var(--white); text-align: center; padding: 80px 0; }
.statement-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  color: var(--navy);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 22px;
  line-height: 1.72;
}
.statement-ref { font-size: .8rem; color: var(--text2); letter-spacing: .06em; }
.statement-ref span { color: var(--gold); font-weight: 600; }
.statement-line {
  width: 72px; height: 3px;
  background: var(--gold);
  margin: 26px auto 0;
  border-radius: 2px;
}

/* ── ORGANIZATIONS ──────────────────────────── */
.orgs-section { background: var(--off); }
.orgs-header  { text-align: center; margin-bottom: 52px; }
.orgs-header h2 { color: var(--navy); }

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

.org-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.org-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.org-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.org-card:hover::before { transform: scaleX(1); }

.org-num {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 20px;
}
.org-svg-wrap { margin-bottom: 18px; }
.org-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.org-desc { font-size: .87rem; color: var(--text2); line-height: 1.78; }

/* ── STATS ──────────────────────────────────── */
.stats-section { background: var(--navy); padding: 88px 0; }
.stats-header  { text-align: center; margin-bottom: 52px; }
.stats-header h2 { color: #fff; }
.stats-section .s-label       { color: var(--gold-lt); }
.stats-section .s-label::before,
.stats-section .s-label::after { background: var(--gold-lt); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  gap: 1px;
}
.stat-card {
  background: rgba(255,255,255,.02);
  padding: 48px 28px;
  text-align: center;
  transition: background var(--trans);
}
.stat-card:hover { background: rgba(255,255,255,.07); }
.stat-bar { display: none; }   /* remove old 3D element */
.stat-num-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-sfx {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-top: 6px;
}
.stat-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
}

/* ── PROGRAMS ───────────────────────────────── */
.programs-section { background: var(--white); }
.programs-header  { text-align: center; margin-bottom: 60px; }
.programs-header h2 { color: var(--navy); }

.prog-list { max-width: 1140px; margin: 0 auto; padding: 0 5%; }
.prog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.prog-item:last-child { border-bottom: none; }
.prog-item.rev { direction: rtl; }
.prog-item.rev > * { direction: ltr; }

.prog-img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.prog-img-col img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prog-img-col:hover img { transform: scale(1.04); }

.prog-tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.prog-icon  { font-size: 1.9rem; margin-bottom: 14px; }
.prog-title { color: var(--navy); margin-bottom: 16px; }
.prog-desc  { color: var(--text2); line-height: 1.82; font-size: .9rem; margin-bottom: 22px; }

/* ── SCRIPTURE ──────────────────────────────── */
.scripture-section { background: var(--navy-lt); padding: 80px 0; text-align: center; }
.scripture-section .s-label       { color: rgba(255,255,255,.55); }
.scripture-section .s-label::before,
.scripture-section .s-label::after { background: rgba(255,255,255,.35); }
.scripture-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  color: rgba(255,255,255,.92);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.78;
}
.scripture-ref {
  font-size: .76rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.scripture-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 24px auto 0;
  border-radius: 2px;
}

/* ── ABOUT ──────────────────────────────────── */
.about-section { background: var(--off); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-img-col { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -24px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 290px;
}
.ab-icon  { font-size: 1.7rem; flex-shrink: 0; }
.ab-title { font-size: .87rem; font-weight: 700; color: var(--navy); }
.ab-sub   { font-size: .7rem; color: var(--text2); margin-top: 3px; line-height: 1.45; }

.about-section h2 { color: var(--navy); }
.about-lead { color: var(--text2); line-height: 1.82; font-size: .93rem; margin-bottom: 18px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 34px; }
.af { display: flex; gap: 14px; align-items: flex-start; }
.af-icon   { font-size: 1.45rem; flex-shrink: 0; }
.af strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.af span   { font-size: .82rem; color: var(--text2); line-height: 1.65; }

/* ── GALLERY ────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-header  { text-align: center; margin-bottom: 44px; }
.gallery-header h2 { color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--off);
}
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gi:hover img { transform: scale(1.07); }
.gi-cap {
  position: absolute;
  inset: 0;
  background: rgba(10,25,50,.62);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .28s ease;
}
.gi:hover .gi-cap { opacity: 1; }
.gi-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.gi-txt { font-size: .74rem; color: #fff; line-height: 1.4; }
.gi-a { grid-column: span 2; grid-row: span 2; }
.gi-b { grid-row: span 2; }
.gi-f { grid-column: span 2; }

/* ── EVENTS ─────────────────────────────────── */
.events-section { background: var(--off); }
.events-header  { text-align: center; margin-bottom: 52px; }
.events-header h2 { color: var(--navy); }
.events-header p { color: var(--text2); font-size: .9rem; max-width: 480px; margin: 14px auto 0; line-height: 1.8; }

.events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.ev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ev-featured   { border-color: var(--gold); border-width: 2px; }
.ev-dayname {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .06em;
}
.ev-meta  { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: 5px; }
.ev-title { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.ev-desc  { color: var(--text2); font-size: .87rem; line-height: 1.78; flex: 1; }
.ev-btns  { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── DONATE SECTION ────────────────────────── */
.donate-section { position: relative; padding: 120px 0; overflow: hidden; background: var(--navy-dk); }
.donate-bg { position: absolute; inset: 0; z-index: 0; }
.donate-bg img { width: 100%; height: 100%; object-fit: cover; }
.donate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,50,.88) 0%, rgba(10,25,50,.80) 100%);
  z-index: 1;
}
.donate-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.donate-inner h2   { color: #fff; margin-bottom: 10px; }
.donate-sub        { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.85; margin-bottom: 36px; }
.donate-section .s-label       { color: var(--gold-lt); }
.donate-section .s-label::before,
.donate-section .s-label::after { background: var(--gold-lt); }

.donate-amts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.donate-amt {
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 6px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 600;
  background: transparent;
  transition: var(--trans);
  cursor: pointer;
}
.donate-amt:hover, .donate-amt.sel { background: var(--gold); border-color: var(--gold); color: #fff; }
.donate-custom-input {
  width: 120px;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans);
}
.donate-custom-input::placeholder { color: rgba(255,255,255,.38); }
.donate-custom-input:focus { border-color: var(--gold); }
.donate-note { margin-top: 18px; font-size: .74rem; color: rgba(255,255,255,.4); line-height: 1.85; }
.donate-note a { color: var(--gold-lt); }

/* ── DONATION MODAL ─────────────────────────── */
#donate-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
#donate-modal.open { display: flex; }
.dm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.dm-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.dm-close { position: absolute; top: 14px; right: 18px; font-size: 1.2rem; color: var(--text2); padding: 4px 8px; transition: color var(--trans); }
.dm-close:hover { color: var(--text); }

.dm-header { margin-bottom: 22px; }
.dm-label  { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dm-amount { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--navy); }
.dm-tagline { font-size: .78rem; color: var(--text2); margin-top: 6px; line-height: 1.6; }
.dm-divider { height: 1px; background: var(--border); margin: 18px 0; }
.dm-methods-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text2); margin-bottom: 12px; }

/* Direct link methods (PayPal, WhatsApp) */
.dm-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: border-color var(--trans), background var(--trans);
  text-decoration: none;
  color: var(--text);
}
.dm-method:hover { border-color: var(--gold); background: rgba(200,151,63,.04); }
.dm-paypal:hover   { border-color: #0070ba; }
.dm-whatsapp:hover { border-color: #25d366; }

/* Expandable method wrapper */
.dm-method-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--trans);
}
.dm-method-wrap:hover { border-color: var(--gold); }
.dm-wise-wrap:hover { border-color: #9fe870; }
.dm-wu-wrap:hover   { border-color: #f7c300; }
.dm-mg-wrap:hover   { border-color: #e2001a; }

.dm-expand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background var(--trans);
  width: 100%;
  text-align: left;
  background: none;
}
.dm-expand:hover { background: rgba(200,151,63,.04); }

.dm-method-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.dm-method-body  { flex: 1; min-width: 0; }
.dm-method-name  { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.dm-method-desc  { font-size: .74rem; color: var(--text2); line-height: 1.5; }
.dm-method-arrow { color: var(--gold); font-size: .95rem; flex-shrink: 0; }

/* Bank detail panels */
.dm-bank-details { display: none; padding: 14px 16px 10px; border-top: 1px solid var(--border); background: var(--off); }
.dm-bank-details.open { display: block; }
.dm-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  gap: 10px;
  flex-wrap: wrap;
}
.dm-bank-row:last-child { border-bottom: none; }
.dm-bank-key { font-size: .7rem; color: var(--text2); font-weight: 600; flex-shrink: 0; }
.dm-bank-val { font-size: .8rem; color: var(--navy); font-weight: 500; }
.dm-copy-btn { font-size: .66rem; padding: 3px 10px; background: var(--gold); color: #fff; border-radius: 4px; font-weight: 600; transition: background var(--trans); white-space: nowrap; cursor: pointer; }
.dm-copy-btn:hover { background: var(--gold-dk); }
.dm-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--off);
  border-radius: var(--radius);
  margin-top: 14px;
  font-size: .7rem;
  color: var(--text2);
  flex-wrap: wrap;
}

/* ── TESTIMONIALS ───────────────────────────── */
.t-section { background: var(--white); overflow: hidden; }
.t-header  { text-align: center; margin-bottom: 52px; }
.t-header h2 { color: var(--navy); }

.t-carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.t-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tcard {
  min-width: 100%;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  flex-shrink: 0;
}
.t-stars { color: var(--gold); font-size: 1rem; letter-spacing: .08em; margin-bottom: 18px; }
.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.98rem, 1.7vw, 1.2rem);
  color: var(--navy);
  font-style: italic;
  line-height: 1.78;
  margin-bottom: 26px;
}
.t-person  { display: flex; align-items: center; gap: 14px; }
.t-monogram {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.t-role { font-size: .73rem; color: var(--text2); margin-top: 2px; }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.t-dots { display: flex; gap: 8px; align-items: center; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--trans), width var(--trans), border-radius var(--trans);
}
.t-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.t-arrows { display: flex; gap: 8px; }
.t-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--navy);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.t-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── NEWSLETTER ─────────────────────────────── */
.nl-section { background: var(--navy); padding: 80px 0; }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.nl-section .s-label       { color: var(--gold-lt); }
.nl-section .s-label::before,
.nl-section .s-label::after { background: var(--gold-lt); }
.nl-section h2, .nl-section h3 { color: #fff; }
.nl-section .muted { color: rgba(255,255,255,.52); }

.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans);
}
.nl-input::placeholder { color: rgba(255,255,255,.38); }
.nl-input:focus { border-color: var(--gold); }

/* ── CONTACT ────────────────────────────────── */
.contact-section { background: var(--off); }
.contact-header  { text-align: center; margin-bottom: 52px; }
.contact-header h2 { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.ci  { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.ci-key  { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-val  { font-size: .9rem; color: var(--navy); line-height: 1.65; }

.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.soc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
}
.soc:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.soc.fb:hover { border-color: #1877f2; color: #1877f2; }
.soc.yt:hover { border-color: #ff0000; color: #ff0000; }
.soc.ig:hover { border-color: #c13584; color: #c13584; }

/* Form */
.cf-group { margin-bottom: 18px; }
.cf-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text2); margin-bottom: 7px; }
.cf-input, .cf-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans);
}
.cf-input:focus, .cf-textarea:focus { border-color: var(--gold); }
.cf-textarea { height: 130px; resize: vertical; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--navy-dk); color: rgba(255,255,255,.65); }
.footer-main { padding: 68px 0 44px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.site-footer .logo-name { color: #fff; }
.site-footer .logo-sub  { color: rgba(255,255,255,.45); }
.footer-desc { margin-top: 16px; font-size: .8rem; line-height: 1.82; color: rgba(255,255,255,.45); }
.footer-col-title { font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-links a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.3); }
.footer-orgs { display: flex; gap: 18px; align-items: center; }
.fo { display: flex; align-items: center; gap: 8px; font-size: .7rem; color: rgba(255,255,255,.38); }
.fo-img { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.fo-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── BACK TO TOP ────────────────────────────── */
#btt {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,151,63,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  z-index: 700;
  pointer-events: none;
}
#btt.show { opacity: 1; transform: none; pointer-events: auto; }
#btt:hover { background: var(--gold-dk); }

/* ── LIGHTBOX ───────────────────────────────── */
#lb { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; }
#lb.on { display: flex; }
.lb-bg { position: absolute; inset: 0; background: rgba(0,0,0,.88); }
.lb-box { position: relative; z-index: 1; max-width: 900px; width: 100%; text-align: center; }
.lb-x { position: absolute; top: -42px; right: 0; color: rgba(255,255,255,.65); font-size: 1.4rem; padding: 4px 8px; transition: color var(--trans); }
.lb-x:hover { color: #fff; }
.lb-img { max-height: 80vh; max-width: 100%; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-cap { color: rgba(255,255,255,.55); font-size: .8rem; margin-top: 12px; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .about-grid { gap: 44px; }
  .about-img-frame { aspect-ratio: 3/2; }
  .about-badge { right: 0; }
}
@media (max-width: 900px) {
  .orgs-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .nl-grid      { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gi-a { grid-column: span 2; grid-row: span 1; }
  .gi-b { grid-row: span 1; }
  .gi-f { grid-column: span 2; }
}
@media (max-width: 768px) {
  section { padding: 68px 0; }
  .nav-menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--navy-dk);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    padding: 80px 32px 32px;
    z-index: 800;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.05rem !important; color: rgba(255,255,255,.85) !important; padding: 14px 20px !important; width: 100%; text-align: center; }
  .nav-donate { display: none !important; }
  #burger { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hss-item  { padding: 8px 16px; }
  .prog-item { grid-template-columns: 1fr; gap: 28px; }
  .prog-item.rev { direction: ltr; }
  .prog-img-col { aspect-ratio: 16/9; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-badge  { position: static; margin-top: 20px; max-width: 100%; }
  .events-grid  { grid-template-columns: 1fr; }
  .tcard { padding: 32px 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-orgs { justify-content: center; }
}
@media (max-width: 540px) {
  .orgs-grid  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .dm-box { padding: 28px 18px; }
  .hero-stats-strip { flex-wrap: wrap; }
  .hss-item { border-right: none; min-width: 45%; }
  .hss-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
