/* ============================================================
   Weldon United Baptist Church — Premium Stylesheet v2
   ============================================================ */

/* ---------- Google Fonts imported via header.php ---------- */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette */
  --navy:          #0b132b;
  --navy-mid:      #1c2541;
  --navy-light:    #3a506b;
  --burgundy:      #8c2131;
  --burgundy-dark: #5e1621;
  --gold:          #d4af37;
  --gold-light:    #f3d573;
  --cream:         #fbfaf8;
  --cream-dark:    #f0ece1;
  --white:         #ffffff;
  --ink:           #1e293b;
  --ink-mid:       #334155;
  --ink-light:     #64748b;
  --border:        #e2e8f0;
  --border-dark:   #cbd5e1;

  /* Fonts */
  --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   24px;
  --sp-lg:   40px;
  --sp-xl:   64px;
  --sp-2xl:  112px;

  /* Shadows */
  --sh-xs:   0 1px 2px rgba(0,0,0,.04);
  --sh-sm:   0 4px 12px rgba(0,0,0,.05);
  --sh-md:   0 12px 32px rgba(0,0,0,.08);
  --sh-lg:   0 24px 64px rgba(0,0,0,.12);
  --sh-xl:   0 40px 96px rgba(0,0,0,.16);

  /* Misc */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --t:          .4s cubic-bezier(.4,0,.2,1);
  --max-w:      1240px;
}

/* ============================================================
   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(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--t); }
ul   { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: var(--ink-mid);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section       { padding: var(--sp-2xl) 0; }
.section--sm   { padding: var(--sp-xl) 0; }
.section--cream { background: var(--cream); }
.section--dark  {
  background: var(--navy);
  color: rgba(255,255,255,.88);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: var(--sp-xl);
}
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow {
  justify-content: center;
}
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header h2 { margin-bottom: var(--sp-sm); }
.section-header .subtitle {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 580px;
  line-height: 1.8;
}
.section-header.centered .subtitle { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Gold primary */
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,.4);
}

/* Burgundy */
.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}
.btn-burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(140,33,49,.4);
}

/* Navy */
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,19,43,.4);
}

/* Ghost / outline */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}

/* Ghost dark */
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-dark);
}
.btn-ghost-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all var(--t);
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.06);
  background: rgba(255,255,255,.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.nav-list a {
  display: block;
  padding: 7px 11px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.nav-list a:hover { color: var(--gold); background: transparent; }
.nav-list a.active { color: var(--gold); }

.nav-list a.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  margin-left: 12px;
  letter-spacing: .1em;
}
.nav-list a.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PRE-FOOTER SCRIPTURE BAND
   ============================================================ */
.footer-scripture-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 48px 0;
}

.fsb-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}

.fsb-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: .75;
  margin: 0 auto;
}
.fsb-icon svg { width: 100%; height: 100%; }

.fsb-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  border: none;
  padding: 0;
  margin: 0;
}
.fsb-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
}

/* ---- Gold accent line at the very top ---- */
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light) 50%, transparent);
}

/* ---- Main body ---- */
.footer-body {
  padding: 80px 0 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* -- Brand column -- */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo-link img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  transition: box-shadow var(--t), transform var(--t);
}
.footer-logo-link:hover img {
  box-shadow: 0 0 0 3px rgba(212,175,55,.5);
  transform: translateY(-2px);
}

.footer-church-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: .875rem;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-tagline + * { margin-top: 0; }

.footer-reg {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.footer-reg-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-reg-number {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-family: monospace;
  letter-spacing: .04em;
}

/* -- Nav column -- */
.footer-nav-col {}
.footer-col-title {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav-list li a {
  display: block;
  padding: 7px 0;
  font-size: .875rem;
  color: rgba(255,255,255,.48);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--t), padding-left var(--t);
  position: relative;
}
.footer-nav-list li:last-child a { border-bottom: none; }
.footer-nav-list li a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

/* -- Contact column -- */
.footer-contact-col {}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-contact-item:first-child { padding-top: 0; }
.footer-contact-item:last-child  { border-bottom: none; }

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}
.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text,
.footer-contact-text address {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
}
.footer-contact-text a {
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.footer-contact-text a:hover { color: var(--gold-light); }

/* Service box */
.footer-service-box {
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-service-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-service-time {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}

/* ---- Bottom bar ---- */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .04em;
}
.footer-bar-left img {
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  padding: 3px;
  opacity: .55;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  transition: all var(--t);
  text-decoration: none;
}
.footer-back-top:hover {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.35);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
    align-items: start;
  }
  .footer-contact-col .footer-col-title { grid-column: 1 / -1; }
  .footer-contact-list { grid-column: 1; }
  .footer-service-box  { grid-column: 2; align-self: start; margin-top: 0; }
}

@media (max-width: 640px) {
  .footer-body { padding: 56px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-contact-col { grid-column: auto; display: block; }
  .footer-service-box { margin-top: 24px; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-tagline { max-width: 100%; }
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-bg.loaded {
  opacity: .28;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,19,43,.9) 20%, rgba(11,19,43,.4) 100%),
    linear-gradient(to top, rgba(11,19,43,.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--sp-2xl) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

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

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 44px;
}

/* Decorative gold rule before CTA */
.hero-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 32px;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.page-hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(196,151,58,.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(124,29,44,.18) 0%, transparent 50%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep {
  font-size: .5rem;
  color: rgba(255,255,255,.2);
}

/* ============================================================
   MISSION / VISION CARDS — Homepage Feature
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--white);
  padding: 64px 56px;
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-md);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  border: 1px solid var(--border);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
  background: var(--white);
}

.mv-card-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-dark);
  margin-bottom: 24px;
  user-select: none;
  transition: color var(--t);
}
.mv-card:hover .mv-card-number {
  color: rgba(212,175,55,.2);
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.mv-card p { font-size: .95rem; color: var(--ink-mid); line-height: 1.8; }

.mv-card .mv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap var(--t);
}
.mv-card .mv-link:hover { gap: 14px; }
.mv-card .mv-link svg { width: 14px; height: 14px; transition: transform var(--t); }
.mv-card .mv-link:hover svg { transform: translateX(4px); }

/* Accent bar on top */
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.mv-card:first-child::before { background: var(--gold); }
.mv-card:last-child::before  { background: var(--burgundy); }

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 540px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
@media (max-width: 1280px) {
  .split {
    margin: 0 var(--sp-lg);
  }
}
.split.reversed .split-img  { order: 2; }
.split.reversed .split-body { order: 1; }

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform .7s ease;
}
.split:hover .split-img img { transform: scale(1.03); }

.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,53,.4), transparent);
  pointer-events: none;
}

.split-body {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: none;
}
.split.reversed .split-body {
  border-left: 1px solid var(--border);
  border-right: none;
}

.split.cream .split-body { background: var(--cream); }
.split.navy  .split-body { background: var(--navy); }
.split.navy  .split-body h2,
.split.navy  .split-body p { color: var(--white); }
.split.navy  .split-body p  { color: rgba(255,255,255,.7); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.06), transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.15);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   CARD GRID (3-col feature cards)
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}

.feature-card-img {
  position: relative;
  overflow: hidden;
}
.feature-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.feature-card:hover .feature-card-img img { transform: scale(1.06); }

.feature-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,31,53,.35) 100%);
}

.feature-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card-body p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; flex: 1; }
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap var(--t);
  flex-shrink: 0;
}
.feature-card-link:hover { gap: 12px; }

/* ============================================================
   MINISTRY CARDS (2-col)
   ============================================================ */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ministry-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform var(--t), box-shadow var(--t);
}
.ministry-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.ministry-card-img { overflow: hidden; min-height: 260px; }
.ministry-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ministry-card:hover .ministry-card-img img { transform: scale(1.05); }

.ministry-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ministry-card-body h3 { font-size: 1.15rem; margin-bottom: 12px; }
.ministry-card-body p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }

/* ============================================================
   SCRIPTURE / QUOTE BLOCK
   ============================================================ */
.scripture {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--sp-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scripture::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 22rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.scripture blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  max-width: 820px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.scripture cite {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  position: relative;
  z-index: 1;
}
.scripture cite::before {
  content: '— ';
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-2xl) 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 10px; }
.cta-band-text p  { color: var(--ink-light); max-width: 480px; font-size: 1rem; }
.cta-band-actions { flex-shrink: 0; }

/* Full-bleed dark CTA */
.cta-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(140,33,49,.6) 100%);
  padding: var(--sp-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 50% 120%, rgba(212,175,55,.15), transparent 60%);
}
.cta-dark .container { position: relative; z-index: 1; }
.cta-dark h2 { color: var(--white); margin-bottom: 14px; }
.cta-dark p  { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 8%, var(--border) 92%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 52px;
  align-items: start;
}

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.timeline-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.timeline-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}
.timeline-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-card p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }

/* Odd: content left, dot center, empty right */
.timeline-item:nth-child(odd)  .timeline-content { grid-column: 1; }
.timeline-item:nth-child(odd)  .timeline-dot-col  { grid-column: 2; }
.timeline-item:nth-child(odd)  .timeline-spacer   { grid-column: 3; }

/* Even: empty left, dot center, content right */
.timeline-item:nth-child(even) .timeline-spacer   { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot-col  { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content  { grid-column: 3; }

/* ============================================================
   TEAM / LEADERSHIP CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.team-avatar-wrap {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 22px;
}
.team-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream-dark);
}
.team-avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity var(--t);
}
.team-card:hover .team-avatar-ring { opacity: 1; }

.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-card p { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }

/* ============================================================
   LEADERSHIP ROLE CARDS (simple)
   ============================================================ */
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  transition: box-shadow var(--t), transform var(--t);
}
.role-card:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.role-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.role-card .role { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.role-card p { font-size: .875rem; color: var(--ink-light); }

/* ============================================================
   EVENT LIST
   ============================================================ */
.event-list { display: flex; flex-direction: column; gap: 20px; }

.event-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--t), transform var(--t);
}
.event-item:hover { box-shadow: var(--sh-md); transform: translateX(4px); }

.event-date-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 12px 6px;
  text-align: center;
  flex-shrink: 0;
  aspect-ratio: 1 / 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-day   { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; line-height: 1; color: var(--gold-light); }
.event-month { font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; }

.event-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.event-body p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }
.event-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--cream-dark);
  color: var(--burgundy);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-top: 10px;
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.resource-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width var(--t);
}
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.resource-card:hover::after { width: 100%; }

.resource-type {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  background: rgba(196,151,58,.1);
  padding: 3px 10px;
  border-radius: 20px;
}
.resource-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.resource-card p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.accordion-item.open { box-shadow: var(--sh-md); }

.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--t), color var(--t);
}
.accordion-trigger:hover { background: var(--cream); }
.accordion-item.open .accordion-trigger { background: var(--cream); color: var(--burgundy); }

.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}
.accordion-icon svg { width: 14px; height: 14px; color: var(--navy); transition: transform var(--t); }
.accordion-item.open .accordion-icon { background: var(--burgundy); transform: rotate(180deg); }
.accordion-item.open .accordion-icon svg { color: var(--white); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.accordion-body-inner {
  padding: 0 28px 24px;
  font-size: .9rem;
  color: var(--ink-light);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-intro { margin-bottom: 40px; }
.contact-info-intro h2 { margin-bottom: 12px; }

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:first-of-type { border-top: 1px solid var(--border); }

.contact-icon-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon-box svg { width: 20px; height: 20px; color: var(--burgundy); }

.contact-detail h4 { font-size: .95rem; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: .9rem; color: var(--ink-light); }
.contact-detail a:hover { color: var(--burgundy); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-md);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 28px; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(124,29,44,.1);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ============================================================
   NOTICE BOX
   ============================================================ */
.notice-box {
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ============================================================
   VALUES ICON CARDS
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); background: var(--cream); }

.value-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-color: transparent; }
.value-icon svg { width: 24px; height: 24px; color: var(--burgundy); transition: color var(--t); }
.value-card:hover .value-icon svg { color: var(--white); }

.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { font-size: .875rem; color: var(--ink-light); line-height: 1.75; }

/* ============================================================
   VISION PILLARS (numbered)
   ============================================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.pillar-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background var(--t);
}
.pillar-card:hover { background: var(--cream); }
.pillar-number {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-dark);
  margin-bottom: 20px;
  user-select: none;
  transition: color var(--t);
}
.pillar-card:hover .pillar-number { color: rgba(196,151,58,.25); }
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.pillar-card p  { font-size: .875rem; color: var(--ink-light); line-height: 1.8; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-left.visible { opacity: 1; transform: none; }
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-right.visible { opacity: 1; transform: none; }

/* Stagger siblings */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .15s; }
.stagger > *:nth-child(3) { transition-delay: .25s; }
.stagger > *:nth-child(4) { transition-delay: .35s; }
.stagger > *:nth-child(5) { transition-delay: .45s; }
.stagger > *:nth-child(6) { transition-delay: .55s; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }

/* 404 */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-family: var(--serif); font-size: 9rem; font-weight: 700; line-height: 1; color: var(--cream-dark); margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .cards-3      { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid  { grid-template-columns: 1fr; gap: 1px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-card { grid-template-columns: 1fr 1.4fr; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split.reversed .split-img,
  .split.reversed .split-body { order: unset; }
  .split-img img { min-height: 320px; }
  .split-body { padding: 56px 40px; border: 1px solid var(--border); border-top: none; }
  .split.reversed .split-body { border: 1px solid var(--border); border-top: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; gap: 1px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-text .subtitle { margin: 0 auto; }
  .timeline-spine { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content  { grid-column: 2; }
  .timeline-item:nth-child(odd) .timeline-dot-col  { grid-column: 1; }
  .timeline-item:nth-child(odd) .timeline-spacer   { display: none; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-dot-col { grid-column: 1; }
  .timeline-item:nth-child(even) .timeline-spacer  { display: none; }
}

@media (max-width: 768px) {
  :root { --sp-2xl: 64px; --sp-xl: 48px; }

  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
  }
  .primary-nav.open { max-height: 700px; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .nav-list a {
    padding: 11px 14px;
    font-size: .84rem;
  }
  .nav-list a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .cards-3 { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .ministry-card { grid-template-columns: 1fr; }
  .ministry-card-img { min-height: 220px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat-item + .stat-item::before { display: none; }
  .split-body { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .mv-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .event-item { grid-template-columns: 1fr; }
  .event-date-box { display: flex; flex-direction: row; gap: 8px; align-items: center; padding: 8px 14px; aspect-ratio: auto; }
  .brand-sub { display: none; }
  .error-code { font-size: 6rem; }
}
