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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --gray:    #2a2a2a;
  --mid:     #555;
  --light:   #888;
  --border:  #222;
  --white:   #ffffff;
  --off:     #f5f5f5;
  --purple:  #5BC4E8;
  --purple2: #89D4F5;
  --orange:  #5BC4E8;
  --orange2: #3AAED8;
  --gold:    #89D4F5;
  --radius:  12px;
  --radius-lg: 20px;
  --nav-h:   72px;
  --transition: 0.3s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--purple2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,63,207,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  background: var(--purple);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-sm:hover {
  background: var(--purple2);
  transform: translateY(-1px);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* ===========================
   SECTION HEADERS
=========================== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

.section-cta { text-align: center; margin-top: 48px; }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-img-footer {
  height: 54px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

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

.nav-links .nav-cta {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-links .nav-cta:hover {
  background: var(--purple2);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

/* Slideshow */
.slideshow {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.45;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* Animated gradient orbs */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(91,196,232,0.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,196,232,0.1) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.service-times {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 16px 32px;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.service-time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-time .day {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.service-time .time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.service-times .divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-down svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   BANNER
=========================== */
.banner {
  background: var(--purple);
  padding: 14px 24px;
  text-align: center;
}

.banner p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.banner a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ===========================
   NEW HERE / SPLIT LAYOUT
=========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.new-here { padding: 120px 0; }

.new-here .section-title { color: var(--dark); }
.new-here .section-eyebrow { color: var(--purple); }

.section-body {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 32px;
  line-height: 1.7;
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.visual-card:hover { transform: translateY(-4px); }

.visual-card:nth-child(1) { grid-column: span 2; }

.card-purple { background: linear-gradient(135deg, #1a1a1a, #222); color: var(--white); border: 1px solid var(--purple); }
.card-orange { background: linear-gradient(135deg, var(--purple), #3AAED8); color: var(--white); }
.card-dark   { background: var(--dark2); color: var(--white); border: 1px solid var(--border); }

.visual-card .card-icon { font-size: 2rem; margin-bottom: 12px; }
.visual-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.visual-card p { font-size: 0.9rem; opacity: 0.8; line-height: 1.5; }

/* About photo grid */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  height: 100%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  display: block;
}

.ap1 { grid-row: span 2; border-radius: var(--radius-lg); }
.ap2 { border-radius: var(--radius); }
.ap3 { border-radius: var(--radius); }

/* ===========================
   GALLERY
=========================== */
.gallery { padding: 0; overflow: hidden; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img { object-position: center 10%; }
  .about-photo-grid {
    grid-template-rows: 180px 180px;
  }
  .about-photo { object-position: center 10%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

/* ===========================
   MESSAGES
=========================== */
.messages { padding: 120px 0; background: var(--off); }
.messages .section-title { color: var(--dark); }

.message-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.message-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: transform var(--transition), box-shadow var(--transition);
}

.message-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.message-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.message-thumb {
  position: relative;
  background: linear-gradient(135deg, #0d1a22, #111) center/cover no-repeat;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.message-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.message-thumb-link {
  display: block;
  overflow: hidden;
}

.message-thumb-link .message-thumb {
  transition: transform 0.4s ease;
}

.message-thumb-link:hover .message-thumb {
  transform: scale(1.04);
}

.message-thumb.small { aspect-ratio: 16/7; }

.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.play-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: scale(1.08);
}

.play-btn svg { width: 24px; height: 24px; color: var(--white); margin-left: 3px; }

.play-btn.sm {
  width: 44px; height: 44px;
}
.play-btn.sm svg { width: 16px; height: 16px; }

.msg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}

.message-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-card:not(.featured) .message-info {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.message-card:not(.featured) h3 { font-size: 1rem; }

.msg-series {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.message-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.message-info p {
  color: var(--mid);
  font-size: 0.95rem;
  flex: 1;
}

/* ===========================
   MINISTRIES
=========================== */
.ministries {
  padding: 120px 0;
  background: var(--dark);
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ministry-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.ministry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  transition: opacity var(--transition);
  z-index: 0;
}

.ministry-card:hover::before {
  opacity: 0.22;
}

.ministry-card > * {
  position: relative;
  z-index: 1;
}

.ministry-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(91,196,232,0.15);
}

.ministry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.ministry-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ministry-card .link-arrow { color: var(--purple2); }

/* ===========================
   PASTORS
=========================== */
.pastors {
  padding: 120px 0;
  background: var(--off);
}

.pastors-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.pastors-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.pastors-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.pastors-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(91,196,232,0.3);
  pointer-events: none;
}

.pastors-text .section-title { color: var(--dark); }
.pastors-text .section-eyebrow { color: var(--purple); }
.pastors-text .section-body { margin-bottom: 16px; }
.pastors-text .section-body:last-of-type { margin-bottom: 32px; }

@media (max-width: 1024px) {
  .pastors-inner { grid-template-columns: 1fr; gap: 48px; }
  .pastors-photo { max-width: 500px; margin: 0 auto; }
}

/* ===========================
   GIVE
=========================== */
.give {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.give::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,196,232,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.give-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.give .section-eyebrow { color: var(--gold); }
.give .section-title { color: var(--white); }
.give .section-body { color: rgba(255,255,255,0.65); }

.give-verse {
  position: relative;
  z-index: 1;
}

.give-verse blockquote {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.give-verse cite {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   EVENTS
=========================== */
.events { padding: 120px 0; }
.events .section-title { color: var(--dark); }

.event-list { display: flex; flex-direction: column; gap: 1px; }

.event-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.event-thumb:hover img { transform: scale(1.08); }

.event-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.2rem;
}

.event-thumb:hover .event-thumb-overlay { opacity: 1; }

.event-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}

.event-item:hover {
  border-color: var(--purple);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  background: var(--off);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.event-date .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.event-info { flex: 1; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.event-info p { font-size: 0.9rem; color: var(--mid); margin-bottom: 8px; }

.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(91,196,232,0.12);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===========================
   VISIT / CONTACT
=========================== */
.visit { padding: 120px 0; background: var(--off); }
.visit .section-title { color: var(--dark); }
.visit .section-eyebrow { color: var(--purple); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item p { color: var(--mid); font-size: 0.95rem; line-height: 1.5; }
.contact-item a { color: var(--purple); }
.contact-item a:hover { text-decoration: underline; }

.map-placeholder {
  border-radius: var(--radius-lg);
  min-height: 420px;
  overflow: hidden;
}

.event-loading {
  padding: 32px;
  text-align: center;
  color: var(--mid);
  font-size: 0.95rem;
}

.calendar-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: var(--white);
}

.calendar-embed iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.socials { display: flex; gap: 12px; }

.socials a {
  width: 40px; height: 40px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.socials a svg { width: 18px; height: 18px; }

.socials a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col li,
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .give-inner { grid-template-columns: 1fr; gap: 48px; }
  .message-grid { grid-template-columns: 1fr; }
  .message-card.featured { grid-row: auto; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 24px; gap: 4px; border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 1rem; }
  .hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .service-times { flex-direction: column; gap: 16px; border-radius: var(--radius-lg); }
  .service-times .divider { width: 40px; height: 1px; }

  .split-visual { grid-template-columns: 1fr; }
  .visual-card:nth-child(1) { grid-column: span 1; }

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

  .event-item { flex-wrap: wrap; gap: 16px; padding: 20px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .event-item { flex-direction: column; }
}
