/* ============================================================
   The Church of Nature — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* === CSS Variables === */
:root {
  --forest:        #2C4A1E;
  --forest-dark:   #1a2d12;
  --bark:          #5C3D2E;
  --amber:         #C8943A;
  --amber-light:   #e0ad5a;
  --cream:         #F5F0E8;
  --cream-dark:    #ece5d5;
  --sage:          #8FB573;
  --sage-dark:     #6a9550;
  --text-dark:     #1e2d14;
  --text-body:     #3a3a3a;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Lato', 'Helvetica Neue', sans-serif;
  --transition:    all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius:        10px;
  --shadow:        0 8px 40px rgba(0,0,0,0.12);
  --shadow-heavy:  0 16px 60px rgba(0,0,0,0.22);
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-sans); }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); margin-bottom: 0.45em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); margin-bottom: 0.35em; }
p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

/* === Skip-to-content link (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--forest);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* === Contact form feedback message === */
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.form-feedback.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-feedback.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === Utilities === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.text-center { text-align: center; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}
.section,
.parallax-window,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}
.divider {
  width: 55px;
  height: 2px;
  background: var(--amber);
  margin: 18px auto 0;
}
.divider-left { margin-left: 0; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,148,58,0.40);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: white;
}
.btn-forest {
  background: var(--forest);
  color: var(--cream);
}
.btn-forest:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,74,30,0.38);
  color: var(--cream);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.d1 { transition-delay: 0.15s; }
.reveal.d2 { transition-delay: 0.30s; }
.reveal.d3 { transition-delay: 0.45s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(to bottom, rgba(12,22,6,0.65), transparent);
  transition: background 0.45s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(22, 40, 14, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 11px 44px;
  box-shadow: 0 2px 28px rgba(0,0,0,0.32);
}

/* Logo circle */
.nav-brand { flex-shrink: 0; }
.nav-logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.nav-logo-circle img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.79rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245,240,232,0.88);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Donate button in nav */
.btn-donate-nav {
  background: var(--amber);
  color: white !important;
  padding: 8px 22px !important;
  border-radius: 24px;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-donate-nav::after { display: none !important; }
.btn-donate-nav:hover {
  background: var(--amber-light) !important;
  color: white !important;
  box-shadow: 0 5px 18px rgba(200,148,58,0.45);
  transform: translateY(-1px);
}

/* Header email signup pill */
.header-signup-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 26px;
  padding: 5px 5px 5px 16px;
  backdrop-filter: blur(6px);
  transition: border-color 0.35s ease, background 0.35s ease;
}
.header-signup-form:focus-within {
  border-color: var(--amber);
  background: rgba(255,255,255,0.13);
}
.header-signup-form input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  width: 155px;
  transition: width 0.3s ease;
}
.header-signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.52);
}
.header-signup-form input[type="email"]:focus { width: 185px; }
.header-signup-form button {
  background: var(--sage-dark);
  color: white;
  border: none;
  border-radius: 22px;
  padding: 7px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.header-signup-form button:hover { background: var(--forest); }
.hp-field { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,28,8,0.97);
  backdrop-filter: blur(14px);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 2px;
  transition: color 0.3s;
}
.mobile-menu-overlay a:hover { color: var(--amber); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.mobile-menu-close:hover { color: var(--amber); }
.mobile-signup {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mobile-signup input[type="email"] {
  padding: 12px 22px;
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.95rem;
  outline: none;
  width: 260px;
  text-align: center;
}
.mobile-signup input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.mobile-signup button {
  background: var(--amber);
  color: white;
  border: none;
  border-radius: 28px;
  padding: 12px 34px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -18% -6%;
  background-image: url('Images/TheChurchofNature.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,5,0.42) 0%,
    rgba(10,20,5,0.58) 55%,
    rgba(10,20,5,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-wrap {
  margin-bottom: 26px;
  animation: fadeInDown 1.4s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-logo-halo {
  position: relative;
  isolation: isolate;
  background: radial-gradient(
    circle at center,
    rgba(245,240,232,0.92) 0%,
    rgba(222,236,195,0.72) 34%,
    rgba(245,240,232,0.34) 56%,
    rgba(255,214,138,0.12) 70%,
    transparent 82%
  );
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
  box-shadow:
    0 0 34px rgba(245, 240, 232, 0.30),
    0 0 84px rgba(198, 232, 160, 0.22),
    0 0 128px rgba(200, 148, 58, 0.16);
  animation: haloPulse 7.5s ease-in-out infinite;
}
.hero-logo-halo::before,
.hero-logo-halo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero-logo-halo::before {
  inset: -11%;
  background:
    conic-gradient(
      from 0deg,
      rgba(198, 232, 160, 0.18),
      rgba(255, 216, 148, 0.42),
      rgba(143, 181, 115, 0.14),
      rgba(245, 240, 232, 0.05),
      rgba(198, 232, 160, 0.18)
    );
  filter: blur(18px);
  opacity: 0.92;
  animation: auraSpin 18s linear infinite, auraBreath 8s ease-in-out infinite;
}
.hero-logo-halo::after {
  inset: -18%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,240,232,0.18) 0%, rgba(245,240,232,0) 52%),
    radial-gradient(circle at 20% 35%, rgba(198,232,160,0.38) 0%, rgba(198,232,160,0) 24%),
    radial-gradient(circle at 75% 24%, rgba(255,216,148,0.32) 0%, rgba(255,216,148,0) 18%),
    radial-gradient(circle at 70% 76%, rgba(143,181,115,0.28) 0%, rgba(143,181,115,0) 20%);
  filter: blur(10px);
  opacity: 0.82;
  animation: auraDrift 10s ease-in-out infinite alternate;
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: clamp(240px, 24vw, 300px);
  height: auto;
  border-radius: 50%;
  filter: saturate(1.03) brightness(1.01);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 1.5px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.38);
  margin-bottom: 16px;
  animation: fadeInUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.30s both;
  line-height: 1.3;
}
.hero-tagline em {
  font-style: italic;
  color: #c6e8a0;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.78);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 16px;
  animation: fadeInUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}
.hero-presence {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(245,240,232,0.9);
  font-size: 0.9rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  line-height: 1.7;
  animation: fadeInUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.66s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.78s both;
}
.scroll-down {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.4s ease infinite 2s;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.scroll-down:hover { opacity: 1; }
.scroll-down svg {
  width: 28px; height: 28px;
  stroke: white; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 52vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: -16% -6%;
  background-image: url('Images/TheChurchofNature.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,5,0.60);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
.page-hero-content h1 {
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.38);
  animation: fadeInUp 1.2s ease both;
}
.page-hero-content .section-label { color: var(--amber-light); }

/* ============================================================
   PARALLAX WINDOW SECTIONS
   ============================================================ */
.parallax-window {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pw-bg {
  position: absolute;
  inset: -18% -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.pw-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,20,5,0.54);
}
.pw-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 70px 30px;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section .pw-content {
  max-width: 720px;
  padding: 80px 30px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--amber);
  line-height: 0.35;
  display: block;
  margin-bottom: 6px;
  opacity: 0.65;
  user-select: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.45;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  margin-bottom: 22px;
}
.quote-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.section       { padding: 92px 0; }
.section-sm    { padding: 58px 0; }
.section-cream { background: var(--cream); }
.section-white { background: #ffffff; }
.section-forest {
  background: var(--forest);
  color: var(--cream);
}
.section-forest h2,
.section-forest h3,
.section-forest h4 { color: var(--cream); }
.section-forest .section-label { color: var(--amber-light); }
.section-dark {
  background: var(--forest-dark);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3 { color: var(--cream); }
.section-dark .section-label { color: var(--amber-light); }

/* Lead / italic intro text */
.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  font-weight: 300;
  line-height: 1.82;
  font-style: italic;
  color: var(--forest);
}
.section-forest .lead,
.section-dark .lead { color: rgba(245,240,232,0.85); }

/* Two-column grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-heavy);
}
.card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.card-body { padding: 30px; }
.card-body h3 { margin-bottom: 10px; }

/* Feature icons */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 860px) {
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .features-grid-4 { grid-template-columns: 1fr; }
}
.feature-item { padding: 28px 16px; }
.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}
.feature-item h3 { margin-bottom: 9px; font-size: 1.25rem; }
.feature-item p { font-size: 0.94rem; opacity: 0.82; }

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(10,20,5,0.78));
  color: white;
  font-size: 0.83rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Pastor section */
.pastor-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.pastor-img-wrap { position: relative; }
.pastor-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-heavy);
  position: relative;
  z-index: 1;
}
.pastor-img-accent {
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 2px solid var(--amber);
  border-radius: 14px;
  z-index: 0;
}

/* ============================================================
   BELIEFS PAGE
   ============================================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.belief-card {
  background: white;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--amber);
  transition: var(--transition);
}
.belief-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-heavy);
  border-left-color: var(--forest);
}
.belief-num {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}
.belief-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.belief-card p { font-size: 0.95rem; margin: 0; }
.methods-list {
  margin: 18px 0 0;
  padding-left: 20px;
}
.methods-list li {
  margin-bottom: 10px;
  color: var(--text-body);
}
.methods-list-tight li {
  margin-bottom: 8px;
}

/* ============================================================
   EMAIL SIGNUP SECTION
   ============================================================ */
.signup-section {
  background: var(--forest);
  padding: 86px 40px;
  text-align: center;
}
.signup-section h2 { color: var(--cream); margin-bottom: 14px; }
.signup-section p {
  color: rgba(245,240,232,0.76);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1rem;
}
.signup-form-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 490px;
  margin: 0 auto;
}
.signup-form-wrap input[type="email"] {
  flex: 1;
  padding: 15px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.18);
  border-right: none;
  border-radius: 30px 0 0 30px;
  background: rgba(255,255,255,0.09);
  color: white;
  outline: none;
  transition: var(--transition);
}
.signup-form-wrap input[type="email"]::placeholder { color: rgba(255,255,255,0.48); }
.signup-form-wrap input[type="email"]:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.14);
}
.signup-form-wrap button {
  padding: 15px 30px;
  background: var(--amber);
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.signup-form-wrap button:hover { background: var(--amber-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-icon {
  font-size: 1.55rem;
  min-width: 42px;
  text-align: center;
  color: var(--amber);
  margin-top: 2px;
}
.contact-info-block h4 {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 6px;
}
.contact-info-block p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
  margin: 0;
}
.contact-form-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 46px;
  box-shadow: var(--shadow-heavy);
}
.contact-form-card h3 {
  margin-bottom: 28px;
  font-size: 1.55rem;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(44,74,30,0.18);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-body);
  background: white;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest-dark);
  color: rgba(245,240,232,0.75);
  padding: 64px 44px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo-wrap {
  background: var(--cream);
  border-radius: 8px;
  display: inline-block;
  padding: 8px 10px;
  margin-bottom: 18px;
}
.footer-logo-wrap img {
  height: 68px;
  width: auto;
  display: block;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(245,240,232,0.65);
  margin-bottom: 0;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.65);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.80rem;
  color: rgba(245,240,232,0.38);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes haloPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 42px rgba(245, 240, 232, 0.34),
      0 0 100px rgba(198, 232, 160, 0.24),
      0 0 150px rgba(200, 148, 58, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow:
      0 0 56px rgba(245, 240, 232, 0.48),
      0 0 132px rgba(198, 232, 160, 0.34),
      0 0 190px rgba(200, 148, 58, 0.24);
  }
}
@keyframes auraSpin {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(360deg) scale(1.05); }
}
@keyframes auraBreath {
  0%, 100% { opacity: 0.74; }
  50%      { opacity: 1; }
}
@keyframes auraDrift {
  0% {
    transform: translate3d(-8px, -4px, 0) scale(0.98);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(10px, 8px, 0) scale(1.08);
    opacity: 0.92;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .navbar { padding: 15px 22px; }
  .navbar.scrolled { padding: 11px 22px; }
  .nav-links, .header-signup-form { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 38px; }
  .pastor-section { grid-template-columns: 1fr; }
  .pastor-img { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .container { padding: 0 22px; }
}
@media (max-width: 620px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-logo { width: 200px; }
  .hero-logo-halo { padding: 16px; }
  .hero-presence { font-size: 0.78rem; letter-spacing: 0.9px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .signup-form-wrap { flex-direction: column; }
  .signup-form-wrap input[type="email"] {
    border-right: 2px solid rgba(255,255,255,0.18);
    border-radius: 30px;
  }
  .signup-form-wrap button { border-radius: 30px; }
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 62px 0; }
}
@media (max-width: 420px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING PARTICLES (Hero canvas)
   ============================================================ */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ============================================================
   IMAGE LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox-overlay.open {
  display: flex;
  opacity: 1;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.55);
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}
.lightbox-overlay.open img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
  z-index: 1;
}
.lightbox-close:hover {
  color: white;
  transform: scale(1.15);
}
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.5);
  padding: 10px 28px;
  border-radius: 30px;
  user-select: none;
}

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(200,148,58,0.35);
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#backToTop:hover {
  background: var(--amber-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(200,148,58,0.45);
}
#backToTop svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 620px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  #backToTop svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-halo,
  .hero-logo-halo::before,
  .hero-logo-halo::after {
    animation: none;
  }
}

/* ============================================================
   DONATION MODAL
   ============================================================ */
.donate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.donate-modal.open {
  display: flex;
  opacity: 1;
}
.donate-modal-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 42px 42px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.donate-modal.open .donate-modal-card {
  transform: scale(1) translateY(0);
}
.donate-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.donate-modal-close:hover { opacity: 1; }
.donate-modal-card .section-label { margin-bottom: 6px; }
.donate-modal-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 10px;
}
.donate-modal-card > p {
  font-size: 0.92rem;
  color: var(--text-body);
  opacity: 0.75;
  margin-bottom: 28px;
}
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.donate-amount-btn {
  padding: 12px 8px;
  border: 2px solid rgba(44,74,30,0.15);
  border-radius: 10px;
  background: white;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  transition: all 0.25s ease;
}
.donate-amount-btn:hover,
.donate-amount-btn.active {
  border-color: var(--amber);
  background: var(--amber);
  color: white;
}
.donate-custom {
  margin-bottom: 24px;
}
.donate-custom input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(44,74,30,0.15);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  background: white;
}
.donate-custom input:focus {
  border-color: var(--amber);
}
.donate-custom input::placeholder {
  color: rgba(0,0,0,0.25);
}
.donate-paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: #0070ba;
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
  margin-bottom: 12px;
}
.donate-paypal-btn:hover {
  background: #005c9e;
  transform: translateY(-2px);
}
.donate-paypal-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.donate-venmo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: #3d95ce;
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}
.donate-venmo-btn:hover {
  background: #2d7db5;
  transform: translateY(-2px);
}
.donate-venmo-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.donate-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: rgba(0,0,0,0.25);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.donate-divider::before,
.donate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.donate-note {
  font-size: 0.78rem;
  color: var(--text-body);
  opacity: 0.5;
  margin-top: 16px;
}

@media (max-width: 480px) {
  .donate-modal-card { padding: 36px 24px 30px; }
  .donate-amounts { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .donate-amount-btn { font-size: 1rem; padding: 10px 6px; }
}

/* === Screen Reader Only / Visually Hidden (Accessibility) === */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* === Toast Notification (Email Success / CRO) === */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: white;
  color: var(--text-dark);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10000;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.toast-notification.toast-show {
  transform: translateY(0);
  opacity: 1;
}
.toast-notification.toast-fade-out {
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.toast-message {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
}
.toast-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-body);
  opacity: 0.5;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.toast-close:hover {
  opacity: 0.9;
  color: var(--forest);
}
