:root {
  --navy: #1B3A6B;
  --navy-dark: #14294e;
  --pink: #C94C5C;
  --pink-dark: #b03c4b;
  --light-bg: #F8F9FA;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --border: #E0E6ED;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.container-lg { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.light { color: white !important; }

/* ============ TICKER BAR ============ */
.ticker-bar {
  background: var(--navy);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.ticker-track {
  display: inline-block;
  padding: 9px 0;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 0 40px;
  font-size: 13px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27,58,107,.08);
  box-shadow: 0 1px 12px rgba(27,58,107,.06);
}
#siteNav { position: sticky; top: 0; z-index: 100; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo-img { height: 84px; width: auto; }
.brand-logo {
  width: 42px; height: 42px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 18px;
}
.brand-text { display: flex; flex-direction: column; font-size: 13px; line-height: 1.25; }
.brand-text .main { font-weight: 700; color: var(--navy); }
.brand-text .sub { font-weight: 600; color: var(--pink); font-size: 11px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  text-decoration: none; color: #55657f; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px; font-weight: 600; letter-spacing: .1px;
  padding: 10px 15px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--navy); background: rgba(27,58,107,.05); }
.main-nav a.active { color: var(--pink); background: rgba(201,76,92,.08); }
.main-nav a.nav-cta {
  background: var(--pink); color: white; padding: 11px 24px; border-radius: 9px; font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(201,76,92,.22);
  transition: all .25s;
}
.main-nav a.nav-cta:hover {
  background: var(--pink-dark); color: white; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,76,92,.35);
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: 6px;
  width: 38px; height: 38px; font-size: 16px; color: var(--navy); cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,41,78,.85) 0%, rgba(20,41,78,.5) 55%, rgba(20,41,78,.15) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 20px 44px; width: 100%; }
.hero .eyebrow {
  color: #cfe0ff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.hero h1 { color: white; font-size: 56px; font-weight: 700; line-height: 1.08; max-width: 720px; letter-spacing: -1px; }
.hero-sub { color: #dbe7ff; font-size: 15px; margin: 16px 0 28px; max-width: 600px; }
.hero-actions { margin-bottom: 34px; }

.btn {
  display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all .25s; border: none; cursor: pointer;
}
.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.hero-bottom-row {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px;
}
.service-times-card {
  background: rgba(20,41,78,.5); border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  padding: 16px 20px; backdrop-filter: blur(4px); max-width: 320px;
}
.service-times-card .card-label { color: white; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.service-times-card p { color: #dbe7ff; font-size: 13px; margin: 2px 0; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 28px; height: 8px; border-radius: 4px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: background .25s;
}
.hero-dots button.active { background: white; }

/* ============ SECTIONS ============ */
.section { padding: 48px 0; }
.section + .section { padding-top: 0; }
.section-tight { padding: 30px 0; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.section-head h2 { font-size: 30px; font-weight: 700; color: var(--text-dark); letter-spacing: -.4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.view-all { font-size: 14px; text-decoration: underline; color: var(--navy); font-weight: 600; }
.lead-text { color: var(--text-light); font-size: 15px; max-width: 760px; margin-bottom: 24px; }
.loading-text { color: var(--text-light); font-size: 14px; }

/* ============ PASTOR WELCOME (v3: editorial, full-bleed photo) ============ */
.welcome-section { padding: 72px 0 64px; }
.welcome-card-v3 {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  border-radius: 24px; overflow: hidden; background: white;
  box-shadow: 0 2px 4px rgba(20,41,78,.04), 0 40px 80px -20px rgba(20,41,78,.22), 0 0 0 1px rgba(20,41,78,.06);
}
.welcome-photo-v3 { position: relative; min-height: 560px; }
.welcome-photo-v3 img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 5%;
  display: block; position: absolute; inset: 0;
}
.photo-caption-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(13,24,46,.98) 0%, rgba(13,24,46,.82) 30%, rgba(13,24,46,.35) 65%, transparent 100%);
}
.caption-name { color: white; font-weight: 700; font-size: 17px; font-family: 'Plus Jakarta Sans', sans-serif; }
.caption-role { color: var(--pink); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }

.welcome-text-v3 { padding: 52px 56px; display: flex; flex-direction: column; justify-content: center; background: white; }
.eyebrow-sm { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); font-family: 'Plus Jakarta Sans', sans-serif; }
.eyebrow-sm.light { color: #cfe0ff; }
.welcome-text-v3 .eyebrow-sm { margin-bottom: 18px; }

.welcome-heading-v3 {
  font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.12; letter-spacing: -1px;
  margin-bottom: 24px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.welcome-text-v3 p { color: #4a5568; font-size: 15.5px; margin-bottom: 16px; line-height: 1.85; }
.pull-quote {
  margin: 28px 0 0; padding: 20px 24px; border-left: 3px solid var(--pink);
  background: rgba(201,76,92,.05); border-radius: 0 8px 8px 0;
  color: var(--navy); font-weight: 600; font-size: 14.5px; line-height: 1.7;
  font-style: italic; font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============ AUTO CAROUSEL (events & sermons) ============ */
.auto-carousel { position: relative; overflow: hidden; }
.auto-carousel-track {
  display: flex; gap: 22px;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.auto-carousel-track .ev-card,
.auto-carousel-track .sermon-card {
  flex: 0 0 calc(33.333% - 15px); min-width: 0;
}
.auto-carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.auto-carousel-dots button {
  width: 28px; height: 6px; border-radius: 3px; border: none;
  background: rgba(27,58,107,.15); cursor: pointer; transition: all .3s;
  padding: 0;
}
.auto-carousel-dots button.active {
  background: var(--pink); width: 40px;
}

/* ============ SCROLL ROW (events/sermons, snap on mobile) ============ */
.scroll-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.ev-card, .sermon-card {
  background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(20,41,78,.06); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.ev-card:hover, .sermon-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 40px rgba(20,41,78,.16);
}
.ev-img-wrap { overflow: hidden; }
.ev-img-header {
  width: 100%; aspect-ratio: 16/9; display: flex; align-items: flex-end;
  padding: 20px; transition: transform .5s ease; position: relative;
}
.ev-img-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,24,46,.75) 0%, transparent 60%);
  pointer-events: none;
}
.ev-img-label {
  position: relative; z-index: 1;
  color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 20px; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.ev-card:hover .ev-img-header { transform: scale(1.03); }
.ev-img-label {
  color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 20px; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.ev-card img, .sermon-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.ev-card:hover img, .sermon-card:hover .sermon-thumb { transform: scale(1.06); }
.ev-card .img-wrap, .sermon-thumb-wrap { overflow: hidden; }
.ev-body, .sermon-body { padding: 18px 20px 20px; }
.card-date { color: var(--pink); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.ev-body h3, .sermon-body h3 { font-size: 15.5px; color: var(--text-dark); font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.ev-body p, .sermon-body p { color: var(--text-light); font-size: 13px; }
.card-link {
  color: var(--pink); font-weight: 600; font-size: 13px; text-decoration: none; margin-top: 12px;
  display: inline-flex; align-items: center; gap: 5px; transition: gap .25s;
}
.card-link:hover { gap: 9px; }

.sermon-thumb-wrap { position: relative; cursor: pointer; overflow: hidden; }
.sermon-thumb-wrap::after {
  content: ''; position: absolute; inset: 0; background: rgba(13,24,46,.2); transition: background .3s;
}
.sermon-thumb-wrap:hover::after { background: rgba(13,24,46,.45); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center; color: var(--pink); font-size: 17px; z-index: 2;
  transition: transform .3s ease, background .3s;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.sermon-thumb-wrap:hover .play-btn { transform: translate(-50%, -50%) scale(1.12); background: white; }
.sermon-embed { width: 100%; aspect-ratio: 16/9; border: none; }

/* ============ MINISTRIES CAROUSEL ============ */
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button {
  width: 38px; height: 38px; border-radius: 9px; border: none; background: var(--navy); color: white;
  cursor: pointer; transition: all .25s;
}
.carousel-controls button:hover { background: var(--pink); transform: translateY(-2px); }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 18px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.ministry-card {
  flex: 0 0 calc(25% - 14px); background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; box-shadow: 0 4px 14px rgba(20,41,78,.05); transition: transform .3s, box-shadow .3s;
}
.ministry-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(20,41,78,.13); }
.ministry-card .img-wrap { border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.ministry-card img { width: 100%; height: 150px; object-fit: cover; transition: transform .5s ease; }
.ministry-card:hover img { transform: scale(1.07); }
.ministry-card h3 { font-size: 14px; color: var(--text-dark); font-weight: 700; margin-bottom: 6px; }
.ministry-card .subtitle { color: var(--pink); font-weight: 400; font-size: 12px; }
.ministry-card p { color: var(--text-light); font-size: 13px; margin-bottom: 10px; }

/* ============ GET CONNECTED SUMMARY TILES ============ */
/* ============ GET CONNECTED SUMMARY ============ */
.connect-section-head { margin-bottom: 28px; }
.connect-section-head h2 { font-size: 30px; font-weight: 700; color: var(--text-dark); letter-spacing: -.4px; margin-bottom: 6px; }
.connect-lead { color: var(--text-light); font-size: 15px; }
.connect-summary-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.connect-tile {
  text-decoration: none; color: var(--text-dark); display: block;
  border-radius: 16px; overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(20,41,78,.05);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.connect-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(20,41,78,.13);
  border-color: var(--pink);
}
.connect-tile:hover .connect-icon { background: var(--pink); color: white; transform: scale(1.1); }
.connect-tile:hover .connect-cta { color: var(--pink); gap: 8px; }
.connect-tile-inner {
  padding: 28px 20px 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%;
}
.connect-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,76,92,.09); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  transition: background .3s, color .3s, transform .3s;
}
.connect-tile h4 {
  font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.connect-tile p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; flex: 1; }
.connect-cta {
  margin-top: 16px; font-size: 12px; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 5px;
  text-transform: uppercase; letter-spacing: .6px;
  transition: color .25s, gap .25s;
}

/* ============ DEDICATED CONNECT PAGE ============ */
.connect-page-hero { background: var(--navy); padding: 50px 0 40px; color: white; }
.back-link {
  color: #cfe0ff; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.back-link:hover { color: white; }
.connect-page-hero h1 { font-size: 32px; font-weight: 700; }
.connect-page-sub { color: #dbe7ff; font-size: 14px; margin-top: 8px; max-width: 600px; }
.connect-form-wrap { max-width: 560px; margin: 0 auto; }
.connect-form-wrap .rhn-dynamic-form {
  background: white; border: 1px solid var(--border); border-left: 4px solid var(--pink);
  border-radius: 10px; padding: 30px;
}
/* ============ NEWSLETTER V2 ============ */
/* ============ NEWSLETTER V2 (premium redesign) ============ */
.newsletter-outer {
  position: relative; padding: 40px 0; overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #1B3A6B 45%, #2a1040 100%);
}
.newsletter-outer::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,76,92,.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-outer::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,107,.35) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-banner-v2 {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; max-width: 900px; margin: 0 auto; padding: 0 20px;
}
.newsletter-v2-left { }
.newsletter-v2-left .eyebrow-sm {
  color: var(--pink) !important; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.newsletter-v2-left .eyebrow-sm::before {
  content: ''; display: inline-block; width: 20px; height: 2px; background: var(--pink); border-radius: 1px;
}
.newsletter-heading {
  font-size: 26px; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -.6px;
  margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.newsletter-desc { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.newsletter-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.newsletter-perks li {
  color: rgba(255,255,255,.8); font-size: 13px; display: flex; align-items: center; gap: 10px;
}
.newsletter-perks li i {
  width: 18px; height: 18px; border-radius: 50%; background: rgba(201,76,92,.2);
  color: var(--pink); font-size: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* RIGHT: glass-morphism form card */
.newsletter-v2-right {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px 28px;
}
.newsletter-form-v2 { width: 100%; }
.nl-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  color: white; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.nl-form-title i { color: var(--pink); }

.nl-field { margin-bottom: 10px; position: relative; }
.nl-field input {
  width: 100%; padding: 11px 14px 11px 38px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px; font-size: 13.5px; font-family: 'Inter', sans-serif;
  color: white; transition: border-color .25s, background .25s, box-shadow .25s;
}
.nl-field input::placeholder { color: rgba(255,255,255,.3); }
.nl-field input:focus {
  outline: none; background: rgba(255,255,255,.12);
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(201,76,92,.12);
}
.nl-field-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.3); font-size: 13px; pointer-events: none;
  transition: color .25s;
}
.nl-field:focus-within .nl-field-icon { color: var(--pink); }

/* Phone field: country code + number side by side */
.nl-phone-field { display: flex; gap: 0; }
.nl-phone-code {
  width: 98px; flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-right: none; border-radius: 9px 0 0 9px;
  color: white; font-size: 12.5px; font-family: 'Inter', sans-serif;
  padding: 0 8px 0 10px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.nl-phone-code:focus { outline: none; border-color: var(--pink); }
.nl-phone-code option { background: #1B3A6B; color: white; }
.nl-phone-input {
  flex: 1; border-radius: 0 9px 9px 0 !important; padding-left: 36px !important;
}
.nl-phone-icon { left: 108px !important; }

/* Captcha */
.nl-captcha-wrap { margin-bottom: 12px; }
.nl-captcha-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px;
  display: flex; align-items: center; gap: 5px;
}
.nl-captcha-label i { color: var(--pink); font-size: 10px; }
.nl-captcha-row { display: flex; align-items: stretch; gap: 7px; }
.nl-captcha-question {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px; padding: 0 14px; font-size: 13.5px; font-weight: 700;
  color: white; font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; min-height: 42px;
}
.nl-captcha-input {
  width: 60px; padding: 0 8px; text-align: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px; font-size: 15px; font-weight: 700;
  color: white; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .25s, box-shadow .25s;
  -moz-appearance: textfield;
}
.nl-captcha-input::-webkit-outer-spin-button,
.nl-captcha-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.nl-captcha-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(201,76,92,.12); }
.nl-captcha-input::placeholder { color: rgba(255,255,255,.2); }
.nl-captcha-refresh {
  width: 42px; flex-shrink: 0; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4); font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.nl-captcha-refresh:hover { background: rgba(255,255,255,.14); color: white; }

.nl-submit {
  width: 100%; margin-top: 4px;
  background: linear-gradient(135deg, var(--pink) 0%, #a0283a 100%);
  color: white; border: none; padding: 13px;
  border-radius: 9px; font-weight: 700; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 6px 18px rgba(201,76,92,.35);
  transition: all .3s;
}
.nl-submit:hover {
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,76,92,.45);
}
.nl-privacy {
  margin-top: 10px; font-size: 11px; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 5px; justify-content: center;
}
.nl-privacy i { font-size: 10px; }

#nlMessage {
  border-radius: 9px; font-size: 13px; font-weight: 600; margin-top: 10px;
  border: none !important;
}

@media (max-width: 900px) {
  .newsletter-banner-v2 { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-heading { font-size: 22px; }
}
@media (max-width: 560px) {
  .newsletter-outer { padding: 32px 0; }
  .newsletter-v2-right { padding: 22px 18px; }
}

.cta-banner { position: relative; border-radius: 16px; overflow: hidden; min-height: 360px; display: flex; align-items: center; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,41,78,.92), rgba(201,76,92,.55)); }
.cta-content { position: relative; z-index: 2; padding: 40px; max-width: 600px; }
.cta-content h2 { font-size: 30px; font-weight: 700; margin: 8px 0 14px; letter-spacing: -.4px; }
.cta-content p { font-size: 14px; color: #eef2fb; margin-bottom: 18px; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.cta-form input {
  padding: 11px 14px; border-radius: 6px; border: none; font-size: 14px;
}
.cta-form button {
  background: white; color: var(--navy); border: none; border-radius: 6px; padding: 0 22px; font-weight: 700; cursor: pointer;
}
.cta-form button:hover { background: #f0f0f0; }
.cta-help { font-size: 12px; color: #dbe7ff; margin-top: 10px; }

/* ============ GET CONNECTED FORMS ============ */
.forms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-card {
  background: white; border: 1px solid var(--border); border-left: 4px solid var(--pink);
  border-radius: 10px; padding: 26px; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.form-card h4 { color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.form-card .desc { color: var(--text-light); font-size: 13px; margin-bottom: 16px; }

.rhn-field { margin-bottom: 14px; }
.rhn-field label { display: block; color: var(--navy); font-weight: 600; font-size: 13px; margin-bottom: 5px; }
.rhn-field input[type=text], .rhn-field input[type=email], .rhn-field input[type=tel], .rhn-field textarea, .rhn-field select {
  width: 100%; padding: 10px 13px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; font-family: inherit;
}
.rhn-field input:focus, .rhn-field textarea:focus, .rhn-field select:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(201,76,92,.1);
}
.rhn-field-checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 12px; color: var(--text-light); }
.rhn-submit-btn { background: var(--pink); color: white; border: none; padding: 11px 26px; border-radius: 6px; font-weight: 600; cursor: pointer; width: 100%; }
.rhn-submit-btn:hover { background: var(--pink-dark); }
.rhn-form-message { margin-top: 10px; font-size: 13px; font-weight: 500; }

/* ============ CONFESSION (v2: video background, dramatic) ============ */
.confession-section { padding: 70px 0; }
.confession-box-v2 {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 520px;
  display: flex; align-items: center; box-shadow: 0 24px 60px rgba(20,41,78,.25);
}
.confession-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  background: var(--navy);
}
.confession-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,24,46,.88) 0%, rgba(27,58,107,.75) 55%, rgba(13,24,46,.82) 100%);
}
.confession-content { position: relative; z-index: 2; padding: 56px 50px; max-width: 780px; }
.confession-eyebrow { color: var(--pink) !important; margin-bottom: 12px; }
.confession-heading { font-size: 34px; font-weight: 700; margin-bottom: 22px; letter-spacing: -.5px; }
.confession-body p {
  color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.85; margin-bottom: 16px;
}
.confession-close {
  color: var(--pink) !important; font-weight: 700; font-size: 16px; margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px;
}

@media (max-width: 768px) {
  .confession-content { padding: 36px 26px; }
  .confession-heading { font-size: 26px; }
}

/* ============ CONTACT (premium: map left, form right) ============ */
.contact-section-outer {
  background: var(--light-bg); padding: 64px 0;
}
.contact-premium-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-map-col { display: flex; flex-direction: column; gap: 14px; }
.contact-map-label {
  display: flex; align-items: center; gap: 14px;
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(20,41,78,.05);
}
.contact-map-label i { color: var(--pink); font-size: 20px; flex-shrink: 0; }
.contact-map-name { font-weight: 700; font-size: 13.5px; color: var(--navy); margin-bottom: 2px; font-family: 'Plus Jakarta Sans', sans-serif; }
.contact-map-address { font-size: 12.5px; color: var(--text-light); }
.contact-map-wrap {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(20,41,78,.08);
}
.contact-map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }
.contact-info-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-pill {
  display: flex; align-items: center; gap: 7px;
  background: white; border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; font-size: 12.5px; color: var(--text-dark); font-weight: 500;
  box-shadow: 0 1px 4px rgba(20,41,78,.05);
}
.contact-pill i { color: var(--pink); font-size: 12px; }

.contact-form-col {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(20,41,78,.07);
}
.contact-form-title {
  font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -.4px;
}
.contact-form-desc { color: var(--text-light); font-size: 13.5px; line-height: 1.7; margin-bottom: 22px; }

@media (max-width: 900px) {
  .contact-premium-grid { grid-template-columns: 1fr; }
  .contact-map-wrap iframe { height: 240px; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: white; padding-top: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 30px; }
.site-footer h4 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.site-footer h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--pink); margin-bottom: 12px; }
.footer-text { color: rgba(255,255,255,.75); font-size: 13px; margin-bottom: 6px; }
.footer-text i { color: var(--pink); margin-right: 6px; }
.footer-strong { color: white; font-weight: 600; font-size: 13px; }
.site-footer a { display: block; color: rgba(255,255,255,.75); font-size: 13px; text-decoration: none; margin-bottom: 8px; }
.site-footer a:hover { color: var(--pink); }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0;
}
.social-row a:hover { background: var(--pink); border-color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; }
.footer-bottom-inner p { font-size: 12px; color: rgba(255,255,255,.6); text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .welcome-card-v3 { grid-template-columns: 1fr; }
  .welcome-photo-v3 { min-height: 320px; }
  .welcome-text-v3 { padding: 32px 28px; }
  .welcome-heading-v3 { font-size: 26px; }
  .ministry-card { flex: 0 0 calc(33.333% - 11px); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .connect-summary-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .brand-logo-img { height: 56px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: white;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 12px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,.06);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a.nav-cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: block; }

  .hero h1 { font-size: 30px; }
  .hero { min-height: 480px; }

  .welcome-card-v3 { grid-template-columns: 1fr; }
  .welcome-photo-v3 { min-height: 360px; }
  .welcome-text-v3 { padding: 36px 28px; }
  .welcome-heading-v3 { font-size: 28px; }

  .scroll-row {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 6px;
  }
  .scroll-row > * { flex: 0 0 82%; scroll-snap-align: start; }

  .ministry-card { flex: 0 0 calc(70% - 8px); }

  .forms-grid { grid-template-columns: 1fr; }
  .connect-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* DNA Home Section Mobile */
@media (max-width: 900px) {
  .dna-home-section .container-lg > div { grid-template-columns: 1fr !important; gap: 36px !important; }
}
@media (max-width: 600px) {
  .dna-home-section h2 { font-size: 28px !important; }
}

/* Contact Form Styles */
.cf-group { display: flex; flex-direction: column; }
.cf-label { font-size: 11.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.cf-input {
  padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 13.5px; font-family: 'Inter', sans-serif; color: var(--text-dark);
  background: white; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.cf-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(201,76,92,.1); }
.cf-input::placeholder { color: #aab4c4; }
select.cf-input { cursor: pointer; }
.cf-submit {
  width: 100%; background: var(--navy); color: white; border: none;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: 14.5px;
  font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all .25s; box-shadow: 0 6px 18px rgba(27,58,107,.2);
}
.cf-submit:hover { background: var(--pink); box-shadow: 0 8px 24px rgba(201,76,92,.3); transform: translateY(-1px); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
