:root {
  --navy: #1b365d;
  --navy-deep: #10233f;
  --navy-mid: #2a4a73;
  --gold: #c4a35a;
  --gold-deep: #9a7b32;
  --cream: #f4efe4;
  --paper: #fbfaf7;
  --ink: #1c2430;
  --muted: #5a6573;
  --line: #e6dfd2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.12);
  --max: 1160px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-variant-numeric: lining-nums;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 14px;
  z-index: 100;
  border-radius: 8px;
}
.skip:focus { left: 12px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; color: var(--navy); font-variant-numeric: lining-nums; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #d4b56a; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(196,163,90,.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.logo { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { text-decoration: none; opacity: 0.86; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.phone { color: var(--gold); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.live-now {
  display: none !important;
  align-items: center;
  gap: 8px;
  background: #e23d2d;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.live-now.is-on:not([hidden]) {
  display: inline-flex !important;
  animation: livePulse 0.8s ease-in-out infinite;
}
.live-now[hidden] {
  display: none !important;
}
.live-now.is-on::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  animation: liveDot 0.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% {
    background: #c0392b;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 90, 70, 0.9);
  }
  50% {
    background: #ff4d3a;
    transform: scale(1.08);
    box-shadow: 0 0 16px 4px rgba(255, 210, 160, 0.55);
  }
}
@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(0.55); }
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(calc(100vh - 78px), 900px);
  color: white;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #10233f;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}
.hero-slides img.is-on {
  opacity: 1;
  z-index: 1;
}
.hero-slides img:nth-child(1) { object-position: 18% 58%; }
.hero-slides img:nth-child(2) { object-position: center 46%; }
.hero-slides img:nth-child(3) { object-position: center 32%; }
.hero-slides img.has-played:nth-child(1) {
  animation: heroKen1 8s ease-out forwards;
}
.hero-slides img.has-played:nth-child(2) {
  animation: heroKen3 8s ease-out forwards;
}
.hero-slides img.has-played:nth-child(3) {
  animation: heroKen2 9s ease-out forwards;
}
@keyframes heroKen1 {
  from { transform: scale(1.16) translate(-3.2%, 1.4%); }
  to { transform: scale(1.05) translate(1.5%, 0); }
}
@keyframes heroKen2 {
  from { transform: scale(1.03) translate(0, 2%); }
  to { transform: scale(1.12) translate(0, -3.5%); }
}
@keyframes heroKen3 {
  from { transform: scale(1.12) translate(0, 1%); }
  to { transform: scale(1.03) translate(0, 0); }
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16,35,63,.35) 0%, rgba(16,35,63,.55) 42%, rgba(16,35,63,.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 48px;
  align-items: end;
}
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.hero h1 { color: white; margin: 14px 0 18px; max-width: 13ch; }
.hero p.lead { color: rgba(255,255,255,.88); font-size: 1.18rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.times-card {
  background: rgba(251,250,247,.96);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.times-card h3 { margin-bottom: 16px; }
.time-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}
.time-row strong { color: var(--navy); }
.time-row span { color: var(--muted); }
.times-card .btn { width: 100%; margin-top: 16px; }

.page-hero {
  position: relative;
  min-height: 420px;
  color: white;
  display: grid;
  align-items: end;
  background: #10233f center 35%/cover no-repeat;
}
.page-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.8s ease-in-out;
}
.page-hero-slides img.is-on {
  opacity: 1;
  z-index: 1;
  animation: pageHeroKen 8s ease-out forwards;
}
@keyframes pageHeroKen {
  from { transform: scale(1.1); }
  to { transform: scale(1.03); }
}
.page-hero.has-header-slides {
  background-image: none !important;
  overflow: hidden;
  min-height: 420px;
}
.page-hero.has-header-slides .page-hero-inner {
  z-index: 2;
}
.page-hero-fbi.has-header-slides {
  display: grid;
  align-items: end;
}
.page-hero-fbi.has-header-slides .page-hero-inner {
  padding: 72px 0 48px;
}
.page-hero-fbi.has-header-slides::before {
  display: block;
}
.page-hero-fbi.has-header-slides .fbi-banner-img {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-slides img,
  .hero-slides img {
    transition: none;
    animation: none !important;
  }
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
  max-width: 720px;
}
.page-hero h1 { color: white; margin: 12px 0 14px; }
.page-hero p.lead { color: rgba(255,255,255,.88); font-size: 1.16rem; max-width: 46ch; }

.stats { background: var(--navy); color: white; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
}
.stat {
  padding: 26px 18px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat:first-child { border-left: 0; }
.stat b { display: block; font-size: 1.15rem; color: var(--gold); font-weight: 700; letter-spacing: 0.02em; }
.stat span { font-size: 0.86rem; opacity: .8; }

section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { margin-top: 12px; font-size: 1.08rem; }
.section-head.wide { max-width: 760px; }
.archive-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}
.archive-intro .section-head {
  margin-bottom: 0;
  max-width: none;
}
.archive-portrait { margin: 0; }
.archive-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}
.archive-portrait figcaption {
  margin-top: 12px;
  text-align: center;
}
.archive-portrait strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
}
.archive-portrait span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.expect-grid, .ministry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.expect-card, .info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
}
.expect-card .num, .info-card .num {
  font-family: "Source Sans 3", sans-serif;
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.expect-card p, .info-card p { margin-top: 8px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}
.split-slides {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-deep, #10233f);
}
.split-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease-in-out;
}
.split-slides img.is-on {
  opacity: 1;
  z-index: 1;
}
.split .copy p + p { margin-top: 14px; }
.cream { background: var(--cream); }

.ministry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}
.ministry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.ministry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(16,35,63,.88) 100%);
}
.ministry div { position: relative; z-index: 1; padding: 22px; }
.ministry h3 { color: white; }
.ministry p { color: rgba(255,255,255,.82); font-size: 0.92rem; margin-top: 4px; }
.ministry .go { color: var(--gold); font-weight: 600; font-size: 0.88rem; margin-top: 10px; display: inline-block; }
.ministry:hover { transform: translateY(-2px); }
.ministry { transition: transform 0.2s ease; }
.ministry.logo-card {
  background: #2e4262;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}
.ministry.logo-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: #2e4262;
}
.ministry.logo-card::after {
  content: none;
}
.ministry.logo-card div {
  background: var(--navy-deep);
  padding: 16px 18px 18px;
}

.page-hero-fbi {
  background: #0a1628;
  min-height: 0;
  display: block;
  padding: 0;
}
.page-hero-fbi::before { display: none; }
.fbi-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.page-hero-fbi .page-hero-inner {
  padding: 28px 0 40px;
  max-width: 720px;
}
.page-hero-logo {
  background: #2e4262;
  min-height: 0;
  align-items: center;
}
.page-hero-logo::before {
  background: none;
}
.page-hero-logo .page-hero-inner {
  max-width: 920px;
}
.hero-logo {
  height: auto;
  width: min(880px, 96vw);
  max-height: none;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  margin: 10px 0 22px;
  object-fit: contain;
}
.gallery img.wide.logo-frame {
  object-fit: contain;
  background: #2e4262;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 480px;
}

.crumbs { font-size: 0.92rem; margin-bottom: 10px; }
.crumbs a { color: var(--gold); text-decoration: none; font-weight: 600; }

.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.leader {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  align-items: center;
}
.leader img, .leader .initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.leader .initials {
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.leader .role { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; margin-bottom: 4px; }
.leader h3 { font-size: 1.25rem; }
.leader p { font-size: 0.92rem; margin-top: 6px; }

.event-list { display: grid; gap: 12px; }
.event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  align-items: center;
}
.event-date { text-align: center; color: var(--navy); }
.event-date b { display: block; font-size: 1.12rem; line-height: 1.2; }
.event-date span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.event h3 { font-size: 1.2rem; margin-bottom: 4px; }
.event p { font-size: 0.92rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}
.gallery img.wide { grid-column: 1 / -1; height: 320px; }
.gallery-slides {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 420px;
  background: var(--navy-deep);
  margin-bottom: 8px;
}
.gallery-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}
.gallery-slides img.is-on {
  opacity: 1;
  z-index: 1;
  animation: galleryKen 5.5s ease-out forwards;
}
.gallery-slides img:nth-child(1) { object-position: center 40%; }
.gallery-slides img:nth-child(2) { object-position: center 40%; }
.gallery-slides img:nth-child(3) { object-position: center top; }
.gallery-slides img:nth-child(4) { object-position: center 40%; }
@keyframes galleryKen {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.pic-show-section {
  padding-left: 0;
  padding-right: 0;
}
.pic-show-section .section-head {
  margin-bottom: 28px;
}
.pic-show { width: 100%; }
.pic-show-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.pic-show-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 16px 14px 18px;
  width: max-content;
  will-change: transform;
}
.pic-show-card {
  flex: 0 0 380px;
  width: 380px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.pic-show-card:hover { outline: 3px solid var(--gold); }
.pic-show-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.pic-show-card img.logo-frame {
  object-fit: contain;
  background: #2e4262;
}
.pic-show-card p {
  margin: 0;
  padding: 12px 14px 14px;
  min-height: 4.2em;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.4;
}
.pic-show-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.pic-show-arrow:hover { background: var(--navy-mid); }
.pic-show-prev { left: 12px; }
.pic-show-next { right: 12px; }
.pic-show-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  padding: 0 20px;
}
.pic-all {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.pic-all a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.pic-all a:hover { border-color: var(--gold); }
.pic-view-frame {
  background: var(--navy-deep);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}
.pic-view-frame img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.pic-view-frame img.logo-frame { background: #2e4262; }
.pic-view-caption {
  margin: 18px auto 8px;
  max-width: 720px;
  text-align: center;
  color: var(--navy);
  font-size: 1.15rem;
}
.pic-all img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pic-all img.logo-frame {
  object-fit: contain;
  background: #2e4262;
  height: 200px;
}
.pic-all p {
  padding: 14px 16px 18px;
  color: var(--navy);
}

.note-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.note-card p + p { margin-top: 14px; }

.min-cal { min-height: 520px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value {
  background: white;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.letter {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.value h3 { font-size: 1.15rem; margin-bottom: 4px; }
.value p { font-size: 0.92rem; }

.pastor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
}
.pastor img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.pastor-copy blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.35;
  margin: 12px 0 18px;
}
.sig { font-weight: 600; color: var(--navy); }
.sig span { display: block; font-weight: 400; color: var(--muted); font-size: 0.92rem; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.visit-card {
  background: var(--navy-deep);
  color: white;
  border-radius: 18px;
  padding: 36px;
  min-height: 340px;
}
.visit-card h2, .visit-card h3 { color: white; font-family: "Source Sans 3", sans-serif; font-weight: 650; letter-spacing: -0.02em; }
.visit-card p { color: rgba(255,255,255,.78); }
.visit-card a.map {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 18px;
}
.info-list { list-style: none; margin-top: 18px; }
.info-list li { padding: 8px 0; color: rgba(255,255,255,.86); }
.info-list a { color: var(--gold); text-decoration: none; }
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-stack img { height: 164px; width: 100%; object-fit: cover; border-radius: 14px; }
.photo-stack img:first-child { grid-column: 1 / -1; height: 220px; }
.visit .split-slides,
.visit-slides {
  height: 100%;
  min-height: 396px;
  border-radius: 18px;
  align-self: stretch;
}

.staff-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.staff {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.staff img, .staff .initials { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center top; }
.staff .initials {
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.staff-copy { padding: 28px 28px 28px 0; }
.staff-copy .role { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 6px; }
.staff-copy p { margin-top: 12px; }
.leader-staff {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}
.leader-staff img, .leader-staff .initials {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.leader-staff .form { border: 0; padding: 0; }
@media (max-width: 640px) {
  .leader-staff { grid-template-columns: 1fr; }
}

.prose { max-width: 760px; }
.prose p + p, .prose p + h2, .prose h2 + p { margin-top: 16px; }
.prose h2 { margin-top: 8px; }
.prose a { color: var(--navy); font-weight: 600; }

.day-grid { display: grid; gap: 18px; }
.day {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
}
.day .when { color: var(--gold-deep); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }
.day h3 { margin-bottom: 8px; }
.day ul { margin: 10px 0 0 18px; color: var(--muted); }
.day li { margin: 4px 0; }
.day a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.day a:hover { color: var(--gold-deep); }

.video-browser { position: relative; padding: 0 10px; }
.video-arrow {
  position: absolute;
  top: 22%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.video-arrow:hover { background: var(--navy-mid); }
.video-arrow-prev { left: -16px; }
.video-arrow-next { right: -16px; }
.video-arrow[hidden] { display: none; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.video-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-deep);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(16,35,63,.45) 100%);
}
.play-btn span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16,35,63,.82);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  padding-left: 4px;
  border: 2px solid var(--gold);
}
.video-card:hover .play-btn span { background: var(--gold); color: var(--navy-deep); }
.video-card div { padding: 18px 20px 22px; }
.video-card .video-thumb { padding: 0; }
.video-card p { margin-top: 6px; }
.watch-status {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.play-btn { z-index: 1; }
.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #c0392b;
  color: white;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  gap: 16px;
}
.form label { font-weight: 600; color: var(--navy); font-size: 0.92rem; display: grid; gap: 6px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .note { font-size: 0.88rem; }
.ministry-form { max-width: 560px; }

.map-frame, .cal-frame {
  width: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 420px;
}
.map-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.map-pair iframe {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 16px;
}
.cal-frame { min-height: 640px; background: white; }

.doctrine-list { display: grid; gap: 10px; }
.doctrine {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.doctrine summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 650;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.doctrine summary::-webkit-details-marker { display: none; }
.doctrine summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.doctrine[open] summary::after { content: "–"; }
.doctrine .body { padding: 0 22px 20px; color: var(--muted); }
.doctrine .body p + p, .doctrine .body p + ul, .doctrine .body ul + p { margin-top: 12px; }
.doctrine .body ul { margin-left: 18px; }
.doctrine .body li { margin: 8px 0; }
.doctrine .body h4 { margin: 14px 0 6px; font-size: 1.05rem; font-family: "Source Sans 3", sans-serif; }

.sermon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sermon {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  display: block;
}
a.sermon:hover { border-color: var(--navy); color: var(--gold-deep); }

.links-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.policy-links { margin: 0 0 8px; padding-top: 8px; }
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 28px;
}
.equip-place .split-slides {
  height: 280px;
  min-height: 280px;
}
.equip-place h3 { margin: 16px 0 12px; }
.equip-box { padding: 20px 22px; }
.equip-line {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.equip-line:first-child { border-top: 0; padding-top: 0; }
.equip-line:last-child { padding-bottom: 0; }
.equip-line strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.equip-line span { color: var(--muted); }
.equip-now {
  margin: 10px 0 0;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.equip-now p { margin: 0; font-size: 0.92rem; color: var(--navy); }
.equip-now p + p { margin-top: 6px; }
.prayer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.prayer-tabs button {
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}
.prayer-tabs button.is-on {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.prayer-panel[hidden] { display: none; }
.prayer-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.prayer-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
}
.prayer-card h3 {
  font-size: 1.3rem;
  margin: 6px 0 10px;
}
.prayer-card p { color: var(--muted); }
.prayer-empty { color: var(--muted); }
.prayer-choice-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin: 4px 0 0;
}
.prayer-choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.prayer-choice input { margin-top: 4px; }
.prayer-choice small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.prayer-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.prayer-ok, .prayer-err {
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 18px;
  font-weight: 600;
}
.prayer-ok { background: #eef6ee; border: 1px solid #c9e0c9; color: #245c2a; }
.prayer-err { background: #f8ecec; border: 1px solid #e3c4c4; color: #9a2b2b; }
.prayer-stage { padding: 28px 0 40px; }
.prayer-wrap { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.prayer-view-tabs { display: none; }
.prayer-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  height: min(78vh, 840px);
  min-height: 540px;
}
.prayer-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
  overflow: hidden;
}
.prayer-col-head {
  flex: 0 0 auto;
  padding: 20px 26px 16px;
  background: linear-gradient(180deg, var(--cream), #fbfaf7);
  border-bottom: 1px solid var(--line);
}
.prayer-col-head h2 {
  font-size: clamp(1.5rem, 2.1vw, 2.05rem);
  margin-top: 4px;
}
.prayer-col-head p { margin-top: 8px; }
.prayer-col-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 6px 26px 32px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}
.prayer-intro { margin: 16px 0 6px; }
.prayer-intro p + p { margin-top: 12px; }
.prayer-col-body h3 {
  margin: 26px 0 8px;
  font-size: 1.42rem;
}
.prayer-point {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.prayer-point h4 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.prayer-scripture {
  margin: 0;
  padding: 14px 16px 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}
.prayer-scripture p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
}
.prayer-scripture cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.prayer-scripture + .prayer-scripture,
.prayer-point p + .prayer-scripture { margin-top: 10px; }
.prayer-point p { margin-top: 8px; }
.prayer-our-father p { line-height: 1.5; }
.prayer-next {
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.prayer-next h3 { margin-top: 0; }
.prayer-next .hero-actions { margin-top: 16px; }
.prayer-board .prayer-wall {
  grid-template-columns: 1fr;
  margin-top: 16px;
}
@media (max-width: 1100px) {
  .prayer-view-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
  }
  .prayer-view-tabs button {
    font: inherit;
    font-weight: 600;
    color: var(--navy);
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
  }
  .prayer-view-tabs button.is-on {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  .prayer-split {
    grid-template-columns: 1fr;
    height: min(70vh, 680px);
    min-height: 420px;
  }
  .prayer-split.show-teach .prayer-board,
  .prayer-split.show-wall .prayer-teach { display: none; }
}
.verse {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 12px 12px;
}
.verse p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}
.verse cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}
.vision-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.vision-list li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px 18px 20px;
  color: var(--muted);
  line-height: 1.55;
}
.vision-list strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.leader-login {
  margin-top: 28px;
  font-size: 0.82rem;
  text-align: right;
}
.leader-login a {
  color: var(--muted);
  text-decoration: none;
}
.leader-login a:hover { color: var(--navy); text-decoration: underline; }

.leader-wrap { max-width: 860px; }
.leader-wrap .section-head { margin-bottom: 22px; }
.leader-banner, .leader-ok, .leader-error {
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 18px;
  font-size: 0.98rem;
}
.leader-banner {
  background: #f4efe4;
  border: 1px solid var(--line);
  color: var(--navy);
}
.leader-ok {
  background: #eef6ee;
  border: 1px solid #c9e0c9;
  color: #245c2a;
}
.leader-error {
  background: #fbebe8;
  border: 1px solid #e8c4bc;
  color: #8a2f2f;
}
.leader-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.leader-toolbar p { color: var(--navy); font-weight: 600; }
.leader-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.leader-hint { margin: 0 0 16px; }
.leader-hint a { color: var(--navy); font-weight: 600; }
.leader-save-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 14px;
}
.leader-save-row p {
  margin: 0;
  max-width: 42ch;
  font-size: 0.92rem;
  color: var(--navy);
}
.leader-speed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.leader-speed select {
  min-width: 16rem;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font: inherit;
  color: var(--navy);
}
.leader-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.leader-photo {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 12px;
}
.leader-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.leader-photo img.logo-frame {
  object-fit: contain;
  background: #2e4262;
}
.leader-photo p {
  padding: 10px 12px 8px;
  font-size: 0.9rem;
  color: var(--navy);
  min-height: 3.2em;
}
.leader-photo-words {
  display: grid;
  gap: 6px;
  margin: 10px 12px 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}
.leader-photo-words textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  resize: vertical;
}
.leader-photo-show {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 12px 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.leader-photo-show span {
  display: grid;
  gap: 4px;
}
.leader-photo-show small {
  display: block;
  font-weight: 400;
  color: var(--muted, #5a6a7c);
  font-size: 0.8rem;
  line-height: 1.35;
}
.form .leader-photo-show {
  display: flex;
  align-items: flex-start;
}
.leader-photo-show input,
.form .leader-photo-show input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--navy);
}
.leader-photo.is-icon-only img {
  opacity: 0.78;
}
.leader-photo.is-icon-only .leader-photo-show {
  border-color: var(--gold);
  background: #f7f1e4;
}
.leader-photo.is-header {
  border-color: var(--gold);
}
.leader-add .leader-photo-show {
  margin: 0 0 16px;
}
.leader-photo .btn { margin: 0 12px 8px; width: calc(100% - 24px); }
.leader-photo.is-card { border-color: var(--gold); }
.leader-card-badge {
  margin: 0 12px 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  min-height: 0 !important;
}
.btn-remove {
  background: white;
  color: #8a2f2f;
  border-color: #e2c4c4;
}
.btn-remove:hover { background: #fbebe8; border-color: #8a2f2f; }
.leader-empty { margin: 0 0 24px; }
.leader-add { margin-top: 8px; }
.leader-add h2, .leader-current h2 { margin-bottom: 8px; }
.leader-file {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 2px dashed var(--gold);
  border-radius: 14px;
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  padding: 18px;
  color: var(--navy);
  font-weight: 600;
}
.leader-file input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.leader-preview {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.leader-preview img { width: 100%; max-height: 280px; object-fit: contain; background: #10233f; }
.leader-password {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 18px 18px;
}
.leader-password summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--navy);
  padding: 12px 0;
}
.leader-password .form { border: 0; padding: 8px 0 0; }
.leader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.leader-min-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.leader-min {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--navy);
  min-height: 120px;
}
.leader-min:hover { border-color: var(--navy); }
.leader-min h2 { margin-bottom: 8px; font-size: 1.55rem; }
.leader-min p { font-size: 0.92rem; }
.leader-list-head { margin: 36px 0 16px; }
.leader-list-head:first-child { margin-top: 0; }
.leader-user {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
}
.leader-user h3 { margin-bottom: 4px; }
.leader-user-top p { font-size: 0.92rem; }
.leader-access { color: var(--navy) !important; font-weight: 600; margin-top: 6px; }
.leader-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.leader-user-edit { margin-top: 16px; }
.leader-check-label {
  font-weight: 600;
  color: var(--navy);
  margin: 8px 0 0;
}
.leader-checks {
  display: grid;
  gap: 8px;
  margin: 8px 0 12px;
}
.leader-checks label,
.leader-admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}
.leader-checks input,
.leader-admin-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.leader-admin-check { margin: 8px 0 12px; }
.leader-locked {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}
.leader-mail-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  margin: 0 0 22px;
}
.leader-mail-block h2 { margin-bottom: 8px; }
.leader-mail-block > p { margin-bottom: 16px; }
.leader-mail-block .form { border: 0; padding: 0; }
.leader-mail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.leader-mail-add {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin: 0 0 18px;
}
.leader-mail-add h3 { margin-bottom: 10px; font-size: 1.15rem; }
.leader-mail-person,
.leader-mail-request {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin: 0 0 12px;
}
.leader-mail-person.is-paused {
  border-style: dashed;
  opacity: 0.88;
}
.leader-mail-person h3,
.leader-mail-request h3 { margin-bottom: 4px; font-size: 1.2rem; }
.leader-mail-meta { font-size: 0.92rem; color: var(--navy); }
.leader-mail-text { margin: 10px 0 12px; color: var(--muted); }
.leader-tag {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.leader-mail-request label,
.leader-mail-request select { font-weight: 600; color: var(--navy); }
.leader-mail-request select {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font: inherit;
}
.leader-mail-subhead {
  margin: 28px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.leader-mail-layouts {
  display: grid;
  gap: 10px;
  margin: 8px 0 16px;
}
.leader-layout {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}
.leader-layout:has(input:checked) {
  border-color: var(--navy);
  background: white;
}
.leader-layout strong { display: block; color: var(--navy); }
.leader-layout small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--muted);
}
.leader-mail-thumb {
  margin-top: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 10px;
}
.leader-mail-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #10233f;
}
.leader-mail-thumb .btn { margin: 10px 10px 0; width: calc(100% - 20px); }
.leader-mail-preview {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16, 35, 63, 0.55);
  display: grid;
  place-items: center;
  padding: 22px;
}
.leader-mail-preview[hidden] { display: none !important; }
.leader-mail-preview-card {
  background: white;
  width: min(740px, 100%);
  height: min(90vh, 920px);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.leader-mail-preview-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.leader-mail-preview-bar h2 { font-size: 1.45rem; margin-top: 2px; }
.leader-mail-preview-card iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #f4efe4;
}
.unsub-card {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
}
@media (max-width: 640px) {
  .leader-mail-grid { grid-template-columns: 1fr; }
}
.cbc-edit-bar, .cbc-preview-bar {
  position: sticky;
  top: 78px;
  z-index: 35;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  background: var(--navy-deep);
  color: white;
  border-bottom: 2px solid var(--gold);
}
.cbc-preview-bar { background: #9a7b32; }
.cbc-edit-bar p, .cbc-preview-bar p {
  color: white;
  font-weight: 600;
  margin: 0;
  max-width: 52%;
}
.cbc-edit-bar div, .cbc-preview-bar div { display: flex; flex-wrap: wrap; gap: 8px; }
[data-cbc-edit] {
  outline: 2px dashed var(--gold);
  outline-offset: 4px;
  cursor: text;
}
[data-cbc-edit]:focus { outline-style: solid; background: rgba(196,163,90,.12); }
.leader-login-foot {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 0.82rem;
}
.leader-login-foot:hover { color: var(--gold); }
.cta-band {
  background: var(--navy);
  color: white;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2, .cta-band h3 { color: white; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 8px; }

footer {
  background: #0b1b32;
  color: rgba(255,255,255,.78);
  padding: 56px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
footer h3 { color: white; font-size: 1.15rem; margin-bottom: 12px; }
footer a { text-decoration: none; color: rgba(255,255,255,.78); }
footer a:hover { color: var(--gold); }
footer ul { list-style: none; display: grid; gap: 8px; }
footer p { color: rgba(255,255,255,.7); }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  font-size: 0.85rem;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: var(--gold);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 1100px) {
  .nav-links, .phone { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 18px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(196,163,90,.25);
  }
  .menu-btn { display: block; }
  .nav-cta .btn { display: none; }
  .live-now.is-on:not([hidden]) { display: inline-flex !important; }
  .live-now[hidden] { display: none !important; }
  .hero-inner, .split, .split.reverse, .expect-grid, .ministry-grid, .values-grid, .stats-grid, .visit, .pastor, .foot-grid, .staff, .day, .video-grid, .form .row, .sermon-grid, .cta-band, .leader-grid, .gallery, .map-pair, .archive-intro, .vision-list, .equip-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; align-items: start; }
  .hero-inner { padding: 28px 0 36px; gap: 22px; }
  .hero h1 { max-width: none; font-size: 2.45rem; }
  .times-card { padding: 22px 20px 20px; }
  .times-card .btn { display: none; }
  .time-row { padding: 9px 0; }
  .hero p.lead { font-size: 1.05rem; }
  .split img, .split-slides { height: 260px; }
  .visit .split-slides, .visit-slides { min-height: 260px; height: 280px; }
  .pastor { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ministry { min-height: 230px; }
  .logo { height: 44px; }
  .page-hero { min-height: 320px; }
  .staff-copy { padding: 22px; }
  .staff img, .staff .initials { min-height: 220px; max-height: 280px; }
  .gallery img, .gallery img.wide { height: 200px; }
  .gallery-slides { height: 260px; }
  .pic-show-card { flex-basis: 260px; width: 260px; }
  .pic-show-card img { height: 200px; }
  .event { grid-template-columns: 84px 1fr; }
  .map-pair iframe { max-height: 420px; }
  .video-arrow { top: auto; bottom: 18px; }
  .video-arrow-prev { left: 10px; }
  .video-arrow-next { right: 10px; }
  .archive-portrait { max-width: 220px; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  section { padding: 64px 0; }
  .legal { flex-direction: column; }
  .time-row { grid-template-columns: 78px 1fr; }
  .cta-band { padding: 28px 22px; }
}
