/* ============================================================
   SPEERS PIONEER MEMORIAL UNITED CHURCH — Main Stylesheet
   Color palette: deep burgundy, warm cream, gold, oak brown
   ============================================================ */

:root {
  --burgundy:      #6B1A2A;
  --burgundy-dark: #4A1020;
  --burgundy-light:#8C2D3F;
  --gold:          #C8962A;
  --gold-light:    #E8B84B;
  --cream:         #FAF6F0;
  --cream-dark:    #F0E8DC;
  --oak:           #7B5C3A;
  --oak-light:     #A07850;
  --text-dark:     #2C1A0E;
  --text-mid:      #5A3E28;
  --text-light:    #8C7060;
  --white:         #FFFFFF;
  --shadow:        0 4px 24px rgba(107,26,42,0.13);
  --shadow-card:   0 2px 16px rgba(44,26,14,0.10);
  --radius:        8px;
  --radius-lg:     14px;
  --transition:    0.3s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Open Sans', 'Segoe UI', Arial, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  color: var(--burgundy-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  color: var(--burgundy-dark);
  margin-bottom: 1rem;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.section-divider.centered { margin: 0.75rem auto 1.5rem; }

/* ---- LAYOUT HELPERS ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--cream-dark); }
.text-center { text-align: center; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--burgundy-dark);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 20px rgba(74,16,32,0.4); }

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-brand img {
  height: 50px;
  width: auto;
  border-radius: 4px;
}
.header-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  max-width: 220px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* NAV */
#main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
#nav-list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 2px;
}
#nav-list li a {
  display: block;
  padding: 6px 11px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-dark);
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
#nav-list li a:hover,
#nav-list li a.active {
  background: var(--gold);
  color: var(--burgundy-dark);
}

/* HAMBURGER */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
#hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
#hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  #hamburger { display: flex; }
  #main-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--burgundy-dark);
    border-bottom: 3px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  #main-nav.open { max-height: 600px; }
  #nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    white-space: normal;
  }
  #nav-list li a { padding: 10px 14px; font-size: 0.9rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../image/t (1).jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,16,32,0.82) 0%,
    rgba(107,26,42,0.68) 50%,
    rgba(44,26,14,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 0;
}
.hero-cross {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(250,246,240,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,42,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);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-secondary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================================
   HERO STATS BAR
   ============================================================ */
.hero-stats {
  background: var(--gold);
  padding: 20px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 12px 16px;
  border-right: 1px solid rgba(107,26,42,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ============================================================
   MISSION & VISION (HOMEPAGE — MANDATORY)
   ============================================================ */
.mission-vision {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.mission-vision::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,150,42,0.08);
}
.mission-vision::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(200,150,42,0.06);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.mv-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,150,42,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(4px);
}
.mv-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mv-icon svg { width: 26px; height: 26px; fill: var(--burgundy-dark); }
.mv-card h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.mv-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
  border-radius: 2px;
}
.mv-card p { color: rgba(250,246,240,0.88); line-height: 1.8; margin-bottom: 0; }

.mv-header { text-align: center; margin-bottom: 52px; }
.mv-header .section-label { color: var(--gold-light); }
.mv-header h2 { color: var(--white); }
.mv-header .section-divider { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

@media (max-width: 700px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 28px 22px; }
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.welcome-img img { width: 100%; height: 420px; object-fit: cover; }
.welcome-img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  pointer-events: none;
  transform: translate(10px, 10px);
  z-index: -1;
}
.welcome-text .btn { margin-top: 8px; }

@media (max-width: 768px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .welcome-img img { height: 280px; }
}

/* ============================================================
   EVENTS PREVIEW
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.event-img { height: 180px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-img img { transform: scale(1.06); }
.event-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 12px;
  width: fit-content;
}
.event-body h3 { font-size: 1.1rem; color: var(--burgundy-dark); margin-bottom: 8px; }
.event-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.event-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
}
.event-link:hover { color: var(--burgundy); }
.events-cta { text-align: center; }

@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .events-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAMS PREVIEW
   ============================================================ */
.programs-section { background: var(--cream-dark); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--burgundy);
  transition: transform var(--transition), border-color var(--transition);
  text-align: center;
}
.program-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.program-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.program-icon svg { width: 30px; height: 30px; fill: var(--gold-light); }
.program-card h3 { font-size: 1.1rem; color: var(--burgundy-dark); margin-bottom: 10px; }
.program-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0; }

@media (max-width: 900px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .programs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCRIPTURE BANNER
   ============================================================ */
.scripture-banner {
  background: linear-gradient(135deg, var(--oak) 0%, var(--oak-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scripture-banner::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 30px;
  font-size: 18rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.07);
  line-height: 1;
}
.scripture-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.scripture-ref {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 200px 200px;
  gap: 6px;
}
.gallery-strip .g-item { overflow: hidden; border-radius: 4px; }
.gallery-strip .g-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-strip .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-strip .g-item:hover img { transform: scale(1.07); filter: brightness(1.08); }

@media (max-width: 700px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-strip .g-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-strip .g-item { height: 160px; }
}

/* ============================================================
   SERVICE TIMES
   ============================================================ */
.service-times {
  background: var(--burgundy-dark);
  padding: 60px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,150,42,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.service-day {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.service-time {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.service-note { font-size: 0.85rem; color: rgba(250,246,240,0.7); }

@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #1A0A10;
  color: var(--cream-dark);
}

/* ── TOP ACCENT BAND ── */
.footer-top-band {
  background: var(--burgundy-dark);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(200,150,42,0.18);
  padding: 14px 0;
}
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-top-message {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
}
.footer-cross-icon { width: 20px; height: 20px; flex-shrink: 0; }
.footer-top-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240,232,220,0.82);
  transition: color var(--transition);
}
.footer-top-link svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.footer-top-link:hover { color: var(--gold-light); }

/* ── MAIN BODY ── */
.footer-body { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.3fr;
  gap: 40px;
}

/* Column base */
.footer-col { display: flex; flex-direction: column; }

/* COL 1 — Brand */
.footer-col--brand { gap: 16px; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.footer-logo-row img {
  height: 54px;
  width: auto;
  border-radius: 6px;
  border: 1px solid rgba(200,150,42,0.25);
}
.footer-org-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-united {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-col--brand p {
  font-size: 0.88rem;
  color: rgba(240,232,220,0.65);
  line-height: 1.75;
  margin-bottom: 0;
}
.footer-badge-row { margin-top: 2px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,150,42,0.10);
  border: 1px solid rgba(200,150,42,0.22);
  border-radius: 20px;
  padding: 5px 12px;
}
.footer-badge svg { width: 13px; height: 13px; fill: var(--gold); }
.footer-charity-num {
  display: block;
  font-size: 0.75rem;
  color: rgba(240,232,220,0.35);
  margin-top: 2px;
}

/* COL TITLE */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}
.footer-col-bar {
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* COL 2 — Links */
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(240,232,220,0.62);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a span { color: var(--gold); font-size: 1rem; line-height: 1; }
.footer-links a:hover { color: var(--gold-light); gap: 10px; }

/* COL 3 — Worship Times */
.footer-times-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-time-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(200,150,42,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ft-day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.ft-time {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}
.ft-note {
  font-size: 0.78rem;
  color: rgba(240,232,220,0.55);
  margin-top: 2px;
}
.footer-worship-btn {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid rgba(200,150,42,0.4);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: background var(--transition), border-color var(--transition);
  width: fit-content;
}
.footer-worship-btn:hover {
  background: rgba(200,150,42,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* COL 4 — Contact */
.footer-address { font-style: normal; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.fci-icon {
  width: 34px; height: 34px;
  background: rgba(200,150,42,0.12);
  border: 1px solid rgba(200,150,42,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fci-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.fci-text { display: flex; flex-direction: column; gap: 2px; }
.fci-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.fci-text span {
  font-size: 0.87rem;
  color: rgba(240,232,220,0.78);
  line-height: 1.5;
}
.fci-text a { color: rgba(240,232,220,0.78); }
.fci-text a:hover { color: var(--gold-light); }
.footer-contact-btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--burgundy);
  border: 1px solid rgba(200,150,42,0.3);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background var(--transition), transform var(--transition);
  width: fit-content;
  margin-top: 4px;
}
.footer-contact-btn:hover {
  background: var(--burgundy-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── DIVIDER WITH CROSS ── */
.footer-divider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,42,0.25), transparent);
}
.footer-divider-emblem {
  flex-shrink: 0;
  padding: 0 16px;
  line-height: 0;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(240,232,220,0.50);
  margin-bottom: 0;
}
.footer-reg {
  font-size: 0.75rem;
  color: rgba(240,232,220,0.32);
  margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .footer-col--brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-top-contact { gap: 12px; }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 120px 0 70px;
  overflow: hidden;
  background: var(--burgundy-dark);
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,16,32,0.84) 0%, rgba(44,26,14,0.64) 100%);
}
.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.inner-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.inner-hero-content p {
  color: rgba(250,246,240,0.86);
  font-size: 1rem;
  max-width: 640px;
  margin-bottom: 0;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.breadcrumb a { color: var(--gold-light); }

/* ============================================================
   CONTENT COMPONENTS
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.content-card,
.info-card,
.quote-card,
.schedule-card,
.contact-card,
.message-box,
.history-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.content-card,
.quote-card,
.schedule-card,
.contact-card,
.message-box,
.history-panel {
  padding: 30px;
}
.content-card h2,
.content-card h3,
.info-card h3,
.quote-card h3,
.schedule-card h3,
.contact-card h3,
.history-panel h3 { margin-bottom: 12px; }
.content-card p:last-child,
.info-card p:last-child,
.quote-card p:last-child,
.schedule-card p:last-child,
.contact-card p:last-child,
.message-box p:last-child,
.history-panel p:last-child { margin-bottom: 0; }

.side-stack {
  display: grid;
  gap: 24px;
}
.info-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.info-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.info-card-body { padding: 24px; }

.feature-grid,
.values-grid,
.contact-grid,
.ministry-grid,
.event-list,
.gallery-grid {
  display: grid;
  gap: 24px;
}
.feature-grid,
.values-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}
.feature-card,
.value-card,
.ministry-card,
.event-item,
.contact-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.feature-card,
.value-card,
.ministry-card,
.event-item,
.contact-detail {
  padding: 28px;
}
.feature-card h3,
.value-card h3,
.ministry-card h3,
.event-item h3,
.contact-detail h3 {
  margin-bottom: 10px;
}
.ministry-grid {
  grid-template-columns: repeat(2, 1fr);
}
.ministry-card {
  overflow: hidden;
  padding: 0;
}
.ministry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ministry-card-body { padding: 26px; }
.meta-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(107,26,42,0.12);
}
.meta-list span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.event-list {
  grid-template-columns: 1fr;
}
.event-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.event-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.event-item-body {
  padding: 28px 28px 28px 0;
}
.event-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream-dark);
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 20px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--burgundy));
}
.timeline-item {
  position: relative;
  padding-left: 62px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--burgundy-dark);
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
}
.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.heritage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.heritage-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: sepia(0.65) saturate(0.85) contrast(0.95);
  box-shadow: var(--shadow-card);
}

.season-grid,
.contact-grid,
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
.season-card,
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.season-card { padding: 26px; }
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-card span {
  display: block;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
}

.quote-card {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
}
.quote-card h3,
.quote-card blockquote,
.quote-card p { color: var(--cream); }
.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-table {
  display: grid;
  gap: 14px;
}
.service-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(107,26,42,0.1);
}
.service-row:last-child { border-bottom: none; }
.service-row strong { color: var(--burgundy-dark); }
.service-row span {
  color: var(--text-mid);
  text-align: right;
}

.bullet-list {
  padding-left: 20px;
}
.bullet-list li {
  margin-bottom: 12px;
  color: var(--text-mid);
}

.form-grid {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(107,26,42,0.16);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--text-dark);
  font: inherit;
}
.form-field textarea {
  min-height: 160px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,150,42,0.14);
}
.message-box {
  margin-bottom: 22px;
  border-left: 4px solid var(--gold);
}
.message-box.success { border-left-color: #3d7f4f; }
.message-box.error { border-left-color: #a43838; }

.map-frame {
  width: 100%;
  min-height: 360px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (max-width: 960px) {
  .content-grid,
  .feature-grid,
  .values-grid,
  .contact-grid,
  .ministry-grid,
  .season-grid,
  .gallery-grid,
  .heritage-gallery {
    grid-template-columns: 1fr;
  }
  .event-item {
    grid-template-columns: 1fr;
  }
  .event-item-body {
    padding: 0 24px 24px;
  }
}

@media (max-width: 700px) {
  .inner-hero { min-height: 46vh; padding: 110px 0 54px; }
  .form-row,
  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .content-card,
  .quote-card,
  .schedule-card,
  .contact-card,
  .message-box,
  .history-panel {
    padding: 24px;
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--burgundy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 900;
}
#back-top.show { opacity: 1; pointer-events: auto; }
#back-top:hover { background: var(--gold); transform: translateY(-3px); }
#back-top svg { width: 18px; height: 18px; fill: var(--white); }
#back-top:hover svg { fill: var(--burgundy-dark); }
