/* ================================================
   ZION INTERNATIONAL PENTECOSTAL CHURCH
   Global Stylesheet — Professional Edition 2026
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Josefin+Sans:wght@300;400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────── */
:root {
  --gold:       #c9a84c;
  --gold-light: #e8c97e;
  --gold-dark:  #8a6b2a;
  --deep:       #080c14;
  --dark:       #0e1520;
  --dark2:      #141d2e;
  --mid:        #1e2d44;
  --smoke:      #f5f0eb;
  --cream:      #faf7f2;
  --text:       #e8e0d4;
  --muted:      #8a9ab5;
  --blue:       #1e4fcc;
  --crimson:    #8b1a1a;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Josefin Sans', sans-serif;
  --font-serif:   'Crimson Pro', serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-smooth);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.18s var(--ease-smooth);
  opacity: 0.7;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 1;
  background: rgba(201, 168, 76, 0.15);
}

/* ─── PAGE LOADER ───────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-cross {
  width: 60px; height: 60px;
  position: relative;
  animation: loaderSpin 1.5s var(--ease-smooth) infinite;
}

.loader-cross::before,
.loader-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 3px;
}
.loader-cross::before { width: 4px; height: 100%; left: 50%; transform: translateX(-50%); }
.loader-cross::after  { width: 100%; height: 4px; top: 50%; transform: translateY(-50%); }

@keyframes loaderSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(90deg) scale(1.2); }
  100% { transform: rotate(180deg) scale(1); }
}

.loader-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─── HEADER / NAV ──────────────────────────────── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-smooth);
}

header.scrolled {
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  height: 68px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.logo-img-wrap {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}

.logo-img-wrap:hover {
  box-shadow: 0 0 35px rgba(201,168,76,0.7);
}

.logo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-smooth);
}

nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  transition: all 0.3s !important;
  background: transparent;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--deep) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 901;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 899;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-smooth);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

.mobile-menu a:hover { color: var(--gold); transform: translateX(8px); }

/* ─── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.left  { transform: translateX(-60px); }
.reveal.right { transform: translateX(60px); }
.reveal.scale { transform: scale(0.9); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.6s; }

/* ─── SECTION BASE ──────────────────────────────── */
.section {
  padding: 120px 80px;
  position: relative;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-smooth);
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* ─── CARDS ─────────────────────────────────────── */
.card-glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-smooth);
}

.card-glass:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}

.card-glass:hover::before { transform: scaleX(1); }

/* ─── IMAGE HOVER EFFECTS ───────────────────────── */
.img-zoom {
  overflow: hidden;
  position: relative;
}

.img-zoom img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth), filter 0.5s;
}

.img-zoom:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* ─── DIVIDER ───────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3));
}

.divider::after {
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

.divider-cross {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}

.divider-cross::before, .divider-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
}

.divider-cross::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.divider-cross::after  { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }

/* ─── FLOATING PARTICLES ────────────────────────── */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  transition: all 0.3s;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
}

.footer-contact-item:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(4px);
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 15px;
  width: 16px;
  text-align: center;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.35s var(--ease-smooth);
  background: transparent;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 25px rgba(201,168,76,0.35);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Map */
.map-box {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s var(--ease-smooth);
}

.map-box iframe {
  width: 100%; height: 200px;
  border: none;
  filter: brightness(0.8) contrast(1.1) saturate(0.6);
  display: block;
}

.map-box:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.map-box:hover iframe { filter: brightness(0.9) contrast(1.1) saturate(0.8); }

/* ─── FLOATING ACTIONS ───────────────────────────── */
.fab-whatsapp {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  z-index: 800;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  transition: all 0.35s var(--ease-bounce);
  animation: waPulse 2s infinite;
}

.fab-whatsapp:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 16px 40px rgba(37,211,102,0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

.fab-give {
  position: fixed;
  right: 28px; bottom: 100px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), #c0392b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 800;
  box-shadow: 0 8px 25px rgba(139,26,26,0.5);
  transition: all 0.35s var(--ease-bounce);
  animation: givePulse 2s infinite;
}

.fab-give i { font-size: 18px; margin-bottom: 2px; }

.fab-give:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 16px 40px rgba(139,26,26,0.6);
}

@keyframes givePulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(139,26,26,0.5); }
  50%       { box-shadow: 0 8px 40px rgba(139,26,26,0.8), 0 0 0 10px rgba(139,26,26,0.1); }
}

/* ─── GIVING MODAL ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  animation: modalIn 0.5s var(--ease-out);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.modal-close:hover { background: var(--gold); color: var(--deep); }

.modal-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.modal-verse {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-size: 16px;
}

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

.giving-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 30px;
  transition: all 0.4s var(--ease-smooth);
}

.giving-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.04);
  transform: translateY(-5px);
}

.giving-card h3 {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.give-item {
  padding: 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  margin-bottom: 12px;
}

.give-item strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.give-item p { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.give-item span { font-size: 12px; color: var(--muted); }

.giving-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

/* ─── MINISTRY SLIDER CARDS ──────────────────────── */
.ministry-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.ministry-card .slider {
  position: absolute;
  inset: 0;
}

.ministry-card .slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 7s ease;
  transform: scale(1.08);
}

.ministry-card .slider img.active {
  opacity: 1;
  transform: scale(1);
}

.ministry-card .slider img.prev { opacity: 0; }

.ministry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,20,0.9) 0%, rgba(8,12,20,0.3) 50%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.4s;
}

.ministry-card:hover .ministry-overlay {
  background: linear-gradient(to top, rgba(8,12,20,0.95) 0%, rgba(8,12,20,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

.ministry-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 6px;
  transition: transform 0.4s var(--ease-smooth);
}

.ministry-card:hover .ministry-name { transform: translateY(-4px); }

.ministry-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ministry-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  header { padding: 0 30px; }
  nav { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 24px; }
  header { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  footer { padding: 60px 24px 30px; }
  .giving-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 30px 24px; }
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ─── PROGRESS BAR ───────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dark), var(--gold));
  border-radius: 3px;
}

/* ─── PAGE TRANSITION ────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 99998;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-smooth);
}

.page-transition.in { transform: scaleY(1); transform-origin: bottom; }
.page-transition.out { transform: scaleY(0); transform-origin: top; }