/* ============================================================
   CENTREPOINTE CHRISTIAN REFORMED CHURCH — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:      #1a2b4a;
  --navy-dark: #111d33;
  --gold:      #c9a84c;
  --gold-light:#e8c96a;
  --cream:     #f8f6f2;
  --white:     #ffffff;
  --charcoal:  #2d2d2d;
  --muted:     #6b7280;
  --border:    #e2ddd5;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', 'Helvetica Neue', sans-serif;

  --max-w:     1200px;
  --header-h:  76px;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --trans:     .25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a  { color: var(--navy); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold); }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
p  { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-lead  { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 640px; }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-lead  { color: rgba(255,255,255,.7); }
.section--navy p, .section--navy li { color: rgba(255,255,255,.85); }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Fade-in animation ---------- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.2;
}
.brand-sub {
  font-weight: 400;
  font-size: .88rem;
  color: var(--muted);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .1rem;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.main-nav a {
  display: inline-block;
  padding: .4rem .65rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--navy);
  color: var(--white);
}
.main-nav a.active { background: var(--gold); color: var(--navy); }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,.75) 0%, rgba(26,43,74,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.65;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.hero-cta:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-2px); }

/* ============================================================
   WELCOME BAND
   ============================================================ */
.welcome-band {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}
.welcome-band p {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}
.welcome-band strong { color: var(--gold-light); font-weight: 700; }

/* ============================================================
   MISSION + VISION CARDS
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--cream);
  border-radius: 50% 0 0 0;
}
.mv-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.mv-card h3 {
  color: var(--navy);
  margin-bottom: .75rem;
  font-size: 1.4rem;
}
.mv-card p { color: var(--charcoal); margin-bottom: 0; font-size: 1.05rem; line-height: 1.75; }
.card-link {
  display: inline-block;
  margin-top: .75rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.card-link:hover { color: var(--navy); }

/* ============================================================
   TWO-COL LAYOUT (reusable)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse { }
.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}
.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   WORSHIP HIGHLIGHT
   ============================================================ */
.worship-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.worship-img {
  position: relative;
  overflow: hidden;
}
.worship-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.worship-img:hover img { transform: scale(1.04); }
.worship-text {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.worship-text .section-label { color: var(--gold-light); }
.worship-text h2 { color: var(--white); margin-bottom: 1rem; }
.worship-text p  { color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
.service-times { margin: 1.5rem 0; }
.service-times li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.service-times li:last-child { border-bottom: none; }
.time-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .78rem;
  padding: .2rem .65rem;
  border-radius: 20px;
  white-space: nowrap;
}
.btn-outline-white {
  display: inline-block;
  margin-top: .5rem;
  padding: .75rem 1.75rem;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.btn-outline-white:hover { background: var(--gold); color: var(--navy-dark); }

/* ============================================================
   PROGRAMS CARDS
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}
.prog-card-img { position: relative; height: 200px; overflow: hidden; }
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prog-card:hover .prog-card-img img { transform: scale(1.06); }
.prog-card-body { padding: 1.5rem; }
.prog-card-body h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: .5rem; }
.prog-card-body p  { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.prog-card-body a  {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid transparent;
  transition: border-color var(--trans);
}
.prog-card-body a:hover { border-color: var(--gold); }
.programs-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   COMMUNITY SECTION (split)
   ============================================================ */
.community-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.community-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 0;
}
.community-img { position: relative; overflow: hidden; border-radius: 0 var(--radius) var(--radius) 0; }
.community-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT SUMMARY BAND
   ============================================================ */
.contact-band {
  background: var(--navy-dark);
  padding: 3.5rem 0;
}
.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-info-list { display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.4rem; color: var(--gold); margin-top: .1rem; }
.contact-info-item strong { display: block; color: var(--gold-light); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item span, .contact-info-item a { color: rgba(255,255,255,.85); font-size: .95rem; }
.contact-info-item a:hover { color: var(--gold-light); }
.btn-primary {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(198, 169, 105, .14), transparent 34%),
    linear-gradient(180deg, #12233f 0%, #0f1d33 100%);
  color: rgba(255,255,255,.78);
  padding-top: 4.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}
.footer-brand-panel {
  padding: 2rem 2.1rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-logo { width: 50px; height: 50px; object-fit: contain; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-kicker {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-org-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.3;
  max-width: 480px;
}
.footer-intro {
  margin: 0;
  max-width: 62ch;
  line-height: 1.9;
  color: rgba(255,255,255,.76);
}
.footer-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .95rem;
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(198,169,105,.16) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(198,169,105,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.footer-card-label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-card-text {
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
}
.footer-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.38);
  padding-bottom: .2rem;
}
.footer-card-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.footer-col address {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  line-height: 1.7;
  font-size: .95rem;
  font-style: normal;
}
.footer-col address a { color: rgba(255,255,255,.78); }
.footer-col address a:hover { color: var(--gold-light); }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul a { font-size: .95rem; color: rgba(255,255,255,.72); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { font-size: .95rem; margin-bottom: .6rem; }
.footer-meta-line strong {
  color: var(--white);
  font-weight: 600;
}
.footer-tagline {
  margin-top: 1rem;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
  font-size: .92rem !important;
}
.footer-copy {
  background: rgba(7,14,25,.5);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
  margin-top: 0;
}
.footer-copy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }
.footer-copy-note { text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav a { font-size: .76rem; padding: .38rem .5rem; }
  .brand-sub   { display: none; }
  .brand-name  { font-size: .95rem; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .main-nav.nav-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; white-space: normal; }
  .main-nav a  { font-size: .9rem; padding: .65rem .5rem; display: block; width: 100%; }

  .mv-grid           { grid-template-columns: 1fr; }
  .worship-highlight { grid-template-columns: 1fr; }
  .worship-img       { height: 260px; }
  .worship-text      { padding: 2.5rem 1.5rem; }
  .programs-grid     { grid-template-columns: 1fr; }
  .community-split   { grid-template-columns: 1fr; }
  .community-text    { padding: 2.5rem 1.5rem; }
  .community-img     { height: 280px; border-radius: 0; }
  .contact-band-inner{ flex-direction: column; align-items: flex-start; }
  .contact-info-list { flex-direction: column; gap: 1.5rem; }
  .footer-top        { grid-template-columns: 1fr; }
  .footer-main       { grid-template-columns: 1fr 1fr; }
  .two-col           { grid-template-columns: 1fr; }
  .two-col-img       { max-height: 260px; }
  .two-col-img img   { height: 260px; }
  .two-col--reverse  { direction: ltr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(17,29,51,.78) 0%, rgba(26,43,74,.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content .section-label { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); margin: .4rem 0 .75rem; }
.page-hero-content p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0; }

/* Page-specific hero backgrounds */
.page-hero--mission  { background-image: url('images/ima (5).jpg'); }
.page-hero--about    { background-image: url('images/ima (9).jpg'); }
.page-hero--worship  { background-image: url('images/ima (3).jpg'); }
.page-hero--programs { background-image: url('images/ima (4).jpg'); }
.page-hero--community{ background-image: url('images/ima (6).jpg'); }
.page-hero--visitors { background-image: url('images/ima (7).jpg'); }
.page-hero--contact  { background-image: url('images/ima (11).jpg'); }

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--trans);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.value-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ============================================================
   INFO BLOCKS
   ============================================================ */
.info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.info-block {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.info-block h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: .75rem; }
.info-block p  { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.65; }
.info-blocks--white .info-block--white {
  background: rgba(255,255,255,.07);
  border-color: var(--gold);
}
.info-block--white h3 { color: var(--white); }
.info-block--white p  { color: rgba(255,255,255,.75); }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ============================================================
   MINISTRY LIST (programs page)
   ============================================================ */
.ministry-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.ministry-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
}
.ministry-item--reverse { grid-template-columns: 1fr 420px; }
.ministry-item--reverse .ministry-img { order: 2; }
.ministry-item--reverse .ministry-body { order: 1; }
.ministry-img { border-radius: var(--radius); overflow: hidden; height: 300px; }
.ministry-img img { width: 100%; height: 100%; object-fit: cover; }
.ministry-body h3 { color: var(--navy); margin-bottom: .75rem; }
.bullet-list { margin: 1rem 0 0 1rem; list-style: disc; }
.bullet-list li { color: var(--muted); font-size: .92rem; margin-bottom: .3rem; }

/* ============================================================
   TIMES GRID (worship page)
   ============================================================ */
.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.time-card-head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.time-card-time {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: block;
}
.time-card p { font-size: .92rem; color: var(--muted); }
.time-detail-list { margin: 1rem 0 0 1rem; list-style: disc; }
.time-detail-list li { font-size: .88rem; color: var(--muted); margin-bottom: .3rem; }

/* ============================================================
   EXPECT LIST (worship page)
   ============================================================ */
.expect-list { list-style: none; margin: 0; padding: 0; }
.expect-list li {
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.expect-list li:last-child { border-bottom: none; }
.expect-list strong { color: var(--navy); }

/* ============================================================
   VISIT CARDS (visitors page)
   ============================================================ */
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--trans);
}
.visit-card:hover { transform: translateY(-4px); }
.visit-card-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.visit-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: .5rem; }
.visit-card p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ============================================================
   FAQ LIST (visitors page)
   ============================================================ */
.faq-list { margin-top: 2.5rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: .6rem; }
.faq-item p  { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.7; }
.faq-item a  { color: var(--gold); font-weight: 700; }
.faq-item a:hover { color: var(--navy); }

/* ============================================================
   LOCATION BLOCK (visitors + contact)
   ============================================================ */
.location-block {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.location-details h3 { color: var(--navy); margin-bottom: 1rem; }
.location-details p  { font-size: .92rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.65; }
.location-details a  { color: var(--gold); font-weight: 700; }
.location-details a:hover { color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-detail-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.contact-detail-item strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); margin-bottom: .25rem; font-family: var(--font-sans); }
.contact-detail-item span,
.contact-detail-item address,
.contact-detail-item a { font-size: .95rem; color: var(--muted); line-height: 1.6; }
.contact-detail-item a:hover { color: var(--gold); }
.contact-img-wrap { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; max-height: 220px; }
.contact-img-wrap img { width: 100%; height: 220px; object-fit: cover; }

/* Contact Form */
.contact-form { margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.form-group label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: .4rem; }
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.5;
}
.form-alert--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-alert--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid  { grid-template-columns: 1fr 1fr; }
  .info-blocks  { grid-template-columns: 1fr; }
  .times-grid   { grid-template-columns: 1fr 1fr; }
  .stats-row    { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ministry-item,
  .ministry-item--reverse { grid-template-columns: 1fr; }
  .ministry-item--reverse .ministry-img,
  .ministry-item--reverse .ministry-body { order: unset; }
  .ministry-img { height: 240px; }
  .location-block { grid-template-columns: 1fr; }
  .contact-layout { gap: 3rem; }
}

@media (max-width: 640px) {
  .footer-inner      { padding: 0 1rem 2.75rem; }
  .footer-brand-panel,
  .footer-highlight-card { padding: 1.5rem; border-radius: 20px; }
  .footer-brand      { align-items: flex-start; }
  .footer-org-name   { font-size: 1.06rem; }
  .footer-main       { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-copy-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy-note  { text-align: left; }
  .values-grid       { grid-template-columns: 1fr; }
  .times-grid        { grid-template-columns: 1fr; }
  .visit-cards       { grid-template-columns: 1fr; }
  .stats-row         { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .page-hero         { min-height: 28vh; padding-bottom: 2rem; }
}
