:root {
  --teal: #1A8F8A;
  --teal-dark: #136966;
  --teal-light: #E8F7F6;
  --gold: #F0A500;
  --gold-light: #FFF8E6;
  --navy: #0D2340;
  --navy-soft: #1C3A5E;
  --white: #FFFFFF;
  --off-white: #F8FFFE;
  --text: #2D3748;
  --text-light: #718096;
  --border: #E2E8F0;
  --green: #48BB78;
  --purple: #9B59B6;
  --orange: #E67E22;
  --red: #E53E3E;
  --shadow: 0 4px 24px rgba(13, 35, 64, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 35, 64, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 35, 64, 0.96), rgba(26, 143, 138, 0.88));
  color: var(--white);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preloader-logo-wrap {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.preloader-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.preloader-ring {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--gold);
  border-right-color: rgba(240, 165, 0, 0.8);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.page-preloader p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--teal);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 143, 138, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;/* =============================================
   DADDY'S HOME — Main Stylesheet
   Design: Warm teal (#1A8F8A) + Gold (#F0A500) + Deep Navy (#0D2340)
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================= */

:root {
  --teal: #1A8F8A;
  --teal-dark: #136966;
  --teal-light: #E8F7F6;
  --gold: #F0A500;
  --gold-light: #FFF8E6;
  --navy: #0D2340;
  --navy-soft: #1C3A5E;
  --white: #FFFFFF;
  --off-white: #F8FFFE;
  --text: #2D3748;
  --text-light: #718096;
  --border: #E2E8F0;
  --green: #48BB78;
  --purple: #9B59B6;
  --orange: #E67E22;
  --red: #E53E3E;
  --shadow: 0 4px 24px rgba(13, 35, 64, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 35, 64, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 35, 64, 0.96), rgba(26, 143, 138, 0.88));
  color: var(--white);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preloader-logo-wrap {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.preloader-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.preloader-ring {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--gold);
  border-right-color: rgba(240, 165, 0, 0.8);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.page-preloader p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--teal);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 143, 138, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid white;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-white:hover { background: white; color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-donate {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-donate:hover { background: #d4900a; transform: translateY(-2px); }
.btn-primary .lucide-icon,
.btn-outline .lucide-icon,
.btn-outline-white .lucide-icon,
.btn-sponsor .lucide-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 35, 64, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.logo-icon { display: inline-flex; align-items: center; justify-content: center; }
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.lucide-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 1.8;
}
.icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accent { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 40%, var(--teal-dark) 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,35,64,0.85) 50%, rgba(13,35,64,0.4));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 550px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== TICKER ===== */
.ticker-strip {
  background: var(--navy);
  color: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--teal);
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  gap: 80px;
}
.ticker-content span {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
  background: linear-gradient(135deg, var(--teal-light), #c8f0ee);
  border: 2px dashed var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.placeholder-label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  z-index: 1;
}
.placeholder-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ===== WELCOME SECTION ===== */
.welcome-section { background: var(--off-white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.mosaic-img { border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.mosaic-img.large { grid-column: 1 / 3; grid-row: 1; }
.impact-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.impact-badge .impact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
}
.impact-badge .impact-icon .lucide-icon {
  width: 1.4rem;
  height: 1.4rem;
}
.impact-badge strong { display: block; font-size: 0.95rem; }
.impact-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.welcome-body { color: var(--text-light); margin-bottom: 16px; }
.welcome-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
  margin: 24px 0;
}
.welcome-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  font-style: normal;
}

/* ===== IMPACT NUMBERS ===== */
.impact-section {
  background: var(--navy);
  padding: 80px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.impact-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(26,143,138,0.2);
  transform: translateY(-6px);
}
.impact-card .impact-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  margin: 0 auto 16px;
}
.impact-card .impact-icon-wrap .lucide-icon {
  width: 2rem;
  height: 2rem;
}
.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
}
.impact-desc { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 8px; }

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.pillar-card:hover {
  border-bottom-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  margin-bottom: 20px;
}
.pillar-icon .lucide-icon {
  width: 1.9rem;
  height: 1.9rem;
}
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-card p { color: var(--text-light); font-size: 0.92rem; }

/* ===== BUDGET ===== */
.budget-section { background: var(--teal-light); }
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.progress-wrap { margin: 28px 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.progress-pct { color: var(--teal); }
.progress-bar {
  background: rgba(26,143,138,0.15);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--gold));
  border-radius: 50px;
  width: 0;
  transition: width 1.5s ease;
}
.progress-amounts {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}
.breakdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.breakdown-item { margin-bottom: 16px; }
.breakdown-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 5px;
}
.breakdown-bar {
  background: rgba(26,143,138,0.12);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}
.breakdown-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s ease;
}
.breakdown-fill.teal { background: var(--teal); }
.breakdown-fill.gold { background: var(--gold); }
.breakdown-fill.green { background: var(--green); }
.breakdown-fill.purple { background: var(--purple); }
.breakdown-fill.orange { background: var(--orange); }

/* ===== SPONSORSHIP ===== */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.sponsor-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.sponsor-card:hover, .sponsor-card.featured {
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sponsor-card.featured { background: var(--teal); color: white; }
.sponsor-card.featured h3, .sponsor-card.featured p { color: white; }
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.sponsor-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  margin: 0 auto 16px;
}
.sponsor-card.featured .sponsor-icon {
  background: rgba(255,255,255,0.24);
  color: white;
}
.sponsor-icon .lucide-icon {
  width: 1.7rem;
  height: 1.7rem;
}
.sponsor-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.sponsor-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.btn-sponsor {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sponsor:hover { background: var(--teal); color: white; }
.sponsor-card.featured .btn-sponsor {
  background: rgba(255,255,255,0.2);
  color: white;
}
.sponsor-card.featured .btn-sponsor:hover { background: white; color: var(--teal); }

/* ===== TEAM ===== */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-light), #e8f7f6);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-info { padding: 24px; }
.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team-info p { color: var(--text-light); font-size: 0.88rem; }

/* ===== TEAM PAGE — FULL TEAM GRID & PATRON CARDS (team.html) ===== */
.team-category { margin-bottom: 72px; }
.category-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-full-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(13,35,64,0.08);
}
.team-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-full-photo {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--teal-light), #e8f7f6);
}
.team-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-full-info { padding: 20px; }
.team-full-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-full-role {
  display: block;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.team-flag { font-size: 0.8rem; color: var(--text-light); }
.patron-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  border-left: 6px solid var(--gold);
}
.patron-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  position: relative;
  background: linear-gradient(135deg, var(--teal-light), #e8f7f6);
}
.patron-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.patron-info .section-eyebrow { margin-bottom: 8px; }
.patron-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.patron-info .patron-title { color: var(--teal); font-weight: 600; margin-bottom: 16px; }
.patron-info p { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; }
.prayer-card {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: white;
}
.prayer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.prayer-card p { opacity: 0.88; line-height: 1.9; max-width: 660px; margin: 0 auto; }

/* ===== SCRIPTURE ===== */
.scripture-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.scripture-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}
.scripture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,0.7);
  z-index: 1;
}
.scripture-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}
.scripture-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 24px;
}
.scripture-icon .lucide-icon {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--gold);
}
.scripture-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.scripture-ref { color: var(--gold); font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 100%;
}
.gallery-item.large { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; }

/* Ensure gallery images fully cover their grid area */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== NEWS ===== */
.news-section { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { height: 200px; }
.news-body { padding: 24px; }
.news-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.news-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; }
.read-more { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.read-more:hover { color: var(--teal-dark); }

/* ===== DONATE CTA ===== */
.donate-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.85); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--teal); transform: translateY(-3px); }
.footer-links h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact h4 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.footer-contact svg,
.footer-socials svg,
.social-link svg,
.info-icon svg,
.way-icon svg,
.hero-badge svg,
.hero-pill svg,
.ticker-item svg {
  width: 1rem;
  height: 1rem;
}
.footer-contact > p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact > p .lucide-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-prayer {
  margin-top: 20px;
  padding: 16px;
  background: rgba(26,143,138,0.15);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}
.footer-prayer em { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-4px); }

/* ===== ABOUT GALLERY ===== */
.about-gallery { background: var(--off-white); }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 14px;
}
.about-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.about-gallery-item.large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.about-gallery-item.tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-gallery-item:hover img {
  transform: scale(1.06);
}
.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,35,64,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.about-gallery-item:hover .about-gallery-overlay {
  opacity: 1;
}
.about-gallery-label {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 16px;
  background: rgba(240,165,0,0.85);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .about-gallery-item.large,
  .about-gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
  .about-gallery-item { height: 200px; }
}

@media (max-width: 500px) {
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-item { height: 180px; }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered visibility */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== DONATION PAGE STYLES (inline for donate.html reuse) ===== */
.donation-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 160px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.donation-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.donation-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 550px; margin: 0 auto; }

.payment-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--teal-light);
  padding: 6px;
  border-radius: var(--radius);
}
.pay-tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-light);
  transition: var(--transition);
  text-align: center;
}
.pay-tab.active {
  background: white;
  color: var(--teal);
  box-shadow: var(--shadow);
}
.pay-tab:hover:not(.active) { background: rgba(255,255,255,0.5); }

.payment-panel { display: none; }
.payment-panel.active { display: block; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.form-control:focus { border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.payment-method-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}
.payment-method-logo:hover { border-color: var(--teal); }
.payment-method-logo input { margin-right: 8px; }
.pay-logo { font-size: 1.4rem; }

.donate-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.donate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,143,138,0.4);
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }

/* ===== HERO BACKGROUND IMAGES (shared) ===== */
/* Use .hero-has-bg on any page hero to add a background image with a dark overlay */
.page-hero .container, 
.contact-hero .container, 
.projects-hero .container, 
.donation-hero .container {
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-left: 24px; }

  /* Team page grid: 2 columns on tablets */
  .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .patron-card { grid-template-columns: 1fr; }
  .patron-photo { height: 300px; }

  /* ===== TEAM PHOTOS — MOBILE FIX: show the full image, no cropped heads/faces ===== */
  .team-full-photo {
    height: 260px;
  }
  .team-full-photo img {
    object-fit: contain;
    object-position: center center;
  }

  .patron-photo img {
    object-fit: contain;
    object-position: center center;
  }

  .team-photo {
    height: 260px;
  }
  .team-photo img {
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 0; width: 100%; }
  .nav-donate { margin-top: 16px; }
  .hamburger { display: flex; z-index: 1001; }
  .pillars-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; grid-column: auto; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 500px) {
  /* Team page grid: 1 column on phones */
  .team-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline-white, .btn-outline { width: 100%; text-align: center; }
  .payment-tabs { flex-direction: column; }
}
  border: 2px solid white;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-white:hover { background: white; color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-donate {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-donate:hover { background: #d4900a; transform: translateY(-2px); }
.btn-primary .lucide-icon,
.btn-outline .lucide-icon,
.btn-outline-white .lucide-icon,
.btn-sponsor .lucide-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 35, 64, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.logo-icon { display: inline-flex; align-items: center; justify-content: center; }
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.lucide-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 1.8;
}
.icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accent { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 40%, var(--teal-dark) 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,35,64,0.85) 50%, rgba(13,35,64,0.4));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 550px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== TICKER ===== */
.ticker-strip {
  background: var(--navy);
  color: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--teal);
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  gap: 80px;
}
.ticker-content span {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
  background: linear-gradient(135deg, var(--teal-light), #c8f0ee);
  border: 2px dashed var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.placeholder-label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  z-index: 1;
}
.placeholder-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ===== WELCOME SECTION ===== */
.welcome-section { background: var(--off-white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.mosaic-img { border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.mosaic-img.large { grid-column: 1 / 3; grid-row: 1; }
.impact-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.impact-badge .impact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
}
.impact-badge .impact-icon .lucide-icon {
  width: 1.4rem;
  height: 1.4rem;
}
.impact-badge strong { display: block; font-size: 0.95rem; }
.impact-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.welcome-body { color: var(--text-light); margin-bottom: 16px; }
.welcome-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
  margin: 24px 0;
}
.welcome-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  font-style: normal;
}

/* ===== IMPACT NUMBERS ===== */
.impact-section {
  background: var(--navy);
  padding: 80px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.impact-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(26,143,138,0.2);
  transform: translateY(-6px);
}
.impact-card .impact-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  margin: 0 auto 16px;
}
.impact-card .impact-icon-wrap .lucide-icon {
  width: 2rem;
  height: 2rem;
}
.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
}
.impact-desc { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 8px; }

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.pillar-card:hover {
  border-bottom-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  margin-bottom: 20px;
}
.pillar-icon .lucide-icon {
  width: 1.9rem;
  height: 1.9rem;
}
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-card p { color: var(--text-light); font-size: 0.92rem; }

/* ===== BUDGET ===== */
.budget-section { background: var(--teal-light); }
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.progress-wrap { margin: 28px 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.progress-pct { color: var(--teal); }
.progress-bar {
  background: rgba(26,143,138,0.15);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--gold));
  border-radius: 50px;
  width: 0;
  transition: width 1.5s ease;
}
.progress-amounts {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}
.breakdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.breakdown-item { margin-bottom: 16px; }
.breakdown-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 5px;
}
.breakdown-bar {
  background: rgba(26,143,138,0.12);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}
.breakdown-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s ease;
}
.breakdown-fill.teal { background: var(--teal); }
.breakdown-fill.gold { background: var(--gold); }
.breakdown-fill.green { background: var(--green); }
.breakdown-fill.purple { background: var(--purple); }
.breakdown-fill.orange { background: var(--orange); }

/* ===== SPONSORSHIP ===== */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.sponsor-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.sponsor-card:hover, .sponsor-card.featured {
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sponsor-card.featured { background: var(--teal); color: white; }
.sponsor-card.featured h3, .sponsor-card.featured p { color: white; }
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.sponsor-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  margin: 0 auto 16px;
}
.sponsor-card.featured .sponsor-icon {
  background: rgba(255,255,255,0.24);
  color: white;
}
.sponsor-icon .lucide-icon {
  width: 1.7rem;
  height: 1.7rem;
}
.sponsor-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.sponsor-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.btn-sponsor {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sponsor:hover { background: var(--teal); color: white; }
.sponsor-card.featured .btn-sponsor {
  background: rgba(255,255,255,0.2);
  color: white;
}
.sponsor-card.featured .btn-sponsor:hover { background: white; color: var(--teal); }

/* ===== TEAM ===== */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo { height: 240px; }
.team-info { padding: 24px; }
.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team-info p { color: var(--text-light); font-size: 0.88rem; }

/* ===== SCRIPTURE ===== */
.scripture-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.scripture-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}
.scripture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,0.7);
  z-index: 1;
}
.scripture-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}
.scripture-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 24px;
}
.scripture-icon .lucide-icon {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--gold);
}
.scripture-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.scripture-ref { color: var(--gold); font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 100%;
}
.gallery-item.large { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; }

/* Ensure gallery images fully cover their grid area */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== NEWS ===== */
.news-section { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { height: 200px; }
.news-body { padding: 24px; }
.news-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.news-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; }
.read-more { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.read-more:hover { color: var(--teal-dark); }

/* ===== DONATE CTA ===== */
.donate-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.85); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--teal); transform: translateY(-3px); }
.footer-links h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact h4 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.footer-contact svg,
.footer-socials svg,
.social-link svg,
.info-icon svg,
.way-icon svg,
.hero-badge svg,
.hero-pill svg,
.ticker-item svg {
  width: 1rem;
  height: 1rem;
}
.footer-contact > p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact > p .lucide-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-prayer {
  margin-top: 20px;
  padding: 16px;
  background: rgba(26,143,138,0.15);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}
.footer-prayer em { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-4px); }

/* ===== ABOUT GALLERY ===== */
.about-gallery { background: var(--off-white); }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 14px;
}
.about-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.about-gallery-item.large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.about-gallery-item.tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-gallery-item:hover img {
  transform: scale(1.06);
}
.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,35,64,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.about-gallery-item:hover .about-gallery-overlay {
  opacity: 1;
}
.about-gallery-label {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 16px;
  background: rgba(240,165,0,0.85);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .about-gallery-item.large,
  .about-gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
  .about-gallery-item { height: 200px; }
}

@media (max-width: 500px) {
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-item { height: 180px; }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered visibility */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== DONATION PAGE STYLES (inline for donate.html reuse) ===== */
.donation-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 160px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.donation-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.donation-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 550px; margin: 0 auto; }

.payment-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--teal-light);
  padding: 6px;
  border-radius: var(--radius);
}
.pay-tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-light);
  transition: var(--transition);
  text-align: center;
}
.pay-tab.active {
  background: white;
  color: var(--teal);
  box-shadow: var(--shadow);
}
.pay-tab:hover:not(.active) { background: rgba(255,255,255,0.5); }

.payment-panel { display: none; }
.payment-panel.active { display: block; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.form-control:focus { border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.payment-method-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}
.payment-method-logo:hover { border-color: var(--teal); }
.payment-method-logo input { margin-right: 8px; }
.pay-logo { font-size: 1.4rem; }

.donate-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.donate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,143,138,0.4);
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }

/* ===== HERO BACKGROUND IMAGES (shared) ===== */
/* Use .hero-has-bg on any page hero to add a background image with a dark overlay */
.page-hero .container, 
.contact-hero .container, 
.projects-hero .container, 
.donation-hero .container {
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-left: 24px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 0; width: 100%; }
  .nav-donate { margin-top: 16px; }
  .hamburger { display: flex; z-index: 1001; }
  .pillars-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; grid-column: auto; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline-white, .btn-outline { width: 100%; text-align: center; }
  .payment-tabs { flex-direction: column; }
}
