/* =====================================================
   BETHEL BAPTIST CHURCH INDEPENDENT — Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #1a2e4a;
  --navy-light:  #223660;
  --navy-dark:   #0f1d30;
  --gold:        #c8a951;
  --gold-light:  #d4b55f;
  --white:       #ffffff;
  --off-white:   #fafafa;
  --light-grey:  #f4f5f7;
  --dark-text:   #1e1e1e;
  --medium-text: #555566;
  --border:      rgba(200,169,81,0.25);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.16);
  --radius:      10px;
  --transition:  0.3s ease;
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --topbar-h:    38px;
  --header-h:    74px;
  --site-header-total: calc(var(--topbar-h) + var(--header-h));
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ---------- Utility ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Section Labels & Headings ---------- */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.65rem;
}
.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--medium-text);
  line-height: 1.75;
  max-width: 640px;
}
.text-center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(200,169,81,0.35);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.82rem 2.1rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   TOPBAR
   ============================================================ */
#header-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  height: var(--topbar-h);
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(200,169,81,0.18);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#header-topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.topbar-item svg { flex-shrink: 0; color: var(--gold); }
.topbar-link {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--gold); }
.topbar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(26,46,74,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: top 0.35s ease, box-shadow var(--transition), background var(--transition);
}
#site-header.topbar-gone { top: 0; }
#site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.40);
  background: rgba(15,29,48,0.98);
  border-bottom-color: rgba(200,169,81,0.15);
}
/* Gold accent line at bottom of header */
#site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
#site-header.scrolled::after { opacity: 0.6; }

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo-wrap {
  position: relative;
  width: 46px; height: 46px;
  flex-shrink: 0;
}
.header-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,81,0.35);
  transition: border-color var(--transition);
}
.header-brand:hover .header-logo-wrap::before { border-color: var(--gold); }
.header-logo-wrap img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 50%;
}
.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.header-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}
.header-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navigation */
#main-nav { display: flex; align-items: center; }

#nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  list-style: none;
}
#nav-links li { display: inline-flex; }

#nav-links a {
  display: inline-block;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border-radius: 5px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
#nav-links a:hover,
#nav-links a.active { color: var(--gold); }
#nav-links a:hover::after,
#nav-links a.active::after { left: 0.65rem; right: 0.65rem; }

/* Contact CTA nav item */
.nav-cta a {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 50px;
  padding: 0.45rem 1.2rem !important;
  font-weight: 700;
  margin-left: 0.5rem;
  border: 2px solid var(--gold);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition) !important;
}
.nav-cta a::after { display: none !important; }
.nav-cta a:hover {
  background: transparent !important;
  color: var(--gold) !important;
  transform: translateY(-1px);
}
.nav-cta a.active {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
#nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
}
#nav-overlay.visible { display: block; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--site-header-total);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(26,46,74,0.78) 0%,
    rgba(26,46,74,0.50) 50%,
    rgba(26,46,74,0.30) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(200,169,81,0.45);
  border-radius: 30px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  max-width: 820px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.hero-cta {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; right: 2.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.65;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px; height: 36px;
  background: var(--gold);
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   SERVICE TIMES BAR
   ============================================================ */
.service-bar {
  background: var(--gold);
  padding: 0.9rem 0;
}
.service-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-icon { font-size: 1.1rem; }
.svc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.svc-time {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   MISSION & VISION  (MANDATORY — also on homepage)
   ============================================================ */
.mv-section {
  background: var(--navy);
  padding: 90px 0;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mv-card {
  padding: 3rem 2.6rem;
  position: relative;
}
.mv-card.card-mission { background: rgba(255,255,255,0.055); }
.mv-card.card-vision  { background: rgba(200,169,81,0.11); }

.mv-card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.4rem;
}
.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--gold);
}
.mv-card p {
  color: rgba(255,255,255,0.80);
  line-height: 1.82;
  font-size: 0.97rem;
}
.mv-card p + p { margin-top: 0.85rem; }

.mv-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
.mv-pillar {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.mv-pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.mv-pillar span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  padding: 90px 0;
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4.5rem;
  align-items: center;
}
.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
.welcome-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.welcome-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.welcome-badge strong { font-size: 1.5rem; display: block; }

.welcome-content .section-eyebrow { margin-bottom: 0.4rem; }
.welcome-content .section-title { margin-bottom: 1.2rem; }

.welcome-quote {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0 1.5rem;
  line-height: 1.7;
  background: rgba(200,169,81,0.06);
  border-radius: 0 6px 6px 0;
}

.welcome-content p {
  color: var(--medium-text);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 0.9rem;
}
.pastor-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.pastor-divider { width: 50px; height: 2px; background: var(--gold); }
.pastor-attr-text { font-family: var(--font-head); font-style: italic; color: var(--navy); font-size: 1rem; }

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  padding: 90px 0;
  background: var(--light-grey);
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}
.event-card-thumb {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.event-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.event-card:hover .event-card-thumb img { transform: scale(1.07); }

.event-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-when {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.event-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.event-card-body p {
  color: var(--medium-text);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--medium-text);
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}
.event-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   MINISTRIES SECTION
   ============================================================ */
.ministries-section {
  padding: 90px 0;
  background: var(--white);
}
.ministries-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.ministry-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}
.ministry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.ministry-card:hover img { transform: scale(1.1); }

.ministry-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,46,74,0.93) 0%,
    rgba(26,46,74,0.45) 55%,
    rgba(26,46,74,0.08) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem 1.4rem;
  transition: background var(--transition);
}
.ministry-card:hover .ministry-card-overlay {
  background: linear-gradient(
    to top,
    rgba(26,46,74,0.97) 0%,
    rgba(26,46,74,0.60) 70%,
    rgba(26,46,74,0.15) 100%
  );
}
.ministry-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  width: fit-content;
}
.ministry-card-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.ministry-card-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.ministry-card:hover .ministry-card-overlay p {
  max-height: 80px;
  opacity: 1;
}

/* ============================================================
   SCRIPTURE SECTION
   ============================================================ */
.scripture-section {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.scripture-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,74,0.90) 0%,
    rgba(26,46,74,0.76) 100%
  );
}
.scripture-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
}
.scripture-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(200,169,81,0.5);
  border-radius: 30px;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 0.3;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1.5rem;
}
.scripture-text {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.scripture-ref {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   COMMUNITY GALLERY
   ============================================================ */
.gallery-section {
  background: var(--off-white);
  padding: 70px 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.prefooter-cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(200,169,81,0.20);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  padding: 64px 0;
}
.prefooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.prefooter-text { flex: 1; min-width: 280px; }
.prefooter-text .section-eyebrow { margin-bottom: 0.5rem; }
.prefooter-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.prefooter-text p {
  color: rgba(255,255,255,0.68);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 520px;
}
.prefooter-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.70);
  margin-top: auto;
}

/* Gold gradient accent line at top */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,169,81,0.3) 15%,
    var(--gold) 35%,
    var(--gold) 65%,
    rgba(200,169,81,0.3) 85%,
    transparent 100%
  );
}

/* Footer Main */
.footer-main {
  padding: 72px 0 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
}
.footer-grid-3 {
  grid-template-columns: 1.55fr 1fr 1.2fr;
  gap: 4rem;
}

/* Brand column */
.footer-logo-ring {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.footer-logo-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,81,0.40);
}
.footer-logo-ring img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 600;
  display: block;
}
.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.footer-about {
  font-size: 0.865rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.4rem;
}

/* Footer service times block */
.footer-times {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.4rem;
}
.footer-times-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-times-label svg { color: var(--gold); }
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  gap: 0.5rem;
}
.footer-service-item:last-child { border-bottom: none; padding-bottom: 0; }
.footer-service-item:first-child { padding-top: 0; }
.service-day {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
}
.service-time {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* Social buttons */
.footer-social {
  display: flex;
  gap: 0.55rem;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Column headings */
.footer-heading {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.57);
  transition: color var(--transition), gap var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transition: width var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { width: 12px; }

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.57);
}
.footer-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.57);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

/* Scripture verse */
.footer-verse {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,169,81,0.06);
  border-radius: 0 8px 8px 0;
}
.footer-verse p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.footer-verse cite {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.3rem 0;
  background: rgba(0,0,0,0.20);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
}
.footer-charity strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: var(--site-header-total);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,74,0.88) 0%, rgba(26,46,74,0.62) 55%, rgba(26,46,74,0.4) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 760px;
}
.page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-section {
  padding: 90px 0;
}
.page-section.alt {
  background: var(--light-grey);
}
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}
.content-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.stack-lg > * + * {
  margin-top: 1.1rem;
}
.lead-text {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--medium-text);
}
.body-copy p {
  color: var(--medium-text);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.image-panel {
  position: relative;
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.image-panel::after {
  content: '';
  position: absolute;
  left: -16px;
  right: 16px;
  top: 16px;
  bottom: -16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.info-card,
.value-card,
.stat-card,
.team-card,
.program-card,
.testimonial-card,
.belief-card,
.sidebar-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.value-card,
.program-card,
.testimonial-card,
.belief-card,
.contact-card,
.sidebar-card {
  padding: 1.8rem;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,81,0.16);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.value-card h3,
.program-card h3,
.testimonial-card h3,
.belief-card h3,
.sidebar-card h3,
.contact-card h3,
.team-card h3,
.stat-card h3,
.flow-step h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.value-card p,
.program-card p,
.testimonial-card p,
.belief-card p,
.sidebar-card p,
.contact-card p,
.team-card p {
  color: var(--medium-text);
  font-size: 0.94rem;
  line-height: 1.75;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-top: 3px solid var(--gold);
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.split-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-band-copy,
.split-band-side {
  padding: 2.25rem;
}
.split-band-copy p,
.split-band-side p {
  color: rgba(255,255,255,0.82);
}
.split-band-side {
  background: rgba(200,169,81,0.12);
}
.team-card {
  overflow: hidden;
}
.team-photo {
  height: 310px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-body {
  padding: 1.5rem;
}
.team-title {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.team-quote {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--light-grey);
  color: var(--navy);
  font-style: italic;
  font-size: 0.88rem;
}
.belief-list {
  display: grid;
  gap: 1rem;
}
.belief-accordion {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  overflow: hidden;
}
.belief-toggle {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font: inherit;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.belief-toggle span {
  font-family: var(--font-head);
  font-size: 1.12rem;
}
.belief-toggle strong {
  color: var(--gold);
  font-size: 1.25rem;
}
.belief-panel {
  padding: 0 1.5rem 1.4rem;
  color: var(--medium-text);
  line-height: 1.8;
}
.mission-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.flow-step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  position: relative;
}
.flow-step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
}
.flow-step p {
  color: var(--medium-text);
  line-height: 1.75;
}
.flow-arrow {
  display: none;
}
.event-list-grid,
.ministry-list-grid,
.program-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ministry-detail-card,
.past-event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ministry-detail-card img,
.past-event-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.ministry-detail-body,
.past-event-body {
  padding: 1.6rem;
}
.ministry-detail-body h3,
.past-event-body h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.ministry-detail-body p,
.past-event-body p {
  color: var(--medium-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.event-list-grid .event-card {
  height: 100%;
}
.program-grid {
  grid-template-columns: repeat(2, 1fr);
}
.testimonial-card blockquote {
  font-family: var(--font-head);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 1rem;
}
.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.highlight-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}
.highlight-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  padding: 2rem;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(26,46,74,0.14);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--dark-text);
  background: var(--white);
}
.form-field textarea {
  min-height: 170px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.18);
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--medium-text);
}
.alert {
  border-radius: 10px;
  padding: 0.95rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.alert-success {
  background: #eef8ef;
  color: #205b2b;
  border: 1px solid #b7d9bc;
}
.alert-error {
  background: #fff3f1;
  color: #8b3024;
  border: 1px solid #edc1ba;
}
.sidebar-stack {
  display: grid;
  gap: 1rem;
}
.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
.contact-list li {
  color: var(--medium-text);
  line-height: 1.7;
}
.service-times {
  display: grid;
  gap: 0.85rem;
}
.service-times li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--light-grey);
  color: var(--medium-text);
}
.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .header-brand-name { font-size: 0.9rem; }
  .header-brand-sub  { font-size: 0.6rem; }
  #nav-links a { font-size: 0.69rem; padding: 0.45rem 0.52rem; }
  .topbar-item.topbar-left-full { display: none; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .header-brand-name { font-size: 0.84rem; }
  #nav-links a { font-size: 0.65rem; padding: 0.4rem 0.4rem; letter-spacing: 0.04em; }
  .nav-cta a { padding: 0.42rem 0.9rem !important; }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid-3 { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .card-grid.four-up,
  .stat-row,
  .mission-flow,
  .event-list-grid,
  .ministry-list-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid,
  .content-grid.reverse,
  .contact-layout,
  .highlight-gallery {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-img-wrap { max-width: 560px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .mv-pillars { grid-template-columns: 1fr; }
  .card-grid,
  .card-grid.two-up,
  .program-grid {
    grid-template-columns: 1fr;
  }
  .split-band {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Hide topbar on mobile */
  #header-topbar { display: none; }
  #site-header { top: 0; }
  :root { --site-header-total: var(--header-h); }

  .hamburger { display: flex; }

  #nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 82vw; max-width: 300px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 24px) 1.8rem 2rem;
    gap: 0;
    transition: right 0.38s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.45);
    overflow-y: auto;
    z-index: 1000;
    border-left: 1px solid rgba(200,169,81,0.15);
  }
  #nav-links.is-open { right: 0; }
  #nav-links li { width: 100%; }
  .nav-cta { margin-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 0.8rem; }
  #nav-links a {
    font-size: 0.9rem;
    padding: 0.8rem 0 !important;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0 !important;
    letter-spacing: 0.05em;
    background: transparent !important;
    color: rgba(255,255,255,0.78) !important;
    margin: 0 !important;
  }
  #nav-links a::after { display: none !important; }
  #nav-links a:hover,
  #nav-links a.active { color: var(--gold) !important; }

  .hero { height: 78vh; }

  .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .events-header { flex-direction: column; align-items: flex-start; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }

  .footer-grid,
  .footer-grid-3 { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { padding: 48px 0 36px; }
  .prefooter-inner { flex-direction: column; text-align: center; }
  .prefooter-text p { margin: 0 auto; }
  .prefooter-actions { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-heading::after { margin: 0 auto; left: 0; }
  .page-hero {
    min-height: 360px;
  }
  .page-section {
    padding: 64px 0;
  }
  .form-row,
  .stat-row,
  .mission-flow,
  .event-list-grid,
  .ministry-list-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .scripture-section { background-attachment: scroll; }
  .welcome-badge { width: 80px; height: 80px; bottom: -14px; right: -14px; }
  .welcome-badge strong { font-size: 1.2rem; }
}

/* ============================================================
   RESPONSIVE — 520px
   ============================================================ */
@media (max-width: 520px) {
  section, .mv-section, .welcome-section,
  .events-section, .ministries-section,
  .scripture-section, .gallery-section { padding: 56px 0; }

  .hero { height: 70vh; min-height: 480px; }
  .ministries-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .header-brand span { font-size: 0.78rem; max-width: 180px; white-space: normal; line-height: 1.2; }
  .container { padding: 0 1.2rem; }
  .contact-card,
  .value-card,
  .program-card,
  .testimonial-card,
  .belief-card,
  .sidebar-card {
    padding: 1.4rem;
  }
}
