/* ===== THEME VARIABLES ===== */
:root {
  --blue-900: #0b2545;
  --blue-800: #13315c;
  --blue-700: #1b4079;
  --blue-500: #3a6ea5;
  --blue-200: #c1d3e8;
  --olive-900: #3b4a1d;
  --olive-800: #47591d;
  --olive-700: #556b2f;
  --olive-500: #7a8b4c;
  --olive-200: #dbe2c4;
  --cream: #e9edd4;
  --ink: #0e1406;
  --ink-soft: #232d14;
  --muted: #4e5839;
  --surface: #ffffff;
  --surface-soft: #dce3c9;
  --border: #b9c3a0;
  --shadow: 0 10px 30px rgba(59, 74, 29, 0.10);
  --shadow-lg: 0 20px 50px rgba(59, 74, 29, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-theme="dark"] {
  --cream: #161c09;
  --ink: #eef2e6;
  --ink-soft: #c6ccb5;
  --muted: #8a9275;
  --surface: #1f2713;
  --surface-soft: #171e0a;
  --border: #2e3a1b;
  --blue-200: #a0b4cf;
  --olive-200: #d3dcb8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* ===== BASE ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 0.8rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue-700);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
[data-theme="dark"] .eyebrow { color: var(--blue-500); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem clamp(2rem, 5vw, 4rem);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-left { justify-self: start; display: flex; align-items: center; gap: 0.75rem; }
.logo-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive-700), var(--blue-700));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.logo-circle.sm { width: 34px; height: 34px; }
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.logo-img:hover {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-lg);
}
.logo-img.sm {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--olive-900);
}
[data-theme="dark"] .brand-name { color: var(--olive-200); }

.nav-right { justify-self: end; display: flex; align-items: center; gap: 0.9rem; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: 1.8rem; }

/* Box-style CTA button in the navbar */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--olive-700), var(--olive-900));
  color: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.3s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-700), var(--olive-800));
}
.nav-cta.active {
  background: var(--olive-900);
}

/* Outline-style donate button */
.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--olive-900);
  border: 1.5px solid var(--olive-900);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.nav-donate svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #e53935;
  transform-origin: center;
  animation: heartbeat 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(229, 57, 53, 0.55));
  transition: color 0.25s var(--ease);
}
.nav-donate:hover {
  background: var(--olive-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.nav-donate:hover svg {
  color: #ff8a80;
}
[data-theme="dark"] .nav-donate svg { color: #ff6b6b; }
[data-theme="dark"] .nav-donate:hover svg { color: #ffb3b0; }

@keyframes heartbeat {
  0% { transform: scale(1); }
  12% { transform: scale(1.4); }
  24% { transform: scale(1); }
  32% { transform: scale(1.3); }
  44%, 100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-donate svg { animation: none; }
}
[data-theme="dark"] .nav-donate {
  color: var(--olive-200);
  border-color: var(--olive-200);
}
[data-theme="dark"] .nav-donate:hover {
  background: var(--olive-200);
  color: var(--olive-900);
}
.nav-donate.active {
  background: var(--olive-900);
  color: #fff;
}
[data-theme="dark"] .nav-donate.active {
  background: var(--olive-200);
  color: var(--olive-900);
}

/* Ministry dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dropdown-chevron {
  transition: transform 0.25s var(--ease);
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron { transform: rotate(180deg); }

/* Invisible bridge so cursor doesn't lose hover when moving from trigger to menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -0.5rem;
  right: -0.5rem;
  height: 1.1rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dropdown-item:hover {
  background: var(--surface-soft);
  color: var(--olive-900);
}
[data-theme="dark"] .dropdown-item:hover { color: var(--olive-200); }
.dropdown-item.active {
  background: var(--surface-soft);
  color: var(--olive-900);
  font-weight: 600;
}
[data-theme="dark"] .dropdown-item.active { color: var(--olive-200); }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.mobile-menu-toggle:hover {
  background: var(--surface-soft);
  border-color: var(--olive-700);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 6, 0.55);
  backdrop-filter: blur(2px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1;
}
.mobile-menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--olive-900);
}
[data-theme="dark"] .mobile-menu-title { color: var(--olive-200); }
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.mobile-menu-close:hover { background: var(--surface-soft); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.15rem;
}
.mobile-link {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.mobile-link:hover,
.mobile-link.active {
  background: var(--surface-soft);
  color: var(--olive-900);
}
.mobile-link.active { font-weight: 700; }
[data-theme="dark"] .mobile-link.active,
[data-theme="dark"] .mobile-link:hover { color: var(--olive-200); }

.mobile-section {
  margin: 0.6rem 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
}
.mobile-section-title {
  padding: 0.4rem 1rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-700);
}
[data-theme="dark"] .mobile-section-title { color: var(--blue-500); }
.mobile-sublink {
  display: block;
  padding: 0.65rem 1rem 0.65rem 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.mobile-sublink:hover,
.mobile-sublink.active {
  background: var(--surface-soft);
  color: var(--olive-900);
}
.mobile-sublink.active { font-weight: 700; }
[data-theme="dark"] .mobile-sublink.active,
[data-theme="dark"] .mobile-sublink:hover { color: var(--olive-200); }

.mobile-link-cta {
  display: block;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, var(--olive-700), var(--olive-900));
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}
.mobile-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mobile-link-donate {
  display: block;
  margin: 0.6rem 0 0;
  padding: 0.95rem 1rem;
  background: transparent;
  color: var(--olive-900);
  border: 1.5px solid var(--olive-900);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}
.mobile-link-donate:hover {
  background: var(--olive-900);
  color: #fff;
  transform: translateY(-2px);
}
[data-theme="dark"] .mobile-link-donate {
  color: var(--olive-200);
  border-color: var(--olive-200);
}
[data-theme="dark"] .mobile-link-donate:hover {
  background: var(--olive-200);
  color: var(--olive-900);
}

/* Show hamburger, hide nav-cta/donate on mobile */
@media (max-width: 960px) {
  .mobile-menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-donate { display: none; }
}
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--olive-700);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--olive-900); }
.nav-link:hover::after { width: 100%; }
[data-theme="dark"] .nav-link:hover { color: var(--olive-200); }
.nav-link.active { color: var(--olive-900); font-weight: 600; }
.nav-link.active::after { width: 100%; }
[data-theme="dark"] .nav-link.active { color: var(--olive-200); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.theme-toggle {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.theme-toggle:hover { transform: rotate(15deg); border-color: var(--blue-500); }
.theme-toggle svg { position: absolute; transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.7); }
[data-theme="dark"] .icon-sun { opacity: 0; transform: rotate(90deg) scale(0.7); }
[data-theme="dark"] .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 6rem clamp(2rem, 6vw, 5rem) 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(14, 28, 18, 0.78), rgba(11, 25, 50, 0.7)),
    url('Asset/Hero%20section%20Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s var(--ease) both;
}
.hero .eyebrow,
[data-theme="dark"] .hero .eyebrow { color: #d9e6c8; }
.hero h1,
[data-theme="dark"] .hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 42%,
    #c8f0a8 47%,
    #76e040 50%,
    #c8f0a8 53%,
    #ffffff 58%,
    #ffffff 100%
  ) no-repeat;
  background-size: 300% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.5));
  animation: hero-text-sweep 5s ease-in-out infinite;
}
@keyframes hero-text-sweep {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.hero .subheading,
[data-theme="dark"] .hero .subheading {
  font-size: 1.2rem;
  color: #d9e6c8;
  font-weight: 500;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-paragraph {
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.hero-verse,
[data-theme="dark"] .hero-verse {
  margin: 0 auto 2rem;
  max-width: 560px;
  padding: 1.3rem 1.5rem;
  background: rgba(85, 107, 47, 0.92);
  border: 1px solid rgba(122, 139, 76, 0.65);
  border-radius: var(--radius);
  font-style: italic;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hero-verse cite,
[data-theme="dark"] .hero-verse cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: #dbe2c4;
  letter-spacing: 0.06em;
}
.hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--olive-700), var(--olive-900));
  color: #fff;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-700), var(--olive-800));
}
.btn-ghost {
  background: transparent;
  color: var(--olive-900);
  border-color: var(--olive-900);
  padding: 0.85rem 1.6rem;
}
[data-theme="dark"] .btn-ghost { color: var(--olive-200); border-color: var(--olive-200); }
.btn-ghost:hover { background: var(--olive-900); color: #fff; transform: translateY(-3px); }

/* Ghost button inside hero (light text on dark background image) */
.hero .btn-ghost,
[data-theme="dark"] .hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--olive-900);
  border-color: #fff;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.12;
}
.decor-ring {
  position: absolute;
  top: 10%; right: 8%;
  width: 280px; height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.decor-cross {
  position: absolute;
  bottom: 12%; left: 8%;
  color: rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite reverse;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem clamp(2rem, 6vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--olive-900);
  line-height: 1.15;
}
[data-theme="dark"] .section-head h2 { color: var(--olive-200); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.about-card {
  padding: 2rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-500);
}
.about-card h3 {
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: 0.6rem;
}
[data-theme="dark"] .about-card h3 { color: var(--blue-500); }

.story {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 1100px;
}
.story-lead {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  align-items: stretch;
}
.contact-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .contact-grid h4 { color: var(--blue-500); }

/* ===== FOOTER ===== */
.footer {
  background: var(--olive-900);
  color: #cfd7e4;
  padding: 4rem clamp(2rem, 6vw, 5rem) 1.5rem;
  margin-top: 4rem;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 2.8rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}
.footer-brand .brand-name {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
.footer-tag {
  font-size: 0.72rem;
  color: var(--blue-200);
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}
.footer-blurb {
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  max-width: 380px;
}
.footer-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.social:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 0.4rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.footer-contact svg {
  flex-shrink: 0;
  color: var(--blue-200);
  margin-top: 0.15rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
}
.footer-contact a:hover { color: #fff; }
.footer-services {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-200);
}
.services-label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue-200);
  margin-bottom: 0.25rem;
}
.services-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p { margin: 0; }
.footer-verse {
  font-style: italic;
  color: var(--blue-200);
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}
@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-blurb { max-width: 100%; }
}

/* ===== PAGE INTRO ===== */
.page-intro {
  padding: 5rem clamp(2rem, 6vw, 5rem) 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.page-intro .eyebrow { margin-bottom: 1.1rem; }
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--olive-900);
  margin-bottom: 1rem;
}
[data-theme="dark"] .page-intro h1 { color: var(--olive-200); }
.page-intro .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== NAV BRAND LINK ===== */
.nav-left {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s var(--ease);
}
.nav-left:hover { opacity: 0.85; }

/* ===== BELIEFS ===== */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.belief-item {
  padding: 1.4rem 1.3rem;
  background: var(--surface);
  border-left: 3px solid var(--olive-700);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.belief-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.belief-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--blue-700);
  margin-bottom: 0.4rem;
}
[data-theme="dark"] .belief-item h4 { color: var(--blue-500); }
.belief-item p { font-size: 0.92rem; margin: 0; }

/* ===== SERVICE TIMES ===== */
.service-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem auto 0;
  max-width: 1000px;
  align-items: stretch;
}
.service-card {
  padding: 1.8rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--olive-700);
  box-shadow: var(--shadow);
}
.service-card .day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .service-card .day { color: var(--blue-500); }
.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--olive-900);
  margin-bottom: 0.3rem;
}
[data-theme="dark"] .service-card h4 { color: var(--olive-200); }
.service-card .time {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== TIMELINE ===== */
.timeline {
  max-width: 820px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.6rem;
  align-items: start;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--olive-700);
  text-align: right;
  border-right: 2px solid var(--olive-700);
  padding: 0.2rem 1rem 0.2rem 0;
  line-height: 1.1;
}
[data-theme="dark"] .timeline-year { color: var(--olive-200); border-color: var(--olive-200); }
.timeline-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--olive-900);
  margin-bottom: 0.4rem;
}
[data-theme="dark"] .timeline-body h4 { color: var(--olive-200); }
.timeline-body p { font-size: 0.95rem; margin: 0; }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 640px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--olive-700);
  box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.18);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--olive-700), var(--olive-900));
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== CONTACT GRID DETAIL ===== */
.contact-grid p { margin: 0.2rem 0; }
.contact-grid .contact-card {
  padding: 1.6rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.contact-grid .contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
}

/* ===== NEXT STEPS ===== */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.next-card {
  padding: 1.8rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.next-card .arrow { margin-top: auto; }
.next-card:hover {
  transform: translateY(-5px);
  border-color: var(--olive-700);
  box-shadow: var(--shadow-lg);
}
.next-card h3 {
  font-size: 1.4rem;
  color: var(--olive-900);
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .next-card h3 { color: var(--olive-200); }
.next-card p { font-size: 0.92rem; margin: 0 0 0.8rem; }
.next-card .arrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue-700);
}
[data-theme="dark"] .next-card .arrow { color: var(--blue-500); }

/* ===== SUNDAY BANNER ===== */
.sunday-banner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  padding: 2.5rem 2.2rem;
  background: linear-gradient(135deg, var(--olive-700), var(--blue-700));
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  align-items: center;
}
.sunday-banner .banner-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.8rem;
  display: inline-block;
}
.sunday-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.sunday-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.55;
}
.banner-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,0.22);
}
.banner-meta .meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.3rem;
}
.banner-meta .meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.banner-meta .meta-link {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.banner-meta .meta-link:hover { border-color: #fff; transform: translateX(3px); }

/* ===== PASTOR CARD ===== */
.pastor-card {
  display: grid;
  grid-template-columns: 1.5fr minmax(280px, 1fr);
  gap: 2.5rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  max-width: 1100px;
  margin: 1rem auto 0;
}
.pastor-content { min-width: 0; }
.pastor-aside {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pastor-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}
.pastor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.pastor-card:hover .pastor-photo { transform: scale(1.03); }
.pastor-name-block { margin-bottom: 1.3rem; }
.pastor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--olive-900);
  line-height: 1.1;
  margin: 0 0 0.3rem;
}
[data-theme="dark"] .pastor-name { color: var(--olive-200); }
.pastor-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-700);
}
[data-theme="dark"] .pastor-title { color: var(--blue-500); }
.pastor-content p {
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.pastor-verse {
  margin: 1.4rem 0 1.6rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, rgba(85, 107, 47, 0.10), rgba(27, 64, 121, 0.06));
  border-left: 4px solid var(--olive-700);
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.55;
}
.pastor-verse cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
}
[data-theme="dark"] .pastor-verse cite { color: var(--blue-500); }
.pastor-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--olive-900);
  margin: 0 0 1.3rem;
}
[data-theme="dark"] .pastor-signature { color: var(--olive-200); }
.pastor-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pastor-actions .btn,
.pastor-actions .btn-facebook {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.3rem;
}
.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877f2;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}
.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #166fe5;
}

@media (max-width: 880px) {
  .pastor-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .pastor-aside {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ===== WELCOME QUOTE ===== */
.welcome-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.welcome-quote .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--olive-700);
  opacity: 0.35;
  margin-bottom: 0.4rem;
  display: block;
}
[data-theme="dark"] .welcome-quote .quote-mark { color: var(--olive-200); }
.welcome-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 auto 1.3rem;
  max-width: 640px;
}
.welcome-quote .quote-source {
  font-size: 0.78rem;
  color: var(--blue-700);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
[data-theme="dark"] .welcome-quote .quote-source { color: var(--blue-500); }

/* ===== MINISTRIES ===== */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.ministry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.ministry-item:hover {
  transform: translateY(-3px);
  border-color: var(--olive-700);
  box-shadow: var(--shadow);
}
.ministry-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--olive-700), var(--blue-700));
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ministry-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--olive-900);
  margin: 0 0 0.2rem;
  line-height: 1.15;
}
[data-theme="dark"] .ministry-body h4 { color: var(--olive-200); }
.ministry-body p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  align-items: stretch;
}
.stat-item {
  padding: 1.4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--olive-900);
  line-height: 1;
  margin-bottom: 0.4rem;
}
[data-theme="dark"] .stat-number { color: var(--olive-200); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue-700);
}
[data-theme="dark"] .stat-label { color: var(--blue-500); }

/* ===== CAMACOP ===== */
.camacop-section {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.5fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.camacop-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.camacop-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.camacop-text p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.camacop-text strong { color: var(--olive-900); }
[data-theme="dark"] .camacop-text strong { color: var(--olive-200); }
.camacop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--blue-700);
  padding-bottom: 0.18rem;
  margin-top: 0.4rem;
  transition: all 0.25s var(--ease);
}
.camacop-link:hover {
  color: var(--olive-900);
  border-color: var(--olive-900);
  gap: 0.7rem;
}
[data-theme="dark"] .camacop-link { color: var(--blue-500); border-color: var(--blue-500); }
[data-theme="dark"] .camacop-link:hover { color: var(--olive-200); border-color: var(--olive-200); }

/* Four-Fold Gospel cards */
.fourfold-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.fourfold-card {
  padding: 1.8rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 4px solid var(--ff-color, var(--olive-700));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.fourfold-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.fourfold-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  color: var(--ff-color, var(--olive-700));
  display: flex;
  align-items: center;
  justify-content: center;
}
.fourfold-icon svg,
.fourfold-icon img { width: 100%; height: 100%; object-fit: contain; }
.fourfold-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  text-align: center;
  margin: 0 0 0.2rem;
  color: var(--olive-900);
}
[data-theme="dark"] .fourfold-card h4 { color: var(--olive-200); }
.fourfold-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--ff-color, var(--blue-700));
}
.fourfold-verse {
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.55;
  padding: 0.75rem 0.85rem;
  background: var(--surface-soft);
  border-left: 3px solid var(--ff-color, var(--olive-700));
  border-radius: var(--radius-sm);
  margin: 0 0 1rem;
  color: var(--ink);
}
.fourfold-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.fourfold-cross   { --ff-color: #d32f2f; }
.fourfold-laver   { --ff-color: #1565c0; }
.fourfold-pitcher { --ff-color: #2e7d32; }
.fourfold-crown   { --ff-color: #f9a825; }

@media (max-width: 960px) {
  .camacop-section { grid-template-columns: 1fr; gap: 2rem; }
  .camacop-logo-wrap { max-width: 320px; margin: 0 auto; }
  .fourfold-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fourfold-grid { grid-template-columns: 1fr; }
}

/* ===== DONATION PAGE ===== */
.give-breakdown {
  max-width: 760px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.give-item {
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.give-item:hover {
  transform: translateX(4px);
  border-color: var(--olive-700);
}
.give-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  gap: 1rem;
}
.give-percent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive-900);
  line-height: 1;
}
[data-theme="dark"] .give-percent { color: var(--olive-200); }
.give-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.96rem;
}
.give-bar {
  width: 100%;
  height: 8px;
  background: var(--surface-soft);
  border-radius: 999px;
  overflow: hidden;
}
.give-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--olive-700), var(--blue-700));
  border-radius: 999px;
}

.give-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.give-method {
  padding: 1.8rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.give-method:hover {
  transform: translateY(-5px);
  border-color: var(--olive-700);
  box-shadow: var(--shadow-lg);
}
.give-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--olive-700), var(--blue-700));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.give-method h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--olive-900);
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .give-method h4 { color: var(--olive-200); }
.give-method p {
  font-size: 0.92rem;
  margin: 0 0 0.7rem;
  line-height: 1.6;
}
.give-method .give-detail {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--border);
}
[data-theme="dark"] .give-method .give-detail { color: var(--blue-500); }

@media (max-width: 900px) {
  .give-methods { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .give-methods { grid-template-columns: 1fr; }
  .give-item-header { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

/* ===== MAP ===== */
.map-wrap {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.map-address {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.map-address strong { color: var(--olive-900); }
[data-theme="dark"] .map-address strong { color: var(--olive-200); }

@media (max-width: 720px) {
  .map-wrap { height: 360px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Scroll-triggered fade-up for sections */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button shimmer sweep on hover */
.btn-primary,
.btn-facebook,
.nav-cta,
.form-submit {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-facebook::after,
.nav-cta::after,
.form-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-facebook:hover::after,
.nav-cta:hover::after,
.form-submit:hover::after {
  left: 160%;
}

/* Enhanced glow on primary CTAs */
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(85, 107, 47, 0.5);
}
.btn-facebook:hover {
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.45);
}

/* Smooth color transitions for cards */
.about-card,
.belief-item,
.fourfold-card,
.next-card,
.service-card,
.contact-card,
.give-method,
.stat-item,
.ministry-item,
.contact-grid .contact-card {
  will-change: transform;
}

/* Gentle pulse on the Sunday banner glow */
@keyframes banner-glow {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: var(--shadow-lg), 0 0 32px rgba(122, 139, 76, 0.25); }
}
.sunday-banner {
  animation: banner-glow 5s ease-in-out infinite;
}

/* Logo subtle entrance */
.nav-left .logo-img {
  animation: logo-in 0.7s var(--ease) both;
}
@keyframes logo-in {
  from { opacity: 0; transform: scale(0.7) rotate(-15deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-primary::after,
  .btn-facebook::after,
  .nav-cta::after,
  .form-submit::after {
    display: none;
  }
  .sunday-banner,
  .nav-left .logo-img,
  .nav-donate svg {
    animation: none;
  }
  .hero h1,
  [data-theme="dark"] .hero h1 {
    animation: none;
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    filter: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .navbar { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; }
  .brand-name { font-size: 1.05rem; }
  .hero { padding: 4rem 1.2rem 3rem; }
  .section { padding: 3.5rem 1.2rem; }
  .page-intro { padding: 3.5rem 1.2rem 1rem; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .timeline-year { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .sunday-banner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .banner-meta {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-top: 1.4rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
  }
  .beliefs-grid,
  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .about-grid,
  .contact-grid,
  .next-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .beliefs-grid,
  .ministry-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* Extra polish for small phones */
@media (max-width: 560px) {
  .navbar { padding: 0.7rem 1rem; }
  .logo-img { width: 40px; height: 40px; }
  .brand-name { font-size: 0.95rem; }
  .hero { padding: 3rem 1rem 2.5rem; min-height: auto; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-paragraph { font-size: 0.95rem; }
  .hero-verse { padding: 1rem 1.1rem; font-size: 0.92rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 2.8rem 1rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .page-intro { padding: 2.8rem 1rem 0.8rem; }
  .page-intro h1 { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .page-intro .lead { font-size: 0.97rem; }
  .pastor-card { padding: 1.3rem; gap: 1.3rem; }
  .pastor-name { font-size: clamp(1.5rem, 6vw, 1.8rem); }
  .pastor-content p { font-size: 0.94rem; }
  .pastor-verse { font-size: 1.05rem; padding: 1rem 1.1rem; }
  .welcome-quote { padding: 1.8rem 1.2rem; }
  .welcome-quote p { font-size: 1.2rem; }
  .sunday-banner { padding: 1.6rem 1.2rem; }
  .sunday-banner h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .map-wrap { height: 320px; }
  .footer { padding: 3rem 1rem 1rem; }
  .footer-title { font-size: 1.1rem; }
  .contact-form { padding: 1.4rem; }
  .timeline { gap: 1.2rem; }
  .timeline-item { grid-template-columns: 64px 1fr; gap: 0.8rem; }
  .timeline-year { font-size: 1.15rem; padding-right: 0.6rem; }
}
