/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* === CSS VARIABLES === */
:root {
  --color-primary:   #1A3A6B;
  --color-secondary: #C8A951;
  --color-white:     #FFFFFF;
  --color-light:     #F5F7FA;
  --color-dark:      #1C1C1E;
  --color-muted:     #6B7280;
  --color-footer-bg: #0F2547;
  --transition:      0.25s ease;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--color-primary);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; margin-bottom: 0.75rem; }
p  { margin-bottom: 1rem; color: var(--color-dark); }
p:last-child { margin-bottom: 0; }

/* === LAYOUT — Container === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
section.light { background: var(--color-light); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.28); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo { height: 48px; width: auto; }
.brand-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-white);
  white-space: nowrap;
  line-height: 1.2;
  max-width: 200px;
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.14);
  color: var(--color-secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* === HERO SECTIONS === */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.82) 0%, rgba(15,37,71,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--color-white);
  padding: 60px 0;
}
.hero-content h1 { color: var(--color-white); margin-bottom: 1rem; }
.hero-content p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.75rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Page hero (inner pages) */
.page-hero {
  min-height: 320px;
  padding: 0;
}
.page-hero .hero-content { padding: 48px 0; }
.page-hero .hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.btn-primary:hover {
  background: #b8952e;
  border-color: #b8952e;
}
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* === SECTION HEADINGS === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--color-muted); font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

/* === MISSION STRIP / CARDS === */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,58,107,0.13);
  transform: translateY(-4px);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.card-icon svg { width: 30px; height: 30px; fill: var(--color-secondary); }
.card h3 { color: var(--color-primary); margin-bottom: 0.75rem; }
.card p  { color: var(--color-muted); margin: 0; }

/* === TWO-COLUMN SECTIONS === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col .col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.two-col .col-text h2 { margin-bottom: 1rem; }
.two-col .col-text p  { color: var(--color-muted); }

/* === ACTIVITIES GRID === */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.activity-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.activity-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,107,0.13);
  transform: translateY(-4px);
}
.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.activity-card-body { padding: 24px; }
.activity-card-body h3 { color: var(--color-primary); margin-bottom: 0.5rem; }
.activity-card-body p  { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.activity-card-body a  { color: var(--color-primary); font-weight: 700; font-size: 0.9rem; }
.activity-card-body a:hover { color: var(--color-secondary); }

/* === PHOTO GALLERY (CSS Grid) === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(26,58,107,0.75);
  color: var(--color-white);
  font-size: 0.85rem;
  padding: 8px 12px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--color-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* === BIBLE VERSE BANNER === */
.verse-banner {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
}
.verse-banner blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.5;
}
.verse-banner cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-secondary);
  font-weight: 600;
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--color-primary);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* === PHOTO STRIP === */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 380px;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.04); }
.photo-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,37,71,0.85));
  color: var(--color-white);
  padding: 28px 20px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* === MAP === */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--color-light);
  border-radius: 8px;
  padding: 36px 32px;
  border-left: 4px solid var(--color-secondary);
}
.contact-card h3 { color: var(--color-primary); margin-bottom: 1.25rem; }
.contact-card address { margin-bottom: 1rem; line-height: 1.8; color: var(--color-muted); }
.contact-card a { color: var(--color-primary); font-weight: 600; }
.contact-card a:hover { color: var(--color-secondary); }
.contact-card .registry-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #dde0e6;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* === FORMS === */
.contact-form { background: var(--color-white); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #dde0e6;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
}
.form-group textarea { height: 140px; resize: vertical; }
.hp-field { display: none !important; }
.form-message {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* === VALUES LIST === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; fill: var(--color-primary); }
.value-item h3 { color: var(--color-primary); font-size: 1rem; margin-bottom: 0.25rem; }
.value-item p  { font-size: 0.88rem; color: var(--color-muted); margin: 0; }

/* === LEGAL INFO BOX === */
.legal-box {
  background: var(--color-light);
  border: 1px solid #dde0e6;
  border-left: 4px solid var(--color-secondary);
  border-radius: 6px;
  padding: 28px 32px;
}
.legal-box h3 { color: var(--color-primary); margin-bottom: 1rem; }
.legal-box dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 24px; }
.legal-box dt { font-weight: 700; color: var(--color-primary); font-size: 0.9rem; }
.legal-box dd { color: var(--color-muted); font-size: 0.9rem; }

/* === HOW IT WORKS === */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.step-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  counter-increment: steps;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h3 { color: var(--color-primary); margin-bottom: 0.5rem; }
.step-item p  { color: var(--color-muted); font-size: 0.92rem; margin: 0; }

/* === BELIEFS GRID === */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.belief-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid var(--color-secondary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.belief-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,107,0.13);
  transform: translateY(-3px);
}
.belief-card h3 { color: var(--color-primary); margin-bottom: 0.75rem; font-size: 1.05rem; }
.belief-card p  { color: var(--color-muted); font-size: 0.9rem; margin: 0; }
.belief-ref { font-size: 0.82rem; color: var(--color-secondary); font-weight: 600; margin-top: 0.5rem; }

/* === CTA STRIP === */
.cta-strip {
  background: var(--color-light);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--color-primary); margin-bottom: 0.75rem; }
.cta-strip p  { color: var(--color-muted); max-width: 540px; margin: 0 auto 1.75rem; }

/* === OUTREACH CARDS === */
.outreach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.outreach-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--color-secondary);
}
.outreach-card .oc-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.outreach-card .oc-icon svg { width: 24px; height: 24px; fill: var(--color-secondary); }
.outreach-card h3 { color: var(--color-primary); font-size: 1rem; margin-bottom: 0.5rem; }
.outreach-card p  { color: var(--color-muted); font-size: 0.88rem; margin: 0; }

/* Bullet list */
.content-list {
  padding-left: 0;
  list-style: none;
}
.content-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--color-muted);
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* Map contact section */
.contact-map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
  position: relative;
}

/* Gold top accent bar */
.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, #e8c96a 50%, var(--color-secondary) 100%);
}

/* Footer body */
.footer-body { padding: 72px 0 56px; }

/* 3-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* --- Column 1: Brand --- */
.footer-col--brand { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.08); }

.footer-logo-link { display: block; margin-bottom: 16px; line-height: 0; }
.footer-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  padding: 8px 12px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--transition);
}
.footer-logo-link:hover .footer-logo { opacity: 1; }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-tagline strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.footer-about {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.5rem;
}

/* Registry badge */
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.72rem;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.footer-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* --- Column 2: Links --- */
.footer-col--links { padding-left: 8px; }

.footer-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,81,0.25);
  display: block;
}
.footer-links {
  list-style: none;
  margin-top: 8px;
}
.footer-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: scale(1.3); }

/* --- Column 3: Contact --- */
.footer-col--contact {}

.footer-contact-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}
.footer-contact-list li:last-child { border-bottom: none; }

.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200,169,81,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--color-secondary);
}
.footer-contact-list a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--color-secondary); }

/* --- Bottom bar --- */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-reg strong { color: rgba(255,255,255,0.55); font-weight: 600; }

/* Study materials */
.study-materials {
  background: var(--color-light);
  border-radius: 8px;
  padding: 32px;
}
.study-materials h3 { color: var(--color-primary); margin-bottom: 1rem; }
.study-materials ul { list-style: none; }
.study-materials ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #dde0e6;
  color: var(--color-dark);
  font-size: 0.95rem;
}
.study-materials ul li:last-child { border-bottom: none; }
.study-materials ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* Inline image section */
.image-caption-block { text-align: center; }
.image-caption-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.image-caption-block p { color: var(--color-muted); font-style: italic; font-size: 0.9rem; }

/* Map Home Preview */
.home-contact-section { background: var(--color-light); }
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.home-contact-info h2 { margin-bottom: 1rem; }
.home-contact-info p  { color: var(--color-muted); margin-bottom: 0.6rem; }
.home-contact-info a  { color: var(--color-primary); font-weight: 600; }
.home-contact-info a:hover { color: var(--color-secondary); }
.home-contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* === RESPONSIVE — 992px === */
@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .two-col .col-image img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .home-contact-grid { grid-template-columns: 1fr; }
  /* Footer: stack to 2 cols, remove side border */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col--brand {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-right: 0;
    padding-bottom: 32px;
  }
  .footer-body { padding: 56px 0 44px; }
}

/* === RESPONSIVE — 768px === */
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--color-primary);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    white-space: normal;
  }
  .main-nav a {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    white-space: normal;
  }
  .hero { min-height: 420px; }
  .page-hero { min-height: 240px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 260px; }
  .cards-row { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .outreach-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .site-header { position: relative; }
  .main-nav { position: absolute; }
  /* Footer: single column */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1; }
  .footer-col--links { padding-left: 0; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* === RESPONSIVE — 480px === */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .brand-name { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .legal-box dl { grid-template-columns: 1fr; }
  .footer-badge { font-size: 0.65rem; }
  .footer-body { padding: 40px 0 32px; }
}
