/* ============================================================
   Community Christian Church (Church of Christ) Duncan
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --primary:   #1A3A5C;
  --accent:    #C8A84B;
  --light-bg:  #F7F4EF;
  --text:      #2D2D2D;
  --white:     #FFFFFF;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --radius:    8px;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a  { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.section        { padding: 80px 0; }
.section-light  { background: var(--light-bg); }
.section-dark   { background: var(--primary); color: var(--white); }
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 640px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .divider {
  width: 60px; height: 4px;
  background: var(--accent);
  margin: 16px auto 20px;
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Brand */
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 4px;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 260px;
}

/* Navigation */
#main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
#main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
#main-nav ul li a {
  display: block;
  padding: 8px 11px;
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
#main-nav ul li a:hover,
#main-nav ul li a.active {
  background: var(--accent);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  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); }

/* ============================================================
   FOOTER — Premium 4-column design
   ============================================================ */

/* Top scripture banner */
.footer-topbar {
  background: var(--accent);
  padding: 14px 0;
}
.footer-topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-topbar-verse {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Main footer body */
.footer-body {
  background: #0F2438;
  padding: 68px 0 52px;
}
.footer-body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* Shared column base */
.fc { }

/* Column headings */
.fc-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fc-heading-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── Col 1: Brand ── */
.fc-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.fc-logo-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid rgba(200,168,75,0.4);
  padding: 4px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.fc-logo-text {
  display: flex;
  flex-direction: column;
}
.fc-church-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.fc-church-sub {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.fc-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 22px;
}
.fc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 20px;
}
.fc-charity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-charity-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.fc-charity-num {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* ── Col 2: Service Times ── */
.fc-times-list {
  list-style: none;
  margin-bottom: 20px;
}
.fc-times-list li { }
.fct-day {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 6px;
}
.fct-services { }
.fct-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fct-row:last-child { border-bottom: none; }
.fct-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
}
.fct-time {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
}
.fct-time small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin-left: 2px;
}
.fct-separator {
  display: block;
  height: 1px;
  background: rgba(200,168,75,0.25);
  margin: 14px 0;
}

/* ── Col 3: Nav Links ── */
.fc-nav-list {
  list-style: none;
}
.fc-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fc-nav-list li:last-child { border-bottom: none; }
.fc-nav-list li a {
  display: block;
  padding: 8px 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.fc-nav-list li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* ── Col 4: Contact ── */
.fc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fc-contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.fc-ci-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.fc-ci-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-ci-text strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.fc-ci-text address,
.fc-ci-text a,
.fc-ci-text span {
  font-style: normal;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  text-decoration: none;
}
.fc-ci-text a:hover { color: var(--accent); }

/* Shared link button */
.fc-link-btn {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,168,75,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.fc-link-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
  background: #080F18;
  padding: 18px 0;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.fbb-left {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.fbb-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fbb-right a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.fbb-right a:hover { color: var(--accent); }
.fbb-sep {
  color: rgba(255,255,255,0.18);
  font-size: 0.75rem;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 70, 0.58);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 40px 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-accent-bar {
  width: 70px; height: 4px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* Page hero (shorter) */
.page-hero {
  min-height: 340px;
}
.page-hero .hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ============================================================
   HOME — Mission & Vision Strip
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mv-card {
  padding: 64px 52px;
}
.mv-card:first-child { background: var(--primary); color: var(--white); }
.mv-card:first-child h2 { color: var(--white); }
.mv-card:last-child  { background: var(--accent); color: var(--white); }
.mv-card:last-child  h2 { color: var(--white); }
.mv-card p { font-size: 1.05rem; line-height: 1.8; margin-top: 16px; }
.mv-card .mv-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.mv-card .btn { margin-top: 24px; }

/* ============================================================
   HOME — Welcome
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-grid img {
  border-radius: var(--radius);
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.welcome-text h2 { margin-bottom: 20px; }
.welcome-text p  { margin-bottom: 16px; color: #555; }

/* ============================================================
   SERVICE TIMES
   ============================================================ */
.times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.time-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.time-card .time-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}
.time-card .time-label {
  font-size: 0.82rem;
  color: #888;
  margin-top: 6px;
}

/* ============================================================
   CARDS (Events, Sermons, general)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body .card-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card-body p  { font-size: 0.9rem; color: #666; margin-bottom: 16px; }
.card-body .card-meta {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 16px;
}

/* ============================================================
   SCRIPTURE PULL-QUOTE
   ============================================================ */
.scripture-section {
  background: var(--primary);
  padding: 72px 0;
  text-align: center;
}
.scripture-quote {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.scripture-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 20px;
}
.scripture-quote cite {
  color: var(--accent);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   MISSION PAGE — Values Grid
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.9rem; color: #666; }

/* ============================================================
   BELIEFS PAGE
   ============================================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.belief-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.belief-card .belief-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.belief-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.belief-card p  { font-size: 0.9rem; color: #666; margin-bottom: 8px; }
.belief-card .scripture-ref {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

/* ============================================================
   MINISTRIES PAGE
   ============================================================ */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ministry-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s;
}
.ministry-card:hover { transform: translateY(-4px); }
.ministry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.ministry-card .mc-body {
  padding: 24px;
}
.ministry-card .mc-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.ministry-card .mc-body p  { font-size: 0.9rem; color: #666; }

/* ============================================================
   SERMONS PAGE
   ============================================================ */
.featured-sermon {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
  margin-bottom: 52px;
  box-shadow: var(--shadow);
}
.featured-sermon h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; }
.featured-sermon .scripture { color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.featured-sermon p { color: rgba(255,255,255,0.85); line-height: 1.75; }
.featured-sermon img {
  border-radius: var(--radius);
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.sermons-list { display: flex; flex-direction: column; gap: 20px; }
.sermon-row {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-left: 5px solid var(--accent);
}
.sermon-row .sr-info h4 { font-size: 1rem; margin-bottom: 6px; }
.sermon-row .sr-info p  { font-size: 0.88rem; color: #666; }
.sermon-row .sr-meta    { text-align: right; font-size: 0.82rem; color: #999; flex-shrink: 0; }
.sermon-row .sr-meta .scripture-ref { color: var(--accent); font-weight: 600; display: block; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s;
}
.event-card:hover { transform: translateY(-4px); }
.event-card img { width: 100%; height: 200px; object-fit: cover; }
.event-card .ec-body { padding: 24px; }
.event-card .ec-date {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.event-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.event-card p  { font-size: 0.88rem; color: #666; }
.event-card .ec-meta { font-size: 0.82rem; color: #999; margin-top: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-info-block {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-block h3 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail .ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text);
}

/* Form */
.contact-form-wrap { }
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-notice.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.form-notice.error   { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }

/* Map */
.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Services quick box */
.services-quick {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  margin-top: 28px;
}
.services-quick h4 { color: var(--accent); margin-bottom: 16px; }
.services-quick ul { list-style: none; }
.services-quick ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  justify-content: space-between;
}
.services-quick ul li:last-child { border-bottom: none; }
.services-quick ul li span { color: var(--accent); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story img {
  border-radius: var(--radius);
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; color: #555; }

.stats-strip {
  background: var(--primary);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-item p { color: rgba(255,255,255,0.82); font-size: 0.9rem; }

/* ============================================================
   WORSHIP PAGE — Schedule Table
   ============================================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-table thead { background: var(--primary); color: var(--white); }
.schedule-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}
.schedule-table tbody tr { border-bottom: 1px solid #f0ece4; }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody td {
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text);
}
.schedule-table tbody td:nth-child(2) {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.schedule-table tbody tr:hover { background: var(--light-bg); }

.visitor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.visitor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.visitor-card .vc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.visitor-card h3 { font-size: 1rem; margin-bottom: 10px; }
.visitor-card p  { font-size: 0.88rem; color: #666; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .times-grid      { grid-template-columns: repeat(2, 1fr); }
  .cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .featured-sermon { grid-template-columns: 1fr; }
  .featured-sermon img { height: 220px; }
  /* Footer: collapse to 2×2 on tablets */
  .footer-body-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  /* Header */
  .hamburger { display: flex; }
  #main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    display: none;
  }
  #main-nav.open { display: block; }
  #main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    gap: 0;
    white-space: normal;
  }
  #main-nav ul li a { padding: 12px 24px; border-radius: 0; }
  .header-inner { position: relative; }

  /* Grids → 1 col */
  .mv-grid         { grid-template-columns: 1fr; }
  .welcome-grid    { grid-template-columns: 1fr; }
  .about-story     { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .cards-grid      { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .beliefs-grid    { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .events-grid     { grid-template-columns: 1fr; }
  .visitor-cards   { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2,1fr); }
  .times-grid      { grid-template-columns: repeat(2,1fr); }

  /* Footer → single column on mobile */
  .footer-body        { padding: 44px 0 36px; }
  .footer-body-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-topbar-verse { font-size: 0.8rem; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .sermon-row { flex-direction: column; align-items: flex-start; }
  .sermon-row .sr-meta { text-align: left; }
  .mv-card { padding: 44px 28px; }
}
