/* ============================================================
   PENTECOSTAL CHURCH OF BASHER — Main Stylesheet
   ============================================================
   Table of Contents:
   1.  Variables & Reset
   2.  Typography
   3.  Navigation
   4.  Footer
   5.  Buttons
   6.  Section Scaffold (labels, titles, subs)
   7.  Reveal Animations
   8.  Page Hero (inner pages)
   9.  Home Hero (index.html)
   10. About Section
   11. Services Section
   12. Events Section
   13. Give Section
   14. Contact Section
   15. Meet the Pastor (about.html)
   16. Responsive
   ============================================================ */

/* ── 1. Variables & Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #f7eedf;
  --parch:   #ede0c8;
  --sand:    #d9c4a0;
  --tan:     #b89468;
  --amber:   #c2771e;
  --brown:   #7a4520;
  --bark:    #3d1f08;
  --muted:   #6b4c2e;
  --white:   #ffffff;
  --display: 'Cinzel', Georgia, serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Lato', sans-serif;
  --r:       6px;
  --ease:    0.3s ease;
  --shadow:  0 4px 24px rgba(61,31,8,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ── 2. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; }

/* ── 3. Navigation ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(247, 238, 223, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--ease);
}

nav.scrolled { box-shadow: 0 4px 20px rgba(61,31,8,0.10); }

.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: var(--bark); letter-spacing: 0.08em; text-transform: uppercase;
}

.nav-brand svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; }

.nav-links {
  list-style: none; display: flex;
  gap: 2rem; align-items: center;
}

.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover { color: var(--bark); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--bark); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r);
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--brown) !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--bark); border-radius: 2px;
  transition: all var(--ease);
}

/* ── 4. Footer ────────────────────────────────────────────── */
footer {
  background: var(--bark);
  color: rgba(237,224,200,0.65);
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-logo {
  font-family: var(--display);
  font-size: 1rem; color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}

.footer-logo span { color: var(--tan); }

.footer-nav {
  list-style: none;
  display: flex; gap: 1.6rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(237,224,200,0.55);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--tan); }

.footer-address {
  font-size: 0.85rem; color: rgba(237,224,200,0.45);
  margin-bottom: 1.4rem; line-height: 1.6;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  font-size: 0.75rem;
  color: rgba(237,224,200,0.3);
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 1.9rem; border-radius: var(--r);
  transition: all var(--ease); cursor: pointer; border: none;
}

.btn-fill {
  background: var(--amber); color: var(--white);
  box-shadow: 0 4px 18px rgba(194,119,30,0.3);
}
.btn-fill:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,69,32,0.28);
}

.btn-ghost {
  color: var(--bark);
  border: 1.5px solid var(--sand);
  background: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--tan);
  background: var(--parch);
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--cream);
  border: 1.5px solid rgba(237,224,200,0.4);
  background: rgba(255,255,255,0.06);
}
.btn-outline-light:hover {
  border-color: rgba(237,224,200,0.7);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ── 6. Section Scaffold ──────────────────────────────────── */
section { padding: 5.5rem 1.5rem; }

.wrap { max-width: 1100px; margin: 0 auto; }
.wrap-sm { max-width: 800px; margin: 0 auto; }

.sec-label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.5rem;
  text-align: center;
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500; color: var(--bark);
  text-align: center; line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.sec-sub {
  text-align: center; color: var(--muted);
  font-size: 0.97rem; font-weight: 300;
  max-width: 540px; margin: 0 auto 3.5rem;
  font-family: var(--serif); font-size: 1.1rem;
}

.divider {
  display: flex; align-items: center;
  gap: 1rem; margin: 0 auto 2rem;
  max-width: 180px;
}
.divider span { flex: 1; height: 1px; background: var(--sand); }
.divider em { color: var(--amber); font-style: normal; font-size: 0.9rem; }

/* ── 7. Reveal Animations ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── 8. Inner Page Hero ───────────────────────────────────── */
.page-hero {
  min-height: 38vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(160,100,35,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 82%, rgba(140,80,25,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 50% 0%,  rgba(100,55,15,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%,rgba(90,45,10,0.20)  0%, transparent 60%),
    var(--cream);
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 42%, rgba(90,45,10,0.30) 100%),
    radial-gradient(ellipse 35% 30% at 0%   0%,  rgba(80,40,8,0.40) 0%, transparent 65%),
    radial-gradient(ellipse 30% 28% at 100% 0%,  rgba(90,45,10,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 38% 32% at 0%   100%,rgba(80,40,8,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 32% 28% at 100% 100%,rgba(90,45,10,0.38) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative; z-index: 1;
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600; color: var(--bark);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.page-hero p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--brown); font-weight: 300;
}

/* ── 9. Home Hero ─────────────────────────────────────────── */
#home-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center; padding: 7rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(160,100,35,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 82%, rgba(140,80,25,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 70% 65% at 50% 50%, rgba(200,165,110,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 0%,  rgba(100,55,15,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(90,45,10,0.18) 0%, transparent 60%),
    var(--cream);
}

/* Paper fiber */
#home-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(140,100,50,0.018) 3px, rgba(140,100,50,0.018) 4px),
    repeating-linear-gradient(180deg, transparent, transparent 4px, rgba(120,85,40,0.015) 4px, rgba(120,85,40,0.015) 5px);
}

/* Vignette */
#home-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 42%, rgba(90,45,10,0.35) 100%),
    radial-gradient(ellipse 35% 30% at 0%   0%,  rgba(80,40,8,0.45)  0%, transparent 65%),
    radial-gradient(ellipse 30% 28% at 100% 0%,  rgba(90,45,10,0.40) 0%, transparent 65%),
    radial-gradient(ellipse 38% 32% at 0%   100%,rgba(80,40,8,0.42)  0%, transparent 65%),
    radial-gradient(ellipse 32% 28% at 100% 100%,rgba(90,45,10,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 100% 18% at 50% 0%,  rgba(70,35,8,0.28)  0%, transparent 100%),
    radial-gradient(ellipse 100% 20% at 50% 100%,rgba(70,35,8,0.32)  0%, transparent 100%);
  pointer-events: none;
}

.hero-cross {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.hero-cross img {
  width: min(980px, 92vw);
  height: min(980px, 92vw);
  object-fit: contain;
  opacity: 0.13;
  filter: sepia(1) saturate(2.5) hue-rotate(5deg) brightness(0.45);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  animation: riseIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.2rem;
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.18;
  color: var(--bark); margin-bottom: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic; color: var(--brown);
  margin-bottom: 2rem; font-weight: 300;
}

.hero-times {
  display: inline-flex; gap: 0;
  margin-bottom: 2.4rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--r); overflow: hidden;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}

.hero-time-item { padding: 0.65rem 1.5rem; text-align: center; }
.hero-time-item + .hero-time-item { border-left: 1.5px solid var(--sand); }

.hero-time-day {
  display: block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.18rem;
}

.hero-time-hour {
  display: block; font-family: var(--serif);
  font-size: 1.15rem; color: var(--bark); font-weight: 500;
}

.hero-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.35rem;
  color: var(--tan); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 16px; height: 16px; }

/* ── 10. About Section ────────────────────────────────────── */
#about { background: var(--parch); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,104,0.18);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.about-photo { position: relative; }

.about-img-box {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--sand), var(--tan));
  box-shadow: 0 16px 48px rgba(61,31,8,0.14);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-family: var(--serif); font-size: 1rem;
  gap: 0.6rem;
}

.about-img-box img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-img-box svg { width: 48px; height: 48px; opacity: 0.65; }

.about-badge {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  background: var(--white); border-radius: 10px;
  padding: 1rem 1.3rem;
  box-shadow: 0 10px 32px rgba(61,31,8,0.13);
  display: flex; align-items: center; gap: 0.9rem;
}

.badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(194,119,30,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--amber);
}
.badge-icon svg { width: 20px; height: 20px; }
.badge-text strong {
  display: block; font-family: var(--serif);
  font-size: 1.3rem; color: var(--bark); line-height: 1;
}
.badge-text span { font-size: 0.75rem; color: var(--muted); }

.about-copy .sec-title,
.about-copy .sec-label { text-align: left; }
.about-copy .sec-sub { text-align: left; margin-left: 0; max-width: 100%; margin-bottom: 1.5rem; }
.about-copy p { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.1rem; }

.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin: 1.8rem 0 2rem;
}

.pillar {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.9rem; background: var(--cream);
  border-radius: var(--r);
  border: 1px solid rgba(184,148,104,0.22);
}
.pillar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0; margin-top: 6px;
}
.pillar strong { display: block; font-size: 0.85rem; color: var(--bark); margin-bottom: 0.15rem; }
.pillar p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── 11. Services Section ─────────────────────────────────── */
#services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.svc-card {
  background: var(--white); border-radius: 10px;
  padding: 2rem 1.6rem; text-align: center;
  border: 1px solid var(--parch);
  box-shadow: 0 3px 16px rgba(61,31,8,0.05);
  transition: all var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), #d99a4e);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(61,31,8,0.10); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(194,119,30,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; color: var(--amber);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-day { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.25rem; }
.svc-name { font-family: var(--serif); font-size: 1.3rem; color: var(--bark); margin-bottom: 0.5rem; }
.svc-time { font-family: var(--serif); font-size: 2rem; color: var(--bark); font-weight: 500; margin-bottom: 0.5rem; }
.svc-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── 12. Events Section ───────────────────────────────────── */
#events { background: var(--bark); position: relative; overflow: hidden; }
#events::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 80% 20%, rgba(194,119,30,0.14) 0%, transparent 60%);
  pointer-events: none;
}
#events .sec-label { color: #d99a4e; }
#events .sec-title { color: var(--cream); }
#events .sec-sub   { color: rgba(237,224,200,0.6); }

.events-list {
  display: flex; flex-direction: column;
  gap: 1rem; max-width: 760px; margin: 0 auto;
}

.evt {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 1.3rem; align-items: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(212,160,80,0.16);
  border-radius: 9px; padding: 1.2rem 1.6rem;
  transition: all var(--ease);
}
.evt:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,160,80,0.35);
  transform: translateX(4px);
}
.evt-date { text-align: center; }
.evt-mo { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #d99a4e; }
.evt-dy { font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: var(--cream); }
.evt-info h4 { font-family: var(--serif); font-size: 1.18rem; color: var(--cream); margin-bottom: 0.2rem; }
.evt-meta { font-size: 0.8rem; color: rgba(237,224,200,0.55); }
.evt-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px;
  background: rgba(194,119,30,0.2); color: #d99a4e;
  border: 1px solid rgba(194,119,30,0.3); white-space: nowrap;
}

/* ── 13. Give Section ─────────────────────────────────────── */
#give { background: var(--parch); }

.give-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border-radius: 14px;
  padding: 3.2rem; text-align: center;
  box-shadow: 0 16px 52px rgba(61,31,8,0.09);
  border: 1px solid var(--parch); position: relative;
}
.give-card::before {
  content: ''; position: absolute;
  top: 0; left: 2rem; right: 2rem; height: 4px;
  background: linear-gradient(90deg, var(--amber), #d99a4e, var(--amber));
  border-radius: 0 0 4px 4px;
}
.give-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(194,119,30,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem; color: var(--amber);
}
.give-icon svg { width: 30px; height: 30px; }
.give-card h2 { font-family: var(--display); font-size: 1.8rem; color: var(--bark); margin-bottom: 0.7rem; letter-spacing: 0.06em; }
.give-card > p { color: var(--muted); font-size: 0.95rem; max-width: 460px; margin: 0 auto 1.8rem; }

.give-amounts {
  display: flex; gap: 0.85rem;
  justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.give-amt {
  flex: 1; min-width: 110px; max-width: 150px;
  padding: 1.1rem 0.8rem; border: 1.5px solid var(--parch);
  border-radius: var(--r); text-align: center;
  cursor: pointer; transition: all var(--ease); background: var(--cream);
}
.give-amt:hover, .give-amt.active {
  border-color: var(--amber); background: rgba(194,119,30,0.07);
}
.give-amt span { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--bark); }
.give-amt small { font-size: 0.72rem; color: var(--muted); }
.give-verse {
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem; color: var(--tan); margin-top: 1.4rem;
  line-height: 1.6;
}

/* ── 14. Contact Section ──────────────────────────────────── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem; align-items: start;
}

.contact-blocks { display: flex; flex-direction: column; gap: 1.4rem; }

.cblock { display: flex; gap: 1rem; align-items: flex-start; }
.cblock-icon {
  width: 44px; height: 44px; border-radius: 9px;
  background: rgba(194,119,30,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--amber);
}
.cblock-icon svg { width: 20px; height: 20px; }
.cblock-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.25rem;
}
.cblock-text { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.cblock-text a { color: var(--muted); text-decoration: none; }
.cblock-text a:hover { color: var(--amber); }

.map-box {
  margin-top: 1.4rem; border-radius: 9px; overflow: hidden;
  border: 1px solid var(--parch);
  background: linear-gradient(135deg, var(--parch), var(--sand));
  height: 200px; display: flex; align-items: center;
  justify-content: center; color: var(--tan);
  gap: 0.5rem; font-family: var(--serif);
  flex-direction: column; font-size: 0.95rem;
}
.map-box svg { width: 28px; height: 28px; opacity: 0.6; }

/* Replace map-box with real embed */
.map-box iframe { width: 100%; height: 200px; border: none; display: block; }

.contact-form {
  background: var(--white); border-radius: 10px;
  padding: 2rem; border: 1px solid var(--parch);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-family: var(--display); font-size: 1.3rem; color: var(--bark); margin-bottom: 1.3rem; letter-spacing: 0.06em; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.fg { margin-bottom: 0.85rem; }

label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.35rem;
}
input, textarea, select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--parch); border-radius: var(--r);
  background: var(--cream); color: var(--bark);
  font-family: var(--sans); font-size: 0.93rem;
  outline: none; transition: border-color var(--ease);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--amber); background: var(--white);
}
textarea { min-height: 110px; resize: vertical; }

.form-btn {
  width: 100%; background: var(--amber); color: var(--white);
  border: none; padding: 0.85rem;
  border-radius: var(--r); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: var(--sans);
  transition: all var(--ease);
}
.form-btn:hover { background: var(--brown); transform: translateY(-1px); }

/* ── 15. Meet the Pastor (about.html) ─────────────────────── */
.pastor-section { background: var(--cream); }

.pastor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem; align-items: start;
}

.pastor-photo-wrap { position: relative; }

.pastor-img-box {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(145deg, var(--sand), var(--tan));
  box-shadow: 0 16px 48px rgba(61,31,8,0.14);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-family: var(--serif); font-size: 1rem; gap: 0.6rem;
}
.pastor-img-box img { width: 100%; height: 100%; object-fit: cover; }
.pastor-img-box svg { width: 48px; height: 48px; opacity: 0.65; }

.pastor-quote-card {
  position: absolute; bottom: -7rem; left: -1.5rem;
  background: var(--white); border-radius: 10px;
  padding: 1.2rem 1.4rem; max-width: 260px;
  box-shadow: 0 10px 32px rgba(61,31,8,0.13);
  border-left: 3px solid var(--amber);
}
.pastor-quote-card p {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--muted); line-height: 1.5;
  margin-bottom: 0.5rem;
}
.pastor-quote-card cite {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); font-style: normal;
}

.pastor-bio .sec-title,
.pastor-bio .sec-label { text-align: left; }
.pastor-bio h3 {
  font-family: var(--display);
  font-size: 1.6rem; color: var(--bark);
  letter-spacing: 0.06em; margin-bottom: 0.3rem;
}
.pastor-bio .pastor-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
}
.pastor-bio p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.8; }

.pastor-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 2rem 0;
}
.pastor-detail {
  padding: 1rem; background: var(--parch);
  border-radius: var(--r);
  border: 1px solid rgba(184,148,104,0.22);
}
.pastor-detail strong {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.3rem;
}
.pastor-detail span { font-size: 0.9rem; color: var(--muted); }

/* Values strip on About page */
.values-strip {
  background: var(--bark); padding: 4rem 1.5rem;
}
.values-strip .sec-title { color: var(--cream); }
.values-strip .sec-label { color: #d99a4e; }
.values-strip .sec-sub { color: rgba(237,224,200,0.6); }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,80,0.16);
  border-radius: 10px; padding: 1.8rem 1.4rem;
  text-align: center; transition: all var(--ease);
}
.value-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(212,160,80,0.35);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(194,119,30,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: #d99a4e;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.83rem; color: rgba(237,224,200,0.6); line-height: 1.6; }

/* ── 16. Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid,
  .pastor-grid { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .pastor-photo-wrap { max-width: 360px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .evt { grid-template-columns: 56px 1fr; }
  .evt-tag { display: none; }
  .pastor-quote-card { display: none; }
  .pastor-details { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(247,238,223,0.98);
    border-bottom: 1px solid var(--sand);
    padding: 1rem 1.5rem;
  }
  .nav-links.open li { padding: 0.6rem 0; border-bottom: 1px solid rgba(184,148,104,0.15); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: 1.9rem; }
  .give-card { padding: 2rem 1.2rem; }
  section { padding: 4rem 1.2rem; }
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
