/* ============================================================
   Walnut Grove Congregation of Jehovah's Witnesses
   Main Stylesheet
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy:        #1B2A4A;
  --navy-light:  #243560;
  --gold:        #C9A84C;
  --gold-light:  #E2C97A;
  --cream:       #F8F6F1;
  --white:       #FFFFFF;
  --text-dark:   #1E1E1E;
  --text-mid:    #4A4A4A;
  --text-light:  #767676;
  --border:      #E0DDD6;
  --shadow-sm:   0 2px 8px rgba(27,42,74,0.08);
  --shadow-md:   0 6px 24px rgba(27,42,74,0.12);
  --shadow-lg:   0 16px 48px rgba(27,42,74,0.16);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s ease;
  --max-width:   1200px;
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1.1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

/* Section header */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 0.9rem 0;
}
#site-header.scrolled {
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Navigation */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
#nav-menu a {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
#nav-menu a:hover,
#nav-menu a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.45rem 1rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Burger */
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}
#nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.is-active span:nth-child(2) { opacity: 0; }
#nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-brand img { width: 50px; height: 50px; object-fit: contain; opacity: 0.9; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}
.footer-contact { font-size: 0.9rem; line-height: 1.9; }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--white); }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 0; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-charity {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/image (1).jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { margin-top: 1.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.4rem; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/image (2).jpg') center/cover no-repeat;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(27,42,74,0.7) 60%, transparent 100%);
}
.home-hero .container { position: relative; z-index: 2; padding-top: 5rem; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.home-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.home-hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin-top: 0.25rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   HOMEPAGE – STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--gold);
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); opacity: 0.75; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============================================================
   HOMEPAGE – MISSION & VISION
   ============================================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mv-card-img { height: 240px; overflow: hidden; }
.mv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mv-card:hover .mv-card-img img { transform: scale(1.04); }
.mv-card-body { padding: 2rem; }
.mv-card-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.mv-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.mv-card-body h3 { margin-bottom: 0.75rem; }
.mv-card-body p { font-size: 0.97rem; }

/* ============================================================
   HOMEPAGE – ABOUT OVERVIEW
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split.reversed .about-img { order: 2; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.about-text h2 { margin-bottom: 1.1rem; }
.check-list { margin: 1.25rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--text-mid);
  font-size: 0.97rem;
}
.check-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ============================================================
   HOMEPAGE – PROGRAMS OVERVIEW
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 56px; height: 56px;
  background: rgba(27,42,74,0.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.program-icon svg { width: 28px; height: 28px; fill: var(--navy); }
.program-card h3 { margin-bottom: 0.65rem; font-size: 1.15rem; }
.program-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.program-card a { font-size: 0.88rem; font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.program-card a:hover { color: var(--gold); }

/* ============================================================
   HOMEPAGE – COMMUNITY IMPACT IMAGE ROW
   ============================================================ */
.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.impact-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.impact-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.impact-img:hover img { transform: scale(1.05); }

/* ============================================================
   HOMEPAGE – MEETINGS CTA
   ============================================================ */
.meetings-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.meetings-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/image (3).jpg') center/cover no-repeat;
  opacity: 0.06;
}
.meetings-cta .container { position: relative; z-index: 1; }
.meetings-cta h2 { color: var(--white); margin-bottom: 1rem; }
.meetings-cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.meeting-times {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.meeting-time-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  min-width: 200px;
  text-align: center;
}
.meeting-day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.meeting-time-val { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); }
.meeting-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ============================================================
   TESTIMONY / QUOTE
   ============================================================ */
.quote-section { background: var(--cream); padding: 5rem 0; }
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-source { font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   CONTENT PAGES – GENERIC PROSE
   ============================================================ */
.prose-section .prose-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.prose-body h3 { margin: 2rem 0 0.75rem; }
.prose-body p { font-size: 0.97rem; margin-bottom: 1.1rem; }
.prose-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--text-mid);
}
.prose-body ul li { padding: 0.25rem 0; font-size: 0.95rem; }
.prose-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.sidebar-card h4 { margin-bottom: 0.75rem; font-size: 1rem; }
.sidebar-card p { font-size: 0.88rem; margin-bottom: 0.75rem; }
.sidebar-card ul { padding-left: 1.25rem; list-style: disc; }
.sidebar-card ul li { font-size: 0.88rem; padding: 0.2rem 0; color: var(--text-mid); }
.quick-info-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.quick-info-list li:last-child { border-bottom: none; }
.qi-label { font-weight: 700; color: var(--navy); min-width: 90px; }

/* ============================================================
   CARDS – BELIEFS
   ============================================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.belief-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.belief-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.belief-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.belief-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.belief-card p { font-size: 0.92rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.faq-answer-inner { padding-bottom: 1.25rem; font-size: 0.95rem; color: var(--text-mid); }
.faq-item.open { border-color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-item h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-size: 0.93rem; color: var(--text-mid); }
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; }
.form-status.success { background: rgba(40,167,69,0.1); color: #1a6b2e; border: 1px solid rgba(40,167,69,0.25); }
.form-status.error { background: rgba(220,53,69,0.08); color: #8b1a26; border: 1px solid rgba(220,53,69,0.2); }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid { display: flex; flex-direction: column; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  align-items: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-date {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.event-month { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.event-day { font-family: var(--font-serif); font-size: 2rem; line-height: 1; }
.event-year { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.event-body h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.event-body p { font-size: 0.92rem; margin-bottom: 0.6rem; }
.event-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-light); }
.event-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   TEAM / LEADERSHIP
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-img { height: 200px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 1.5rem; }
.team-body h4 { margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.team-body p { font-size: 0.88rem; margin-top: 0.6rem; }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.resource-card-img { height: 160px; overflow: hidden; border-radius: var(--radius); }
.resource-card-img img { width: 100%; height: 100%; object-fit: cover; }
.resource-card h3 { font-size: 1.05rem; }
.resource-card p { font-size: 0.9rem; flex: 1; }
.resource-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: rgba(201,168,76,0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

/* ============================================================
   HISTORY TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-dot {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-year { font-size: 0.72rem; font-weight: 700; color: var(--gold); }
.timeline-content { padding-top: 0.5rem; }
.timeline-content h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.timeline-content p { font-size: 0.88rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .prose-section .prose-grid { grid-template-columns: 1fr; }
  .prose-sidebar { position: static; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-split.reversed .about-img { order: 0; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #nav-toggle { display: flex; }
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
  #nav-menu.nav-open { display: flex; }
  #nav-menu a { padding: 0.65rem 0.75rem; font-size: 0.95rem; }
  .header-inner { position: relative; }
  .programs-grid { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 72px 1fr; gap: 1.25rem; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-item .timeline-spacer { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 1.5rem; }
  .meeting-times { flex-direction: column; align-items: center; }
}
