/* ============================================================
   HE IS HOLY CHURCH — STYLESHEET
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07830;
  --navy:        #1A2744;
  --navy-light:  #243260;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE0;
  --white:       #FFFFFF;
  --text:        #2C2C2C;
  --text-light:  #6B6B6B;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-display:'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h4, h5 { font-family: var(--font-sans); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.gold { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SCROLL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-cross {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(26,39,68,0.98);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
}
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,39,68,0.82) 0%,
    rgba(26,39,68,0.55) 50%,
    rgba(0,0,0,0.4) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(201,168,76,0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   SERVICE TIMES
   ============================================================ */
.section-services {
  background: var(--cream);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.service-card.featured .service-time { color: var(--gold-light); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.75); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-card.featured::before { opacity: 1; }
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-time {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: letter-spacing 0.3s;
}
.service-link:hover { letter-spacing: 0.12em; }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 28px;
  line-height: 1.15;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.stats-row {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}
.about-quote-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.quote-ref {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ============================================================
   MINISTRIES
   ============================================================ */
.section-ministries {
  padding: 100px 0;
  background: var(--cream);
}
.section-ministries h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}
.ministries-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 60px;
  font-size: 1rem;
}
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ministry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.ministry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ministry-card:hover::after { opacity: 1; }
.ministry-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.ministry-icon svg { width: 26px; height: 26px; }
.ministry-card:hover .ministry-icon {
  background: var(--navy);
  color: var(--gold-light);
}
.ministry-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.ministry-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ministry-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: letter-spacing 0.3s, color 0.3s;
}
.ministry-link:hover {
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

/* ============================================================
   LIFE BANNER (PARALLAX)
   ============================================================ */
.section-life-banner {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.life-parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-image: url('images/worship-service.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.life-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.88), rgba(0,0,0,0.6));
}
.life-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.life-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.life-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   LIFE CARDS
   ============================================================ */
.section-life-cards {
  padding: 80px 0;
  background: var(--white);
}
.life-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.life-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
}
.life-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.life-card-img {
  height: 220px;
  overflow: hidden;
}
.life-card-img img {
  transition: transform 0.6s ease;
}
.life-card:hover .life-card-img img {
  transform: scale(1.06);
}
.life-card-body {
  padding: 28px;
}
.life-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.life-card-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.life-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   OUTREACH
   ============================================================ */
.section-outreach {
  padding: 100px 0;
  background: var(--cream);
}
.outreach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outreach-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}
.outreach-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.outreach-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.outreach-images { display: flex; flex-direction: column; gap: 16px; }
.outreach-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-lg);
}
.outreach-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.outreach-img-grid img {
  border-radius: var(--radius);
  height: 160px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.outreach-img-grid img:hover { transform: scale(1.03); }

/* ============================================================
   CHILDREN'S MINISTRY
   ============================================================ */
.section-kids {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.kids-bg {
  position: absolute;
  inset: 0;
}
.kids-bg img { width: 100%; height: 100%; object-fit: cover; }
.kids-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,39,68,0.92) 50%, rgba(26,39,68,0.5) 100%);
}
.kids-content {
  position: relative;
  z-index: 2;
}
.kids-card {
  max-width: 520px;
  color: var(--white);
}
.kids-card .section-label { color: var(--gold-light); }
.kids-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.kids-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ============================================================
   CONNECT CARDS
   ============================================================ */
.section-connect {
  padding: 80px 0;
  background: var(--white);
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.connect-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.connect-card.featured-connect {
  background: var(--navy);
  color: var(--white);
}
.connect-card.featured-connect h4 { color: var(--white); }
.connect-card.featured-connect p { color: rgba(255,255,255,0.75); }
.connect-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.12);
  border-radius: 16px;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}
.connect-card:hover .connect-icon {
  background: rgba(201,168,76,0.22);
  transform: scale(1.08);
}
.connect-card.featured-connect .connect-icon {
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
}
.connect-icon svg {
  width: 32px;
  height: 32px;
}
.connect-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.connect-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
  border: 1px solid rgba(201,168,76,0.2);
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: var(--white);
}
.map-pin {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}
.map-pin svg {
  width: 28px;
  height: 28px;
}
.map-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   DECORATIVE DIVIDERS
   ============================================================ */
.section-services::before,
.section-ministries::before,
.section-outreach::before,
.section-connect::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 0;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .outreach-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-quote-card { left: 0; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid,
  .ministries-grid,
  .life-cards-grid,
  .connect-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
  .stats-row { gap: 24px; }
  .outreach-img-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hide-mobile { display: none; }
  .life-parallax-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .outreach-btns { flex-direction: column; }
  .outreach-btns .btn { width: auto; }
}

/* ============================================================
   GOLD SHIMMER ANIMATION ON HEADINGS
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   SUBTLE GLOW ON FEATURED CARDS
   ============================================================ */
.service-card.featured {
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

/* ============================================================
   SMOOTH SECTION TRANSITIONS
   ============================================================ */
section {
  position: relative;
}

/* ============================================================
   SCRIPTURE BANNER
   ============================================================ */
.section-scripture {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.section-scripture::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}
.section-scripture::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.scripture-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.scripture-cross {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  opacity: 0.7;
}
.scripture-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.scripture-quote cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ============================================================
   ADDITIONAL POLISH — SECTION SPACING & DIVIDERS
   ============================================================ */
.section-ministries .section-label,
.section-about .section-label {
  display: block;
}

/* Gold accent line under section labels */
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
  border-radius: 1px;
}
.section-label.light::after {
  background: var(--gold-light);
}
.section-ministries .section-label,
.section-ministries h2 {
  text-align: center;
}
.section-ministries .section-label::after {
  margin: 8px auto 0;
}

/* Subtle texture overlay on cream sections */
.section-services,
.section-ministries,
.section-outreach,
.section-connect {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Hover glow on gold buttons */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn-gold:hover::after {
  width: 300px;
  height: 300px;
}

/* Animated underline on nav logo */
.nav-logo:hover .logo-text {
  color: var(--gold-light);
  transition: color 0.3s;
}

/* Section number accent */
.section-about,
.section-outreach,
.section-contact {
  position: relative;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}
