/* =========================================================
   Woodhaven Congregation of Jehovah's Witnesses
   Main Stylesheet
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-mid:   #243055;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale:  #f7f0dc;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --gray-100:   #f4f4f2;
  --gray-200:   #e8e8e4;
  --gray-400:   #a0a09a;
  --gray-600:   #666660;
  --gray-800:   #333330;
  --text:       #2a2a28;
  --text-light: #5a5a56;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(26,39,68,.08);
  --shadow-md:  0 6px 24px rgba(26,39,68,.12);
  --shadow-lg:  0 16px 48px rgba(26,39,68,.16);

  --radius:     6px;
  --radius-lg:  12px;
  --transition: .25s ease;
  --max-w:      1180px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  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; }

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

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider-center { margin: 1.25rem auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: .55rem 1.4rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 1rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-brand:hover { color: inherit; }

.header-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.nav-list a {
  display: block;
  padding: .45rem .75rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--navy);
  background: var(--gold-pale);
}

.nav-cta {
  margin-left: 8px;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
}

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

/* Body offset for fixed header */
body { padding-top: 76px; }

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

.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand {}
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/img (9).jpg') center/cover no-repeat;
  opacity: .15;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  opacity: .85;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 560px; margin: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: .4; }

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/img (9).jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(17,27,51,.92) 0%,
    rgba(26,39,68,.75) 60%,
    rgba(26,39,68,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 64px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: .5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   MISSION & VISION HIGHLIGHT (Homepage)
   ========================================================= */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mv-card {
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.mv-card-mission { background: var(--navy); }
.mv-card-vision  { background: var(--navy-mid); }
.mv-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,.06);
}
.mv-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mv-icon svg { color: var(--gold); }
.mv-card h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 1rem; }
.mv-card p  { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; }
.mv-card .btn { margin-top: 2rem; }

/* =========================================================
   INTRO SECTION
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
}
.intro-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.intro-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.5rem;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .04em;
}

/* =========================================================
   PROGRAMS CARDS
   ========================================================= */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.program-card-body { padding: 28px; }
.program-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.program-card-icon svg { color: var(--gold); }
.program-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.program-card p  { font-size: .9rem; line-height: 1.7; }
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.25rem;
}
.program-card-link:hover { color: var(--gold); gap: 10px; }

/* =========================================================
   IMPACT BANNER
   ========================================================= */
.impact-banner {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.impact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/img (8).jpg') center/cover no-repeat;
  opacity: .08;
}
.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  text-align: center;
}
.impact-item {}
.impact-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.impact-label {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* =========================================================
   QUOTE / VERSE BLOCK
   ========================================================= */
.verse-block {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 40px 48px;
  max-width: 780px;
  margin: 0 auto;
}
.verse-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.verse-ref {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,.05);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,.05);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CONTENT SECTIONS (inner pages)
   ========================================================= */
.content-section {
  padding: 80px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-text h2 { margin-bottom: 1rem; }
.content-text h3 { margin-bottom: .75rem; font-size: 1.25rem; }
.content-text .divider { margin-bottom: 1.5rem; }
.content-text p  { margin-bottom: 1.25rem; }

/* Feature list */
.feature-list { margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
  color: var(--text-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* Card grid (generic) */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.info-card-icon svg { color: var(--gold); }
.info-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.info-card p  { font-size: .88rem; line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: .35;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.timeline-item p  { font-size: .9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* Events */
.event-card {
  display: flex;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.event-date-box {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.event-date-day  { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-date-month{ font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.event-body      {}
.event-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.event-body h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.event-meta {
  font-size: .82rem;
  color: var(--gray-400);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.75rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--gold); }
.contact-detail-text {}
.contact-detail-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact-detail-value {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* Schedule block */
.schedule-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 2rem;
}
.schedule-block h4 { margin-bottom: 1.25rem; font-size: 1rem; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
  color: var(--text-light);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row strong { color: var(--navy); font-weight: 600; }

/* Resources */
.resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.resource-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.resource-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-icon svg { color: var(--gold); }
.resource-body { flex: 1; }
.resource-type {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.resource-body h4 { font-size: 1rem; margin-bottom: .25rem; }
.resource-body p  { font-size: .85rem; margin: 0; }

/* Leadership */
.leader-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold-pale);
}
.leader-name  { font-size: 1.1rem; margin-bottom: .25rem; }
.leader-role  { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.leader-bio   { font-size: .87rem; color: var(--text-light); margin-top: .75rem; }

/* Bg variations */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--off-white); }
.bg-gray    { background: var(--gray-100); }
.bg-navy    { background: var(--navy); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .impact-grid   { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .mv-grid     { grid-template-columns: 1fr; }
  .intro-grid  { grid-template-columns: 1fr; gap: 40px; }
  .content-grid{ grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .intro-image-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid-3  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle  { display: flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-list a { padding: .65rem 1rem; }
  .nav-cta { margin: 8px 0 0; text-align: center; }

  .section    { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .hero-content { max-width: 100%; }
  .mv-card  { padding: 48px 32px; }
  .footer-main  { grid-template-columns: 1fr; gap: 36px; }
  .programs-grid{ grid-template-columns: 1fr; }
  .card-grid-3  { grid-template-columns: 1fr; }
  .card-grid-2  { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .verse-block  { padding: 28px; }
  .verse-text   { font-size: 1.2rem; }
  .impact-grid  { grid-template-columns: repeat(2,1fr); }
  .intro-stats  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .impact-grid  { grid-template-columns: 1fr 1fr; }
  .event-card   { flex-direction: column; gap: 16px; }
  .resource-card{ flex-direction: column; text-align: center; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* Alerts */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert-success { background: #edf7ed; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error   { background: #fdecea; color: #c62828; border-left: 4px solid #ef5350; }
