/* ============================================================
   Warburg Alliance Church — Main Stylesheet
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --primary:   #1B3A6B;
  --primary-d: #122a52;
  --accent:    #C8873A;
  --accent-l:  #e0a055;
  --light:     #F7F5F1;
  --dark:      #1A1A2E;
  --mid:       #5C6B7A;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(27,58,107,0.10);
  --radius:    8px;
  --transition: 0.3s ease;
  --max-w:     1200px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--primary);
}

p { margin-bottom: 1rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* --- Container --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,58,107,0.10);
}

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

/* Logo + Name */
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.header-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
}

/* Navigation */
#site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

#site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

#site-nav ul li a {
  display: block;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

#site-nav ul li a:hover,
#site-nav ul li a.active {
  color: var(--accent);
  background: rgba(200,135,58,0.08);
}

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

/* Mobile Nav */
#mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(27,58,107,0.1);
  padding: 1rem 0 1.5rem;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { list-style: none; }
#mobile-nav ul li a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
#mobile-nav ul li a:hover,
#mobile-nav ul li a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(200,135,58,0.06);
}

/* ============================================================
   FOOTER — Professional Redesign
   ============================================================ */
#site-footer {
  background: #0f2444;           /* deeper navy than --primary */
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* --- Scripture Banner --- */
.footer-scripture {
  background: linear-gradient(90deg, var(--primary) 0%, #15305a 100%);
  border-top: 3px solid var(--accent);
  padding: 1.1rem 0;
  text-align: center;
}

.footer-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-verse cite {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-l);
}

.footer-verse-mark {
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.7;
}

/* --- Footer Body --- */
.footer-body {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* --- Brand Column --- */
.footer-col--brand {}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: #ffffff;
  border-radius: 14px;
  padding: 0.35rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.footer-org-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.25;
}

.footer-org-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.2rem;
}

.footer-about-text {
  font-size: 0.865rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  letter-spacing: 0.03em;
}

.footer-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- Column Headings --- */
.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-l);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.1rem;
}

/* --- Nav Lists --- */
.footer-nav-list { list-style: none; }

.footer-nav-list li {
  margin-bottom: 0;
}

.footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.865rem;
  color: rgba(255,255,255,0.6);
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-nav-list li:last-child a { border-bottom: none; }

.footer-nav-list li a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.footer-nav-list li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-nav-list li a:hover::before {
  opacity: 1;
}

/* --- Contact Rows --- */
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(200,135,58,0.15);
  border: 1px solid rgba(200,135,58,0.2);
  color: var(--accent-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-text {
  font-size: 0.865rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-style: normal;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-text a:hover { color: var(--white); }

/* --- Office Hours Block --- */
.footer-hours {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.footer-hours-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-l);
  margin-bottom: 0.45rem;
}

.footer-hours-value {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* --- Bottom Bar --- */
.footer-bottom {
  padding: 1.1rem 0;
  background: rgba(0,0,0,0.25);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.footer-legal-nav a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal-nav a:hover { color: rgba(255,255,255,0.75); }
.footer-legal-nav span { color: rgba(255,255,255,0.2); }

/* --- Back to Top Button --- */
.footer-top-btn {
  position: absolute;
  bottom: 4.5rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,135,58,0.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-top-btn:hover {
  background: var(--accent-l);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,135,58,0.5);
}

/* --- Footer Responsive --- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-brand { flex-direction: row; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-top-btn { bottom: 5.5rem; right: 1rem; }
  .footer-verse { font-size: 0.8rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 5rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-l);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-l);
  border-color: var(--accent-l);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,135,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: 5rem 0; }
.section-light { background: var(--light); }
.section-primary { background: var(--primary); }
.section-white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,58,107,0.15);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.875rem; margin-bottom: 1rem; }

/* ============================================================
   MISSION / VISION BLOCKS
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-block {
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.mv-block-mission {
  background: var(--primary);
  color: var(--white);
}

.mv-block-vision {
  background: var(--accent);
  color: var(--white);
}

.mv-block .mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.mv-block h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.mv-block p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.mv-block a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.mv-block a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--primary);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-l);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 2rem 2.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1rem;
}

.quote-block cite {
  font-size: 0.875rem;
  color: var(--mid);
  font-style: normal;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--accent-l); }

/* ============================================================
   TIMELINE (History)
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion { border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid rgba(27,58,107,0.1); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--primary);
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--light); }
.accordion-trigger .acc-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.accordion-trigger[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
  background: var(--accent);
}

.accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}
.accordion-body.open { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(27,58,107,0.2);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27,58,107,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.contact-info-text p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { display: block; width: 100%; height: 320px; border: none; }

/* ============================================================
   PROGRAMS GRID
   ============================================================ */
.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(27,58,107,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(27,58,107,0.12);
  background: var(--white);
  margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); }

.event-date {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-date .day { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

.event-info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.event-info p { font-size: 0.85rem; margin: 0; }
.event-meta { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-top: 0.25rem; display: block; }

/* ============================================================
   SERVICE SCHEDULE
   ============================================================ */
.schedule-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.schedule-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(27,58,107,0.08);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--light); }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leader-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.leader-card:hover { transform: translateY(-4px); }
.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--white);
}
.leader-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.leader-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.leader-card p { font-size: 0.875rem; }

/* ============================================================
   ALERT / NOTICE
   ============================================================ */
.notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.notice-success { background: #e6f4ea; color: #1e6b35; border-left: 4px solid #34a853; }
.notice-error   { background: #fce8e6; color: #c5221f; border-left: 4px solid #ea4335; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }

.divider {
  height: 1px;
  background: rgba(27,58,107,0.1);
  margin: 3rem 0;
}

.highlight-box {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #site-nav { display: none; }
  .hamburger { display: flex; }

  .card-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: 400px; }
  .hero-content { padding: 3rem 0; }

  .section { padding: 3.5rem 0; }

  .two-col-img img { height: 280px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-brand .brand-name { font-size: 0.85rem; }
}
