/* ============================================================
   PLEASANT GROVE BAPTIST CHURCH — Main Stylesheet
   Built by West Computers · Laurel, MS
   File: assets/css/style.css
   Version: 1.0

   TABLE OF CONTENTS
   -----------------
   01. Brand Tokens (CSS Variables)
   02. Reset & Base
   03. Utility Classes
   04. Buttons
   05. Navigation
   06. Footer
   07. Section: Hero
   08. Section: Service Times Bar
   09. Section: Welcome
   10. Section: Scripture Quote
   11. Section: Pillars
   12. Section: Missions
   13. Section: Giving Strip
   14. Section: Connect / Contact
   15. Section: Plan a Visit Banner
   16. Responsive — Tablet (≤ 900px)
   17. Responsive — Mobile (≤ 600px)
============================================================ */


/* ============================================================
   01. BRAND TOKENS
   All site colors, fonts, and shared values live here.
   Edit this section to retheme the entire site.
============================================================ */
:root {

  /* --- Primary Colors --- */
  --teal:        #396867;   /* Grove Teal — primary brand color */
  --teal-dark:   #234140;   /* Deep Teal — footers, dark overlays */
  --teal-mid:    #4A8180;   /* Mid Teal — hover states, borders */
  --teal-light:  #6BA3A2;   /* Light Teal — subtle UI accents */
  --teal-pale:   #D4E8E7;   /* Pale Teal — tinted backgrounds */
  --teal-ghost:  #EBF3F3;   /* Ghost Teal — section alternates, cards */

  /* --- Accent Colors --- */
  --gold:        #dfa765;   /* Harvest Gold — CTAs, tagline, featured elements */
  --gold-dark:   #B07A3A;   /* Dark Gold — gold text on light backgrounds */
  --gold-light:  #EEC590;   /* Light Gold — hover states, soft fills */
  --gold-pale:   #F8E9D4;   /* Pale Gold — callout boxes, announcement strips */

  /* --- Neutral/Base --- */
  --cream:       #fff9f0;   /* Parchment — page background */
  --cream-dark:  #F0E8D8;   /* Dark Parchment — section dividers, borders */
  --white:       #FFFFFF;

  /* --- Grays --- */
  --charcoal:    #222220;   /* Near-black — primary text */
  --gray-600:    #4A4A47;
  --gray-400:    #7A7A77;
  --gray-200:    #C8C6C1;
  --gray-100:    #E8E6E1;

  /* --- Semantic Aliases --- */
  --text-primary:   #222220;
  --text-secondary: #5A5A57;
  --text-muted:     #8A8A87;
  --border:         #DDD9D4;

  /* --- Typography --- */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', Helvetica, Arial, sans-serif;

  /* --- Shared UI Values --- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(35, 65, 64, 0.08), 0 1px 3px rgba(35, 65, 64, 0.06);
  --shadow-btn:  0 2px 8px rgba(57, 104, 103, 0.25);

}


/* ============================================================
   02. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

blockquote {
  border: none;
}


/* ============================================================
   03. UTILITY CLASSES
============================================================ */

/* --- Layout Container --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Label (small eyebrow text above headings) --- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* --- Section Intro Paragraph --- */
.section-intro {
  font-weight: 300;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

/* --- Scripture / Pull Quote block --- */
.scripture-block {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--teal);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  line-height: 1.75;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* --- Announcement Strip --- */
.announcement-strip {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 0.7rem 0.9rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.announcement-strip .strip-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.2rem;
}

.announcement-strip .strip-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold-dark);
}

/* --- Visually hidden (accessibility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Page hero padding offset for fixed nav --- */
.page-hero-offset {
  padding-top: 70px;
}


/* ============================================================
   04. BUTTONS
   Usage: <a href="#" class="btn btn-primary">Label</a>
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Primary — teal fill, white text */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(57, 104, 103, 0.35);
}

/* Outline — transparent with white border (for use on dark backgrounds) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Gold — gold fill, dark text */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(223, 167, 101, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 14px rgba(223, 167, 101, 0.4);
}

/* Teal Outline — transparent with teal border (for use on light backgrounds) */
.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-teal-outline:hover {
  background: var(--teal-ghost);
}

/* Dark — charcoal fill (for use when teal and gold are taken) */
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-600);
}


/* ============================================================
   05. NAVIGATION
   Fixed top nav. Logo left, links right, Give CTA on far right.
   Mobile: hamburger toggle with .is-open class (wired via inline JS in HTML).
============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(35, 65, 64, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(223, 167, 101, 0.5);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Give button — gold override inside nav */
.nav-give-btn {
  color: var(--charcoal) !important;
  background: var(--gold) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius-sm);
}

.nav-give-btn:hover {
  background: var(--gold-light) !important;
}

/* Mobile hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}


/* ============================================================
   06. FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto 2.5rem;
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer-brand .footer-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-times-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-times-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-times-list .ft-service {
  color: rgba(255, 255, 255, 0.7);
}

.footer-times-list .ft-time {
  color: var(--gold);
  font-weight: 400;
}

.footer-contact-mini {
  margin-top: 1.25rem;
}

.footer-contact-mini p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-contact-mini a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.18s;
}

.footer-contact-mini a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 300;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.18s;
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* ============================================================
   07. SECTION: HERO
   Full-viewport hero. Replace background-image comment in HTML.
============================================================ */
.hero {
  background:
    linear-gradient(
      to bottom,
      rgba(35, 65, 64, 0.72) 0%,
      rgba(35, 65, 64, 0.60) 60%,
      rgba(35, 65, 64, 0.80) 100%
    ),
    /* SWAP: url('../images/hero.jpg') center/cover no-repeat */
    linear-gradient(135deg, #234140 0%, #396867 50%, #2F5857 100%);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  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.015'%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");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 0.35rem;
}

.hero-tagline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-tagline strong {
  font-weight: 700;
  color: var(--white);
}

.hero-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  opacity: 0.8;
}

.hero-desc {
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll cue arrow */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.45;
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--white), transparent);
}


/* ============================================================
   08. SECTION: SERVICE TIMES BAR
============================================================ */
.times-bar {
  background: var(--teal-dark);
}

.times-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1140px;
  margin: 0 auto;
}

.time-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.time-item:last-child {
  border-right: none;
}

.time-day {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.time-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.time-clock {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ============================================================
   09. SECTION: WELCOME
============================================================ */
.welcome {
  padding: 6rem 2rem;
  background: var(--cream);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.welcome-text p {
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.welcome-text p:last-of-type {
  margin-bottom: 1.75rem;
}

/* Pastor block */
.pastor-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--teal-ghost);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
}

.pastor-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal-light);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pastor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pastor-photo-placeholder {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.pastor-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.15rem;
}

.pastor-title {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Welcome image column */
.welcome-visual {
  position: relative;
}

.welcome-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.welcome-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-img-placeholder {
  text-align: center;
  padding: 2rem;
}

.welcome-img-placeholder p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 0.5rem;
}

.welcome-img-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  opacity: 0.3;
}

/* Gold accent block behind image */
.welcome-visual::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}


/* ============================================================
   10. SECTION: SCRIPTURE QUOTE
============================================================ */
.scripture-section {
  background: var(--teal);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative large opening quote mark */
.scripture-section::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.scripture-text {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1.25rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.scripture-ref {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ============================================================
   11. SECTION: PILLARS (What We're About)
============================================================ */
.pillars {
  padding: 6rem 2rem;
  background: var(--cream);
}

.pillars-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pillars-header .section-intro {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35, 65, 64, 0.12);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: var(--teal-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.pillar-body {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ============================================================
   12. SECTION: MISSIONS
============================================================ */
.missions {
  background: var(--teal-dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.missions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.missions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.missions-text .section-label {
  color: var(--gold-light);
}

.missions-text .section-title {
  color: var(--white);
}

.missions-text p {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.missions-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mission-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.mission-point span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
}

.missions-verse {
  background: rgba(223, 167, 101, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
}

.missions-verse p {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

.missions-verse cite {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Missions stat cards grid */
.missions-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.stat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  display: block;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.stat-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.5;
}


/* ============================================================
   13. SECTION: GIVING STRIP
============================================================ */
.giving {
  background: var(--gold-pale);
  padding: 4.5rem 2rem;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.giving-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.giving-text {
  flex: 1;
  min-width: 260px;
}

.giving-text .section-label {
  color: var(--gold-dark);
}

.giving-text .section-title {
  font-size: 2rem;
  color: var(--teal-dark);
}

.giving-text p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}

.giving-cta {
  flex-shrink: 0;
}


/* ============================================================
   14. SECTION: CONNECT / CONTACT
============================================================ */
.connect {
  padding: 6rem 2rem;
  background: var(--cream);
}

.connect-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.connect-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-card-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.connect-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  line-height: 1.2;
}

.connect-card p,
.connect-card address {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.connect-card a {
  color: var(--teal);
  font-weight: 400;
  transition: color 0.18s;
}

.connect-card a:hover {
  color: var(--gold-dark);
}

/* Service times list inside connect card */
.times-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.times-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.times-list li:last-child {
  border-bottom: none;
}

.times-list .tl-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.times-list .tl-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

/* Social links row */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal) !important;
  background: var(--teal-ghost);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  transition: background 0.18s, color 0.18s;
}

.social-link:hover {
  background: var(--teal-pale);
  color: var(--teal-dark) !important;
}

.social-link svg {
  flex-shrink: 0;
}

/* Give sub-block inside connect card */
.connect-give-block {
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.connect-give-block p {
  font-size: 0.88rem !important;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

/* Map embed */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: var(--teal-ghost);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ============================================================
   15. SECTION: PLAN A VISIT BANNER
============================================================ */
.plan-visit {
  background: var(--teal);
  padding: 4rem 2rem;
  text-align: center;
}

.plan-visit h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.plan-visit p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   16. RESPONSIVE — TABLET (≤ 900px)
============================================================ */
@media (max-width: 900px) {

  .times-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .time-item:nth-child(4),
  .time-item:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .welcome-visual {
    order: -1;
  }

  .welcome-img-wrap {
    aspect-ratio: 16/9;
  }

  .welcome-visual::before {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .missions-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

}


/* ============================================================
   17. RESPONSIVE — MOBILE (≤ 600px)
============================================================ */
@media (max-width: 600px) {

  /* Nav — show hamburger, hide links by default */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--teal-dark);
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* .is-open added by the inline onclick on the hamburger button */
  .nav-links.is-open {
    display: flex;
  }

  .nav-give-btn {
    text-align: center;
  }

  /* Times bar — stack vertically */
  .times-bar-inner {
    grid-template-columns: 1fr;
  }

  .time-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem;
  }

  /* Pillars — single column */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  /* Giving — stack and center */
  .giving-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Connect — single column */
  .connect-grid {
    grid-template-columns: 1fr;
  }

  /* Footer — single column */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Hero buttons — stack and full width */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

}

/* ============================================================
   18. INNER PAGE HERO
   Shorter hero used on About, Sermons, Missions, Contact.
   Replaces the full-viewport .hero on inner pages.
============================================================ */
.page-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(35, 65, 64, 0.78) 0%,
      rgba(35, 65, 64, 0.88) 100%
    ),
    /* SWAP per page: url('../images/[page]-hero.jpg') center/cover no-repeat */
    linear-gradient(135deg, #234140 0%, #396867 55%, #2F5857 100%);
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem 5rem;   /* top pad accounts for fixed nav (70px) + breathing room */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Same subtle cross texture as home hero */
.page-hero::before {
  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.015'%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");
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.page-hero-sub {
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* Breadcrumb nav inside page-hero */
.page-breadcrumb {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.18s;
}

.page-breadcrumb a:hover {
  color: var(--gold-light);
}

.page-breadcrumb .sep {
  opacity: 0.35;
}

.page-breadcrumb .current {
  color: var(--gold-light);
}


/* ============================================================
   19. ABOUT PAGE
============================================================ */

/* --- Who We Are intro section --- */
.about-intro {
  padding: 6rem 2rem;
  background: var(--cream);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.about-intro-text p {
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* Church photo side */
.about-intro-visual {
  position: relative;
}

.about-intro-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--teal-ghost);
  box-shadow: var(--shadow-card);
}

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

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--teal-light);
}

.about-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.about-img-placeholder p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0;
}

/* Gold accent block behind photo */
.about-intro-visual::before {
  content: '';
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  width: 55%;
  height: 55%;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}


/* --- Core Values / Beliefs strip --- */
.beliefs {
  background: var(--teal-ghost);
  padding: 6rem 2rem;
  border-top: 1px solid var(--teal-pale);
  border-bottom: 1px solid var(--teal-pale);
}

.beliefs-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.belief-card {
  background: var(--white);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.belief-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-pale);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.belief-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.belief-body {
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.beliefs-bfm-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

.beliefs-bfm-note a {
  color: var(--teal);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.beliefs-bfm-note a:hover {
  color: var(--gold-dark);
}


/* --- Pastor section --- */
.pastor-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.pastor-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

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

.pastor-photo-large {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal-ghost);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pastor-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pastor-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* Gold frame accent */
.pastor-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 50%;
  height: 50%;
  border: 3px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.pastor-bio .pastor-name-large {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.pastor-bio .pastor-title-large {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

.pastor-bio p {
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pastor-bio p:last-of-type {
  margin-bottom: 0;
}

.pastor-bio .placeholder-note {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-top: 1.5rem;
}


/* --- Staff / Leadership grid --- */
.staff-section {
  background: var(--teal-ghost);
  padding: 6rem 2rem;
  border-top: 1px solid var(--teal-pale);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1140px;
  margin: 3rem auto 0;
}

.staff-card {
  background: var(--white);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.staff-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal-ghost);
  border: 3px solid var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
  overflow: hidden;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.staff-role {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.staff-placeholder-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Church history section --- */
.history-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.history-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.history-inner .section-intro {
  max-width: 100%;
  margin-top: 1rem;
}

.history-placeholder {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  background: var(--teal-ghost);
  border: 1px dashed var(--teal-pale);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
}


/* ============================================================
   20. SERMONS PAGE
============================================================ */

/* --- Featured sermon embed --- */
.sermon-featured {
  padding: 5rem 2rem;
  background: var(--cream);
}

.sermon-featured-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.sermon-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  box-shadow: 0 4px 24px rgba(35, 65, 64, 0.18);
}

.sermon-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.sermon-featured-meta {
  padding-top: 0.5rem;
}

.sermon-series-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.sermon-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.sermon-scripture {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.25rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

.sermon-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sermon-desc {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 1.25rem 0 1.75rem;
}

.sermon-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* --- Sermon archive grid --- */
.sermon-archive {
  padding: 3rem 2rem 6rem;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.sermon-archive-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sermon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.sermon-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.sermon-card:hover {
  box-shadow: 0 6px 24px rgba(35, 65, 64, 0.14);
  transform: translateY(-2px);
}

.sermon-card-thumb {
  aspect-ratio: 16/9;
  background: var(--teal-ghost);
  position: relative;
  overflow: hidden;
}

.sermon-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sermon-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-ghost) 0%, var(--teal-pale) 100%);
}

.sermon-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

/* Play icon overlay */
.sermon-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 65, 64, 0);
  transition: background 0.2s;
}

.sermon-card:hover .sermon-play-overlay {
  background: rgba(35, 65, 64, 0.35);
}

.sermon-play-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}

.sermon-card:hover .sermon-play-icon {
  opacity: 1;
  transform: scale(1);
}

.sermon-play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  margin-left: 2px; /* optical centering for play triangle */
}

.sermon-card-body {
  padding: 1.5rem;
}

.sermon-card-meta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.sermon-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.sermon-card-ref {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.sermon-card-link {
  display: block;
  color: inherit;
}

/* YouTube channel CTA strip */
.youtube-strip {
  background: var(--teal-dark);
  padding: 4rem 2rem;
  text-align: center;
}

.youtube-strip h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.youtube-strip p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   21. MISSIONS PAGE
============================================================ */

/* --- Mission intro block --- */
.missions-intro {
  padding: 6rem 2rem;
  background: var(--cream);
}

.missions-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.missions-intro-text p {
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.missions-intro-text p:last-of-type {
  margin-bottom: 0;
}

.missions-intro-scripture {
  background: var(--teal-ghost);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
}

.missions-intro-scripture .scripture-ref-large {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.missions-intro-scripture blockquote {
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--teal);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.missions-intro-scripture cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}


/* --- Focus area cards --- */
.missions-focus {
  background: var(--teal-dark);
  padding: 6rem 2rem;
}

.missions-focus-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.missions-focus-header .section-label {
  color: var(--gold);
}

.missions-focus-header .section-title {
  color: var(--white);
}

.missions-focus-header .section-intro {
  color: rgba(255, 255, 255, 0.65);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.focus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: background 0.2s, border-color 0.2s;
}

.focus-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(223, 167, 101, 0.4);
}

.focus-icon {
  width: 52px;
  height: 52px;
  background: rgba(223, 167, 101, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.focus-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.focus-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.focus-body {
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.focus-placeholder {
  font-style: italic;
  color: rgba(223, 167, 101, 0.5);
  font-size: 0.82rem;
  margin-top: 0.75rem;
}


/* --- Local missions detail --- */
.local-missions {
  padding: 6rem 2rem;
  background: var(--cream);
}

.local-missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1140px;
  margin: 3rem auto 0;
}

.local-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--teal);
}

.local-card-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.local-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.local-card-body {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* --- Missions giving CTA --- */
.missions-give {
  background: var(--gold-pale);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}

.missions-give .section-title {
  color: var(--teal-dark);
}

.missions-give p {
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
}


/* ============================================================
   22. CONTACT PAGE
============================================================ */

/* --- Contact layout --- */
.contact-main {
  padding: 6rem 2rem;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

/* --- Contact form --- */
.contact-form-wrap {
  /* nothing special — just a flow container */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(57, 104, 103, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-privacy-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}


/* --- Contact info sidebar --- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.contact-info-card .card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.contact-info-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}

.info-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
}

.info-text {
  flex: 1;
}

.info-text .info-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.info-text p,
.info-text a,
.info-text address {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: normal;
}

.info-text a {
  color: var(--teal);
  font-weight: 400;
  transition: color 0.18s;
}

.info-text a:hover {
  color: var(--gold-dark);
}

/* Service times in contact sidebar */
.contact-times-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-times-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}

.contact-times-list li:last-child {
  border-bottom: none;
}

.ct-service {
  font-weight: 300;
  color: var(--text-secondary);
}

.ct-time {
  font-weight: 600;
  color: var(--teal);
}

/* Map in contact page */
.contact-map {
  padding: 0 2rem 6rem;
  background: var(--cream);
}

.contact-map-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-map-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.map-embed-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-card);
  background: var(--teal-ghost);
}

.map-embed-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ============================================================
   23. RESPONSIVE — INNER PAGES (added breakpoints)
============================================================ */
@media (max-width: 900px) {

  .about-intro-inner,
  .missions-intro-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-intro-visual {
    order: -1;
  }

  .about-intro-visual::before {
    display: none;
  }

  .pastor-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pastor-photo-wrap {
    max-width: 260px;
    margin: 0 auto;
  }

  .pastor-photo-wrap::after {
    display: none;
  }

  .beliefs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sermon-featured-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-sidebar {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .page-hero {
    padding: 6.5rem 1.5rem 4rem;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .sermon-actions {
    flex-direction: column;
  }

  .sermon-actions .btn {
    text-align: center;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed-full {
    height: 280px;
  }

}