/* ===== BRIDGE OF HOPE - STYLES ===== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --gold: #c8a54e;
  --gold-light: #ddc175;
  --teal: #0e7490;
  --teal-dark: #0a5e75;
  --teal-light: #e0f4f8;
  --warm-white: #faf8f5;
  --off-white: #f0eeeb;
  --charcoal: #2d2d2d;
  --gray: #6b6b6b;
  --light-gray: #e8e6e3;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

/* --- Utility --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.section-desc {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,165,78,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
}

.nav-brand-text {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-brand-text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .btn-gold {
  color: var(--white);
  padding: 10px 24px;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2744 0%, #0e7490 50%, #1a2744 100%);
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(200,165,78,0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(14,116,144,0.2) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-cross {
  width: 40px;
  height: 40px;
  margin: 0 auto 32px;
  opacity: 0.7;
}

.hero-cross svg {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Welcome / Service Times --- */
.welcome {
  background: var(--warm-white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.welcome-text p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid var(--gold);
}

.service-card .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 100px;
}

.service-card .time {
  color: var(--gray);
  font-size: 0.95rem;
}

/* --- Family Section --- */
.family {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.family::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,165,78,0.08) 0%, transparent 60%);
}

.family .section-title {
  color: var(--white);
}

.family-img {
  margin: 40px auto 0;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

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

/* --- About / Story --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.story-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.story-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* --- Expanding Vision --- */
.vision-section {
  background: var(--teal);
  color: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.vision-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.vision-section .highlight {
  font-weight: 700;
  color: var(--gold-light);
}

.vision-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
}

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

/* --- Mission & Vision --- */
.mission {
  background: var(--warm-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.mission-card {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.mission-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.mission-card .gold-line {
  margin-bottom: 20px;
}

.mission-card p {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* --- Video Section --- */
.video-section {
  background: var(--charcoal);
  text-align: center;
  padding: 80px 0;
}

.video-section h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.video-section .section-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* --- Beliefs --- */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.belief-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.belief-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.belief-card .scripture {
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 500;
}

/* --- Leadership --- */
.leadership {
  background: var(--warm-white);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.leader-card {
  text-align: center;
}

.leader-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
  background: var(--off-white);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.leader-card .role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Gallery --- */
.gallery-section {
  overflow: hidden;
}

.gallery-category {
  margin-bottom: 48px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Upcoming Programs Carousel --- */
.programs-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,165,78,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.programs-carousel {
  position: relative;
  max-width: 400px;
  margin: 48px auto 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  text-align: left;
}

.carousel-caption h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.carousel-caption p {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .programs-carousel { max-width: 320px; }
}

/* --- Give --- */
.give-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.give-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(200,165,78,0.1) 0%, transparent 60%);
}

.give-section .section-title {
  color: var(--white);
}

.give-scripture {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.5;
}

.give-scripture-ref {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.give-section .section-desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.give-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.give-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cashapp-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.cashapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00D632;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
}

.cashapp-btn:hover {
  background: #00c02e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,214,50,0.3);
}

.cashapp-btn svg {
  width: 24px;
  height: 24px;
}

/* --- Connect / Contact --- */
.connect-section {
  background: var(--warm-white);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.connect-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.connect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.connect-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connect-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.connect-item p, .connect-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.connect-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border var(--transition);
  background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.map-wrapper {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* --- Joy Video Section --- */
.joy-section {
  text-align: center;
  padding: 80px 0;
  background: var(--white);
}

.joy-section h2 {
  margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-about h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.88rem;
}

/* --- Mobile Nav --- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 16px;
  }

  .nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .nav-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .welcome-grid,
  .story-grid,
  .vision-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-pad {
    padding: 72px 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .give-card {
    padding: 32px 24px;
  }

  .connect-form {
    padding: 28px 20px;
  }
}

/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
