/* =============================================
   Corner Brook Congregation of Jehovah's Witnesses
   Main Stylesheet
   ============================================= */

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

:root {
  --navy:    #5c2032;   /* Deep wine / burgundy — primary */
  --gold:    #b8902a;   /* Antique gold — accent */
  --gold-lt: #d4aa4a;   /* Light gold — hover */
  --blue:    #8b3a52;   /* Medium rose-burgundy — links/secondary */
  --light:   #fbf8f4;   /* Warm cream — backgrounds */
  --text:    #2c1a10;   /* Warm dark brown — body text */
  --muted:   #7a6258;   /* Warm muted brown — secondary text */
  --white:   #ffffff;
  --border:  #e8ddd4;   /* Warm beige border */
  --shadow:  0 4px 24px rgba(92,32,50,.10);
  --shadow-lg: 0 8px 40px rgba(92,32,50,.16);
  --radius:  8px;
  --radius-lg: 16px;
  --font:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --transition: .25s ease;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utilities --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,165,90,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0 28px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-org {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.logo-city {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.site-nav a {
  color: rgba(255,255,255,.85);
  font-size: .83rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--transition);
  letter-spacing: .01em;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-contact-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 7px 16px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-contact-btn:hover {
  background: var(--gold-lt) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .30;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,32,50,.92) 0%, rgba(139,58,82,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}
.hero-label {
  display: inline-block;
  background: rgba(200,165,90,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.3); }
}

/* --- Mission Vision Cards (Homepage) --- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mv-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.mv-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* --- Feature Stats --- */
.stats-band {
  background: var(--navy);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 28px;
}
.card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.card-body p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--navy); }

/* --- Image Feature Block --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.feature-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.feature-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 16px 22px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.2;
}
.feature-img-badge span {
  font-size: .75rem;
  font-weight: 500;
  display: block;
}
.feature-text .btn { margin-top: 28px; }

/* --- Quote / Verse Block --- */
.verse-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.verse-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 20px;
  position: relative;
}
.verse-section blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.5em;
  margin-right: 8px;
  opacity: .6;
}
.verse-ref {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
}

/* --- List Features --- */
.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .96rem;
  color: var(--text);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%231a3a5c' d='M10 3L5 8.5 2 5.5l-1 1L5 10.5l6-7z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* --- Breadcrumb --- */
.page-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.75;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.contact-detail-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-detail-text span, .contact-detail-text a {
  font-size: .95rem;
  color: var(--muted);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(92,32,50,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-notice {
  font-size: .78rem;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 20px;
}

/* --- Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours-table td {
  padding: 10px 0;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 50%; }

/* --- FAQ Accordion --- */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--transition);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.team-card-body { padding: 24px; }
.team-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-card-body .role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.team-card-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Events --- */
.events-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.event-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  align-items: center;
  transition: transform var(--transition);
}
.event-item:hover { transform: translateY(-2px); }
.event-date {
  background: var(--navy);
  border-radius: 10px;
  text-align: center;
  padding: 12px 8px;
  color: var(--white);
}
.event-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.event-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.event-meta { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 12px; }
.event-info p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* --- Resources --- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.resource-card:hover { transform: translateY(-3px); }
.resource-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.resource-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.resource-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* --- Map Frame --- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --- Programs --- */
.programs-feature {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* =============================================
   PRE-FOOTER VERSE BAND
   ============================================= */
.prefooter-band {
  background: linear-gradient(135deg, #3a1120 0%, var(--navy) 50%, #7a2840 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.prefooter-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,165,90,.06);
  pointer-events: none;
}
.prefooter-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200,165,90,.04);
  pointer-events: none;
}
.prefooter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.prefooter-verse {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.prefooter-quote-icon {
  width: 32px;
  height: 26px;
  fill: var(--gold);
  opacity: .35;
  margin-bottom: 14px;
  display: block;
}
.prefooter-verse blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}
.prefooter-verse cite {
  font-size: .8rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
}
.prefooter-cta {
  text-align: center;
}
.prefooter-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   MAIN FOOTER
   ============================================= */
.site-footer {
  background: #2a0e1a;
  color: rgba(255,255,255,.65);
}

/* Top section */
.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Col 1 — Brand */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  padding: 4px;
}
.footer-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer-logo-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.footer-logo-sub {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 500;
}
.footer-tagline {
  font-size: .87rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 290px;
}
.footer-charity-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(200,165,90,.08);
  border: 1px solid rgba(200,165,90,.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 4px;
}
.footer-charity-badge svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-charity-badge span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-charity-badge strong {
  color: var(--gold);
  font-size: .8rem;
  display: block;
  margin-top: 2px;
}

/* Column headings */
.footer-heading {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.9);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-heading-bar {
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Nav link lists */
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link-list a:last-child { border-bottom: none; }
.footer-link-list a svg {
  width: 14px; height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
  opacity: .7;
  transition: opacity var(--transition);
}
.footer-link-list a:hover {
  color: var(--white);
  padding-left: 6px;
}
.footer-link-list a:hover svg { opacity: 1; }

/* Meeting times card */
.footer-hours-card {
  margin-top: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px;
}
.footer-hours-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px;
}
.footer-hours-title svg {
  width: 14px; height: 14px;
  fill: var(--gold);
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-hours-row:last-of-type { border-bottom: none; }
.footer-hours-note {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  line-height: 1.5;
  font-style: italic;
}

/* Contact card */
.footer-contact-col { }
.footer-contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
}
.fcc-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  align-items: flex-start;
  transition: background var(--transition);
}
.fcc-item:hover { background: rgba(255,255,255,.04); }
.fcc-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 0 18px;
}
.fcc-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(200,165,90,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fcc-icon svg {
  width: 16px; height: 16px;
  fill: var(--gold);
}
.fcc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fcc-text strong {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  display: block;
}
.fcc-text span {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.fcc-text a {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  transition: color var(--transition);
  word-break: break-word;
}
.fcc-text a:hover { color: var(--gold); }

/* Mid divider — sitemap bar */
.footer-mid-divider {
  background: rgba(0,0,0,.15);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-mid-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-mid-pages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 2px;
  font-size: .74rem;
}
.footer-mid-pages span {
  color: rgba(255,255,255,.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 10px;
}
.footer-mid-pages a {
  color: rgba(255,255,255,.38);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.footer-mid-pages a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Bottom bar */
.footer-bottom-bar {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-left img {
  opacity: .35;
  border-radius: 3px;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-charity-num { color: rgba(255,255,255,.3); }
.footer-sep { opacity: .3; }
.footer-bottom-right a {
  color: rgba(255,255,255,.38);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
  .footer-tagline { max-width: 420px; }
}

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .prefooter-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 14px; font-size: .9rem; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 36px; }
  .feature-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .prefooter-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .prefooter-verse { border-left: none; border-top: 3px solid var(--gold); padding-left: 0; padding-top: 20px; }
  .prefooter-quote-icon { margin: 0 auto 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: 70vh; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px; }
  .contact-form-wrap { padding: 24px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 48px 0 40px; }
  .footer-brand-col { flex-direction: column; }
  .footer-mid-pages { justify-content: center; }
  .footer-bottom-right { justify-content: center; }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* =============================================
   CHURCH THEME REFINEMENTS
   ============================================= */

/* Serif headings for a warmer, more devotional tone */
.section-title,
.hero h1,
.page-hero h1,
.mv-card h3,
.cta-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -.015em;
}

/* Warm cream base instead of cold white */
body { background: var(--light); }
.card, .mv-card, .contact-form-wrap, .resource-card, .event-item, .team-card {
  background: #fff;
}

/* Subtle cross-pattern texture on dark sections */
.stats-band,
.verse-section,
.page-hero,
.site-header,
.prefooter-band,
.site-footer {
  background-image: 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.018'%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");
}

/* Hero: add a warm vignette glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(184,144,42,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { z-index: 2; }

/* Gold divider — slightly thicker for gravitas */
.divider { height: 4px; width: 64px; }

/* Hero label — warmer pill */
.hero-label {
  background: rgba(184,144,42,.18);
  border-color: rgba(184,144,42,.6);
}

/* Section label — italic serif for spiritual feel */
.section-label {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  letter-spacing: .06em;
  font-weight: 600;
}

/* Verse section — richer warm overlay */
.verse-section {
  background: linear-gradient(160deg, #3a1120 0%, var(--navy) 60%, #6a2030 100%) !important;
  background-image: 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.018'%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") !important;
}

/* Stats band — warm gradient */
.stats-band {
  background: linear-gradient(160deg, #3a1120 0%, var(--navy) 100%) !important;
  background-image: 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.018'%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") !important;
}

/* CTA section — warm rich gradient */
.cta-section {
  background: linear-gradient(135deg, #3a1120 0%, var(--navy) 60%, #7a2840 100%) !important;
  background-image: 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.018'%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") !important;
}

/* Card top border — gold accent */
.card { border-top: 3px solid var(--gold); }

/* Feature image badge — warm tones */
.feature-img-badge {
  background: var(--gold);
  color: #2c1a10;
}

/* Mission/vision card hover — warm shadow */
.mv-card:hover {
  box-shadow: 0 12px 48px rgba(92,32,50,.14);
}

/* Nav contact button — warm */
.nav-contact-btn {
  background: var(--gold) !important;
  color: #2c1a10 !important;
}

/* Stat number — slightly larger serif */
.stat-number {
  font-family: Georgia, 'Times New Roman', serif;
}

/* Timeline marker — warm gold */
.timeline-item::before {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

/* Page hero — warm dark overlay */
.page-hero {
  background-color: var(--navy) !important;
  background-blend-mode: multiply;
}
.page-hero::before {
  background: linear-gradient(160deg, rgba(58,17,32,.85) 0%, rgba(92,32,50,.70) 100%) !important;
  opacity: 1 !important;
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
}

/* Form focus — burgundy ring */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(92,32,50,.12);
  background: #fff;
}

/* Footer background tones */
.footer-top { background: #2a0e1a; }
.footer-mid-divider { background: rgba(0,0,0,.2); }
.footer-bottom-bar { background: rgba(0,0,0,.25); }

