/* ══ LUMEN CHURCH — COMPONENT STYLES ══════════════════════════════════════
   Extends style.css with all site-specific component styles
   ═══════════════════════════════════════════════════════════════════════ */

/* ── SITE HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,46,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(13,27,46,.99);
  border-bottom-color: rgba(201,168,76,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.site-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(201,168,76,.2)); }
.logo-video { height: 44px; width: auto; max-width: 200px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(201,168,76,.2)); }
.logo-fallback { display: none; }

/* Nav */
.nav-list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: rgba(240,237,232,.82);
  transition: all .18s; white-space: nowrap;
}
.nav-link:hover, .current-menu-item .nav-link { color: var(--gold-light); background: rgba(201,168,76,.08); }
.dropdown-arrow { font-size: 10px; opacity: .6; transition: transform .2s; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--navy-card); border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s; list-style: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.has-dropdown:hover .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu li a { display: block; padding: 9px 14px; font-size: 13px; color: var(--off-white); border-radius: 8px; transition: all .18s; }
.sub-menu li a:hover { background: rgba(201,168,76,.1); color: var(--gold-light); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-give-btn { white-space: nowrap; }

/* Hamburger */
.mobile-menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger-line { width: 22px; height: 2px; background: var(--off-white); border-radius: 2px; transition: all .25s; }
.mobile-menu-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-mid); z-index: 99; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav-drawer.open { transform: none; }
.mobile-nav-inner { padding: 24px; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li a { display: block; padding: 14px 0; font-size: 18px; font-family: var(--font-display); font-weight: 300; color: var(--off-white); border-bottom: 1px solid rgba(201,168,76,.08); }
.mobile-nav-list li a:hover { color: var(--gold-light); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.mobile-nav-ctas .btn { width: 100%; justify-content: center; }

.header-spacer { height: 72px; }

/* ── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0D1B2E 0%, #1A3255 55%, #0D2240 100%);
  padding: 80px 0 72px; text-align: center;
}
.page-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-sub { font-size: 17px; color: rgba(240,237,232,.7); max-width: 520px; margin: 16px auto 0; line-height: 1.7; }
.hero-ein-badge { margin-top: 20px; }

/* ── HOMEPAGE HERO ──────────────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0D1B2E 0%, #1A3255 55%, #0D2240 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; }
.hero-glow-1 { width: 600px; height: 600px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%); }
.hero-glow-2 { width: 500px; height: 500px; bottom: -150px; right: -100px; background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 80px 24px; position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 560px; }
.hero-title { font-size: clamp(44px, 6vw, 76px); margin-bottom: 20px; }
.hero-subtitle { font-size: 17px; color: rgba(240,237,232,.75); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-service-strip {
  display: flex; gap: 0; background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius-pill);
  overflow: hidden; width: fit-content;
}
.hero-service-item { padding: 10px 20px; }
.hero-service-item.has-border { border-right: 1px solid rgba(201,168,76,.12); }
.service-day-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.service-time-label { display: block; font-size: 13px; color: var(--muted); }

/* Hero Video Placeholder */
.hero-media { position: relative; }
.hero-video-placeholder {
  position: relative; aspect-ratio: 16/9; background: var(--navy-card);
  border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.video-placeholder-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #152237 0%, #1e3352 100%); }
.video-placeholder-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 16px; z-index: 1; padding: 24px; }
.video-play-icon { width: 64px; height: 64px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.video-play-icon svg { color: var(--navy); margin-left: 3px; }
.video-placeholder-text { flex: 1; }
.video-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.video-title { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--white); }
.video-overlay-link { position: absolute; inset: 0; z-index: 2; }

/* ── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar { background: var(--navy-card); border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 32px 0; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(201,168,76,.08); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-label { display: block; font-size: 12px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

/* ── WATCH / SERMON SECTION ─────────────────────────────────────────────── */
.watch-section { background: var(--navy); }
.bishop-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.sermon-card { overflow: hidden; }
.sermon-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-light); }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sermon-card:hover .sermon-thumb img { transform: scale(1.04); }
.sermon-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; background: rgba(201,168,76,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.sermon-play-btn:hover { background: var(--gold-light); transform: translate(-50%,-50%) scale(1.08); }
.sermon-play-btn svg { color: var(--navy); margin-left: 3px; }
.sermon-thumb-placeholder { display: flex; align-items: center; justify-content: center; background: var(--navy-light); aspect-ratio: 16/9; }
.sermon-body { display: flex; flex-direction: column; gap: 8px; }
.sermon-title { margin: 0; }
.sermon-title a { color: var(--white); font-size: 16px; }
.sermon-title a:hover { color: var(--gold-light); }
.sermon-date { font-size: 12px; color: var(--muted); }

/* Featured sermon (sermons page) */
.featured-sermon { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.featured-sermon-video .video-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.featured-sermon-info { display: flex; flex-direction: column; gap: 14px; }
.featured-sermon-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.video-embed-wrap { position: relative; aspect-ratio: 16/9; background: #000; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-placeholder-card { aspect-ratio: 16/9; background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.video-placeholder-card.large { aspect-ratio: 16/9; }
.vp-inner { text-align: center; padding: 24px; }
.vp-inner p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-section {}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pillar p { margin: 0; font-size: 13px; color: var(--muted); }
.pillar strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 2px; }
.about-image-stack { position: relative; }
.about-img-card { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-card); }
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; font-size: 13px; color: var(--muted); }
.about-stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy-card); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md); padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.about-stat-num { display: block; font-family: var(--font-display); font-size: 20px; color: var(--gold-light); font-weight: 400; margin-bottom: 4px; }
.about-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── MINISTRIES ─────────────────────────────────────────────────────────── */
.ministry-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.link-arrow { font-size: 13px; font-weight: 600; color: var(--gold); display: inline-block; margin-top: 8px; transition: gap .2s; }
.link-arrow:hover { color: var(--gold-light); letter-spacing: .5px; }

/* ── EVENTS ─────────────────────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-row {
  display: flex; align-items: center; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,.08); transition: all .2s;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { padding-left: 6px; }
.event-date-badge { flex-shrink: 0; text-align: center; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-md); padding: 10px 14px; min-width: 60px; }
.event-date-badge.large { min-width: 80px; padding: 14px 18px; }
.event-day { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 300; color: var(--gold-light); line-height: 1; }
.event-month { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.event-year { display: block; font-size: 11px; color: var(--muted); }
.event-info { flex: 1; }
.event-title { font-size: 18px; margin-bottom: 6px; }
.event-title a { color: var(--white); }
.event-title a:hover { color: var(--gold-light); }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.event-rsvp { flex-shrink: 0; }
.events-list-full { display: flex; flex-direction: column; gap: 16px; }
.event-row-full { display: flex; align-items: center; gap: 20px; padding: 24px; }
.event-thumb { width: 120px; height: 90px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

/* ── GIVE BANNER ────────────────────────────────────────────────────────── */
.give-banner-section {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, #0D1B2E 0%, #1A3255 100%);
  border-top: 1px solid rgba(201,168,76,.15); border-bottom: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
}
.give-banner-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.give-banner-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.give-banner-text { max-width: 540px; }
.give-banner-amounts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.give-amount-btn {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md); padding: 14px 20px; min-width: 90px;
  font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--white);
  transition: all .2s; text-decoration: none;
}
.give-amount-btn span { font-family: var(--font-body); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.give-amount-btn:hover, .give-amount-btn.give-featured { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--gold-light); }
.give-amount-btn.give-custom { font-size: 17px; padding-top: 18px; }

/* ── GIVE PAGE CARD ─────────────────────────────────────────────────────── */
.give-card-wp { background: var(--navy-card); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-card); }
.give-card-header { background: linear-gradient(135deg, #152237 0%, #1e3352 100%); padding: 24px 28px; border-bottom: 1px solid rgba(201,168,76,.1); }
.give-card-header h3 { margin-bottom: 4px; font-size: 24px; }
.give-card-header p { margin: 0; font-size: 14px; color: var(--muted); }
.give-card-body { padding: 28px; }
.give-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.give-amounts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.give-amt { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,.05); border: 1.5px solid rgba(201,168,76,.15); border-radius: 14px; padding: 14px 8px; font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--white); text-decoration: none; transition: all .18s; }
.give-amt span { font-family: var(--font-body); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.give-amt:hover, .give-amt-featured { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--gold-light); }
.give-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.give-divider::before, .give-divider::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,.12); }
.give-divider span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.give-method-row { display: flex; align-items: center; gap: 14px; background: rgba(109,30,212,.08); border: 1px solid rgba(109,30,212,.2); border-radius: 14px; padding: 16px 18px; }
.give-method-logo { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.zelle-logo { background: #6d1ed4; color: #fff; }
.why-give-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-give-item { background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-md); padding: 22px 18px; }
.why-give-icon { font-size: 28px; margin-bottom: 12px; }
.why-give-item h5 { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--gold-light); margin-bottom: 6px; }
.why-give-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* ── TESTIMONIES ────────────────────────────────────────────────────────── */
.testimonies-section { background: var(--navy-mid); }
.testimonies-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.testimony-card { background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; }
.testimony-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 2px solid rgba(201,168,76,.2); }
.testimony-avatar-placeholder { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: var(--navy); margin: 0 auto 16px; }
.testimony-quote { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 300; color: var(--off-white); line-height: 1.65; margin-bottom: 16px; }
.testimony-name { font-size: 13px; color: var(--gold); font-style: normal; font-weight: 600; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.slider-btn { background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.15); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--off-white); font-size: 18px; transition: all .2s; }
.slider-btn:hover { background: rgba(201,168,76,.12); border-color: var(--gold); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,.25); transition: all .2s; cursor: pointer; }
.slider-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ── NEW HERE / CTA SECTION ─────────────────────────────────────────────── */
.new-here-section {
  background: linear-gradient(135deg, #0D1B2E 0%, #1A3255 100%);
  border-top: 1px solid rgba(201,168,76,.1); padding: 80px 0;
}
.new-here-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.new-here-icon { font-size: 52px; display: block; margin-bottom: 16px; animation: floatDove 4s ease-in-out infinite; }
@keyframes floatDove { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.new-here-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ── BLOG ───────────────────────────────────────────────────────────────── */
.blog-section {}
.blog-card { overflow: hidden; }
.post-date { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.prose p { color: rgba(240,237,232,.82); line-height: 1.8; }

/* ── ABOUT PAGE ─────────────────────────────────────────────────────────── */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card { background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); }
.mv-card:hover { border-color: rgba(201,168,76,.28); transform: translateY(-3px); }
.mv-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.staff-card { overflow: hidden; }
.staff-photo { aspect-ratio: 1; overflow: hidden; background: var(--navy-light); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-photo-placeholder { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; background: linear-gradient(135deg, var(--navy-light), var(--navy-card)); font-family: var(--font-display); font-size: 64px; font-weight: 300; color: var(--gold-dim); }
.staff-info { display: flex; flex-direction: column; gap: 8px; }
.staff-role { margin-top: 4px; }
.bishop-videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }
.bishop-videos-grid .video-embed-wrap, .bishop-videos-grid .video-placeholder-card { border-radius: var(--radius-md); }

/* ── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.lumen-contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dim); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(201,168,76,.15); border-radius: 10px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--white); outline: none;
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(201,168,76,.5); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(122,147,175,.45); }
.form-field select option { background: var(--navy-card); }
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px; }
.contact-info-card h4 { font-size: 20px; margin-bottom: 4px; }
.contact-service { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.contact-service:last-child { border-bottom: none; }
.contact-service strong { font-size: 14px; color: var(--white); }
.contact-service span { font-size: 15px; color: var(--gold-light); font-weight: 600; }
.contact-service em { font-size: 12px; color: var(--muted); font-style: normal; }
.contact-detail { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 14px; color: var(--off-white); border-bottom: 1px solid rgba(255,255,255,.05); }
.contact-detail:last-child { border-bottom: none; }
.contact-icon { font-size: 18px; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.1); position: relative; z-index: 1; }
.footer-newsletter-bar { padding: 36px 0; background: var(--navy-card); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-text h4 { font-size: 22px; margin: 0; }
.newsletter-text .eyebrow { margin-bottom: 4px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; background: rgba(255,255,255,.07); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-pill); padding: 12px 20px; font-family: var(--font-body); font-size: 14px; color: var(--white); outline: none; }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--muted); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 36px; width: auto; opacity: .8; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.footer-ein { margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.social-link:hover { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.3); color: var(--gold-light); }
.footer-col-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .18s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-service-time { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-service-time:last-of-type { border-bottom: none; }
.service-day { font-size: 13px; font-weight: 600; color: var(--white); }
.service-time-text { font-size: 14px; color: var(--gold-light); font-weight: 600; }
.service-label { font-size: 11px; color: var(--muted); }
.footer-address { margin-top: 16px; font-size: 13px; color: var(--muted); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(122,147,175,.55); margin: 0; }
.legal-nav { list-style: none; display: flex; gap: 16px; }
.legal-nav a { font-size: 12px; color: rgba(122,147,175,.5); }
.legal-nav a:hover { color: var(--gold); }

/* ── SECTION CTA ROW ────────────────────────────────────────────────────── */
.section-cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }

/* ── EMPTY STATE ────────────────────────────────────────────────────────── */
.empty-state-card { text-align: center; background: var(--navy-card); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); padding: 64px 32px; }
.empty-icon { font-size: 52px; display: block; opacity: .4; margin-bottom: 16px; }
.placeholder-content { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; text-align: center; }
.placeholder-content p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bishop-videos-grid { grid-template-columns: 1fr 1fr; }
  .featured-sermon { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav-drawer { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bishop-video-grid { grid-template-columns: 1fr; }
  .testimonies-slider { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .bishop-videos-grid { grid-template-columns: 1fr; }
  .give-amounts-grid { grid-template-columns: repeat(2, 1fr); }
  .why-give-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-service-strip { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-service-item.has-border { border-right: none; border-bottom: 1px solid rgba(201,168,76,.12); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .give-banner-amounts { gap: 8px; }
}
