/* ═══════════════════════════════════════════════════════════
   WORD OF LIFE COMMUNITY CHURCH — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --deep:    #162236;
  --mid:     #1e3a5f;
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --cream:   #faf7f2;
  --warm:    #f5efe6;
  --text:    #2c2c2c;
  --muted:   #6b7280;
  --white:   #ffffff;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --radius:  6px;
  --trans:   0.35s ease;
  --max:     1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.18; }
p { line-height: 1.8; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0.7rem 3rem;
}
nav.solid {
  background: var(--navy);
  padding: 0.85rem 3rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
}
.nav-logo-fallback {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--serif); font-size: 1.1rem;
  background: rgba(201,168,76,0.08);
}
.nav-brand-text strong { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.nav-brand-text span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.8rem;
  font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase;
  transition: color var(--trans); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content:''; position: absolute; bottom:0; left:0; right:0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 0.48rem 1.15rem; border-radius: 3px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: var(--serif); font-size: 2rem; font-weight: 300; transition: color var(--trans); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.5); font-size: 1.6rem; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative; padding: 9rem 3rem 5rem;
  background: var(--navy); overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2; transform: scale(1.05);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.6), rgba(13,27,42,0.9));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after { content:''; display:block; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); letter-spacing: 0.02em;
}
.page-hero p {
  color: rgba(255,255,255,0.55); font-style: italic; font-family: var(--serif);
  font-size: 1.05rem; margin-top: 0.8rem; font-weight: 300;
}

/* ── SECTIONS ── */
section { padding: 5.5rem 3rem; }
.inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.section-label::before { content:''; display:block; width: 26px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--navy); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-body { font-size: 0.97rem; line-height: 1.85; color: var(--muted); max-width: 580px; }
.section-body.wide { max-width: 720px; }
.section-body.light { color: rgba(255,255,255,0.62); }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-body { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 3px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background var(--trans), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 0.82rem 1.9rem; border-radius: 3px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background var(--trans), color var(--trans);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 3px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--deep); }
.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── DIVIDER ── */
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.gold-divider.center { margin: 1.5rem auto; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.card-img { aspect-ratio: 3/2; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.6rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex; font-size: 0.64rem; letter-spacing: 0.12em;
  text-transform: uppercase; background: rgba(201,168,76,0.12);
  color: var(--gold); padding: 0.22rem 0.55rem; border-radius: 2px;
  font-weight: 600; margin-bottom: 0.7rem;
}
.badge.dark { background: rgba(201,168,76,0.2); }

/* ── SERVICE BANNER ── */
.service-banner {
  background: var(--gold); padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.service-item {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--navy); font-size: 0.82rem; font-weight: 500;
}
.service-item svg { width: 17px; height: 17px; opacity: 0.65; }
.service-divider { width: 1px; height: 20px; background: rgba(13,27,42,0.2); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--gold); padding: 4rem 3rem; text-align: center; }
.cta-strip h2 { font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,2.7rem); color: var(--navy); margin-bottom: 0.6rem; font-weight: 400; }
.cta-strip p { color: rgba(13,27,42,0.6); font-size: 0.97rem; margin-bottom: 2rem; }

/* ── DARK SECTION ── */
.section-dark { background: var(--deep); }
.section-navy { background: var(--navy); }

/* ── FOOTER ── */
footer { background: #0a1520; padding: 4rem 3rem 2rem; color: rgba(255,255,255,0.5); }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.25rem; color: var(--white); font-weight: 400; margin-bottom: 0.15rem; }
.footer-brand .brand-sub { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; max-width: 270px; }
.footer-logo { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(201,168,76,0.4); object-fit: cover; margin-bottom: 1rem; display: block; }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.78rem;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; font-family: var(--sans); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.65rem; margin-bottom: 0.85rem; font-size: 0.82rem; align-items: flex-start; }
.footer-contact-item svg { min-width: 15px; margin-top: 3px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max); margin: 1.8rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.74rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── HERO (HOME) ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.78) 55%, rgba(13,27,42,0.96) 100%);
}
.hero-ray { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.05) 70%, transparent); pointer-events: none; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 820px; animation: heroFade 1.2s ease forwards; }
@keyframes heroFade { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content:''; display:block; width: 38px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; color: var(--white); margin-bottom: 0.4rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-verse { font-family: var(--serif); font-style: italic; font-size: clamp(1rem,2vw,1.25rem); color: rgba(255,255,255,0.55); margin: 1.2rem 0 2.5rem; font-weight: 300; }
.hero-verse span { color: var(--gold); font-style: normal; font-size: 0.78em; letter-spacing: 0.1em; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(7px); } }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5)); }

/* ── HOME: ABOUT INTRO ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); display: block; }
.about-img-accent { position: absolute; bottom: -22px; right: -22px; width: 110px; height: 110px; border: 1.5px solid var(--gold); border-radius: var(--radius); pointer-events: none; }
.about-quote { margin: 1.8rem 0; padding-left: 1.4rem; border-left: 2px solid var(--gold); font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--navy); line-height: 1.5; font-weight: 300; }
.pastor-sig { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.pastor-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.pastor-info strong { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.pastor-info span { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.03em; }

/* ── HOME: SERVICE TIMES ── */
.times-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1.5px solid rgba(201,168,76,0.18); border-radius: var(--radius);
  overflow: hidden; margin-top: 3rem;
}
.time-card { background: rgba(255,255,255,0.03); padding: 2.4rem 1.8rem; border-right: 1.5px solid rgba(201,168,76,0.1); transition: background var(--trans); }
.time-card:last-child { border-right: none; }
.time-card:hover { background: rgba(201,168,76,0.06); }
.time-day { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.time-name { font-family: var(--serif); font-size: 1.35rem; color: var(--white); margin-bottom: 0.35rem; }
.time-hour { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.time-desc { font-size: 0.78rem; color: rgba(255,255,255,0.32); margin-top: 0.75rem; line-height: 1.65; }

/* ── HOME: SERMON FEATURE ── */
.sermons-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; margin-top: 2.5rem; }
.sermon-featured { background: var(--navy); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.sermon-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; }
.sermon-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2;
  background: none; border: none; cursor: pointer;
}
.play-btn-inner {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.play-btn:hover .play-btn-inner { transform: scale(1.1); background: var(--gold-lt); }
.play-btn-inner svg { width: 22px; height: 22px; fill: var(--navy); margin-left: 3px; }
.sermon-info { padding: 1.7rem; }
.sermon-tag { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.sermon-title { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 0.4rem; }
.sermon-meta { font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.sermon-list { display: flex; flex-direction: column; gap: 0.6rem; }
.sermon-item {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--white); padding: 1.25rem 1.4rem; border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: background var(--trans), transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.sermon-item:hover { background: var(--cream); transform: translateX(4px); }
.sermon-num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-weight: 300; min-width: 28px; text-align: center; }
.sermon-item-title { font-weight: 500; font-size: 0.88rem; margin-bottom: 0.18rem; }
.sermon-item-meta { font-size: 0.74rem; color: var(--muted); }
.sermon-arrow { margin-left: auto; color: var(--gold); }

/* ── EVENTS GRID ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.event-img { aspect-ratio: 3/2; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.event-card:hover .event-img img { transform: scale(1.06); }
.event-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.event-title { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.35rem; }
.event-date { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.75rem; }
.event-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.7; flex: 1; }
.event-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.79rem; font-weight: 500; text-decoration: none; margin-top: 1.2rem; transition: gap 0.2s; }
.event-link:hover { gap: 0.7rem; }

/* ── PASTOR SECTION ── */
.pastor-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.pastor-portrait { position: relative; }
.pastor-portrait-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); filter: grayscale(15%); display: block; }
.pastor-portrait-frame { position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1.5px solid rgba(201,168,76,0.3); border-radius: var(--radius); pointer-events: none; }
.pastor-name-plate { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.2); }
.pastor-name-plate strong { display:block; color: var(--white); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.pastor-name-plate span { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── ABOUT PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-top: 3px solid var(--gold); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.value-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.75; }
.stat-row { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 3rem; color: var(--gold); font-weight: 300; line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }

/* ── LEADERSHIP PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-6px); }
.team-img { aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: grayscale(15%); display: block; }
.team-card:hover .team-img img { transform: scale(1.06); filter: grayscale(0%); }
.team-body { padding: 1.6rem 1.4rem; }
.team-name { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.2rem; }
.team-role { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; font-weight: 500; }
.team-bio { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ── SERMONS PAGE ── */
.sermons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.sermon-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s; display: flex; flex-direction: column; }
.sermon-card:hover { transform: translateY(-5px); }
.sermon-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.sermon-card-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity 0.3s; display: block; }
.sermon-card:hover .sermon-card-thumb img { opacity: 1; }
.sermon-card-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(13,27,42,0.4);
}
.sermon-card-play-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.9); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.sermon-card:hover .sermon-card-play-btn { transform: scale(1.1); }
.sermon-card-play-btn svg { width: 16px; height: 16px; fill: var(--navy); margin-left: 2px; }
.sermon-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sermon-card-series { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.4rem; font-weight: 500; }
.sermon-card-title { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.3rem; }
.sermon-card-meta { font-size: 0.76rem; color: var(--muted); margin-top: auto; padding-top: 0.8rem; }

/* ── BLOG PAGE ── */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 2rem; }
.blog-post { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s; }
.blog-post:hover { transform: translateY(-4px); }
.blog-post-img { aspect-ratio: 16/7; overflow: hidden; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-post:hover .blog-post-img img { transform: scale(1.04); }
.blog-post-body { padding: 1.8rem 2rem; }
.blog-post-meta { font-size: 0.73rem; color: var(--muted); margin-bottom: 0.6rem; display: flex; gap: 1rem; align-items: center; }
.blog-post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.blog-post-title { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.25; }
.blog-post-excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.blog-post-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.8rem; font-weight: 500; text-decoration: none; margin-top: 1.2rem; transition: gap 0.2s; }
.blog-post-link:hover { gap: 0.7rem; }
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sidebar-widget h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1.5px solid var(--warm); }
.category-list { list-style: none; }
.category-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--warm); display: flex; justify-content: space-between; align-items: center; }
.category-list li:last-child { border-bottom: none; }
.category-list a { text-decoration: none; color: var(--text); font-size: 0.86rem; transition: color var(--trans); }
.category-list a:hover { color: var(--gold); }
.category-count { font-size: 0.72rem; color: var(--muted); background: var(--warm); padding: 0.15rem 0.5rem; border-radius: 10px; }
.recent-post { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px solid var(--warm); }
.recent-post:last-child { border-bottom: none; }
.recent-post-img { width: 60px; height: 50px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.recent-post-info a { font-size: 0.82rem; color: var(--text); text-decoration: none; font-weight: 500; line-height: 1.4; transition: color var(--trans); display: block; }
.recent-post-info a:hover { color: var(--gold); }
.recent-post-date { font-size: 0.71rem; color: var(--muted); margin-top: 0.2rem; }

/* ── DONATE PAGE ── */
.donate-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.donate-info h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.7rem; margin-top: 2rem; }
.donate-info h3:first-child { margin-top: 0; }
.donate-info p { font-size: 0.93rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.6rem; }
.donate-card { background: var(--navy); border-radius: var(--radius); padding: 2.5rem; color: var(--white); }
.donate-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: 1.4rem; }
.donate-method { padding: 1.2rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); margin-bottom: 0.8rem; border-left: 3px solid var(--gold); }
.donate-method h4 { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.donate-method p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.donate-method strong { color: var(--white); }

/* ── CONTACT SECTION ── */
.contact-info-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; flex: 1; min-width: 200px; }
.contact-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--gold); width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.3rem; font-family: var(--sans); font-weight: 600; }
.contact-info-item p, .contact-info-item a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; line-height: 1.5; }

/* ── MAP EMBED ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav, nav.scrolled, nav.solid { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .pastor-grid, .sermons-layout, .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.5rem; }
  .service-banner { padding: 0.9rem 1.5rem; gap: 1rem; }
  .service-divider { display: none; }
  .about-img-accent, .pastor-portrait-frame { display: none; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn-group { flex-direction: column; }
  .btn-group a { width: 100%; justify-content: center; }
  .stat-row { justify-content: center; }
  .contact-info-row { flex-direction: column; }
  .times-grid { grid-template-columns: 1fr; }
  .time-card { border-right: none; border-bottom: 1.5px solid rgba(201,168,76,0.1); }
  .time-card:last-child { border-bottom: none; }
}
