/* ===== DESIGN SYSTEM ===== */
:root {
  --copper: #d77b5a;
  --copper-light: #e09575;
  --copper-dark: #b8613f;
  --purple: #856098;
  --purple-light: #9d7aaf;
  --dark-purple: #56345b;
  --plum: #3a182a;
  --near-black: #15050a;
  --bg: #0d0308;
  --surface: #1a0b12;
  --surface-elevated: #251320;
  --text: #f0e6eb;
  --text-muted: #a89ba0;
  --text-dim: #6e5c65;
  --white: #fff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--copper); text-decoration: none; transition: color var(--transition); -webkit-tap-highlight-color: transparent; }
a:hover { color: var(--copper-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; overflow-wrap: break-word; word-wrap: break-word; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { max-width: 65ch; overflow-wrap: break-word; word-wrap: break-word; }

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-copper { color: var(--copper); }
.text-purple { color: var(--purple); }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--copper);
  color: var(--near-black);
}
.btn-primary:hover {
  background: var(--copper-light);
  color: var(--near-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(215, 123, 90, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}
.btn-secondary:hover {
  background: var(--copper);
  color: var(--near-black);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(133, 96, 152, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(133, 96, 152, 0.3);
}
.btn-ghost:hover {
  background: rgba(133, 96, 152, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 3, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(86, 52, 91, 0.2);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(13, 3, 8, 0.95);
  border-bottom-color: rgba(86, 52, 91, 0.4);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(133, 96, 152, 0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--copper);
  border-radius: 1px;
}
.nav-cta {
  margin-left: 0.5rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--bg);
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow--purple {
  width: 500px;
  height: 500px;
  background: rgba(86, 52, 91, 0.25);
  top: 10%;
  left: -5%;
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.hero-glow--copper {
  width: 350px;
  height: 350px;
  background: rgba(215, 123, 90, 0.1);
  bottom: 15%;
  left: 20%;
  animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.15); }
}

/* Left: Text side */
.hero-text-side {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem 4rem;
}
.hero-content {
  max-width: 560px;
  margin-left: auto;
  margin-right: 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(133, 96, 152, 0.12);
  border: 1px solid rgba(133, 96, 152, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--purple-light);
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper);
}
.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Floating scripture accent */
.hero-scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding-left: 1.25rem;
  border-left: 2px solid var(--dark-purple);
  max-width: 360px;
  line-height: 1.6;
}
.hero-scripture-ref {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

/* Right: Image side */
.hero-image-side {
  position: relative;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gradient fade from left (bg color) into the image */
.hero-image-fade {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(13, 3, 8, 0.85) 30%,
    rgba(13, 3, 8, 0.4) 65%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Bottom gradient for a clean edge */
.hero-image-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Mobile hero */
@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-side {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-image-side img {
    opacity: 0.2;
  }
  .hero-image-fade {
    display: none;
  }
  .hero-image-fade-bottom {
    height: 50%;
  }
  .hero-text-side {
    padding: 8rem 1.5rem 5rem;
    min-height: 100vh;
  }
  .hero-content {
    margin: 0;
    max-width: 100%;
  }
  .hero-glow--purple {
    width: 300px;
    height: 300px;
    top: 5%;
    left: -15%;
  }
  .hero-glow--copper {
    width: 200px;
    height: 200px;
  }
}

/* ===== SCRIPTURE BANNER ===== */
.scripture-banner {
  background: var(--plum);
  border-top: 1px solid rgba(133, 96, 152, 0.2);
  border-bottom: 1px solid rgba(133, 96, 152, 0.2);
  padding: 3rem 0;
  text-align: center;
}
.scripture-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}
.scripture-banner cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid rgba(86, 52, 91, 0.15);
  border-bottom: 1px solid rgba(86, 52, 91, 0.15);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 1rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== OUR MISSION — 3 PILLARS ===== */
.mission-section {
  position: relative;
  overflow: hidden;
}
.mission-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 52, 91, 0.12), transparent 70%);
  pointer-events: none;
}
.mission-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(215, 123, 90, 0.08);
  border: 1px solid rgba(215, 123, 90, 0.15);
  border-radius: 50px;
}

/* Pillars layout */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

/* Individual pillar */
.pillar {
  position: relative;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar:hover {
  background: rgba(86, 52, 91, 0.06);
}

/* Large faded number */
.pillar-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(86, 52, 91, 0.07);
  margin-bottom: -2rem;
  transition: color 0.5s ease;
  user-select: none;
}
.pillar:hover .pillar-number {
  color: rgba(215, 123, 90, 0.1);
}

/* Icon */
.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 123, 90, 0.1), rgba(133, 96, 152, 0.1));
  border: 1px solid rgba(133, 96, 152, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--copper);
  transition: all 0.5s ease;
  position: relative;
}
.pillar:hover .pillar-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(215, 123, 90, 0.18), rgba(133, 96, 152, 0.18));
  border-color: rgba(215, 123, 90, 0.3);
  box-shadow: 0 0 40px rgba(215, 123, 90, 0.1);
}

/* Text */
.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 320px;
  margin: 0 auto;
}

/* Vertical divider line between pillars */
.pillar-line {
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(86, 52, 91, 0.25) 30%,
    rgba(215, 123, 90, 0.15) 50%,
    rgba(86, 52, 91, 0.25) 70%,
    transparent
  );
}
.pillar:last-child .pillar-line {
  display: none;
}

/* Staggered entrance */
.mission-pillars.visible .pillar {
  animation: pillarIn 0.7s ease both;
}
.mission-pillars.visible .pillar:nth-child(1) { animation-delay: 0s; }
.mission-pillars.visible .pillar:nth-child(2) { animation-delay: 0.15s; }
.mission-pillars.visible .pillar:nth-child(3) { animation-delay: 0.3s; }

@keyframes pillarIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive pillars */
@media (max-width: 968px) {
  .mission-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pillar-line {
    top: auto;
    bottom: 0;
    left: 15%;
    right: 15%;
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(86, 52, 91, 0.25) 30%,
      rgba(215, 123, 90, 0.15) 50%,
      rgba(86, 52, 91, 0.25) 70%,
      transparent
    );
  }
  .pillar-number { font-size: 5rem; }
}

/* ===== ABOUT / STORY ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Carousel */
.story-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(133, 96, 152, 0.2);
  pointer-events: none;
  z-index: 2;
}
.story-carousel-track {
  position: relative;
  height: 500px;
}
.story-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.story-carousel-slide.active {
  opacity: 1;
}
.story-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots */
.story-carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.story-dot.active {
  background: var(--copper);
  border-color: var(--copper);
  transform: scale(1.2);
}
.story-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

.story-content h2 {
  margin-bottom: 1.5rem;
}
.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.story-content p:last-of-type {
  margin-bottom: 2rem;
}

/* ===== SECTION HEADING ===== */
.section-heading {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== COUNTRY CARDS ===== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.country-card {
  background: var(--surface);
  border: 1px solid rgba(86, 52, 91, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.country-card:hover {
  border-color: rgba(133, 96, 152, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.country-card-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.country-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.country-card:hover .country-card-image img {
  transform: scale(1.05);
}
.country-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: linear-gradient(135deg, rgba(215, 123, 90, 0.1), rgba(133, 96, 152, 0.08));
  border: 1px solid rgba(215, 123, 90, 0.2);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.country-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
.country-card:hover .country-label {
  background: linear-gradient(135deg, rgba(215, 123, 90, 0.18), rgba(133, 96, 152, 0.12));
  border-color: rgba(215, 123, 90, 0.35);
}
.country-card-body {
  padding: 2rem;
}
.country-card-body h3 {
  margin-bottom: 0.5rem;
}
.country-card-body .subtitle {
  color: var(--purple-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.country-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.country-subtitle {
  display: block;
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 3, 8, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== GIVE PAGE ===== */
.give-hero {
  text-align: center;
  padding: 8rem 0 4rem;
}
.give-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.give-method {
  background: var(--surface);
  border: 1px solid rgba(86, 52, 91, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.give-method:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}
.give-method-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.give-method h4 {
  margin-bottom: 0.5rem;
}
.give-method p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.collective-card {
  background: linear-gradient(135deg, var(--plum), var(--dark-purple));
  border: 1px solid rgba(133, 96, 152, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.collective-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(215, 123, 90, 0.08), transparent 70%);
}
.collective-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(215, 123, 90, 0.15);
  border: 1px solid rgba(215, 123, 90, 0.3);
  border-radius: 50px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.collective-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.collective-card p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.collective-pricing {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.price-option {
  background: rgba(13, 3, 8, 0.4);
  border: 1px solid rgba(86, 52, 91, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  min-width: 160px;
}
.price-option .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
}
.price-option .period {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.scripture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.scripture-card {
  background: var(--surface);
  border: 1px solid rgba(86, 52, 91, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.scripture-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.scripture-card cite {
  font-style: normal;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface);
  cursor: pointer;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(215, 123, 90, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: none;
}
.video-card:hover .video-play-btn {
  background: var(--copper);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--near-black);
  margin-left: 3px;
}

/* ===== FORMS ===== */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(86, 52, 91, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(215, 123, 90, 0.15);
}
.form-control::placeholder {
  color: var(--text-dim);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
/* Prevent iOS zoom on input focus */
@supports (-webkit-touch-callout: none) {
  .form-control { font-size: 16px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(86, 52, 91, 0.15), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  margin-bottom: 1rem;
  position: relative;
}
.page-hero .subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--purple-light);
  font-style: italic;
  position: relative;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
  position: relative;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  background: linear-gradient(
    160deg,
    var(--plum) 0%,
    #2e1425 30%,
    var(--dark-purple) 60%,
    var(--plum) 100%
  );
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Decorative triple-line borders (textile edge feel) */
.cta-border {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.cta-border--top { top: 0; }
.cta-border--bottom { bottom: 0; }
.cta-border span {
  display: block;
  height: 1px;
}
.cta-border span:nth-child(1) {
  background: linear-gradient(90deg, transparent 5%, rgba(215, 123, 90, 0.5) 20%, rgba(133, 96, 152, 0.4) 50%, rgba(215, 123, 90, 0.5) 80%, transparent 95%);
}
.cta-border span:nth-child(2) {
  background: linear-gradient(90deg, transparent 10%, rgba(133, 96, 152, 0.25) 30%, rgba(215, 123, 90, 0.2) 50%, rgba(133, 96, 152, 0.25) 70%, transparent 90%);
}
.cta-border span:nth-child(3) {
  background: linear-gradient(90deg, transparent 5%, rgba(215, 123, 90, 0.5) 20%, rgba(133, 96, 152, 0.4) 50%, rgba(215, 123, 90, 0.5) 80%, transparent 95%);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.cta-cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(86, 52, 91, 0.2);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}
.footer h4 {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--copper); }
.footer-bottom {
  border-top: 1px solid rgba(86, 52, 91, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(86, 52, 91, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--copper);
  color: var(--near-black);
}

/* ===== IMPACT SECTION ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.impact-stat .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-stat .label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 3, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(86, 52, 91, 0.3);
    gap: 0.25rem;
  }
  .nav-links.open a {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-carousel-track { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 5rem 1.5rem; }
  .page-hero { padding: 8rem 0 3rem; }
}
@media (min-width: 641px) and (max-width: 968px) {
  .country-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  h3 { font-size: clamp(1.15rem, 4vw, 1.4rem); }
  .hero-text-side { padding: 6.5rem 1.25rem 4rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; margin-bottom: 1.5rem; }
  .hero-text { font-size: 1rem; margin-bottom: 2rem; }
  .hero-scripture { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 0.9rem 1.75rem; min-height: 48px; font-size: 0.9rem; }
  .btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
  .btn-sm { padding: 0.65rem 1.25rem; min-height: 44px; font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .give-methods { grid-template-columns: 1fr; }
  .collective-pricing { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .story-carousel-track { height: 280px; }
  .pillar { padding: 2.5rem 1.5rem; }
  .pillar-number { font-size: 4rem; margin-bottom: -1.5rem; }
  .pillar-icon { width: 56px; height: 56px; }
  .country-card-image { height: 220px; }
  .country-card-body { padding: 1.5rem; }
  .scripture-banner { padding: 2rem 0; }
  .scripture-banner blockquote { font-size: 1rem; }
  .cta-banner { padding: 4rem 1.25rem; }
  .cta-quote { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-control { padding: 0.9rem 1rem; min-height: 48px; font-size: 16px; }
  textarea.form-control { min-height: 120px; }
  .page-hero { padding: 7rem 0 2.5rem; }
  .page-hero .subtitle { font-size: 1.05rem; }
  .collective-card { padding: 2rem 1.25rem; }
  .collective-card h3 { font-size: 1.5rem; }
  .price-option { padding: 1.25rem 1.5rem; min-width: 140px; }
  .price-option .amount { font-size: 1.5rem; }
  .video-grid { grid-template-columns: 1fr; }
  .scripture-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .impact-stat .number { font-size: 2.25rem; }
  .give-btn { padding: 1rem 1.25rem; }
  .give-btn__icon { width: 44px; height: 44px; }
  .give-btn__label { font-size: 0.95rem; }
  .give-mail-option { flex-direction: column; text-align: center; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
  .section-label { font-size: 0.7rem; }
  .mission-header { margin-bottom: 3rem; }
  .marquee-track span { font-size: 0.75rem; }
}

/* ===== EXTRA SMALL (320px) ===== */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .hero-text-side { padding: 6rem 1rem 3.5rem; }
  .hero-content { margin-right: 0; }
  .country-card-body { padding: 1.25rem; }
  .pillar { padding: 2rem 1rem; }
}

/* ===== GIVE PAGE — BRANDED BUTTONS ===== */
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
  margin: -0.5rem auto 3rem;
  max-width: 500px;
}
.section-title + .section-subtitle {
  margin-top: 0.75rem;
}

.give-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.give-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(86, 52, 91, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.give-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  border-radius: var(--radius);
}
.give-btn:hover {
  border-color: rgba(133, 96, 152, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: var(--text);
}
.give-btn:hover::before { opacity: 1; }

.give-btn__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.give-btn__text {
  flex: 1;
  min-width: 0;
}
.give-btn__label {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.give-btn__sublabel {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.give-btn__sublabel strong {
  color: var(--text);
}

.give-btn__arrow {
  color: var(--text-dim);
  transition: all var(--transition);
  flex-shrink: 0;
}
.give-btn:hover .give-btn__arrow {
  color: var(--copper);
  transform: translateX(3px);
}

.give-btn__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  background: rgba(215, 123, 90, 0.12);
  color: var(--copper);
  border: 1px solid rgba(215, 123, 90, 0.2);
  flex-shrink: 0;
}

/* Card logos row */
.give-btn__card-logos {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
  align-items: center;
}
.card-logo {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.give-btn:hover .card-logo { opacity: 1; }

/* === Brand colors for each button === */

/* PayPal */
.give-btn--paypal .give-btn__icon {
  background: rgba(0, 112, 186, 0.12);
  color: #0070ba;
}
.give-btn--paypal::before {
  background: linear-gradient(135deg, rgba(0, 112, 186, 0.06), transparent 60%);
}
.give-btn--paypal:hover {
  border-color: rgba(0, 112, 186, 0.4);
}
.give-btn--paypal:hover .give-btn__icon {
  background: rgba(0, 112, 186, 0.2);
  box-shadow: 0 0 20px rgba(0, 112, 186, 0.15);
}

/* Card */
.give-btn--card .give-btn__icon {
  background: rgba(133, 96, 152, 0.12);
  color: var(--purple-light);
}
.give-btn--card::before {
  background: linear-gradient(135deg, rgba(133, 96, 152, 0.06), transparent 60%);
}
.give-btn--card:hover {
  border-color: rgba(133, 96, 152, 0.5);
}
.give-btn--card:hover .give-btn__icon {
  background: rgba(133, 96, 152, 0.2);
  box-shadow: 0 0 20px rgba(133, 96, 152, 0.15);
}

/* ACH */
.give-btn--ach .give-btn__icon {
  background: rgba(215, 123, 90, 0.1);
  color: var(--copper);
}
.give-btn--ach::before {
  background: linear-gradient(135deg, rgba(215, 123, 90, 0.05), transparent 60%);
}
.give-btn--ach:hover {
  border-color: rgba(215, 123, 90, 0.4);
}
.give-btn--ach:hover .give-btn__icon {
  background: rgba(215, 123, 90, 0.18);
  box-shadow: 0 0 20px rgba(215, 123, 90, 0.12);
}

/* Zelle */
.give-btn--zelle .give-btn__icon {
  background: rgba(108, 29, 200, 0.1);
  color: #6c1dc8;
}
.give-btn--zelle::before {
  background: linear-gradient(135deg, rgba(108, 29, 200, 0.05), transparent 60%);
}
.give-btn--zelle:hover {
  border-color: rgba(108, 29, 200, 0.35);
}
.give-btn--zelle:hover .give-btn__icon {
  background: rgba(108, 29, 200, 0.18);
  box-shadow: 0 0 20px rgba(108, 29, 200, 0.12);
}

/* Cash App */
.give-btn--cashapp .give-btn__icon {
  background: rgba(0, 200, 83, 0.1);
  color: #00c853;
}
.give-btn--cashapp::before {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), transparent 60%);
}
.give-btn--cashapp:hover {
  border-color: rgba(0, 200, 83, 0.35);
}
.give-btn--cashapp:hover .give-btn__icon {
  background: rgba(0, 200, 83, 0.18);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.12);
}

/* Venmo */
.give-btn--venmo .give-btn__icon {
  background: rgba(0, 140, 255, 0.1);
  color: #008cff;
}
.give-btn--venmo::before {
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.05), transparent 60%);
}
.give-btn--venmo:hover {
  border-color: rgba(0, 140, 255, 0.35);
}
.give-btn--venmo:hover .give-btn__icon {
  background: rgba(0, 140, 255, 0.18);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.12);
}

/* === 1K Collective compact === */
.collective-compact {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--plum), var(--dark-purple));
  border: 1px solid rgba(133, 96, 152, 0.3);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.collective-compact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(215, 123, 90, 0.06), transparent 70%);
  pointer-events: none;
}
.collective-compact__info {
  flex: 1;
  min-width: 0;
}
.collective-compact__info .collective-badge {
  font-size: 0.65rem;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.5rem;
}
.collective-compact__info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.collective-compact__info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.collective-compact__pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.collective-compact__price {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.collective-compact__price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper);
}
.collective-compact__divider {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.collective-compact .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .collective-compact {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

/* Mail option */
.give-mail-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px dashed rgba(86, 52, 91, 0.3);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.give-mail-option strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}
.give-mail-option p {
  font-size: 0.85rem;
  margin: 0;
}
.give-mail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(86, 52, 91, 0.12);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Give grid responsive */
@media (max-width: 640px) {
  .give-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
