/* ===================================================================
   uTurn Ministry — "Modern Grace" Design System
   Slate / Teal / Amber · Playfair Display + Lora + DM Sans
   Mobile-first · No Bootstrap
   =================================================================== */

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

:root {
  --slate: #2D3436;
  --slate-light: #485563;
  --teal: #1A6B5A;
  --teal-light: #2D9B7E;
  --amber: #D4873E;
  --amber-light: #E8A85C;
  --amber-glow: #FEF5EB;
  --pearl: #F8F9FA;
  --warm-white: #FEFEFE;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #95A5A6;
  --shadow-soft: rgba(45,52,54,0.06);
  --shadow-mid: rgba(45,52,54,0.12);
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

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

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

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--slate);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
/* Default (non-scrolled) nav has dark background so white logo is visible */
.nav:not(.scrolled) .nav-links > li > a,
.nav:not(.scrolled) .lang-selector { color: rgba(255,255,255,0.9); }
.nav:not(.scrolled) .lang-selector { border-color: rgba(255,255,255,0.2); }
.nav:not(.scrolled) .mobile-toggle span { background: #fff; }
.nav.scrolled {
  background: rgba(45,52,54,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.nav.scrolled .nav-links > li > a,
.nav.scrolled .lang-selector { color: rgba(255,255,255,0.9); }
.nav.scrolled .lang-selector { border-color: rgba(255,255,255,0.2); }
.nav.scrolled .mobile-toggle span { background: #fff; }
/* Pages with dark heroes need light nav text */
.nav.nav-dark:not(.scrolled) .nav-links > li > a,
.nav.nav-dark:not(.scrolled) .lang-selector { color: rgba(255,255,255,0.9); }
.nav.nav-dark:not(.scrolled) .lang-selector { border-color: rgba(255,255,255,0.2); }
.nav.nav-dark:not(.scrolled) .mobile-toggle span { background: #fff; }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links > li > a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links > li > a .chevron {
  width: 12px; height: 12px;
  transition: transform 0.25s;
}
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-links > li { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 12px 40px var(--shadow-mid), 0 2px 8px var(--shadow-soft);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
/* Invisible bridge so mouse can travel from nav link to dropdown without losing hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--amber-glow); color: var(--teal); }
.dropdown .divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 6px 14px;
}
.dropdown .dd-header {
  padding: 8px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  pointer-events: none;
}

/* Language selector */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  margin-left: 8px;
}
.lang-selector:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.lang-selector .globe-icon { width: 16px; height: 16px; opacity: 0.6; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  box-shadow: 0 8px 28px var(--shadow-mid);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(4px);
}
/* Invisible bridge for lang dropdown */
.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.lang-selector:hover .lang-dropdown,
.lang-selector:focus-within .lang-dropdown,
.lang-dropdown.lang-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 13.5px;
  border-radius: 6px;
  color: var(--text);
  transition: background 0.15s;
}
.lang-dropdown a:hover { background: var(--amber-glow); }
.lang-dropdown a.active { background: var(--amber-glow); color: var(--teal); font-weight: 600; }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 7px;
  transition: all 0.3s ease;
}
.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 17px; }
.mobile-toggle span:nth-child(3) { top: 24px; }
.mobile-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ===== HERO (generic) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--pearl) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,135,62,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }

/* Page hero (shorter, for inner pages) */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--pearl) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,135,62,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

/* Dark hero variant (for mission field pages etc.) */
.hero-dark {
  background: var(--slate);
  color: #fff;
}
.hero-dark::before { background: radial-gradient(circle, rgba(212,135,62,0.08) 0%, transparent 70%); }
.hero-dark::after { background: radial-gradient(circle, rgba(26,107,90,0.06) 0%, transparent 70%); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 36px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--amber); }
.hero-dark .hero-title { color: #fff; }

.hero-verse {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,107,90,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,135,62,0.3);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

.play-icon { width: 20px; height: 20px; }

/* ===== STATS BAR ===== */
.stats {
  background: var(--slate);
  padding: 48px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1.2;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 24px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS (generic) ===== */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow-mid);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon.teal { background: rgba(26,107,90,0.08); color: var(--teal); }
.card-icon.amber { background: var(--amber-glow); color: var(--amber); }
.card-icon.slate { background: rgba(72,85,99,0.08); color: var(--slate-light); }

.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* Cards with colored top accent */
.card.accent-amber::before,
.card.accent-teal::before,
.card.accent-slate::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
}
.card.accent-amber { position: relative; }
.card.accent-teal { position: relative; }
.card.accent-slate { position: relative; }
.card.accent-amber::before { background: var(--amber); }
.card.accent-teal::before { background: var(--teal); }
.card.accent-slate::before { background: var(--slate-light); }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== FIELD CARDS ===== */
.fields { background: var(--pearl); }
.field-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.field-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0;
  background: var(--teal);
  border-radius: 14px 0 0 14px;
  transition: width 0.3s ease;
}
.field-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow-mid);
}
.field-card:hover::before { width: 4px; }
.field-card-inner { position: relative; z-index: 1; }

.field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(26,107,90,0.06);
  color: var(--teal);
  margin-bottom: 16px;
}
.field-icon svg { width: 20px; height: 20px; }

.field-card h3 { font-size: 20px; margin-bottom: 8px; }
.field-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.field-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.field-link:hover { gap: 10px; }

/* ===== SCRIPTURE SECTION ===== */
.scripture {
  background: var(--slate);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scripture::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,135,62,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.scripture-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.scripture-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--amber);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 16px;
}
.scripture-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #fff;
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 400;
}
.scripture-citation {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--amber-glow);
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 24px; }
.content-section.bg-pearl { background: var(--pearl); }
.content-section.bg-amber-glow { background: var(--amber-glow); }

.content-body {
  max-width: 800px;
  margin: 0 auto;
}
.content-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.content-body p.lead {
  font-size: 18px;
  color: var(--text-light);
}
.content-body h3 {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.content-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

/* Quote block */
.quote-block {
  background: linear-gradient(135deg, var(--pearl) 0%, #e9ecef 100%);
  border-left: 4px solid var(--amber);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}
.quote-block p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}
.quote-block .quote-author {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== DONATION CARDS ===== */
.donation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.donation-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow-mid);
}
.donation-card .icon { font-size: 48px; margin-bottom: 16px; }
.donation-card h3 { font-size: 22px; margin-bottom: 12px; }
.donation-card p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }

/* ===== ALERT BOXES ===== */
.alert {
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert-success { background: rgba(26,107,90,0.08); color: var(--teal); }
.alert-info { background: rgba(72,85,99,0.06); color: var(--slate-light); }
.alert-amber { background: var(--amber-glow); color: var(--amber); }

/* ===== GALLERY ===== */
.gallery-section { padding: 80px 24px; }

/* ===== PRAYER CARD ===== */
.prayer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-soft);
}
.prayer-card-header {
  background: var(--teal);
  color: #fff;
  padding: 24px 32px;
  text-align: center;
}
.prayer-card-header h3 {
  font-size: 24px;
  color: #fff;
}
.prayer-card-body { padding: 40px 36px; }
.prayer-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}
.prayer-check { color: var(--teal); flex-shrink: 0; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: #1E2529;
  padding: 72px 24px 0;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img { height: 36px; margin-bottom: 4px; filter: brightness(10); }

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--amber-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-verse {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE — MOBILE FIRST ===== */

/* Tablet and below (max 900px) */
@media (max-width: 900px) {
  .section { padding: 72px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .donation-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  /* Keep language selector visible on mobile — compact style like AgapeTree */
  .lang-selector {
    padding: 6px 10px;
    font-size: 12px;
    margin-left: auto;
    margin-right: 8px;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    bottom: 0;
    background: var(--slate);
    padding: 0;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: slideDown 0.3s ease;
    z-index: 999;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Mobile nav links — white text on dark background */
  .nav-links.mobile-open > li > a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
  .nav-links.mobile-open > li > a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
  }
  .nav-links.mobile-open > li > a .chevron {
    margin-left: auto;
    width: 14px;
    height: 14px;
    transition: transform 0.25s;
  }
  .nav-links.mobile-open > li.open > a .chevron {
    transform: rotate(180deg);
  }

  /* Mobile dropdowns */
  .nav-links.mobile-open .dropdown {
    position: static !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    display: none;
    background: rgba(0,0,0,0.15);
    min-width: 0;
    width: 100%;
  }
  .nav-links.mobile-open .dropdown::before {
    display: none;
  }
  .nav-links.mobile-open > li.open .dropdown {
    display: block;
  }
  .nav-links.mobile-open .dropdown a {
    color: rgba(255,255,255,0.8);
    padding: 12px 24px 12px 40px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links.mobile-open .dropdown a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  .nav-links.mobile-open .dropdown .divider {
    background: rgba(255,255,255,0.08);
    margin: 4px 24px;
  }
  .nav-links.mobile-open .dropdown .dd-header {
    color: rgba(255,255,255,0.4);
    padding: 10px 24px 4px 40px;
  }

}

/* Small mobile (max 600px) */
@media (max-width: 600px) {
  .section { padding: 56px 20px; }
  .hero { padding: 100px 20px 60px; min-height: 90vh; }
  .page-hero { padding: 120px 20px 48px; }
  .hero-badge { font-size: 10px; padding: 6px 16px; margin-bottom: 28px; }
  .stats { padding: 36px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scripture { padding: 64px 20px; }
  .scripture-quote-mark { font-size: 80px; }
  .cta-section { padding: 56px 20px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-lg { padding: 14px 32px; font-size: 15px; }
  .content-body h3 { font-size: 24px; }
}
