*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #2D3192;
  --red:     #D2042D;
  --white:    #FFFFFF;
  --text:     var(--blue);
  --muted:    var(--blue);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(45,49,146,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--blue); text-transform: uppercase; line-height: 1.2;
}
.nav-logo-text span { color: var(--muted); display: block; font-weight: 400; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; gap: 1.1rem; list-style: none; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; position: relative; padding-bottom: 4px;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width 0.3s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle::before {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--blue);
  order: 2;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px; list-style: none; padding: 10px;
  background: var(--white); border: 1px solid rgba(45,49,146,0.12);
  box-shadow: 0 16px 38px rgba(45,49,146,0.14), inset 0 1px 0 rgba(255,255,255,0.3);
  border-radius: 8px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: 5px;
  color: var(--blue); white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(45,49,146,0.08); color: var(--red); }
.nav-dropdown-menu a::after { display: none; }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 8px 20px; border-radius: 4px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; transform: translateY(-2px); }
.nav-cta:active { transform: scale(0.95); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  background:
    linear-gradient(90deg, rgba(45,49,146,0.92) 0%, rgba(45,49,146,0.72) 52%, rgba(45,49,146,0.52) 100%),
    url("../asset/image/hero-bg1.JPG") center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 0 5%;
}
.hero-bg-city {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(45,49,146,0.5), transparent);
}
.hero-bg-book {
  position: absolute; right: -60px; bottom: -30px;
  width: min(55vw, 600px); opacity: 0.04;
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(255,0,0,0.18); top: -100px; right: -80px; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(255,255,255,0.04); bottom: 0; left: -60px; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding-top: 0;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--red);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--white);
  animation: fadeUp 0.9s 0.12s ease both;
}
.hero h1 em { color: var(--white); font-style: normal; display: block; }
.hero-motto {
  margin: 1.6rem 0 2.4rem;
  font-size: 1rem; color: rgba(255,255,255,0.6);
  font-weight: 300; line-height: 1.75; max-width: 480px;
  animation: fadeUp 0.9s 0.24s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.36s ease both;
}
.btn {
  padding: 14px 30px; border-radius: 5px;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; border: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active {
  transform: scale(0.98);
}
.btn-red { background: #FF0000; color: var(--white); box-shadow: none; }
.btn-red:hover { background: #FF0000; color: var(--white); transform: translateY(-2px); box-shadow: none; }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-white-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.hero-actions .btn {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.24);
}
.hero-actions .btn:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.28);
}
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(45,49,146,0.3); }
.btn-blue:hover { background: var(--red); transform: translateY(-2px); }

.hero-logo-display {
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-logo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.hero-logo-card::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-logo-card img { width: 220px; max-width: 100%; }
.hero-stat-row {
  display: flex; gap: 2rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-line { width: 1.5px; height: 36px; background: linear-gradient(to bottom, rgba(255,0,0,0.8), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 
  0% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0.3; transform: translateY(8px); }
}
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 5%; scroll-margin-top: 70px; }
.section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--blue);
}
.section-title.light { color: var(--white); }
.divider { width: 44px; height: 3px; background: var(--red); border-radius: 2px; margin: 1.1rem 0 1.8rem; }
.section-body { font-size: 1rem; line-height: 1.85; color: var(--muted); max-width: 580px; }
.section-body.light { color: rgba(255,255,255,0.6); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-visual-stack { position: relative; padding-bottom: 30px; height: 520px; }
.about-image-hero {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,49,146,0.2);
}
.about-image-hero img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.about-main-card {
  background: var(--blue);
  border-radius: 14px; padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(45,49,146,0.25);
  margin-top: 2rem;
  border-top: 4px solid var(--red);
}
.about-main-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,0,0,0.12);
}
.about-main-card::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.about-year { font-size: 5.5rem; font-weight: 900; line-height: 1; color: var(--white); letter-spacing: -0.04em; }
.about-founded-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,0,0,0.9); font-weight: 700; margin-bottom: 1rem; }
.about-quote-text {
  font-size: 1.05rem; font-weight: 600; line-height: 1.65; color: var(--white); font-style: italic;
  border-left: 3px solid var(--red); padding-left: 1.2rem;
}
.about-badge {
  position: absolute; bottom: 0; right: 24px;
  background: var(--red); border-radius: 8px;
  padding: 0.9rem 1.4rem; color: var(--white);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em;
  box-shadow: 0 6px 24px rgba(255,0,0,0.45);
  line-height: 1.3;
}
.about-badge strong { display: block; font-size: 1.5rem; font-weight: 900; }

.about-content {
  position: relative; z-index: 1;
}
.about-content h2 { line-height: 1.15; margin-bottom: 1.5rem; }
.about-story {
  display: grid; gap: 1.5rem;
  margin-top: 1.5rem;
}
.about-story-item {
  padding: 1.5rem; background: rgba(45,49,146,0.04);
  border-left: 4px solid var(--red); border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-story-item:hover {
  background: rgba(45,49,146,0.08);
  transform: translateX(6px);
}
.about-story-item strong { color: var(--blue); display: block; margin-bottom: 0.4rem; font-size: 0.95rem; }
.about-story-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── MISSION ── */
#mission { padding: 0; background: var(--blue); position: relative; overflow: hidden; }
#mission::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(255,0,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.mission-inner {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr); gap: 0; min-height: 700px; align-items: stretch;
}
.mission-image { min-height: 700px; position: relative; overflow: hidden; }
.mission-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.68), transparent 55%); }
.mission-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.mission-image:hover img { transform: scale(1.025); }
.mission-image span { position: absolute; z-index: 1; left: 7%; bottom: 7%; color: var(--white); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.mission-copy { max-width: 720px; align-self: center; padding: 6rem clamp(2.5rem, 6vw, 7rem); position: relative; z-index: 1; }
.mission-big {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.5rem; font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: var(--white);
}
.mission-big em { color: var(--red); font-style: normal; display: block; }
.mission-statement { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 2.2rem; }

/* ── VALUES ── */
#values { background: var(--white); }
.values-wrap { max-width: 1100px; margin: 0 auto; }
.values-head { text-align: center; margin-bottom: 3.5rem; }
.values-head .divider { margin: 1.1rem auto 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.value-card {
  background: var(--white); border-radius: 10px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(45,49,146,0.07);
  border-top: 3px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-top-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(45,49,146,0.15); border-top-color: var(--red); }
.value-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; margin-bottom: 0.7rem; }
.value-name { font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.value-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0.8rem 0; }
.value-bar { width: 32px; height: 3px; background: var(--blue); border-radius: 2px; margin-top: 1rem; transition: width 0.3s, background 0.3s; }
.value-card:hover .value-bar { width: 56px; background: var(--red); }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.service-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 0.5rem; }
.service-card {
  background: var(--white); border-radius: 10px; padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.4rem;
  border-left: 4px solid var(--blue);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-left-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(45,49,146,0.12); border-left-color: var(--red); }
.service-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--blue); display: grid; place-items: center; flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-day { font-size: 1rem; font-weight: 700; color: var(--blue); }
.service-time { font-size: 0.83rem; color: var(--muted); margin-top: 2px; }

.programme-card {
  background: var(--blue); border-radius: 12px; padding: 2.8rem;
  color: var(--white); position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45,49,146,0.24);
}
.programme-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,0,0,0.15);
}
.programme-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,0,0,0.9); font-weight: 700; margin-bottom: 0.8rem; }
.programme-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.9rem; }
.programme-desc { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.programme-month {
  position: absolute; bottom: 20px; right: 24px;
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; letter-spacing: -0.04em;
}

/* ── RESOURCES ── */
#resources { background: var(--blue); color: var(--white); }
.resources-wrap { max-width: 1100px; margin: 0 auto; }
.resources-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem; margin-top: 3rem;
}
.resource-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 4px solid var(--red);
  border-radius: 10px; padding: 2rem;
  min-height: 190px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.resource-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}
.resource-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.8rem; }
.resource-card p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.68); }

#pastor { background: var(--white); }
.pastor-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 420px 1fr; gap: 4rem; align-items: center; }
.pastor-avatar {
  width: 420px; height: 520px; border-radius: 16px;
  background: var(--blue); display: block; overflow: hidden;
  box-shadow: 0 12px 40px rgba(45,49,146,0.25); position: relative;
}
.pastor-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.pastor-avatar::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 20px; border: 2px solid rgba(255,0,0,0.35);
}
.pastor-name { font-size: 1.8rem; font-weight: 800; color: var(--blue); margin-bottom: 0.3rem; }
.pastor-role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 1.5rem; }
.pastor-bio { font-size: 0.96rem; line-height: 1.85; color: var(--muted); }

/* ── BRANCHES ── */
#branches { background: var(--blue); position: relative; overflow: hidden; }
#branches::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(255,0,0,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.branches-wrap { max-width: 1100px; margin: 0 auto; }
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.branch-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 2rem 2.2rem; display: flex; flex-direction: column;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.branch-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,0,0,0.4); transform: translateY(-5px); }
.branch-card.hq { border-color: rgba(255,0,0,0.35); background: rgba(255,0,0,0.07); }
.branch-tag {
  display: inline-block; font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  background: rgba(255,0,0,0.15); border-radius: 100px; padding: 4px 12px; margin-bottom: 1rem;
}
.branch-card.hq .branch-tag { background: rgba(255,0,0,0.25); }
.branch-name { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.branch-address { flex: 1; font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.branch-map-button { align-self: flex-start; margin-top: 1.4rem; padding: 0; border: 0; background: transparent; color: var(--white); font: 800 0.66rem 'Geist', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.branch-map-button span { display: inline-block; margin-left: 7px; color: var(--red); transition: transform 0.3s; }
.branch-map-button:hover span, .branch-map-button.active span { transform: translateX(5px); }
.branch-card.map-active { border-color: rgba(255,0,0,0.55); background: rgba(255,0,0,0.09); }
.branches-map { margin-top: 3rem; display: grid; grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr); background: var(--white); overflow: hidden; }
.branches-map-copy { min-width: 0; align-self: center; padding: clamp(2.2rem, 5vw, 4.5rem); }
.branches-map-copy h3 { color: var(--blue); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -0.045em; }
.branches-map-copy > p:not(.section-label) { margin-top: 1rem; color: rgba(45,49,146,0.66); font-size: 0.9rem; line-height: 1.7; }
.branches-map-copy > a { display: inline-flex; gap: 9px; margin-top: 1.6rem; color: var(--blue); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.branches-map-copy > a span { color: var(--red); transition: transform 0.3s; }
.branches-map-copy > a:hover span { transform: translate(3px,-3px); }
.branches-map-frame { min-width: 0; min-height: 450px; background: #e9e9f3; }
.branches-map-frame iframe { width: 100%; height: 100%; min-height: 450px; display: block; border: 0; }

@media (max-width: 800px) {
  .branches-map { grid-template-columns: minmax(0, 1fr); }
  .branches-map-frame, .branches-map-frame iframe { min-height: 380px; }
}

/* ── MINISTRIES ── */
#ministries { background: var(--white); }
.ministries-wrap { max-width: 1100px; margin: 0 auto; }
.ministries-action { margin-top: 2.5rem; text-align: center; }
.ministries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.ministry-card {
  background: var(--white); border-radius: 12px; padding: 2.2rem;
  border-left: 4px solid var(--red);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ministry-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(45,49,146,0.12); }
.ministry-icon { width: 48px; height: 48px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ministry-icon span { color: var(--white); font-weight: 700; font-size: 1.2rem; }
.ministry-title { font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.6rem; }
.ministry-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 600px) {
  .ministries-action .btn { width: 100%; }
}

/* ── IMPACT STORIES ── */
#impact { background: var(--blue); position: relative; overflow: hidden; }
#impact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(255,0,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.impact-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.impact-intro { margin-bottom: 3rem; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.impact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 2rem; color: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.impact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.impact-card-icon { font-size: 1.6rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.impact-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.impact-card-text { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.impact-link { margin-top: 1.4rem; align-self: flex-start; }

/* ── HOMEPAGE CONTENT CAROUSELS ── */
.carousel-section-head { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.carousel-section-head .section-body { max-width: 700px; }
.content-carousel { overflow: hidden; touch-action: pan-y; }
.content-carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.content-carousel-slide { min-width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.content-carousel-slide .ministry-card, .content-carousel-slide .impact-card { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.content-carousel-slide .ministry-card { background: #f5f5fb; border-left-width: 5px; }
.content-carousel-controls { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.2rem; }
.content-carousel-controls button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(45,49,146,0.2); border-radius: 50%; background: var(--white); color: var(--blue); font-size: 1.05rem; cursor: pointer; transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.content-carousel-controls button:hover { color: var(--white); background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.content-carousel-controls button:active { transform: scale(0.96); }
.content-carousel-controls span { min-width: 48px; color: rgba(45,49,146,0.58); font: 700 0.68rem 'Geist Mono', monospace; text-align: center; }
.content-carousel-controls-light button { border-color: rgba(255,255,255,0.24); background: transparent; color: var(--white); }
.content-carousel-controls-light button:hover { color: var(--blue); background: var(--white); border-color: var(--white); }
.content-carousel-controls-light span { color: rgba(255,255,255,0.58); }

@media (max-width: 700px) {
  .carousel-section-head { grid-template-columns: 1fr; gap: 1.8rem; }
  .content-carousel-controls { padding-bottom: 0; }
  .content-carousel-slide { grid-template-columns: 1fr; gap: 1rem; }
  .content-carousel-slide .ministry-card, .content-carousel-slide .impact-card { min-height: 220px; }
}

/* ── COMMUNITY ── */
#community { background: var(--white); }
.community-wrap { max-width: 1100px; margin: 0 auto; }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.community-card {
  background: var(--blue); border-radius: 12px; padding: 2rem;
  color: var(--white); border-top: 4px solid var(--red);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.community-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(45,49,146,0.24); }
.community-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.community-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

/* ── NEXT STEP ── */
#next-step { background: linear-gradient(135deg, var(--blue) 0%, rgba(45,49,146,0.92) 100%); position: relative; overflow: hidden; }
#next-step::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(255,0,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.next-step-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.next-step-wrap > .reveal { display: flex; flex-direction: column; align-items: center; }
.next-step-wrap > .reveal .divider { margin-right: auto; margin-left: auto; }
.next-step-wrap > .reveal .section-body { margin-right: auto; margin-left: auto; text-align: center; }
.next-step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step-item {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 2rem; color: var(--white);
  display: flex; min-height: 170px; flex-direction: column; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.step-action { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0.72rem 1rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; color: var(--white); background: rgba(255,255,255,0.08); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s; }
.step-action span { color: #ff5b78; font-size: 0.95rem; transition: transform 0.25s; }
.step-action:hover { color: var(--blue); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.step-action:hover span { transform: translateX(4px); }

#contact { background: var(--white); text-align: center; padding: 120px 5%; }
.cta-wrap { max-width: 620px; margin: 0 auto; }
.cta-logo { width: 90px; margin: 0 auto 1.5rem; display: block; }
.cta-wrap .section-title { color: var(--blue); }
.cta-wrap .divider { margin: 1.1rem auto 1.8rem; }
.cta-text { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--blue); padding: 56px 5% 28px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 54px; margin-bottom: 0.8rem; display: block; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); max-width: 210px; line-height: 1.6; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,0,0,0.9); font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.84rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  font-size: 0.73rem; color: rgba(255,255,255,0.2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--blue); flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; }
.mobile-menu a:hover { color: var(--red); }
.mobile-resources { display: grid; gap: 0.75rem; text-align: center; }
.mobile-resources-label { color: var(--white); font-size: 1.5rem; font-weight: 700; }
.mobile-resources a { font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* ── SUBSCRIPTION POPUP ── */
.subscription-popup {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem; background: rgba(45,49,146,0.72);
}
.subscription-popup.open { display: flex; }
.subscription-card {
  width: min(100%, 480px); background: var(--white); color: var(--blue);
  border-radius: 12px; padding: 2.25rem; position: relative;
  border-top: 5px solid var(--red);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.subscription-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: var(--blue); color: var(--white); cursor: pointer;
  font-size: 1.25rem; line-height: 1;
}
.subscription-title {
  font-size: 1.75rem; line-height: 1.1; font-weight: 900;
  color: var(--blue); margin-bottom: 1rem;
}
.subscription-copy {
  font-size: 0.98rem; line-height: 1.75; color: var(--blue);
  margin-bottom: 1.5rem;
}
.subscription-form { display: grid; gap: 0.85rem; }
.subscription-form label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--red); text-transform: uppercase;
}
.subscription-form input {
  width: 100%; border: 2px solid rgba(45,49,146,0.16);
  border-radius: 6px; padding: 14px 15px; font: inherit;
  color: var(--blue); outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.subscription-form input:focus { 
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,49,146,0.08);
}
.subscription-form button {
  border: 0; border-radius: 6px; background: #FF0000; color: var(--white);
  padding: 14px 18px; font: inherit; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
}
.subscription-message {
  min-height: 1.3em; font-size: 0.85rem; color: var(--blue);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 110px 6% 50px;
    overflow-y: auto;
  }
  .mobile-menu > a,
  .mobile-resources-label { font-size: 1.2rem; }
  .mobile-resources { gap: 0.55rem; }
  .mobile-resources a { font-size: 0.82rem; }
  .hero-inner,
  .about-grid,
  .mission-inner,
  .services-inner,
  .pastor-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-logo-display { display: none; }
  .hero-inner { padding-top: 30px; padding-bottom: 60px; }
  .about-visual-stack { height: 380px; }
  #mission .mission-inner { gap: 0; }
  .mission-image { min-height: 520px; }
  .mission-copy { max-width: none; padding: 5rem 7%; }
}
@media (max-width: 600px) {
  section { padding: 70px 6%; }
  .pastor-inner { grid-template-columns: 1fr; }
  .pastor-avatar { width: min(100%, 360px); height: 440px; }
  .about-visual-stack { height: 300px; }
  .about-main-card { padding: 2rem 1.8rem; margin-top: 1.2rem; }
  .about-year { font-size: 3.5rem; }
  .mission-image { min-height: 390px; }
  .mission-copy { padding: 4.5rem 6%; }
}

/* ── ABOUT PAGE ── */
.about-page .nav-links a.active { color: var(--blue); }
.about-page .nav-links a.active::after { width: 100%; }

.about-hero {
  min-height: 100dvh;
  padding: 120px 5% 50px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5.5rem);
  max-width: 1480px;
  margin: 0 auto;
}
.about-hero-copy { position: relative; z-index: 1; }
.about-kicker {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.4rem; color: var(--red);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}
.about-kicker::before { content: ''; width: 30px; height: 2px; background: var(--red); }
.about-hero h1 {
  max-width: 680px; color: var(--blue);
  font-size: clamp(3rem, 5.2vw, 5.25rem); font-weight: 900;
  line-height: 0.94; letter-spacing: -0.055em;
  animation: fadeUp 0.8s 0.08s ease both;
}
.about-hero h1 span { display: block; width: auto; max-width: 100%; color: var(--red); }
.about-hero-copy > p:not(.about-kicker) {
  max-width: 590px; margin: 2rem 0 2.2rem;
  color: rgba(45,49,146,0.78); font-size: 1.04rem; line-height: 1.82;
  animation: fadeUp 0.8s 0.16s ease both;
}
.about-hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.24s ease both; }
.about-text-link { color: var(--blue); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.about-text-link span { display: inline-block; margin-left: 8px; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.about-text-link:hover span { transform: translateX(6px); }
.about-hero-media {
  height: min(700px, calc(100dvh - 145px)); min-height: 520px;
  position: relative; overflow: hidden; border-radius: 4px;
  animation: fadeUp 0.9s 0.12s ease both;
  box-shadow: 22px 22px 0 rgba(45,49,146,0.07);
}
.about-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,29,84,0.44), transparent 46%); pointer-events: none; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 1s cubic-bezier(0.16,1,0.3,1); }
.about-hero-media:hover img { transform: scale(1.025); }
.about-hero-date {
  position: absolute; z-index: 1; left: 0; bottom: 0;
  display: grid; gap: 2px; min-width: 190px; padding: 1.5rem 1.8rem;
  color: var(--white); background: var(--blue); border-top: 4px solid var(--red);
}
.about-hero-date strong { font: 800 2.3rem/1 'Geist Mono', monospace; }
.about-hero-date span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

.about-intro {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 9vw, 9rem);
  padding-top: 140px; padding-bottom: 140px;
}
.about-intro-lead h2 { max-width: 520px; color: var(--blue); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.045em; }
.about-intro-copy { padding-top: 1.5rem; border-top: 1px solid rgba(45,49,146,0.18); }
.about-intro-copy p { max-width: 620px; color: rgba(45,49,146,0.78); font-size: 1.05rem; line-height: 1.9; }
.about-intro-copy p + p { margin-top: 1.4rem; }

.about-formation {
  padding: 0; display: grid; grid-template-columns: 1.08fr 0.92fr; background: #f5f5fb;
}
.about-formation-media { min-height: 720px; position: relative; overflow: hidden; }
.about-formation-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,29,84,0.72), transparent 58%); }
.about-formation-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-formation-media p { position: absolute; z-index: 1; left: 8%; bottom: 8%; color: var(--white); font-size: clamp(1.5rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
.about-formation-content { align-self: center; max-width: 640px; padding: 7rem clamp(2rem, 7vw, 7rem); }
.about-formation-content .section-body { margin-top: 1.5rem; }
.formation-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 2.3rem 0; list-style: none; border-top: 1px solid rgba(45,49,146,0.16); }
.formation-list li { padding: 1rem 0 1rem 1.4rem; position: relative; border-bottom: 1px solid rgba(45,49,146,0.16); color: var(--blue); font-size: 0.86rem; font-weight: 700; }
.formation-list li::before { content: ''; position: absolute; left: 0; top: 1.4rem; width: 7px; height: 7px; background: var(--red); }
.formation-note { color: rgba(45,49,146,0.7); font-size: 0.9rem; line-height: 1.75; }

.about-storyline { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); padding-top: 140px; padding-bottom: 140px; }
.storyline-heading { position: sticky; top: 120px; align-self: start; }
.storyline-heading h2 { color: var(--blue); font-size: clamp(2.5rem, 4.6vw, 4.5rem); line-height: 0.98; letter-spacing: -0.05em; }
.storyline-items { border-top: 1px solid rgba(45,49,146,0.18); }
.storyline-item { display: grid; grid-template-columns: 62px 1fr; gap: 1.4rem; padding: 2.6rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); }
.storyline-number { color: var(--red); font: 700 0.75rem/1 'Geist Mono', monospace; letter-spacing: 0.12em; padding-top: 6px; }
.storyline-item h3 { color: var(--blue); font-size: 1.35rem; margin-bottom: 1rem; }
.storyline-item p { color: rgba(45,49,146,0.72); line-height: 1.82; max-width: 650px; }
.storyline-item p + p { margin-top: 0.8rem; }

.about-mission-band { padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 5rem; background: var(--blue); color: var(--white); }
.about-mission-label { display: flex; align-items: center; gap: 1.2rem; align-self: start; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.mission-line { flex: 1; max-width: 120px; height: 1px; background: rgba(255,255,255,0.25); }
.about-mission-copy h2 { max-width: 850px; color: var(--white); font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.04; letter-spacing: -0.05em; }
.about-mission-copy > p { max-width: 650px; margin-top: 2rem; color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.8; }
.mission-outcomes { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 900px; margin-top: 2.5rem; }
.mission-outcomes span { padding: 0.7rem 1rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; color: rgba(255,255,255,0.78); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; }

.about-values { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); padding-top: 140px; padding-bottom: 140px; }
.about-page .about-values-head { position: sticky; top: 120px; align-self: start; }
.about-values-head > p { max-width: 390px; margin-top: 1.5rem; color: rgba(45,49,146,0.7); line-height: 1.75; }
.about-values-list { border-top: 1px solid rgba(45,49,146,0.18); }
.about-value { display: grid; grid-template-columns: 55px minmax(170px, 0.65fr) 1fr; gap: 1.4rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); transition: background 0.3s cubic-bezier(0.16,1,0.3,1), padding 0.3s cubic-bezier(0.16,1,0.3,1); }
.about-value:hover { background: rgba(45,49,146,0.035); padding-left: 1rem; padding-right: 1rem; }
.about-value > span { color: var(--red); font: 700 0.74rem/1 'Geist Mono', monospace; padding-top: 7px; }
.about-value h3 { color: var(--blue); font-size: 1.35rem; }
.about-value small { display: block; margin-top: 0.35rem; color: var(--red); font-size: 0.66rem; letter-spacing: 0.11em; text-transform: uppercase; }
.about-value p { color: rgba(45,49,146,0.72); line-height: 1.75; }

.about-ministries { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); padding-top: 140px; padding-bottom: 140px; background: #f5f5fb; }
.about-ministries-intro { align-self: start; position: sticky; top: 120px; }
.about-ministries-intro h2 { max-width: 580px; color: var(--blue); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.045em; }
.about-ministries-intro > p:last-child { max-width: 540px; margin-top: 1.5rem; color: rgba(45,49,146,0.72); line-height: 1.8; }
.ministry-rows { border-top: 1px solid rgba(45,49,146,0.18); }
.ministry-row { display: grid; grid-template-columns: 55px 0.7fr 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); }
.ministry-row > span { color: var(--red); font: 700 0.7rem/1 'Geist Mono', monospace; padding-top: 6px; }
.ministry-row h3 { color: var(--blue); font-size: 1.08rem; line-height: 1.35; }
.ministry-row p { color: rgba(45,49,146,0.68); font-size: 0.9rem; line-height: 1.7; }

.about-invitation { padding-top: 150px; padding-bottom: 150px; background: linear-gradient(90deg, rgba(32,35,105,0.94), rgba(45,49,146,0.78)), url('../asset/about1.JPG') center 42%/cover no-repeat; }
.about-invitation-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.about-invitation h2 { color: var(--white); font-size: clamp(2.6rem, 5.3vw, 5.1rem); line-height: 1.02; letter-spacing: -0.05em; }
.about-invitation-inner > p:not(.section-label) { max-width: 700px; margin: 1.6rem auto 2.3rem; color: rgba(255,255,255,0.68); font-size: 1.02rem; line-height: 1.8; }
.about-invitation-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .about-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; }
  .about-hero h1 { font-size: clamp(3rem, 6.5vw, 4.5rem); }
  .about-storyline, .about-values, .about-ministries { gap: 3rem; }
  .about-value { grid-template-columns: 55px 0.75fr 1fr; gap: 1.2rem; }
  .ministry-row { grid-template-columns: 40px 0.8fr 1fr; gap: 1rem; }
}

@media (max-width: 760px) {
  .about-hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 6% 70px; }
  .about-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .about-hero-media { min-height: 420px; height: 64dvh; border-radius: 4px; box-shadow: 12px 12px 0 rgba(45,49,146,0.07); }
  .about-intro, .about-storyline, .about-values-head, .about-ministries { grid-template-columns: 1fr; }
  .about-intro, .about-storyline, .about-values, .about-ministries { padding-top: 90px; padding-bottom: 90px; }
  .about-formation { grid-template-columns: 1fr; }
  .about-formation-media { min-height: 520px; }
  .about-formation-content { padding: 5rem 6%; }
  .storyline-heading, .about-page .about-values-head, .about-ministries-intro { position: static; }
  .about-mission-band { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 90px; padding-bottom: 90px; }
  .about-values-head > p { justify-self: start; }
  .about-value { grid-template-columns: 45px 1fr; }
  .about-value p { grid-column: 2; }
  .ministry-row { grid-template-columns: 36px 1fr; }
  .ministry-row p { grid-column: 2; }
}

@media (max-width: 480px) {
  .about-hero { padding-left: 5%; padding-right: 5%; }
  .about-hero-media { min-height: 360px; }
  .about-hero-actions { align-items: flex-start; flex-direction: column; }
  .formation-list { grid-template-columns: 1fr; }
  .storyline-item { grid-template-columns: 42px 1fr; gap: 0.8rem; }
  .about-mission-copy h2 { font-size: 2.45rem; }
  .about-value { grid-template-columns: 34px 1fr; gap: 0.75rem; }
  .about-value:hover { padding-left: 0; padding-right: 0; }
  .about-invitation { padding-top: 100px; padding-bottom: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-copy > *, .about-hero-media { animation: none !important; }
  .about-hero-media img, .about-text-link span { transition: none; }
}

/* ── HOMEPAGE CONTENT UPDATES ── */
.about-read-more { margin-top: 2rem; }
.value-icon { width: 52px; height: 52px; margin-bottom: 1.3rem; display: grid; place-items: center; color: var(--red); background: rgba(255,0,0,0.06); border-radius: 8px; }
.value-icon svg { width: 30px; height: 30px; }
.values-more { margin-top: 2.5rem; text-align: center; }

#services { padding: 0; background: var(--blue); }
#services .services-inner { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(460px, 0.94fr); gap: 0; max-width: none; min-height: 720px; }
.services-image { position: relative; min-height: 720px; overflow: hidden; order: 2; }
.services-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.7), transparent 55%); }
.services-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.services-image:hover img { transform: scale(1.025); }
.services-image span { position: absolute; z-index: 1; left: 7%; bottom: 7%; color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.services-content { align-self: center; padding: 6rem clamp(2.5rem, 6vw, 7rem); order: 1; }
.services-heading { text-align: left; margin-bottom: 2.5rem; }
.services-heading .divider { margin-left: 0; margin-right: 0; }
#services .service-list { display: grid; grid-template-columns: 1fr; gap: 0.85rem; margin-top: 0; }
#services .service-card { min-height: 0; padding: 1.25rem 1.4rem; align-items: center; flex-direction: row; border: 1px solid rgba(255,255,255,0.18); border-left: 4px solid var(--red); border-radius: 8px; background: rgba(255,255,255,0.96); }
#services .service-card:hover { transform: translateX(6px); box-shadow: 0 12px 30px rgba(16,18,62,0.2); }
.services-connect { margin-top: 1.6rem; }

#mount-tabor { padding: 0; background: var(--white); }
.mount-tabor-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 650px; }
.mount-tabor-image { min-height: 600px; position: relative; overflow: hidden; }
.mount-tabor-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.62), transparent 58%); }
.mount-tabor-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.mount-tabor-image:hover img { transform: scale(1.025); }
.mount-tabor-image span { position: absolute; z-index: 1; left: 7%; bottom: 7%; color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.mount-tabor-copy { align-self: center; max-width: 650px; padding: 6rem clamp(2.5rem, 7vw, 7rem); }
.mount-tabor-copy p:not(.section-label) { margin-bottom: 2.2rem; color: rgba(45,49,146,0.7); line-height: 1.82; }
.resource-card { display: flex; flex-direction: column; }
.resource-card p { flex: 1; }
.resource-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.5rem; color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.resource-link span { color: var(--red); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.resource-link:hover span { transform: translateX(5px); }
.step-item { text-decoration: none; }

/* ── MESSAGES PAGE ── */
.messages-page .nav-links a.active::after { width: 100%; }
.messages-hero { min-height: 78dvh; padding: 150px 5% 90px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(32,35,105,0.96) 0%, rgba(45,49,146,0.82) 56%, rgba(45,49,146,0.54) 100%), url('../asset/image/hero-bg1.JPG') center/cover no-repeat; }
.messages-hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; }
.messages-hero .about-kicker { color: var(--white); }
.messages-hero h1 { max-width: 760px; color: var(--white); font-size: clamp(3.5rem, 7vw, 6.6rem); line-height: 0.92; letter-spacing: -0.055em; }
.messages-hero h1 span { color: var(--red); }
.messages-hero-inner > p:not(.about-kicker) { max-width: 620px; margin: 1.8rem 0 2rem; color: rgba(255,255,255,0.68); font-size: 1.04rem; line-height: 1.8; }
.message-jump-links { display: flex; gap: 0.7rem; }
.message-jump-links a { padding: 0.65rem 1.1rem; color: var(--white); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.message-jump-links a:hover { border-color: var(--red); background: rgba(255,0,0,0.12); }
.audio-section, .transcript-section { max-width: 1300px; margin: 0 auto; padding-top: 130px; padding-bottom: 130px; }
.message-section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3.5rem; }
.message-section-head > p { max-width: 440px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.slider-controls { display: flex; gap: 0.65rem; }
.slider-button { width: 46px; height: 46px; border: 1px solid rgba(45,49,146,0.18); border-radius: 50%; background: var(--white); color: var(--blue); cursor: pointer; font-size: 1.15rem; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.3s, background 0.3s; }
.slider-button:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.audio-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 31%); gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 1rem; }
.audio-slider::-webkit-scrollbar { display: none; }
.audio-card { scroll-snap-align: start; }
.audio-art { aspect-ratio: 1.55; position: relative; display: flex; justify-content: space-between; align-items: flex-end; padding: 1.5rem; margin-bottom: 1.4rem; overflow: hidden; background: var(--blue); }
.audio-art::before { content: ''; position: absolute; width: 210px; height: 210px; right: -50px; top: -70px; border: 42px solid rgba(255,0,0,0.18); border-radius: 50%; }
.audio-art > span { color: rgba(255,255,255,0.18); font-size: 3.5rem; font-weight: 900; letter-spacing: -0.08em; }
.audio-art button { position: relative; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--red); color: var(--white); cursor: pointer; }
.message-meta { color: var(--red); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.audio-card h3 { margin: 0.55rem 0 0.7rem; color: var(--blue); font-size: 1.35rem; }
.audio-card > p:not(.message-meta) { min-height: 4.5em; color: rgba(45,49,146,0.68); font-size: 0.9rem; line-height: 1.65; }
.audio-card > a { display: inline-flex; gap: 10px; margin-top: 1rem; color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.audio-card > a span { color: var(--red); }
.video-section { max-width: none; padding-top: 130px; padding-bottom: 130px; background: var(--blue); }
.video-section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.video-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem 1.5rem; }
.video-card { border: 0; padding: 0; background: transparent; text-align: left; cursor: pointer; color: var(--white); }
.video-card:nth-child(2), .video-card:nth-child(4) { margin-top: 4rem; }
.video-poster { aspect-ratio: 16/9; display: flex; justify-content: space-between; align-items: flex-end; padding: 1.4rem; margin-bottom: 1.2rem; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,0,0,0.5), rgba(45,49,146,0.16)), url('../asset/about1.JPG') center/cover; }
.video-poster::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.62), transparent); }
.video-poster-two { background-image: linear-gradient(135deg, rgba(45,49,146,0.2), rgba(255,0,0,0.38)), url('../asset/about2.JPG'); }
.video-poster-three { background-position: center 65%; }
.video-poster-four { background-image: linear-gradient(135deg, rgba(45,49,146,0.2), rgba(255,0,0,0.38)), url('../asset/image/hero-bg1.JPG'); }
.video-poster i, .video-poster small { position: relative; z-index: 1; }
.video-poster i { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-style: normal; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.video-poster small { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.video-card:hover .video-poster i { transform: scale(1.1); }
.video-card strong, .video-card em { display: block; }
.video-card strong { font-size: 1.3rem; }
.video-card em { margin-top: 0.4rem; color: rgba(255,255,255,0.5); font-size: 0.78rem; font-style: normal; }
.transcript-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 6rem; }
.transcript-intro { align-self: start; position: sticky; top: 120px; }
.transcript-intro > p:last-child { max-width: 420px; margin-top: 1.4rem; color: rgba(45,49,146,0.68); line-height: 1.75; }
.transcript-list { border-top: 1px solid rgba(45,49,146,0.18); }
.transcript-row { display: grid; grid-template-columns: 58px 1fr auto; gap: 1.2rem; align-items: center; padding: 1.8rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); color: var(--blue); text-decoration: none; }
.pdf-mark { width: 42px; height: 48px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(255,0,0,0.3); font: 700 0.62rem 'Geist Mono', monospace; }
.transcript-row strong, .transcript-row small { display: block; }
.transcript-row small { margin-top: 0.35rem; color: rgba(45,49,146,0.55); }
.download-mark { color: var(--red); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.video-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 5%; background: rgba(25,28,86,0.86); backdrop-filter: blur(8px); }
.video-modal.open { display: flex; }
.video-modal-panel { width: min(100%, 960px); position: relative; }
.video-modal-close { position: absolute; right: 0; top: -52px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; background: transparent; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.video-frame { aspect-ratio: 16/9; display: grid; place-items: center; background: #191c56; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: none; }
.video-placeholder { color: var(--white); text-align: center; padding: 2rem; }
.video-placeholder span { display: block; font-size: 1.7rem; font-weight: 800; }
.video-placeholder p { margin-top: 0.6rem; color: rgba(255,255,255,0.58); }
.video-modal-panel h2 { margin-top: 1rem; color: var(--white); }

/* ── MOUNT TABOR PLACEHOLDER PAGE ── */
.mount-back { padding: 10px 18px; }
.mount-page { min-height: 100dvh; padding: 70px 0 0; display: grid; grid-template-columns: 1.1fr 0.9fr; }
.mount-page-image { min-height: calc(100dvh - 70px); overflow: hidden; }
.mount-page-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mount-page-copy { align-self: center; padding: 6rem clamp(2.5rem, 8vw, 8rem); }
.mount-page-copy h1 { color: var(--blue); font-size: clamp(4rem, 8vw, 8rem); line-height: 0.82; letter-spacing: -0.07em; }
.mount-page-copy h1 span { color: var(--red); }
.mount-page-copy > p:not(.about-kicker) { max-width: 540px; margin: 2rem 0; color: rgba(45,49,146,0.7); line-height: 1.8; }

@media (max-width: 900px) {
  #services .services-inner { grid-template-columns: 1fr; min-height: 0; }
  .services-image { min-height: 520px; }
  .services-content { padding: 5rem 7%; }
  .mount-tabor-inner, .mount-page { grid-template-columns: 1fr; }
  .mount-tabor-copy { max-width: none; }
  .mount-page-image { min-height: 60dvh; }
  .transcript-section { grid-template-columns: 1fr; gap: 3rem; }
  .transcript-intro { position: static; }
}
@media (max-width: 650px) {
  .services-image { min-height: 390px; }
  .services-content { padding: 4.5rem 6%; }
  #services .service-card { padding: 1.1rem; }
  .mount-tabor-image { min-height: 440px; }
  .audio-section, .video-section, .transcript-section { padding-top: 85px; padding-bottom: 85px; }
  .message-section-head { align-items: flex-start; flex-direction: column; }
  .audio-slider { grid-auto-columns: 86%; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card:nth-child(2), .video-card:nth-child(4) { margin-top: 0; }
  .transcript-row { grid-template-columns: 48px 1fr; }
  .download-mark { grid-column: 2; }
  .mount-page-copy { padding: 5rem 6%; }
  .mount-back { font-size: 0.65rem; padding: 8px 10px; }
}

/* ── INTERIOR PAGE BANNERS & BREADCRUMBS ── */
.page-banner {
  min-height: 470px;
  padding: 145px 5% 75px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,31,98,0.97) 0%, rgba(45,49,146,0.86) 48%, rgba(45,49,146,0.48) 100%);
}
.page-banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 20%, rgba(255,255,255,0.28) 20% 100%);
}
.page-banner-about { background-image: url('../asset/about1.JPG'); background-position: center 46%; }
.page-banner-messages { background-image: url('../asset/image/hero-bg1.JPG'); background-position: center 45%; }
.page-banner-tabor { background-image: url('../asset/about2.JPG'); background-position: center 42%; }
.page-banner-inner { width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumbs { margin-bottom: 2.1rem; }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 0.7rem; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.58); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.breadcrumbs li + li::before { content: ''; width: 18px; height: 1px; background: var(--red); }
.breadcrumbs a { color: var(--white); text-decoration: none; transition: color 0.25s; }
.breadcrumbs a:hover { color: #ff7676; }
.page-banner-label { margin-bottom: 0.7rem; color: #ff7676; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.page-banner h1 { max-width: 850px; color: var(--white); font-size: clamp(3.2rem, 6vw, 5.8rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.055em; }
.page-banner-inner > p:last-of-type { max-width: 660px; margin-top: 1.2rem; color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75; }
.page-banner .message-jump-links { margin-top: 1.7rem; }

.about-page .about-hero { min-height: auto; padding-top: 110px; padding-bottom: 110px; }
.messages-page .audio-section { padding-top: 120px; }
.mount-page { min-height: auto; padding-top: 0; }
.mount-page-copy h2 { color: var(--blue); font-size: clamp(3.4rem, 6vw, 6.3rem); line-height: 0.88; letter-spacing: -0.065em; }
.mount-page-copy h2 span { color: var(--red); }

@media (max-width: 760px) {
  .page-banner { min-height: 410px; padding: 125px 6% 60px; }
  .page-banner::before { background: linear-gradient(90deg, rgba(28,31,98,0.96), rgba(45,49,146,0.74)); }
  .page-banner h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .breadcrumbs { margin-bottom: 1.6rem; }
  .about-page .about-hero { padding-top: 80px; padding-bottom: 80px; }
}

/* ── MOUNT TABOR PAGE ── */
.tabor-banner { min-height: 650px; }
.tabor-banner .page-banner-inner > p:last-of-type { font-size: 1.08rem; }
.tabor-banner-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 1.8rem; color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.tabor-banner-link span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), background 0.3s; }
.tabor-banner-link:hover span { transform: translateY(4px); background: var(--red); border-color: var(--red); }

.tabor-intro { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(4rem, 8vw, 8rem); align-items: center; padding-top: 140px; padding-bottom: 140px; }
.tabor-intro-copy h2 { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.05em; }
.tabor-intro-copy h2 span { color: var(--red); }
.tabor-intro-copy > p:not(.section-label) { color: rgba(45,49,146,0.72); font-size: 0.98rem; line-height: 1.82; }
.tabor-intro-copy h2 + p { margin-top: 2rem; }
.tabor-intro-copy > p + p { margin-top: 1rem; }
.tabor-intro-visual { min-height: 620px; position: relative; }
.tabor-intro-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; display: block; }
.tabor-intro-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,31,98,0.42), transparent 50%); }
.tabor-march-mark { position: absolute; z-index: 1; left: -35px; bottom: 35px; width: 180px; padding: 1.4rem; color: var(--white); background: var(--blue); border-top: 4px solid var(--red); }
.tabor-march-mark span, .tabor-march-mark strong { display: block; }
.tabor-march-mark span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; }
.tabor-march-mark strong { margin-top: 0.35rem; font: 800 3rem/1 'Geist Mono', monospace; }

.tabor-meaning { padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(4rem, 9vw, 9rem); background: #f5f5fb; }
.tabor-meaning-heading h2 { max-width: 580px; color: var(--blue); font-size: clamp(2.5rem, 4.3vw, 4.3rem); line-height: 1.02; letter-spacing: -0.045em; }
.tabor-meaning-body > p { max-width: 680px; color: rgba(45,49,146,0.72); font-size: 1.02rem; line-height: 1.85; }
.tabor-outcomes { margin-top: 2.5rem; border-top: 1px solid rgba(45,49,146,0.18); }
.tabor-outcomes div { display: grid; grid-template-columns: 55px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); }
.tabor-outcomes span { color: var(--red); font: 700 0.68rem 'Geist Mono', monospace; }
.tabor-outcomes p { color: var(--blue); font-weight: 650; }

.tabor-difference { min-height: 680px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(27,30,95,0.97), rgba(45,49,146,0.78)), url('../asset/image/hero-bg1.JPG') center/cover no-repeat; }
.tabor-difference-inner { width: 100%; max-width: 1200px; margin: 0 auto; }
.tabor-difference h2 { color: var(--white); font-size: clamp(3.1rem, 6vw, 6rem); line-height: 0.92; letter-spacing: -0.06em; }
.tabor-difference h2 span { color: var(--red); }
.tabor-difference-inner > p:not(.section-label) { max-width: 700px; margin-top: 1.8rem; color: rgba(255,255,255,0.66); font-size: 1.02rem; line-height: 1.82; }
.tabor-difference blockquote { max-width: 830px; margin-top: 2.5rem; padding: 1.5rem 0 1.5rem 1.8rem; border-left: 3px solid var(--red); color: var(--white); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 650; line-height: 1.5; }

.tabor-experience, .tabor-speakers, .tabor-gallery { max-width: 1200px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; }
.tabor-section-intro { max-width: 780px; margin-bottom: 4rem; }
.tabor-section-intro > p:last-child { max-width: 650px; margin-top: 1.3rem; color: rgba(45,49,146,0.68); line-height: 1.75; }
.experience-list { border-top: 1px solid rgba(45,49,146,0.18); }
.experience-item { display: grid; grid-template-columns: 75px 1fr; gap: 1.5rem; padding: 2.7rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); }
.experience-num { color: var(--red); font: 700 0.72rem 'Geist Mono', monospace; padding-top: 8px; }
.experience-item h3 { color: var(--blue); font-size: 1.55rem; }
.experience-item p { max-width: 780px; margin-top: 0.8rem; color: rgba(45,49,146,0.7); line-height: 1.78; }
.topic-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.3rem; }
.topic-chips span { padding: 0.55rem 0.8rem; color: var(--blue); border: 1px solid rgba(45,49,146,0.18); border-radius: 100px; font-size: 0.68rem; font-weight: 700; }

.tabor-theme { padding: 0; display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--blue); color: var(--white); }
.tabor-theme-art { min-height: 670px; padding: 5rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,0,0,0.78), rgba(45,49,146,0.28)), url('../asset/about2.JPG') center/cover; }
.tabor-theme-art::after { content: ''; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,0.28); }
.tabor-theme-art > * { position: relative; z-index: 1; }
.tabor-theme-art span, .tabor-theme-art small { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.tabor-theme-art strong { margin: 1.3rem 0; font-size: clamp(4rem, 7vw, 7rem); line-height: 0.78; letter-spacing: -0.07em; }
.tabor-theme-copy { align-self: center; max-width: 720px; padding: 6rem clamp(3rem, 8vw, 8rem); }
.tabor-theme-copy > p:not(.section-label) { margin-top: 1.2rem; color: rgba(255,255,255,0.64); line-height: 1.8; }
.theme-placeholder { margin-top: 2.3rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
.theme-placeholder span, .theme-placeholder strong { display: block; }
.theme-placeholder span { color: var(--red); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.theme-placeholder strong { margin-top: 0.45rem; font-size: 1.2rem; }

.speaker-feature { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: center; }
.speaker-image { height: 520px; overflow: hidden; }
.speaker-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.speaker-role { color: var(--red); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.speaker-copy h3 { margin: 0.55rem 0 1.2rem; color: var(--blue); font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -0.045em; }
.speaker-copy > p:last-child { max-width: 580px; color: rgba(45,49,146,0.7); line-height: 1.8; }
.lineup-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid rgba(45,49,146,0.18); border-bottom: 1px solid rgba(45,49,146,0.18); }
.lineup-row div { padding: 1.7rem; }
.lineup-row div + div { border-left: 1px solid rgba(45,49,146,0.18); }
.lineup-row span { color: var(--blue); font-weight: 800; }
.lineup-row p { margin-top: 0.45rem; color: rgba(45,49,146,0.58); font-size: 0.82rem; line-height: 1.55; }

.tabor-worship { padding: 0; display: grid; grid-template-columns: 1.1fr 0.9fr; background: #232778; }
.tabor-worship-image { min-height: 600px; overflow: hidden; }
.tabor-worship-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tabor-worship-copy { align-self: center; max-width: 660px; padding: 6rem clamp(3rem, 7vw, 7rem); }
.tabor-worship-copy > p:not(.section-label) { margin-top: 1.3rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.tabor-worship-copy .lineup-note { padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.82rem; }

.tabor-gallery-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.tabor-gallery-head > p { max-width: 430px; justify-self: end; color: rgba(45,49,146,0.68); line-height: 1.75; }
.tabor-gallery-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; grid-template-rows: 270px 270px; gap: 1.2rem; }
.tabor-gallery-grid figure { position: relative; overflow: hidden; }
.tabor-gallery-grid .gallery-large { grid-row: 1 / 3; }
.tabor-gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.tabor-gallery-grid figure:hover img { transform: scale(1.035); }
.tabor-gallery-grid figcaption { position: absolute; left: 1.2rem; bottom: 1.2rem; padding: 0.55rem 0.75rem; color: var(--white); background: rgba(35,39,120,0.88); font-size: 0.67rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.tabor-media { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 6rem; align-items: center; padding-top: 130px; padding-bottom: 130px; background: #f5f5fb; }
.tabor-media-copy h2 { max-width: 600px; color: var(--blue); font-size: clamp(2.7rem, 4.5vw, 4.6rem); line-height: 1; letter-spacing: -0.05em; }
.tabor-media-copy > p:not(.section-label) { max-width: 580px; margin: 1.4rem 0 2rem; color: rgba(45,49,146,0.7); line-height: 1.8; }
.tabor-media-visual { min-height: 390px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(rgba(30,33,103,0.66), rgba(30,33,103,0.66)), url('../asset/about1.JPG') center/cover; }
.media-play { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--red); }
.tabor-media-visual p { margin-top: 1rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.tabor-testimonies { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 7rem; align-items: center; padding-top: 130px; padding-bottom: 130px; }
.testimony-heading > p:last-child { max-width: 570px; margin-top: 1.4rem; color: rgba(45,49,146,0.68); line-height: 1.8; }
.testimony-placeholder { padding: 3rem; color: var(--white); background: var(--blue); border-top: 4px solid var(--red); }
.testimony-placeholder > span { color: var(--red); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.testimony-placeholder h3 { margin: 0.8rem 0; font-size: 1.6rem; }
.testimony-placeholder p { color: rgba(255,255,255,0.62); line-height: 1.7; }
.testimony-placeholder a { display: inline-flex; gap: 8px; margin-top: 1.5rem; color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.testimony-placeholder a span { color: var(--red); }

.tabor-faq { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 6rem; padding-top: 130px; padding-bottom: 130px; background: var(--blue); }
.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-list { border-top: 1px solid rgba(255,255,255,0.16); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,0.16); }
.faq-list summary { padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); font-size: 1rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-size: 1.4rem; transition: transform 0.3s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 2.5rem 1.5rem 0; color: rgba(255,255,255,0.62); line-height: 1.75; }

.tabor-updates { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 7rem; align-items: center; padding-top: 110px; padding-bottom: 110px; background: #f5f5fb; }
.updates-copy h2 { color: var(--blue); font-size: clamp(2.7rem, 4.5vw, 4.5rem); line-height: 1; letter-spacing: -0.05em; }
.updates-copy > p:last-child { max-width: 500px; margin-top: 1.2rem; color: rgba(45,49,146,0.68); line-height: 1.75; }
.updates-form label { display: block; margin-bottom: 0.7rem; color: var(--blue); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.updates-field { display: grid; grid-template-columns: 1fr auto; }
.updates-field input { min-width: 0; padding: 1rem 1.1rem; border: 1px solid rgba(45,49,146,0.22); border-right: 0; background: var(--white); color: var(--blue); font: inherit; outline: none; }
.updates-field input:focus { border-color: var(--blue); }
.updates-field button { padding: 1rem 1.5rem; border: 0; background: var(--red); color: var(--white); font: 800 0.7rem 'Geist', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.updates-helper, .updates-message { margin-top: 0.65rem; color: rgba(45,49,146,0.55); font-size: 0.76rem; }
.updates-message { min-height: 1.2em; color: var(--blue); font-weight: 650; }

.tabor-closing { padding-top: 150px; padding-bottom: 150px; background: linear-gradient(90deg, rgba(26,29,92,0.96), rgba(45,49,146,0.74)), url('../asset/about2.JPG') center/cover; }
.tabor-closing-inner { max-width: 950px; margin: 0 auto; text-align: center; }
.tabor-closing h2 { color: var(--white); font-size: clamp(3.2rem, 6vw, 6rem); line-height: 0.92; letter-spacing: -0.06em; }
.tabor-closing h2 span { color: var(--red); }
.tabor-closing-inner > p:not(.section-label) { max-width: 720px; margin: 1.7rem auto; color: rgba(255,255,255,0.68); line-height: 1.8; }
.tabor-closing-inner > strong { display: block; margin-bottom: 2rem; color: var(--white); font-size: 1.15rem; }
.tabor-closing-inner > div { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .tabor-intro, .tabor-meaning, .tabor-theme, .tabor-worship, .tabor-media, .tabor-testimonies, .tabor-faq, .tabor-updates { grid-template-columns: 1fr; }
  .tabor-intro, .tabor-meaning, .tabor-media, .tabor-testimonies, .tabor-faq, .tabor-updates { gap: 3.5rem; }
  .tabor-march-mark { left: 20px; }
  .tabor-theme-copy, .tabor-worship-copy { max-width: none; }
  .speaker-feature { grid-template-columns: 320px 1fr; gap: 3rem; }
  .faq-heading { position: static; }
}
@media (max-width: 650px) {
  .tabor-banner { min-height: 530px; }
  .tabor-intro, .tabor-meaning, .tabor-experience, .tabor-speakers, .tabor-gallery, .tabor-media, .tabor-testimonies, .tabor-faq, .tabor-updates { padding-top: 85px; padding-bottom: 85px; }
  .tabor-intro-visual { min-height: 440px; }
  .tabor-difference { min-height: auto; padding-top: 100px; padding-bottom: 100px; }
  .experience-item { grid-template-columns: 42px 1fr; gap: 0.8rem; }
  .tabor-theme-art { min-height: 500px; padding: 2.5rem; }
  .tabor-theme-copy, .tabor-worship-copy { padding: 5rem 6%; }
  .speaker-feature { grid-template-columns: 1fr; }
  .speaker-image { height: 460px; }
  .lineup-row { grid-template-columns: 1fr; }
  .lineup-row div + div { border-left: 0; border-top: 1px solid rgba(45,49,146,0.18); }
  .tabor-worship-image { min-height: 430px; }
  .tabor-gallery-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .tabor-gallery-head > p { justify-self: start; }
  .tabor-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 390px 230px 230px; }
  .tabor-gallery-grid .gallery-large { grid-row: auto; }
  .tabor-media-visual { min-height: 300px; }
  .updates-field { grid-template-columns: 1fr; gap: 0.7rem; }
  .updates-field input { border-right: 1px solid rgba(45,49,146,0.22); }
  .tabor-closing { padding-top: 100px; padding-bottom: 100px; }
}

/* ── MESSAGES VIDEO SHOWCASE ── */
.video-section-top {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.video-section-note { max-width: 390px; justify-self: end; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,0.2); }
.video-section-note span { color: var(--red); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.video-section-note p { margin-top: 0.65rem; color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.65; }
.video-showcase { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr); gap: 1.5rem; align-items: stretch; }
.video-feature { width: 100%; }
.video-feature-poster {
  aspect-ratio: 16 / 9;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to top, rgba(25,28,86,0.8), rgba(45,49,146,0.08) 65%), var(--video-thumb, url('../asset/about1.JPG'));
  background-position: center;
  background-size: cover;
}
.video-feature-poster::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.12); pointer-events: none; }
.video-series, .video-duration { position: relative; z-index: 1; width: max-content; color: var(--white); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.video-series { padding: 0.55rem 0.75rem; background: var(--red); }
.video-duration { grid-row: 3; align-self: end; padding: 0.45rem 0.65rem; background: rgba(25,28,86,0.82); }
.video-play-icon { grid-column: 1 / 3; grid-row: 1 / 4; align-self: center; justify-self: center; z-index: 1; width: 76px; height: 76px; display: grid; place-items: center; padding-left: 4px; border-radius: 50%; background: var(--red); color: var(--white); font-style: normal; box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.35s; }
.video-feature:hover .video-play-icon { transform: scale(1.08); background: var(--white); color: var(--blue); }
.video-feature-info { padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; }
.video-feature-info small { display: block; margin-bottom: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.video-feature-info strong { color: var(--white); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.15; }
.video-open-mark { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: var(--red); font-size: 1.1rem; transition: background 0.3s, color 0.3s, transform 0.3s; }
.video-feature:hover .video-open-mark { background: var(--red); color: var(--white); transform: translate(2px,-2px); }
.video-queue { display: flex; flex-direction: column; min-height: 100%; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.13); background: rgba(255,255,255,0.045); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.video-queue-head { padding-bottom: 1.15rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.14); }
.video-queue-head span { color: var(--white); font-weight: 800; }
.video-queue-head small { color: rgba(255,255,255,0.42); font-size: 0.67rem; letter-spacing: 0.09em; text-transform: uppercase; }
.video-queue .video-card { margin-top: 0; }
.video-queue-item { width: 100%; display: grid; grid-template-columns: 112px 1fr 24px; gap: 1rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: var(--white); }
.queue-thumb { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; overflow: hidden; background-image: linear-gradient(rgba(35,39,120,0.32), rgba(35,39,120,0.5)), var(--video-thumb, url('../asset/about2.JPG')); background-position: center; background-size: cover; }
.queue-thumb-two { background-image: linear-gradient(rgba(35,39,120,0.3), rgba(35,39,120,0.5)), url('../asset/about1.JPG'); }
.queue-thumb-three { background-image: linear-gradient(rgba(35,39,120,0.3), rgba(35,39,120,0.5)), url('../asset/image/hero-bg1.JPG'); }
.queue-thumb i { width: 32px; height: 32px; display: grid; place-items: center; padding-left: 2px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 0.62rem; font-style: normal; transition: transform 0.3s; }
.video-queue-item:hover .queue-thumb i { transform: scale(1.12); }
.queue-copy { min-width: 0; }
.queue-copy small, .queue-copy strong, .queue-copy em { display: block; }
.queue-copy small { color: var(--red); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.queue-copy strong { margin-top: 0.35rem; color: var(--white); font-size: 0.9rem; line-height: 1.3; }
.queue-copy em { margin-top: 0.3rem; color: rgba(255,255,255,0.42); font-size: 0.68rem; font-style: normal; }
.queue-arrow { color: rgba(255,255,255,0.35); transition: color 0.3s, transform 0.3s; }
.video-queue-item:hover .queue-arrow { color: var(--red); transform: translateX(4px); }
.video-channel-link { margin-top: auto; padding-top: 1.25rem; display: flex; justify-content: space-between; color: var(--white); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.video-channel-link span { color: var(--red); }

@media (max-width: 980px) {
  .video-showcase { grid-template-columns: 1fr; }
  .video-queue { min-height: 0; }
  .video-channel-link { margin-top: 1rem; }
}
@media (max-width: 650px) {
  .video-section-top { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
  .video-section-note { justify-self: start; }
  .video-feature-poster { padding: 1rem; }
  .video-play-icon { width: 58px; height: 58px; }
  .video-feature-info { align-items: center; }
  .video-open-mark { width: 36px; height: 36px; }
  .video-queue { padding: 1rem; }
  .video-queue-item { grid-template-columns: 92px 1fr 18px; gap: 0.75rem; }
}

/* ── PURPOSE PAGE ── */
.mission-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.mission-text-link { color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.mission-text-link span { display: inline-block; margin-left: 7px; color: var(--red); transition: transform 0.3s; }
.mission-text-link:hover span { transform: translateX(5px); }
.page-banner-purpose { background-image: url('../asset/image/hero-bg1.JPG'); background-position: center 43%; }

.purpose-intro { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(4rem, 9vw, 9rem); padding-top: 140px; padding-bottom: 140px; }
.purpose-intro-heading h2 { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.05em; }
.purpose-intro-heading h2 span { color: var(--red); }
.purpose-intro-copy { padding-top: 1.2rem; border-top: 1px solid rgba(45,49,146,0.2); }
.purpose-intro-copy p { color: rgba(45,49,146,0.72); font-size: 1rem; line-height: 1.85; }
.purpose-intro-copy p:first-child { color: var(--blue); font-size: 1.15rem; font-weight: 650; }
.purpose-intro-copy p + p { margin-top: 1.2rem; }

.purpose-image-statement { padding: 0; display: grid; grid-template-columns: 1.1fr 0.9fr; background: #f5f5fb; }
.purpose-image { min-height: 660px; overflow: hidden; }
.purpose-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.purpose-statement { align-self: center; max-width: 670px; padding: 6rem clamp(3rem, 7vw, 7rem); }
.purpose-statement h2 { color: var(--blue); font-size: clamp(2.5rem, 4.4vw, 4.4rem); line-height: 1.02; letter-spacing: -0.05em; }
.purpose-statement > p:last-child { margin-top: 1.5rem; color: rgba(45,49,146,0.7); font-size: 1rem; line-height: 1.82; }

.purpose-mission { min-height: 680px; display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 5rem; align-items: center; color: var(--white); background: var(--blue); }
.purpose-mission-label { align-self: start; margin-top: 4rem; display: flex; align-items: center; gap: 1rem; color: var(--red); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.purpose-mission-label span:last-child { width: 90px; height: 1px; background: rgba(255,255,255,0.22); }
.purpose-mission-copy > p:first-child { color: rgba(255,255,255,0.62); font-size: 1rem; }
.purpose-mission-copy h2 { margin: 0.8rem 0 1.5rem; color: var(--white); font-size: clamp(3.4rem, 7vw, 7rem); line-height: 0.82; letter-spacing: -0.07em; }
.purpose-mission-copy h2 span { color: var(--red); font-weight: 400; }
.purpose-mission-copy > p:last-child { max-width: 700px; color: rgba(255,255,255,0.64); line-height: 1.8; }

.purpose-raising, .purpose-pillars { max-width: 1200px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; }
.purpose-section-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.purpose-section-head > p { max-width: 470px; justify-self: end; color: rgba(45,49,146,0.66); line-height: 1.75; }
.raising-list { border-top: 1px solid rgba(45,49,146,0.2); }
.raising-item { display: grid; grid-template-columns: 70px minmax(250px, 0.7fr) 1fr; gap: 2rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(45,49,146,0.2); }
.raising-item > span { color: var(--red); font: 700 0.7rem 'Geist Mono', monospace; padding-top: 6px; }
.raising-item h3 { color: var(--blue); font-size: 1.25rem; }
.raising-item p { color: rgba(45,49,146,0.68); line-height: 1.75; }

.purpose-pillars { max-width: none; margin: 0; padding-left: 5%; padding-right: 5%; background: #f5f5fb; }
.purpose-pillars-head { max-width: 1200px; margin: 0 auto 4rem; }
.purpose-pillars-head h2 { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.pillar-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.purpose-pillar { min-height: 590px; padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; }
.purpose-pillar-holiness { color: var(--white); background: var(--blue); }
.purpose-pillar-selflessness { color: var(--white); background: #252978; border-top: 5px solid var(--red); }
.pillar-number { align-self: flex-end; color: rgba(255,255,255,0.22); font: 800 2.8rem 'Geist Mono', monospace; }
.pillar-label { margin-top: auto; color: var(--red); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.purpose-pillar h3 { margin: 0.7rem 0 1.2rem; font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -0.055em; }
.purpose-pillar > p:not(.pillar-label) { color: rgba(255,255,255,0.68); line-height: 1.8; }
.purpose-pillar blockquote { margin-top: 1.5rem; padding-left: 1.2rem; border-left: 2px solid var(--red); color: var(--white); font-weight: 650; line-height: 1.6; }

.purpose-process { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(4rem, 9vw, 9rem); padding-top: 130px; padding-bottom: 130px; background: var(--blue); }
.purpose-process-intro { align-self: start; position: sticky; top: 110px; }
.purpose-process-intro > p:last-child { max-width: 530px; margin-top: 1.4rem; color: rgba(255,255,255,0.62); line-height: 1.8; }
.process-list { border-top: 1px solid rgba(255,255,255,0.16); }
.process-list div { display: grid; grid-template-columns: 55px 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.process-list span { color: var(--red); font: 700 0.68rem 'Geist Mono', monospace; }
.process-list p { color: var(--white); font-weight: 650; line-height: 1.5; }

.purpose-prayer { padding: 0; display: grid; grid-template-columns: 1.05fr 0.95fr; background: var(--white); }
.purpose-prayer-image { min-height: 680px; overflow: hidden; }
.purpose-prayer-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.purpose-prayer-copy { align-self: center; max-width: 700px; padding: 6rem clamp(3rem, 7vw, 7rem); }
.purpose-prayer-copy h2 { color: var(--blue); font-size: clamp(2.6rem, 4.5vw, 4.5rem); line-height: 1; letter-spacing: -0.05em; }
.purpose-prayer-copy > p:not(.section-label) { margin-top: 1.4rem; color: rgba(45,49,146,0.7); font-size: 1.02rem; line-height: 1.8; }
.prayer-lines { margin-top: 2rem; border-top: 1px solid rgba(45,49,146,0.18); }
.prayer-lines span { display: block; padding: 0.9rem 0; border-bottom: 1px solid rgba(45,49,146,0.18); color: var(--blue); font-weight: 750; }

.purpose-closing { padding: 0; display: grid; grid-template-columns: 0.88fr 1.12fr; background: #f5f5fb; }
.calling-intro { min-height: 720px; padding: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.calling-index { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 2rem; color: var(--red); font: 800 0.66rem 'Geist Mono', monospace; letter-spacing: 0.13em; text-transform: uppercase; }
.calling-index i { width: 45px; height: 1px; background: rgba(45,49,146,0.25); }
.calling-intro h2 { max-width: 680px; color: var(--blue); font-size: clamp(3rem, 5.3vw, 5.3rem); line-height: 0.95; letter-spacing: -0.06em; }
.calling-intro h2 span { color: var(--red); }
.calling-intro > p { max-width: 570px; margin-top: 1.8rem; color: rgba(45,49,146,0.68); font-size: 1rem; line-height: 1.8; }
.calling-manifesto { min-height: 720px; padding: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.calling-manifesto::before { content: ''; position: absolute; width: 360px; height: 360px; right: -160px; top: -170px; border: 55px solid rgba(255,0,0,0.12); border-radius: 50%; }
.calling-manifesto > * { position: relative; z-index: 1; }
.calling-manifesto > p:first-child { color: var(--red); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.calling-manifesto h3 { margin-top: 0.8rem; color: var(--white); font-size: clamp(4rem, 8vw, 8rem); line-height: 0.76; letter-spacing: -0.075em; }
.calling-manifesto h3 span { color: var(--red); }
.calling-commitment { margin-top: 3rem; padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
.calling-commitment strong { color: var(--white); line-height: 1.6; }
.calling-commitment p { max-width: 190px; color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.6; text-align: right; }
.calling-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.calling-link { color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.calling-link span { display: inline-block; margin-left: 7px; color: var(--red); transition: transform 0.3s; }
.calling-link:hover span { transform: translateX(5px); }

@media (max-width: 900px) {
  .purpose-intro, .purpose-image-statement, .purpose-mission, .purpose-process, .purpose-prayer { grid-template-columns: 1fr; }
  .purpose-closing { grid-template-columns: 1fr; }
  .purpose-intro, .purpose-mission, .purpose-process { gap: 3.5rem; }
  .purpose-image { min-height: 560px; }
  .purpose-mission-label { margin-top: 0; }
  .purpose-process-intro { position: static; }
}
@media (max-width: 650px) {
  .purpose-intro, .purpose-raising, .purpose-pillars, .purpose-process { padding-top: 85px; padding-bottom: 85px; }
  .purpose-image { min-height: 430px; }
  .purpose-statement, .purpose-prayer-copy { padding: 5rem 6%; }
  .purpose-section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .purpose-section-head > p { justify-self: start; }
  .raising-item { grid-template-columns: 38px 1fr; gap: 0.8rem; }
  .raising-item p { grid-column: 2; }
  .pillar-grid { grid-template-columns: 1fr; }
  .purpose-pillar { min-height: 520px; }
  .purpose-prayer-image { min-height: 440px; }
  .purpose-closing { grid-template-columns: 1fr; }
  .calling-intro, .calling-manifesto { min-height: auto; padding: 5rem 6%; }
  .calling-commitment { flex-direction: column; }
  .calling-commitment p { max-width: none; text-align: left; }
}

/* ── REDESIGNED SITE FOOTER ── */
.site-footer { padding: 0 5%; overflow: hidden; background: #1f236f; }
.footer-callout { max-width: 1200px; margin: 0 auto; padding: 5.5rem 0 4.5rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.15); position: relative; }
.footer-callout::before { content: ''; position: absolute; width: 260px; height: 260px; right: 8%; top: -170px; border: 45px solid rgba(255,0,0,0.11); border-radius: 50%; pointer-events: none; }
.footer-callout p { margin-bottom: 0.8rem; color: var(--red); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-callout h2 { color: var(--white); font-size: clamp(2.8rem, 5.3vw, 5.3rem); line-height: 0.9; letter-spacing: -0.06em; }
.footer-callout > a { width: 150px; height: 150px; flex: 0 0 auto; padding: 1.4rem; display: flex; align-items: center; justify-content: center; position: relative; color: var(--white); background: var(--red); border-radius: 50%; font-size: 0.72rem; font-weight: 800; line-height: 1.3; letter-spacing: 0.07em; text-align: center; text-transform: uppercase; text-decoration: none; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.35s; }
.footer-callout > a span { position: absolute; right: 25px; bottom: 22px; font-size: 1.4rem; }
.footer-callout > a:hover { transform: rotate(-4deg) scale(1.04); background: var(--white); color: var(--blue); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 4.5rem 0; display: grid; grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
.footer-identity img { width: 170px; max-width: 100%; display: block; }
.footer-identity > p { max-width: 300px; margin-top: 1.3rem; color: rgba(255,255,255,0.56); font-size: 0.84rem; line-height: 1.75; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: var(--white); font: 700 0.62rem 'Geist Mono', monospace; text-decoration: none; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.footer-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-links, .footer-service { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links h3, .footer-service h3 { margin-bottom: 1.4rem; color: var(--red); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links a { padding: 0.38rem 0; color: rgba(255,255,255,0.62); font-size: 0.84rem; text-decoration: none; transition: color 0.25s, transform 0.25s; }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-service strong { color: var(--white); font-size: 1.1rem; }
.footer-service p { max-width: 250px; margin-top: 0.8rem; color: rgba(255,255,255,0.52); font-size: 0.8rem; line-height: 1.65; }
.footer-contact-details { max-width: 300px; margin-top: 1.1rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; }
.footer-contact-details a { color: rgba(255,255,255,0.7); font-size: 0.76rem; line-height: 1.45; overflow-wrap: anywhere; text-decoration: none; transition: color 0.25s, transform 0.25s; }
.footer-contact-details a:hover { color: var(--white); transform: translateX(4px); }
.footer-service > a { display: inline-flex; gap: 8px; margin-top: 1.4rem; color: var(--white); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.footer-service > a span { color: var(--red); transition: transform 0.3s; }
.footer-service > a:hover span { transform: translateX(5px); }
.footer-meta { max-width: 1200px; margin: 0 auto; padding: 1.6rem 0 1.8rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.34); font-size: 0.66rem; letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
  .footer-service { grid-column: 1 / -1; padding-top: 2rem; display: grid; grid-template-columns: 0.7fr 1fr 1fr; gap: 2rem; align-items: start; border-top: 1px solid rgba(255,255,255,0.12); }
  .footer-service h3 { margin-bottom: 0; }
  .footer-service p, .footer-service > a { margin-top: 0; }
  .footer-contact-details { grid-column: 2 / -1; grid-row: 2; margin-top: 0; }
  .footer-service > a { grid-column: 1; grid-row: 2; }
}
@media (max-width: 650px) {
  .footer-callout { padding: 4.5rem 0 3.5rem; align-items: flex-start; flex-direction: column; }
  .footer-callout > a { width: auto; height: auto; min-width: 190px; padding: 1rem 1.2rem; border-radius: 3px; flex-direction: row; align-items: center; }
  .footer-callout > a span { position: static; margin-left: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 3.5rem 0; gap: 2.8rem 1.5rem; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-service { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 0.8rem; }
  .footer-service h3, .footer-service strong, .footer-service p, .footer-contact-details, .footer-service > a { grid-column: 1; grid-row: auto; }
  .footer-service h3 { margin-bottom: 0.6rem; }
  .footer-contact-details { margin-top: 0.5rem; }
  .footer-service > a { margin-top: 0.7rem; }
  .footer-meta { flex-direction: column; padding-bottom: 2.2rem; }
  .footer-meta span:nth-child(2) { order: -1; color: rgba(255,255,255,0.58); }
}

/* ── OUTREACH PAGE ── */
.outreach-page .nav-links a.active { color: var(--blue); }
.outreach-page .nav-links a.active::after { width: 100%; }
.outreach-hero { min-height: calc(100dvh - 70px); padding: 0; display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--blue); }
.outreach-hero-copy { padding: clamp(5rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.outreach-hero-copy h1 { color: var(--white); font-size: clamp(4.4rem, 8vw, 8rem); line-height: 0.78; letter-spacing: -0.075em; }
.outreach-hero-copy h1 span { color: var(--red); }
.outreach-hero-copy > p:not(.section-label) { max-width: 610px; margin-top: 2rem; color: rgba(255,255,255,0.67); font-size: 1rem; line-height: 1.82; }
.outreach-hero-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.outreach-text-link { color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none; }
.outreach-text-link span { display: inline-block; margin-left: 8px; color: var(--red); transition: transform 0.3s; }
.outreach-text-link:hover span { transform: translateX(5px); }
.outreach-hero-image { min-height: 680px; position: relative; overflow: hidden; }
.outreach-hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.76), transparent 58%); }
.outreach-hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.outreach-hero-mark { position: absolute; z-index: 1; left: 7%; right: 7%; bottom: 6%; display: flex; justify-content: space-between; gap: 1rem; }
.outreach-hero-mark span { color: var(--white); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }

.outreach-intro { max-width: 1200px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(4rem, 9vw, 9rem); }
.outreach-intro-heading h2 { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.055em; }
.outreach-intro-copy { padding-top: 1.2rem; border-top: 1px solid rgba(45,49,146,0.2); }
.outreach-intro-copy p { color: rgba(45,49,146,0.7); line-height: 1.85; }
.outreach-intro-copy p:first-child { color: var(--blue); font-size: 1.1rem; font-weight: 650; }
.outreach-intro-copy p + p { margin-top: 1.25rem; }

.outreach-focus { padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(4rem, 8vw, 8rem); background: var(--blue); }
.outreach-focus-head { align-self: start; position: sticky; top: 120px; }
.outreach-focus-head > p:last-child { max-width: 480px; margin-top: 1.4rem; color: rgba(255,255,255,0.62); line-height: 1.8; }
.outreach-focus-list { border-top: 1px solid rgba(255,255,255,0.17); }
.outreach-focus-item { display: grid; grid-template-columns: 55px minmax(180px, 0.7fr) 1fr; gap: 1.5rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.17); }
.outreach-focus-item > span { padding-top: 5px; color: var(--red); font: 700 0.7rem 'Geist Mono', monospace; }
.outreach-focus-item h3 { color: var(--white); font-size: 1.15rem; }
.outreach-focus-item p { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.75; }

.outreach-story { padding: 0; display: grid; grid-template-columns: 1.08fr 0.92fr; background: #f5f5fb; }
.outreach-story-image { min-height: 680px; position: relative; overflow: hidden; }
.outreach-story-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,28,86,0.7), transparent 55%); }
.outreach-story-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.outreach-story-image > span { position: absolute; z-index: 1; left: 7%; bottom: 7%; color: var(--white); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.outreach-story-copy { align-self: center; max-width: 700px; padding: clamp(5rem, 8vw, 8rem); }
.outreach-story-copy h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.outreach-story-copy > p:not(.section-label) { margin-top: 1.5rem; color: rgba(45,49,146,0.7); line-height: 1.82; }
.outreach-story-copy blockquote { margin-top: 2rem; padding: 1.4rem 0 1.4rem 1.5rem; border-left: 3px solid var(--red); color: var(--blue); font-size: 1.04rem; font-weight: 650; line-height: 1.7; }
.outreach-story-copy cite { display: block; margin-top: 0.55rem; color: rgba(45,49,146,0.55); font-size: 0.72rem; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; }

.outreach-pathway { max-width: 1200px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; }
.outreach-pathway-head { display: grid; grid-template-columns: 1fr 0.65fr; gap: 4rem; align-items: end; }
.outreach-pathway-head h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.outreach-pathway-head > p:last-child { color: rgba(45,49,146,0.66); line-height: 1.78; }
.outreach-pathway-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(45,49,146,0.18); border-bottom: 1px solid rgba(45,49,146,0.18); }
.outreach-pathway-item { min-height: 330px; padding: 2.5rem; display: flex; flex-direction: column; }
.outreach-pathway-item + .outreach-pathway-item { border-left: 1px solid rgba(45,49,146,0.18); }
.outreach-pathway-item span { color: var(--red); font: 700 0.7rem 'Geist Mono', monospace; }
.outreach-pathway-item h3 { margin-top: auto; color: var(--blue); font-size: 1.6rem; }
.outreach-pathway-item p { margin-top: 0.8rem; color: rgba(45,49,146,0.66); font-size: 0.9rem; line-height: 1.72; }
.outreach-pathway-action { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; }
.outreach-pathway-action p { max-width: 490px; color: rgba(45,49,146,0.6); font-size: 0.82rem; line-height: 1.65; }

@media (max-width: 900px) {
  .outreach-hero, .outreach-intro, .outreach-focus, .outreach-story { grid-template-columns: 1fr; }
  .outreach-hero-image { min-height: 580px; }
  .outreach-focus { gap: 3.5rem; }
  .outreach-focus-head { position: static; }
  .outreach-pathway-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 650px) {
  .outreach-hero-copy { padding: 5rem 6%; }
  .outreach-hero-image { min-height: 440px; }
  .outreach-intro, .outreach-focus, .outreach-pathway { padding-top: 85px; padding-bottom: 85px; }
  .outreach-focus-item { grid-template-columns: 38px 1fr; gap: 0.8rem; }
  .outreach-focus-item p { grid-column: 2; }
  .outreach-story-image { min-height: 440px; }
  .outreach-story-copy { padding: 5rem 6%; }
  .outreach-pathway-grid { grid-template-columns: 1fr; }
  .outreach-pathway-item { min-height: 260px; }
  .outreach-pathway-item + .outreach-pathway-item { border-left: 0; border-top: 1px solid rgba(45,49,146,0.18); }
  .outreach-pathway-action { align-items: flex-start; flex-direction: column; }
}

/* ── GIVING PAGE ── */
.giving-page .nav-links a.active { color: var(--blue); }
.giving-page .nav-links a.active::after { width: 100%; }
.giving-hero { min-height: calc(100dvh - 70px); padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); position: relative; overflow: hidden; background: var(--blue); }
.giving-hero::after { content: ''; width: min(48vw, 680px); aspect-ratio: 1; position: absolute; right: -12vw; top: -42%; border: clamp(55px, 8vw, 120px) solid rgba(255,0,0,0.1); border-radius: 50%; pointer-events: none; }
.giving-hero-copy { width: 100%; max-width: 1200px; min-width: 0; margin: 0 auto; padding: clamp(5rem, 8vw, 8rem) 5%; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.giving-hero-copy h1 { color: var(--white); font-size: clamp(4.3rem, 8vw, 8rem); line-height: 0.8; letter-spacing: -0.075em; }
.giving-hero-copy h1 span { color: var(--red); }
.giving-hero-copy > p:not(.section-label) { max-width: 680px; margin: 2rem 0; color: rgba(255,255,255,0.66); font-size: 1rem; line-height: 1.82; }
.giving-hero-copy .btn { align-self: flex-start; }

.giving-intro { max-width: 1200px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(4rem, 9vw, 9rem); }
.giving-intro-heading h2 { color: var(--blue); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.055em; }
.giving-intro-copy { padding-top: 1.2rem; border-top: 1px solid rgba(45,49,146,0.2); }
.giving-intro-copy > p { color: var(--blue); font-size: 1.08rem; font-weight: 650; line-height: 1.82; }
.giving-intro-copy blockquote { margin-top: 2rem; padding-left: 1.4rem; border-left: 3px solid var(--red); color: rgba(45,49,146,0.7); font-size: 1.05rem; line-height: 1.7; }
.giving-intro-copy cite { display: block; margin-top: 0.5rem; color: var(--red); font-size: 0.68rem; font-style: normal; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.giving-accounts { padding-top: 130px; padding-bottom: 130px; background: var(--blue); }
.giving-accounts-head { max-width: 1200px; margin: 0 auto 4rem; display: grid; grid-template-columns: 1fr 0.65fr; gap: 4rem; align-items: end; }
.giving-accounts-head > p { max-width: 490px; justify-self: end; color: rgba(255,255,255,0.62); line-height: 1.75; }
.giving-account-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.giving-account { min-height: 440px; padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.055); color: var(--white); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.giving-account::before { content: ''; width: 190px; height: 190px; position: absolute; right: -100px; top: -110px; border: 34px solid rgba(255,0,0,0.12); border-radius: 50%; }
.giving-account-primary { background: var(--white); color: var(--blue); }
.giving-account-primary::before { border-color: rgba(255,0,0,0.1); }
.giving-account-project { border-top: 5px solid var(--red); }
.giving-account-top { display: flex; justify-content: space-between; gap: 1rem; position: relative; }
.giving-account-top span { color: var(--red); font: 800 0.75rem 'Geist Mono', monospace; letter-spacing: 0.12em; }
.giving-account-top small { color: rgba(255,255,255,0.48); font-size: 0.65rem; font-weight: 750; letter-spacing: 0.11em; text-transform: uppercase; }
.giving-account-primary .giving-account-top small { color: rgba(45,49,146,0.5); }
.giving-bank-name { margin-top: auto; color: inherit; font-size: 1.05rem; font-weight: 750; }
.giving-bank-name span, .giving-account-number-label { display: block; margin-bottom: 0.2rem; color: rgba(255,255,255,0.46); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.giving-account-primary .giving-bank-name span, .giving-account-primary .giving-account-number-label { color: rgba(45,49,146,0.5); }
.giving-account-holder { margin-top: 0.65rem; color: inherit; font-size: 0.82rem; font-weight: 650; }
.giving-account-holder span { display: block; margin-bottom: 0.2rem; color: rgba(255,255,255,0.46); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.giving-account-primary .giving-account-holder span { color: rgba(45,49,146,0.5); }
.giving-account-number-label { margin-top: 1.4rem; }
.giving-account-number { margin: 0.4rem 0 1.2rem; color: inherit; font: 800 clamp(2.25rem, 5vw, 4.3rem)/1 'Geist Mono', monospace; letter-spacing: -0.055em; overflow-wrap: anywhere; }
.giving-copy { align-self: flex-start; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.24); background: transparent; color: var(--white); font: 800 0.65rem 'Geist', sans-serif; letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s; }
.giving-copy:hover { color: var(--blue); background: var(--white); border-color: var(--white); }
.giving-copy:active { transform: scale(0.97); }
.giving-account-primary .giving-copy { border-color: rgba(45,49,146,0.25); color: var(--blue); }
.giving-account-primary .giving-copy:hover { border-color: var(--blue); background: var(--blue); color: var(--white); }
.giving-correspondent { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.17); }
.giving-correspondent > p { margin-bottom: 1rem; color: var(--red); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.giving-correspondent dl { display: grid; gap: 0.8rem; }
.giving-correspondent dl div { display: grid; grid-template-columns: minmax(120px, 0.65fr) 1fr; gap: 1rem; }
.giving-correspondent dt { color: rgba(255,255,255,0.46); font-size: 0.72rem; }
.giving-correspondent dd { color: var(--white); font: 650 0.78rem/1.45 'Geist Mono', monospace; overflow-wrap: anywhere; }
.giving-copy-status { max-width: 1200px; min-height: 1.4em; margin: 1.2rem auto 0; color: rgba(255,255,255,0.72); font-size: 0.76rem; }

.giving-enquiries { padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(4rem, 8vw, 8rem); background: #f5f5fb; }
.giving-enquiries-copy h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.giving-enquiries-copy > p:last-child { max-width: 520px; margin-top: 1.5rem; color: rgba(45,49,146,0.68); line-height: 1.8; }
.giving-phone-list { border-top: 1px solid rgba(45,49,146,0.2); }
.giving-phone-list a { display: grid; grid-template-columns: 48px 1fr auto; gap: 1.2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid rgba(45,49,146,0.2); color: var(--blue); text-decoration: none; }
.giving-phone-list a > span { color: var(--red); font: 700 0.68rem 'Geist Mono', monospace; }
.giving-phone-list strong { font: 750 clamp(1.25rem, 2.4vw, 2rem) 'Geist Mono', monospace; letter-spacing: -0.04em; }
.giving-phone-list small { color: rgba(45,49,146,0.5); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.giving-phone-list a:hover strong { color: var(--red); }

@media (max-width: 900px) {
  .giving-hero, .giving-intro, .giving-enquiries { grid-template-columns: minmax(0, 1fr); }
  .giving-accounts-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .giving-accounts-head > p { justify-self: start; }
}

@media (max-width: 650px) {
  .giving-hero-copy { padding: 5rem 6%; }
  .giving-hero-copy { width: 100%; max-width: 100%; }
  .giving-intro, .giving-accounts, .giving-enquiries { padding-top: 85px; padding-bottom: 85px; }
  .giving-account-grid { grid-template-columns: 1fr; }
  .giving-account { min-height: 390px; }
  .giving-correspondent dl div { grid-template-columns: 1fr; gap: 0.25rem; }
  .giving-phone-list a { grid-template-columns: 34px 1fr; gap: 0.8rem; }
  .giving-phone-list small { grid-column: 2; }
}

/* ── FEATURED GIVING ACCOUNTS ── */
.account-feature { padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.account-feature > * { min-width: 0; }
.account-feature-home { background: #f5f5fb; }
.account-feature-copy { max-width: 620px; justify-self: end; }
.account-feature-copy h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.account-feature-copy > p:not(.section-label) { margin-top: 1.5rem; color: rgba(45,49,146,0.68); line-height: 1.82; }
.account-feature-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.7rem; color: var(--blue); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.account-feature-link span { color: var(--red); transition: transform 0.3s; }
.account-feature-link:hover span { transform: translateX(5px); }
.account-feature-card { width: min(100%, 650px); min-height: 440px; padding: clamp(2.5rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-self: start; position: relative; overflow: hidden; color: var(--white); background: var(--blue); border-top: 5px solid var(--red); box-shadow: 0 24px 60px rgba(45,49,146,0.16); }
.account-feature-card::before { content: ''; width: 260px; height: 260px; position: absolute; right: -130px; top: -150px; border: 44px solid rgba(255,0,0,0.13); border-radius: 50%; pointer-events: none; }
.account-feature-card > * { position: relative; z-index: 1; }
.account-feature-meta { display: flex; justify-content: space-between; gap: 1rem; }
.account-feature-meta span { color: var(--red); font: 800 0.75rem 'Geist Mono', monospace; letter-spacing: 0.12em; }
.account-feature-meta small { color: rgba(255,255,255,0.5); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.account-feature-label { margin-top: auto; color: rgba(255,255,255,0.48); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.account-feature-card > strong { margin-top: 0.35rem; color: inherit; font-size: 1rem; }
.account-feature-bank { margin-top: 1.6rem; color: inherit; font-size: 0.9rem; font-weight: 700; }
.account-feature-number { margin: 0.35rem 0 1.3rem; color: inherit; font: 800 clamp(2.4rem, 5vw, 4.6rem)/1 'Geist Mono', monospace; letter-spacing: -0.06em; overflow-wrap: anywhere; }
.account-copy-button { align-self: flex-start; padding: 0.78rem 1rem; border: 1px solid rgba(255,255,255,0.26); background: transparent; color: inherit; font: 800 0.64rem 'Geist', sans-serif; letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s; }
.account-copy-button:hover { color: var(--blue); background: var(--white); border-color: var(--white); }
.account-copy-button:active { transform: scale(0.97); }
.account-feature-outreach { background: var(--blue); }
.account-feature-outreach .account-feature-copy h2 { color: var(--white); }
.account-feature-outreach .account-feature-copy > p:not(.section-label) { color: rgba(255,255,255,0.66); }
.account-feature-outreach .account-feature-note { padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.18); font-size: 0.78rem; }
.account-feature-outreach .account-feature-card { color: var(--blue); background: var(--white); box-shadow: 0 24px 60px rgba(17,20,65,0.24); }
.account-feature-outreach .account-feature-meta small, .account-feature-outreach .account-feature-label { color: rgba(45,49,146,0.5); }
.account-feature-outreach .account-copy-button { border-color: rgba(45,49,146,0.25); }
.account-feature-outreach .account-copy-button:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }

@media (max-width: 900px) {
  .account-feature { grid-template-columns: minmax(0, 1fr); gap: 3.5rem; }
  .account-feature-copy { max-width: 720px; justify-self: start; }
  .account-feature-card { justify-self: stretch; }
}

@media (max-width: 650px) {
  .account-feature { padding-top: 85px; padding-bottom: 85px; }
  .account-feature-card { min-height: 390px; padding: 2rem; }
  .account-feature-number { font-size: clamp(1.9rem, 10vw, 3rem); }
}

/* ── RESPONSIVE LAYOUT HARDENING ── */
html, body { width: 100%; max-width: 100%; }
body { overflow-x: clip; }
main, section, header, footer, nav { max-width: 100%; }

/* ── BLOG PAGE ── */
.blog-page .nav-links a.active { color: var(--blue); }
.blog-page .nav-links a.active::after { width: 100%; }
.blog-hero { min-height: 570px; padding: clamp(5.5rem, 10vw, 9rem) 5%; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.blog-hero::before { content: ''; position: absolute; width: min(56vw, 720px); aspect-ratio: 1; right: -12%; top: -42%; border: clamp(45px, 8vw, 110px) solid rgba(255,255,255,0.055); border-radius: 50%; }
.blog-hero::after { content: ''; position: absolute; width: 180px; height: 180px; right: 13%; bottom: -100px; background: var(--red); transform: rotate(24deg); }
.blog-hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.blog-hero .breadcrumbs { margin-bottom: 3.5rem; }
.blog-hero .breadcrumbs a, .blog-hero .breadcrumbs li { color: rgba(255,255,255,0.7); }
.blog-hero h1 { max-width: 850px; margin: 0.6rem 0 1.7rem; color: var(--white); font-size: clamp(4rem, 9vw, 8.6rem); line-height: 0.82; letter-spacing: -0.075em; }
.blog-hero h1 span { color: var(--red); }
.blog-hero-inner > p:last-child { max-width: 660px; color: rgba(255,255,255,0.7); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.75; }
.blog-featured { max-width: 1200px; margin: 0 auto; padding: clamp(4.5rem, 8vw, 8rem) 5%; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); align-items: stretch; }
.blog-featured-image { min-height: 500px; overflow: hidden; background: #ececf7; }
.blog-featured-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.blog-featured-copy { padding: clamp(2.3rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; background: #f3f3fa; }
.blog-category { color: var(--red); font: 700 0.68rem 'Geist Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; }
.blog-featured-copy h2 { margin: 1rem 0 1.4rem; color: var(--blue); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.055em; }
.blog-featured-copy > p:not(.blog-category) { color: #55587e; line-height: 1.8; }
.blog-action, .blog-card > a { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin-top: 2rem; color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.blog-action span, .blog-card > a span { color: var(--red); transition: transform 0.3s; }
.blog-action:hover span, .blog-card > a:hover span { transform: translateX(5px); }
.blog-stories { padding: clamp(5rem, 9vw, 9rem) 5%; background: #f7f7fc; }
.blog-section-heading { max-width: 1200px; margin: 0 auto clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: end; }
.blog-section-heading h2 { margin-top: 0.8rem; color: var(--blue); font-size: clamp(2.8rem, 5.5vw, 5.7rem); line-height: 0.9; letter-spacing: -0.065em; }
.blog-section-heading > p { max-width: 530px; color: #66698c; line-height: 1.8; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(45,49,146,0.16); border-left: 1px solid rgba(45,49,146,0.16); }
.blog-card { min-width: 0; min-height: 420px; padding: clamp(2rem, 3.5vw, 3.2rem); display: flex; flex-direction: column; scroll-margin-top: 90px; background: var(--white); border-right: 1px solid rgba(45,49,146,0.16); border-bottom: 1px solid rgba(45,49,146,0.16); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { z-index: 1; transform: translateY(-6px); box-shadow: 0 22px 60px rgba(45,49,146,0.12); }
.blog-card-number { margin-bottom: 3rem; color: rgba(45,49,146,0.2); font-size: 2.6rem; font-weight: 900; letter-spacing: -0.06em; }
.blog-card h3 { margin: 0.7rem 0 1rem; color: var(--blue); font-size: 1.65rem; letter-spacing: -0.035em; }
.blog-card > p:not(.blog-category) { color: #66698c; font-size: 0.9rem; line-height: 1.75; }
.blog-card > a { margin-top: auto; padding-top: 1.8rem; }
.blog-cta { padding: clamp(5rem, 9vw, 9rem) max(5%, calc((100vw - 1200px) / 2)); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; background: var(--white); }
.blog-cta h2 { margin-top: 0.8rem; color: var(--blue); font-size: clamp(3rem, 6vw, 6.2rem); line-height: 0.88; letter-spacing: -0.07em; }
.blog-cta-copy p { margin-bottom: 2rem; color: #66698c; line-height: 1.8; }

@media (max-width: 900px) {
  .blog-featured, .blog-section-heading, .blog-cta { grid-template-columns: 1fr; }
  .blog-featured { padding-left: 5%; padding-right: 5%; }
  .blog-featured-image { min-height: 390px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-section-heading { gap: 1.7rem; }
  .blog-cta { align-items: start; }
}

@media (max-width: 600px) {
  .blog-hero { min-height: 500px; }
  .blog-hero h1 { font-size: clamp(3.4rem, 18vw, 5.4rem); }
  .blog-hero::after { width: 110px; height: 110px; right: -30px; bottom: -60px; }
  .blog-featured-image { min-height: 280px; }
  .blog-featured-copy { padding: 2rem 1.5rem 2.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 360px; }
}

/* ── DAILY DEVOTIONAL PAGE ── */
.devotional-page .nav-links a.active { color: var(--blue); }
.devotional-page .nav-links a.active::after { width: 100%; }
.devotional-hero { min-height: 620px; padding: clamp(5.5rem, 10vw, 9rem) 5%; display: flex; align-items: center; position: relative; overflow: hidden; color: var(--white); background: linear-gradient(115deg, rgba(31,35,111,0.97) 0%, rgba(45,49,146,0.91) 55%, rgba(45,49,146,0.72) 100%), url('../asset/about1.JPG') center/cover no-repeat; }
.devotional-hero::after { content: ''; position: absolute; width: min(44vw, 540px); aspect-ratio: 1; right: -10%; top: -28%; border: clamp(40px, 7vw, 90px) solid rgba(255,255,255,0.06); border-radius: 50%; }
.devotional-hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.devotional-hero .breadcrumbs { margin-bottom: 3rem; }
.devotional-hero .breadcrumbs a, .devotional-hero .breadcrumbs li { color: rgba(255,255,255,0.68); }
.devotional-hero h1 { margin: 0.6rem 0 1.5rem; color: var(--white); font-size: clamp(4rem, 8.5vw, 8.2rem); line-height: 0.84; letter-spacing: -0.075em; }
.devotional-hero h1 span { color: var(--red); }
.devotional-hero-inner > p:not(.page-banner-label) { max-width: 620px; color: rgba(255,255,255,0.72); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.75; }
.devotional-hero .btn { margin-top: 2.2rem; }
.devotional-reading { max-width: 1200px; margin: 0 auto; padding: clamp(5rem, 9vw, 9rem) 5%; display: grid; grid-template-columns: minmax(210px, 0.33fr) minmax(0, 0.67fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; scroll-margin-top: 70px; }
.devotional-reading-meta { position: sticky; top: 105px; padding: 2rem; border-top: 4px solid var(--red); background: #f3f3fa; }
.devotional-reading-meta > div { padding: 1.15rem 0; display: flex; flex-direction: column; gap: 0.35rem; border-bottom: 1px solid rgba(45,49,146,0.13); }
.devotional-reading-meta > div:last-child { border-bottom: 0; }
.devotional-reading-meta span { color: rgba(45,49,146,0.56); font: 600 0.65rem 'Geist Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.devotional-reading-meta strong { color: var(--blue); font-size: 0.9rem; line-height: 1.45; }
.devotional-kicker { color: var(--red); font: 700 0.72rem 'Geist Mono', monospace; letter-spacing: 0.13em; text-transform: uppercase; }
.devotional-reading-body > h2 { max-width: 820px; margin: 0.8rem 0 2.2rem; color: var(--blue); font-size: clamp(2.8rem, 5.4vw, 5.4rem); line-height: 0.94; letter-spacing: -0.065em; }
.devotional-reading-body > blockquote { margin: 0 0 2.5rem; padding: 1.8rem 2rem; color: var(--blue); background: #f7f7fc; border-left: 4px solid var(--red); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.7; }
.devotional-reading-body > blockquote cite { display: block; margin-top: 0.8rem; color: rgba(45,49,146,0.58); font: 600 0.7rem 'Geist Mono', monospace; letter-spacing: 0.06em; text-transform: uppercase; }
.devotional-reading-body > p { margin-bottom: 1.45rem; color: #55587e; font-size: 1.03rem; line-height: 1.9; }
.devotional-response { margin-top: 4rem; padding: clamp(2rem, 4vw, 3.5rem); color: var(--white); background: var(--blue); }
.devotional-response h3, .devotional-prayer h3 { margin: 0.7rem 0 1.8rem; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.045em; }
.devotional-response h3 { color: var(--white); }
.devotional-response ol { list-style: none; }
.devotional-response li { padding: 1.2rem 0; display: grid; grid-template-columns: 42px 1fr; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.14); }
.devotional-response li span { color: #ff7890; font: 700 0.7rem 'Geist Mono', monospace; }
.devotional-response li p { color: rgba(255,255,255,0.72); line-height: 1.7; }
.devotional-prayer { margin-top: 2rem; padding: clamp(2rem, 4vw, 3.5rem); background: #f3f3fa; }
.devotional-prayer h3 { color: var(--blue); }
.devotional-prayer > p:last-child { color: #55587e; font-size: 1.02rem; font-style: italic; line-height: 1.9; }
.devotional-more { padding: clamp(5rem, 9vw, 9rem) max(5%, calc((100vw - 1200px) / 2)); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); background: #f7f7fc; }
.devotional-more h2 { margin-top: 0.8rem; color: var(--blue); font-size: clamp(3rem, 5.8vw, 5.7rem); line-height: 0.9; letter-spacing: -0.065em; }
.devotional-more-links { border-top: 1px solid rgba(45,49,146,0.18); }
.devotional-more-links a { padding: 1.35rem 0; display: grid; grid-template-columns: 70px 1fr auto; gap: 1rem; align-items: center; color: var(--blue); border-bottom: 1px solid rgba(45,49,146,0.18); text-decoration: none; }
.devotional-more-links a span { color: var(--red); font: 700 0.65rem 'Geist Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.devotional-more-links a strong { font-size: clamp(1rem, 2vw, 1.25rem); }
.devotional-more-links a i { color: var(--red); font-style: normal; font-size: 1.2rem; transition: transform 0.3s; }
.devotional-more-links a:hover i { transform: translateX(5px); }

@media (max-width: 800px) {
  .devotional-reading, .devotional-more { grid-template-columns: 1fr; }
  .devotional-reading-meta { position: static; }
}

@media (max-width: 600px) {
  .devotional-hero { min-height: 540px; }
  .devotional-hero h1 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .devotional-reading-body > blockquote { padding: 1.4rem; }
  .devotional-response, .devotional-prayer { padding: 1.6rem; }
  .devotional-more-links a { grid-template-columns: 55px minmax(0, 1fr) auto; }
}
img, video, iframe, svg { max-width: 100%; }

.hero-inner > *, .about-grid > *, .mission-inner > *, .services-inner > *,
.mount-tabor-inner > *, .pastor-inner > *, .about-hero > *, .about-intro > *,
.about-formation > *, .about-storyline > *, .about-mission-band > *,
.about-values-head > *, .about-ministries > *, .transcript-section > *,
.tabor-intro > *, .tabor-meaning > *, .tabor-theme > *, .speaker-feature > *,
.tabor-worship > *, .tabor-gallery-head > *, .tabor-media > *,
.tabor-testimonies > *, .tabor-faq > *, .tabor-updates > *,
.purpose-intro > *, .purpose-image-statement > *, .purpose-mission > *,
.purpose-section-head > *, .purpose-process > *, .purpose-prayer > *,
.purpose-closing > *, .outreach-hero > *, .outreach-intro > *,
.outreach-focus > *, .outreach-story > *, .outreach-pathway-head > *,
.giving-intro > *, .giving-accounts-head > *, .giving-account-grid > *,
.giving-enquiries > *, .footer-main > * { min-width: 0; }

.giving-account-number, .giving-correspondent dd, .footer-contact-details a,
.download-mark, .queue-copy strong { overflow-wrap: anywhere; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { justify-content: flex-start; padding: 110px 6% 50px; overflow-y: auto; }
}

@media (max-width: 900px) {
  .mission-inner, #services .services-inner, .mount-tabor-inner, .mount-page,
  .outreach-hero, .giving-hero { grid-template-columns: minmax(0, 1fr); }
  .message-section-head, .video-section-top { min-width: 0; }
}

@media (max-width: 650px) {
  .hero h1, .about-hero h1, .page-banner h1, .mission-big,
  .about-mission-copy h2, .tabor-theme-art strong, .purpose-mission-copy h2,
  .calling-manifesto h3, .outreach-hero-copy h1, .giving-hero-copy h1,
  .giving-account-number { overflow-wrap: anywhere; }
  .btn { max-width: 100%; white-space: normal; text-align: center; }
  .message-jump-links, .video-section-top, .outreach-hero-actions { flex-wrap: wrap; }
  .audio-slider, .content-carousel, .video-showcase, .video-queue { max-width: 100%; }
  .giving-account-number { font-size: clamp(1.8rem, 10vw, 2.8rem); letter-spacing: -0.045em; }
  .giving-phone-list strong { overflow-wrap: anywhere; }
  .footer-contact-details { width: 100%; }
}

@media (max-width: 380px) {
  nav { padding-left: 4%; padding-right: 4%; }
  .nav-logo { gap: 8px; min-width: 0; }
  .nav-logo img { height: 40px; }
  .nav-logo-text { font-size: 0.74rem; letter-spacing: 0.025em; }
  .nav-logo-text span { font-size: 0.5rem; letter-spacing: 0.06em; }
  .hero-actions, .cta-btns, .mission-actions, .calling-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn, .cta-btns .btn, .mission-actions .btn, .calling-actions .btn { width: 100%; }
}

/* ── PASTOR PAUL PROFILE ── */
.pastor-page { background: #fff; }
.pastor-page nav { position: sticky; }
.pastor-hero {
  min-height: calc(100dvh - 70px); padding: 0 0 0 7%; display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  background: var(--blue); color: var(--white); overflow: hidden;
}
.pastor-hero-copy { min-width: 0; max-width: 690px; padding: clamp(4.5rem, 9vh, 7.5rem) 7% 5rem 0; align-self: center; position: relative; z-index: 1; }
.pastor-hero .breadcrumbs { margin-bottom: clamp(2rem, 5vh, 4.5rem); }
.pastor-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; color: #ff8383; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.pastor-eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--red); }
.pastor-hero h1 { color: var(--white); font-size: clamp(4rem, 7vw, 7.4rem); font-weight: 900; letter-spacing: -0.07em; line-height: 0.82; }
.pastor-hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.72); }
.pastor-hero-intro { max-width: 620px; margin-top: 2.2rem; color: rgba(255,255,255,0.7); font-size: clamp(0.95rem, 1.4vw, 1.1rem); line-height: 1.8; }
.pastor-hero-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 2rem; color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.pastor-hero-link span { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; transition: 0.3s; }
.pastor-hero-link:hover span { background: var(--red); border-color: var(--red); transform: translateY(4px); }
.pastor-hero-portrait { min-height: calc(100dvh - 70px); position: relative; }
.pastor-hero-portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(45,49,146,0.35), transparent 35%), linear-gradient(0deg, rgba(8,11,52,0.48), transparent 42%); }
.pastor-hero-portrait img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 54% center; }
.pastor-portrait-caption { position: absolute; z-index: 1; right: 7%; bottom: 7%; padding: 1.2rem 1.4rem; border-left: 3px solid var(--red); color: var(--white); }
.pastor-portrait-caption span { display: block; margin-bottom: 0.45rem; color: rgba(255,255,255,0.6); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pastor-portrait-caption strong { font-size: 1.1rem; line-height: 1.35; }

.pastor-opening { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(3rem, 8vw, 8rem); padding-top: 135px; padding-bottom: 135px; }
.pastor-opening-title h2, .pastor-journey-head h2, .pastor-education-copy h2, .pastor-city-copy h2,
.pastor-philosophy-head h2, .pastor-impact-intro h2, .pastor-values-heading h2, .pastor-family-copy h2,
.pastor-closing h2 { color: var(--blue); font-size: clamp(2.6rem, 4.7vw, 5rem); font-weight: 900; letter-spacing: -0.055em; line-height: 0.98; }
.pastor-opening-copy { padding-top: 1.7rem; }
.pastor-opening-copy p { color: rgba(45,49,146,0.76); font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.9; }
.pastor-opening-copy p + p { margin-top: 1.2rem; }

.pastor-journey { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(4rem, 8vw, 9rem); padding-top: 130px; padding-bottom: 130px; background: #f5f5fb; }
.pastor-journey-head { position: sticky; top: 120px; align-self: start; }
.pastor-journey-head > p:last-child { max-width: 430px; margin-top: 1.6rem; color: rgba(45,49,146,0.68); line-height: 1.8; }
.pastor-timeline { position: relative; }
.pastor-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 57px; width: 1px; background: rgba(45,49,146,0.15); }
.pastor-timeline-item { display: grid; grid-template-columns: 115px 1fr; gap: 2rem; padding: 0 0 4.7rem; position: relative; }
.pastor-timeline-item:last-child { padding-bottom: 0; }
.pastor-timeline-marker { position: relative; z-index: 1; width: 115px; height: 115px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 1px solid rgba(45,49,146,0.12); box-shadow: 0 10px 30px rgba(45,49,146,0.07); }
.pastor-timeline-marker span { color: var(--red); font: 600 0.72rem 'Geist Mono', monospace; letter-spacing: 0.04em; text-transform: uppercase; }
.pastor-timeline-label, .pastor-card-kicker { margin-bottom: 0.55rem; color: var(--red); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.pastor-timeline-item h3 { color: var(--blue); font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.03em; }
.pastor-timeline-item h3 + p { margin-top: 0.8rem; color: rgba(45,49,146,0.7); font-size: 0.95rem; line-height: 1.8; }

.pastor-education { max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3.5rem, 7vw, 8rem); align-items: center; padding-top: 145px; padding-bottom: 145px; }
.pastor-education-media { min-height: 720px; position: relative; overflow: hidden; }
.pastor-education-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.pastor-media-note { position: absolute; right: 0; bottom: 0; width: min(82%, 410px); padding: 2rem; background: var(--blue); color: var(--white); border-top: 4px solid var(--red); }
.pastor-media-note span { display: block; margin-bottom: 0.55rem; color: #ff7c7c; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.pastor-media-note strong { font-size: 1.25rem; line-height: 1.4; }
.pastor-education-copy > p:not(.section-label) { margin-top: 1.05rem; color: rgba(45,49,146,0.72); font-size: 0.96rem; line-height: 1.82; }
.pastor-education-copy h2 { margin-bottom: 1.9rem; }
.pastor-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.4rem; border-top: 1px solid rgba(45,49,146,0.14); }
.pastor-facts div { padding: 1.4rem 1rem 0 0; }
.pastor-facts div + div { padding-left: 1rem; border-left: 1px solid rgba(45,49,146,0.14); }
.pastor-facts strong { display: block; color: var(--red); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; }
.pastor-facts span { display: block; margin-top: 0.6rem; color: rgba(45,49,146,0.62); font-size: 0.69rem; font-weight: 700; line-height: 1.4; text-transform: uppercase; }

.pastor-city { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(4rem, 9vw, 10rem); align-items: center; background: var(--blue); color: var(--white); }
.pastor-city-year { color: transparent; font-size: clamp(7rem, 17vw, 16rem); font-weight: 900; letter-spacing: -0.09em; line-height: 0.8; -webkit-text-stroke: 2px rgba(255,255,255,0.3); }
.pastor-city-copy h2, .pastor-closing h2 { color: var(--white); }
.pastor-city-copy > p:not(.section-label) { margin-top: 1rem; color: rgba(255,255,255,0.68); line-height: 1.82; }
.pastor-city-copy h2 { margin-bottom: 1.8rem; }
.pastor-inline-link { display: inline-flex; gap: 9px; margin-top: 2rem; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.4); color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }

.pastor-philosophy { max-width: 1350px; margin: 0 auto; padding-top: 140px; padding-bottom: 140px; }
.pastor-philosophy-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: 5rem; align-items: end; }
.pastor-philosophy-head > p { color: rgba(45,49,146,0.72); line-height: 1.85; }
.pastor-beliefs { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border-top: 1px solid rgba(45,49,146,0.16); }
.pastor-beliefs article { min-height: 310px; padding: 2rem 1.6rem 2rem 0; }
.pastor-beliefs article + article { padding-left: 1.6rem; border-left: 1px solid rgba(45,49,146,0.16); }
.pastor-beliefs span, .pastor-values-list span { color: var(--red); font: 600 0.7rem 'Geist Mono', monospace; }
.pastor-beliefs h3 { margin-top: 4rem; color: var(--blue); font-size: 1.25rem; }
.pastor-beliefs p { margin-top: 0.7rem; color: rgba(45,49,146,0.65); font-size: 0.88rem; line-height: 1.75; }
.pastor-principles { display: flex; flex-wrap: wrap; gap: 0.7rem; padding-top: 2rem; border-top: 1px solid rgba(45,49,146,0.16); }
.pastor-principles span { padding: 0.7rem 1rem; border: 1px solid rgba(45,49,146,0.18); border-radius: 99px; color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.pastor-impact { background: #f5f5fb; padding-top: 130px; padding-bottom: 130px; }
.pastor-impact-intro { max-width: 1250px; margin: 0 auto 4rem; }
.pastor-impact-grid { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.pastor-impact-card { min-height: 510px; padding: 2.2rem; display: flex; flex-direction: column; background: var(--white); border-top: 4px solid transparent; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; }
.pastor-impact-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: 0 20px 45px rgba(45,49,146,0.1); }
.pastor-card-number { margin-bottom: auto; color: rgba(45,49,146,0.22); font-size: 3rem; font-weight: 900; }
.pastor-impact-card h3 { color: var(--blue); font-size: 1.55rem; line-height: 1.15; }
.pastor-impact-card > p:not(.pastor-card-kicker) { margin-top: 1rem; color: rgba(45,49,146,0.68); font-size: 0.9rem; line-height: 1.78; }
.pastor-impact-card a { margin-top: 1.5rem; color: var(--blue); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }

.pastor-values { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(4rem, 8vw, 9rem); background: #fff; padding-top: 135px; padding-bottom: 135px; }
.pastor-values-heading > p:last-child { max-width: 430px; margin-top: 1.5rem; color: rgba(45,49,146,0.7); line-height: 1.8; }
.pastor-values-list > div { display: grid; grid-template-columns: 48px 1fr 1fr; align-items: center; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid rgba(45,49,146,0.15); }
.pastor-values-list h3 { color: var(--blue); font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.pastor-values-list p { color: rgba(45,49,146,0.62); font-size: 0.85rem; }

.pastor-family { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 9vw, 10rem); align-items: center; background: #f5f5fb; padding-top: 130px; padding-bottom: 130px; }
.pastor-family-copy > p:not(.section-label) { margin-top: 1rem; color: rgba(45,49,146,0.7); line-height: 1.82; }
.pastor-family-copy h2 { margin-bottom: 1.6rem; }
.pastor-family-quote { padding: clamp(2rem, 5vw, 4.5rem); background: var(--blue); border-top: 5px solid var(--red); color: var(--white); }
.pastor-family-quote p { font-size: clamp(1.35rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.35; }
.pastor-family-quote cite { display: block; margin-top: 2rem; color: #ff7d7d; font-size: 0.68rem; font-style: normal; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.pastor-scripture { padding-top: 150px; padding-bottom: 150px; background: var(--blue); color: var(--white); text-align: center; }
.pastor-scripture-inner { max-width: 1000px; margin: 0 auto; }
.pastor-scripture-label { margin-bottom: 2.2rem; color: #ff7979; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.pastor-scripture blockquote { font-size: clamp(2rem, 4.2vw, 4.2rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1.13; }
.pastor-scripture cite { display: block; margin-top: 1.8rem; color: var(--white); font: 600 0.8rem 'Geist Mono', monospace; }
.pastor-scripture cite + p { max-width: 660px; margin: 2rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.17); color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; }

.pastor-closing { min-height: 650px; display: grid; place-items: center; position: relative; overflow: hidden; text-align: center; background: linear-gradient(rgba(14,17,72,0.9), rgba(14,17,72,0.93)), url('../asset/image/Pastor Paul.JPG') center 34%/cover no-repeat; }
.pastor-closing-inner { max-width: 900px; }
.pastor-closing-inner > p:not(.section-label) { max-width: 720px; margin: 1.8rem auto 0; color: rgba(255,255,255,0.7); line-height: 1.8; }
.pastor-closing-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.3rem; }
#pastor .pastor-profile-button { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.8rem; }
#pastor .pastor-profile-button span { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
#pastor .pastor-profile-button:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
  .pastor-hero { width: 100%; min-height: auto; grid-template-columns: minmax(0, 1fr); padding-left: 0; }
  .pastor-hero-copy { max-width: none; padding: 5rem 7%; }
  .pastor-hero-portrait { min-height: 72dvh; }
  .pastor-opening, .pastor-education, .pastor-city, .pastor-family { grid-template-columns: 1fr; }
  .pastor-journey, .pastor-values { grid-template-columns: 1fr; }
  .pastor-journey-head { position: static; }
  .pastor-city-year { text-align: center; }
  .pastor-philosophy-head { grid-template-columns: 1fr; gap: 2rem; }
  .pastor-beliefs { grid-template-columns: repeat(2, 1fr); }
  .pastor-beliefs article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(45,49,146,0.16); }
  .pastor-beliefs article:nth-child(4) { border-top: 1px solid rgba(45,49,146,0.16); }
  .pastor-impact-grid { grid-template-columns: 1fr; }
  .pastor-impact-card { min-height: 390px; }
}

@media (max-width: 650px) {
  .pastor-hero-copy { padding: 4rem 6%; }
  .pastor-hero h1 { max-width: 100%; font-size: clamp(3.1rem, 14vw, 4.5rem); overflow-wrap: anywhere; }
  .pastor-hero h1 span { display: block; }
  .pastor-hero-portrait { min-height: 62dvh; }
  .pastor-opening, .pastor-journey, .pastor-education, .pastor-city, .pastor-philosophy,
  .pastor-impact, .pastor-values, .pastor-family, .pastor-scripture, .pastor-closing { padding-left: 6%; padding-right: 6%; padding-top: 90px; padding-bottom: 90px; }
  .pastor-opening { gap: 2rem; }
  .pastor-timeline::before { left: 37px; }
  .pastor-timeline-item { grid-template-columns: 75px 1fr; gap: 1.2rem; padding-bottom: 3.5rem; }
  .pastor-timeline-marker { width: 75px; height: 75px; }
  .pastor-timeline-marker span { font-size: 0.58rem; }
  .pastor-education-media { min-height: 520px; }
  .pastor-facts { grid-template-columns: 1fr; }
  .pastor-facts div + div { padding-left: 0; border-left: 0; }
  .pastor-city { gap: 3rem; }
  .pastor-city-year { font-size: 31vw; }
  .pastor-beliefs { grid-template-columns: 1fr; }
  .pastor-beliefs article, .pastor-beliefs article + article { min-height: auto; padding: 2rem 0; border-left: 0; border-top: 1px solid rgba(45,49,146,0.16); }
  .pastor-beliefs h3 { margin-top: 2rem; }
  .pastor-values-list > div { grid-template-columns: 34px 1fr; }
  .pastor-values-list p { grid-column: 2; }
  .pastor-scripture blockquote { font-size: clamp(1.75rem, 8vw, 2.7rem); }
  .pastor-closing-actions { align-items: stretch; flex-direction: column; }
}
