/* ==========================================================================
   Site stylesheet — shared by every page.
   Colors, type and spacing live in the tokens at the top. The homepage uses
   the default scale; inner pages add `class="page-inner"` to <body>, which
   switches to a slightly tighter scale and a solid, sticky header.
   ========================================================================== */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --ink: #0b0b0b;
  --slate: #3e4551;
  --red: #cc0600;
  --flame: #ff4400;
  --paper: #f5f3f0;
  --white: #ffffff;
  --muted: #8c8a88;
  --text-soft: #43413f;
  --text: #4a4744;
  --text-note: #5c5a57;
  --text-faint: #6b6864;
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(1rem, 3.5vw, 2.5rem);
  --container: 1320px;
  --section-pad: clamp(3.5rem, 7vw, 6rem);
  --h2-size: clamp(2rem, 5vw, 3.7rem);
  --h2-gap: 1.4rem;
  --kicker-size: .78rem;
  --kicker-gap: 1rem;
  --intro-size: 1.1rem;
  --intro-width: 60ch;
  --banner-gap: 2.6rem;
  --banner-height: clamp(220px, 32vw, 400px);
}

.page-inner {
  --container: 1160px;
  --section-pad: clamp(3rem, 6vw, 5rem);
  --h2-size: clamp(1.8rem, 4vw, 3rem);
  --h2-gap: 1.2rem;
  --kicker-size: .76rem;
  --kicker-gap: .9rem;
  --intro-size: 1.08rem;
  --intro-width: 58ch;
  --banner-gap: 2.4rem;
  --banner-height: clamp(200px, 28vw, 360px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 3px solid var(--flame); outline-offset: 2px; }

h1, h2, h3 {
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.022em;
  text-transform: uppercase;
}

body.is-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute;
  top: .5rem;
  left: -999px;
  z-index: 400;
  padding: .8rem 1.2rem;
  background: var(--flame);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}
.skip-link:focus { left: .5rem; }

/* ---- Logo (placeholder wordmark — swap for your own) ---------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .24em;
  height: 1em;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  transition: font-size .3s;
}
.brand__mark { flex: none; width: .78em; height: .78em; }
.brand__name {
  font-size: .4em;
  font-weight: 900;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--flame); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--flame); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--red); }
.btn--outline { border-color: #fff; color: #fff; }
.btn--outline:hover { background: #fff; color: var(--ink); }
.btn--ghost { background: none; border-color: rgba(11, 11, 11, .35); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--sm { padding: .72rem 1.15rem; font-size: .72rem; }
.btn--lg { justify-content: center; width: 100%; padding: 1.15rem 2.2rem; font-size: .92rem; }
@media (min-width: 560px) {
  .btn--lg { width: auto; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.btn-row--center { justify-content: center; }

.text-link { color: inherit; }
.text-link:hover { text-decoration: underline; }

/* ---- Header ----------------------------------------------------------------
   Homepage: fixed and transparent over the hero, turns solid on scroll.
   Inner pages: sticky and always solid.                                     */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--gutter);
  transition: background .3s, padding .3s;
}
.site-header.is-scrolled {
  padding-top: .55rem;
  padding-bottom: .55rem;
  background: var(--ink);
  box-shadow: 0 2px 0 var(--red);
}
.site-header.is-scrolled .brand { font-size: 38px; }
@media (max-width: 1119px) {
  .site-header .brand { font-size: 38px; }
}

.site-nav { display: none; align-items: center; gap: 1.7rem; }
.site-nav a {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.site-nav a:hover { color: var(--flame); opacity: 1; }
@media (min-width: 1120px) {
  .site-nav { display: flex; }
}

.header-cta { display: none; }
@media (min-width: 520px) {
  .header-cta { display: inline-flex; }
}

.menu-toggle {
  display: flex;
  flex: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 0 auto;
  background: #fff;
  transition: transform .25s, opacity .18s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1120px) {
  .menu-toggle { display: none; }
}

/* Inner-page header */
.page-inner .site-header {
  position: sticky;
  padding-top: .7rem;
  padding-bottom: .7rem;
  background: var(--ink);
  box-shadow: 0 2px 0 var(--red);
  transition: none;
}
.page-inner .site-header .brand { font-size: 40px; transition: none; }
.page-inner .site-nav { gap: 1.6rem; }
.page-inner .site-nav a { transition: none; }
@media (min-width: 900px) {
  .page-inner .site-nav { display: flex; }
  .page-inner .menu-toggle { display: none; }
}

/* ---- Mobile menu ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 1rem clamp(1.1rem, 5vw, 2rem) 2rem;
  background: var(--ink);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.mobile-menu .brand { font-size: 40px; }
.mobile-menu__close {
  padding: 0 .3rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu__close:hover { color: var(--flame); }
.mobile-menu__nav { display: flex; flex-direction: column; padding: .35rem 0; }
.mobile-menu__nav a {
  padding: .72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: clamp(1.02rem, 4.3vw, 1.24rem);
  font-weight: 900;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible { color: var(--flame); }
.mobile-menu__footer { margin-top: auto; padding-top: 1.2rem; }
.mobile-menu__times {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
}
@media (max-height: 720px) {
  .mobile-menu__nav a { padding: .55rem 0; font-size: .98rem; }
  .mobile-menu .brand { font-size: 32px; }
  .mobile-menu__top { padding-bottom: .7rem; }
  .mobile-menu__times { display: none; }
  .mobile-menu__footer { padding-top: .9rem; }
}

/* ---- Live banner (homepage) ----------------------------------------------- */
.live-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .7rem 1rem;
  background: var(--red);
  border-bottom: 2px solid var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.live-banner[hidden] { display: none; }
.live-banner:hover { background: var(--flame); }
.live-banner__dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.6s ease-in-out infinite;
}
.live-banner__sub {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: .9;
}
.live-banner__cta { opacity: .9; }
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}
@media (max-width: 640px) {
  .live-banner__sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .live-banner__dot { animation: none; }
}
body.is-live .site-header { top: var(--live-h, 44px); }
body.is-live .mobile-menu { padding-top: calc(1rem + var(--live-h, 44px)); }

/* ---- Hero (homepage) ------------------------------------------------------ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem var(--gutter) clamp(2.5rem, 6vw, 4rem);
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media video { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.hero__media video.is-playing { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 11, 11, .72) 0%, rgba(11, 11, 11, .28) 38%, rgba(11, 11, 11, .9) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  color: #fff;
}
.hero h1 { max-width: 17ch; margin: 0 0 1.5rem; font-size: clamp(2.4rem, 7.4vw, 6.4rem); }
.hero h1 .hl { color: var(--flame); }
.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.3rem;
  margin: 0 0 2rem;
  font-size: clamp(.8rem, 1.6vw, 1.15rem);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero__pillars i { color: var(--red); font-style: normal; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Hero with photos: a set height, and photos that fade behind the words ----- */
.hero--slides {
  min-height: var(--hero-h, 550px);
  height: var(--hero-h, 550px);
  align-items: center;
  padding-top: clamp(5.5rem, 12vw, 7rem);
  padding-bottom: clamp(3.2rem, 7vw, 4.5rem);
}
.hero--slides .hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero--slides .hero__slide.is-shown { opacity: 1; }
.hero--slides h1 { font-size: clamp(2.1rem, 5.4vw, 4.2rem); }
.hero--slides .hero__pillars { margin-bottom: 1.5rem; }
.hero--center { text-align: center; }
.hero--center h1 { max-width: 22ch; margin-inline: auto; }
.hero--center .hero__pillars, .hero--center .hero__actions { justify-content: center; }
.hero--o-none .hero__overlay { background: linear-gradient(180deg, rgba(11, 11, 11, .35) 0%, rgba(11, 11, 11, 0) 45%, rgba(11, 11, 11, .45) 100%); }
.hero--o-strong .hero__overlay { background: linear-gradient(180deg, rgba(11, 11, 11, .82) 0%, rgba(11, 11, 11, .6) 45%, rgba(11, 11, 11, .92) 100%); }
.hero__dots {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: clamp(1rem, 3vw, 1.8rem);
  display: flex;
  gap: .5rem;
}
.hero__dot {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}
.hero__dot[aria-current="true"] { background: var(--flame); }
.hero__dot:hover { background: rgba(255, 255, 255, .8); }
.hero__dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width: 640px) {
  .hero--slides { height: auto; min-height: min(var(--hero-h, 550px), 72svh); }
  .hero__dots { left: var(--gutter); right: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero--slides .hero__slide { transition: none; }
}

/* ---- Inner-page hero ------------------------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  background: var(--ink);
  color: #fff;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 11, 11, .72), rgba(11, 11, 11, .9));
}
.page-hero__content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.page-hero h1 { max-width: 16ch; margin: 0 0 1rem; font-size: clamp(2.2rem, 6vw, 4.4rem); }
.page-hero p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: 1.08rem;
}
.page-hero .page-hero__crumb {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ---- Sections ------------------------------------------------------------- */
.section { padding: var(--section-pad) var(--gutter); }
.section--compact {
  padding-top: clamp(2.6rem, 4.5vw, 4rem);
  padding-bottom: clamp(2.6rem, 4.5vw, 4rem);
}
.section--dark { background: var(--ink); color: #fff; }
.section--slate { background: var(--slate); color: #fff; }
.section--red { background: var(--red); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; }
.container--narrow { max-width: 900px; }

.section h2 { max-width: 20ch; margin: 0 0 var(--h2-gap); font-size: var(--h2-size); }

.text-center { text-align: center; }
.text-center h2,
.text-center .intro { margin-left: auto; margin-right: auto; }

.kicker {
  margin: 0 0 var(--kicker-gap);
  color: var(--red);
  font-size: var(--kicker-size);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section--dark .kicker { color: var(--flame); }
.section--slate .kicker,
.section--red .kicker { color: #fff; opacity: .7; }
.page-inner .section--slate .kicker { color: var(--flame); opacity: 1; }
.page-inner .section--red .kicker { opacity: .75; }

.intro { max-width: var(--intro-width); color: var(--text-soft); font-size: var(--intro-size); }
.section--dark .intro,
.section--slate .intro,
.section--red .intro { color: rgba(255, 255, 255, .85); }

.prose { max-width: 62ch; }
.prose p { margin-bottom: 1.1em; font-size: 1.08rem; }
.section--dark .prose p,
.section--slate .prose p,
.section--red .prose p { color: rgba(255, 255, 255, .86); }

/* ---- Split layout & photos ------------------------------------------------ */
.split { display: grid; align-items: center; gap: 2.5rem; }
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .page-inner .split { gap: 3.5rem; }
}

.photo { position: relative; overflow: hidden; background: var(--ink); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.page-inner .photo img { object-position: center 25%; }
.photo--4x3 img { aspect-ratio: 4 / 3; }
.photo--3x2 img { aspect-ratio: 3 / 2; }
.photo--banner { margin-top: var(--banner-gap); }
.photo--banner img,
.page-inner .photo--banner img { height: var(--banner-height); object-position: center 28%; }

/* ---- Home: weekly services ------------------------------------------------ */
.service-grid {
  display: grid;
  gap: 2px;
  margin-top: 2.6rem;
  background: rgba(255, 255, 255, .16);
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card { display: flex; flex-direction: column; padding: 2rem 1.8rem; background: var(--ink); }
.service-card h3 { margin: 0 0 .7rem; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.service-card p { margin: 0 0 .8rem; color: rgba(255, 255, 255, .8); font-size: .99rem; }
.service-card .service-card__time {
  margin: auto 0 0;
  padding-top: 1rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---- Home: kids & youth cards --------------------------------------------- */
.ministries {
  display: grid;
  gap: 2px;
  margin-top: 2.6rem;
  background: rgba(0, 0, 0, .12);
}
@media (min-width: 860px) {
  .ministries { grid-template-columns: 1fr 1fr; }
}
.ministry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 1.9rem;
  color: #fff;
  transition: filter .2s;
}
.ministry:hover { filter: brightness(1.08); }
.ministry--red { background: var(--red); }
.ministry--dark { background: var(--ink); }
.ministry h3 { margin: 0 0 .6rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.ministry p { margin: 0 0 1.4rem; color: rgba(255, 255, 255, .85); font-size: .99rem; }
.ministry .ministry__tagline { font-weight: 800; }
.ministry__link {
  margin-top: auto;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---- Home: next-step tiles ------------------------------------------------ */
.next-steps { display: grid; gap: 2px; background: var(--ink); }
@media (min-width: 640px) {
  .next-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .next-steps { grid-template-columns: repeat(4, 1fr); }
}
.step-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(230px, 24vw, 300px);
  padding: 1.8rem;
  transition: filter .2s;
}
.step-tile:hover { filter: brightness(1.1); }
.step-tile h3 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
.step-tile p { max-width: 26ch; margin: .7rem 0 0; font-size: .95rem; }
.step-tile .step-tile__lead { margin: .6rem 0 .4rem; font-weight: 800; }
.step-tile__link {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.step-tile--red { background: var(--red); color: #fff; }
.step-tile--flame { background: var(--flame); color: var(--ink); }
.step-tile--white { background: #fff; color: var(--ink); }
.step-tile--white .step-tile__link { color: var(--red); }
.step-tile--dark { background: var(--ink); color: #fff; }
.step-tile--dark .step-tile__link { color: var(--flame); }

/* ---- Home: watch channels ------------------------------------------------- */
.channels { display: grid; gap: 2px; background: rgba(255, 255, 255, .16); }
@media (min-width: 820px) {
  .channels { grid-template-columns: repeat(3, 1fr); }
}
.channel {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.7rem;
  background: var(--ink);
  transition: background .2s;
}
.channel:hover { background: #161616; }
.channel h3 { color: #fff; font-size: 1.4rem; }
.channel p { margin: 0; color: var(--muted); font-size: .94rem; }
.channel span {
  margin-top: .6rem;
  color: var(--flame);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---- Home: visit block ---------------------------------------------------- */
.visit-info {
  display: grid;
  gap: .4rem;
  margin: 0 0 1.6rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}
.visit-info__time {
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.visit-info__address { color: var(--text); font-size: 1rem; line-height: 1.6; }

.location-card {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
}
@media (min-width: 920px) {
  .location-card { height: 100%; min-height: 430px; }
}
.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.location-card:hover img { transform: scale(1.05); }
.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, .1) 0%, rgba(11, 11, 11, .86) 76%);
}
.location-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.6rem;
  color: #fff;
}
.location-card__body strong {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.location-card__body span { color: rgba(255, 255, 255, .8); font-size: .95rem; }
.location-card__body .location-card__cta {
  margin-top: .5rem;
  color: var(--flame);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---- Announcement pop-up (homepage) --------------------------------------- */
.announce {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(11, 11, 11, .82);
}
.announce[hidden] { display: none; }
.announce__box {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow: auto;
  background: var(--paper);
  border-top: 8px solid var(--red);
}
.announce__art { display: block; background: var(--ink); line-height: 0; }
.announce__art img {
  width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  background: var(--ink);
}
.announce__content { padding: clamp(1.4rem, 4vw, 2.2rem); }
.announce__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.announce__close:hover { background: #fff; color: var(--red); }
.announce__kicker {
  margin: 0 0 .7rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.announce__title { margin: 0 0 .15rem; font-size: clamp(1.6rem, 5vw, 2.2rem); }
.announce__theme {
  margin: 0 0 .6rem;
  color: var(--red);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.announce__date {
  margin: 0 0 1rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.announce__body { margin: 0 0 1.4rem; color: var(--text); font-size: .98rem; }
.announce__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
@media (min-width: 760px) {
  .announce__box { grid-template-columns: 1fr 1fr; max-height: 88vh; }
  .announce__art img { height: 100%; max-height: none; object-fit: cover; }
}
@media (max-height: 640px) {
  .announce__art img { max-height: 34vh; }
}

/* ---- Inner pages: fact cards, notes, timeline ----------------------------- */
.facts {
  display: grid;
  gap: 2px;
  margin-top: 2.4rem;
  background: rgba(255, 255, 255, .14);
}
@media (min-width: 760px) {
  .facts { grid-template-columns: repeat(3, 1fr); }
}
.fact { padding: 1.6rem; background: var(--slate); }
.fact h3 { margin: 0 0 .45rem; color: var(--flame); font-size: 1.05rem; }
.fact p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .97rem; }
.facts--light { background: rgba(0, 0, 0, .12); }
.facts--light .fact { background: #fff; color: var(--ink); }
.facts--light .fact h3 { color: var(--red); }
.facts--light .fact p { color: var(--text); }
.facts--dark .fact { background: var(--ink); }

.note {
  margin-top: 2.4rem;
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--red);
  background: #fff;
}
.note h3 { margin: 0 0 .6rem; font-size: 1.2rem; }
.note p { margin: 0 0 .6rem; color: var(--text); }
.note p:last-child { margin-bottom: 0; }
.note .note__lead { font-size: 1.05rem; font-weight: 800; }

.timeline { margin-top: 2.4rem; border-top: 2px solid rgba(255, 255, 255, .2); }
.timeline__row {
  display: grid;
  gap: .5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.timeline__label {
  margin: 0;
  padding-top: .35rem;
  color: var(--flame);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.timeline__body h3 { margin: 0 0 .45rem; color: #fff; font-size: 1.25rem; }
.timeline__body p {
  max-width: 58ch;
  margin: 0 0 .8em;
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
}
@media (min-width: 720px) {
  .timeline__row { grid-template-columns: 9rem 1fr; align-items: start; gap: 1.8rem; }
  .timeline__label { padding-right: 1.2rem; border-right: 3px solid var(--flame); }
}

/* ---- Inner pages: two-column text, values, leader ------------------------- */
.two-col { display: grid; gap: 2rem; margin-top: 2.6rem; }
@media (min-width: 820px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.two-col__title { margin: 0 0 .7rem; font-size: 1.2rem; letter-spacing: -.01em; }
.two-col p { max-width: 46ch; margin: 0; color: rgba(255, 255, 255, .88); font-size: 1.02rem; }
.two-col--light p { color: var(--text); }

.values {
  display: grid;
  gap: 2px;
  margin-top: 2.6rem;
  background: rgba(255, 255, 255, .16);
}
@media (min-width: 700px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .values { grid-template-columns: repeat(4, 1fr); }
}
.value { padding: 1.8rem 1.6rem; background: var(--slate); }
.value h3 { margin: 0 0 .6rem; color: var(--flame); font-size: 1.35rem; }
.value p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .98rem; }

.leader { display: grid; align-items: start; gap: 2.4rem; margin-top: 2.4rem; }
@media (min-width: 900px) {
  .leader { grid-template-columns: .85fr 1.15fr; gap: 3.4rem; }
}
.leader__photo { position: relative; overflow: hidden; background: var(--ink); }
.leader__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }
.leader__role {
  margin: 0 0 .5rem;
  color: var(--flame);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section .leader h2 { margin-bottom: 1.1rem; }

/* ---- Inner pages: photo sets ---------------------------------------------- */
.photo-pair,
.photo-grid {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, .16);
}
.photo-pair { margin-top: 2.6rem; }
.photo-grid { margin: 2.4rem 0; }
.photo-pair img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 820px) {
  .photo-pair { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 700px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Inner pages: schedule, live player ----------------------------------- */
.schedule {
  display: grid;
  gap: 2px;
  margin-top: 2.4rem;
  background: rgba(255, 255, 255, .14);
}
@media (min-width: 760px) {
  .schedule { grid-template-columns: repeat(3, 1fr); }
}
.schedule__item { padding: 1.7rem; background: var(--slate); }
.schedule__item h3 { margin: 0 0 .45rem; color: var(--flame); font-size: 1.05rem; }
.schedule__item p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .97rem; }

.player {
  margin-top: 2.2rem;
  border: 3px solid rgba(255, 255, 255, .16);
  background: #000;
}
.player__frame { position: relative; width: 100%; padding-top: 56.25%; }
.player__frame > iframe,
.player__frame > .player__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.player__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: 1.5rem;
  background: radial-gradient(ellipse at center, #1c1c1c 0%, #000 70%);
  color: #fff;
  text-align: center;
}
.player__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
}
.player__play svg { width: 28px; height: 28px; margin-left: 5px; fill: #fff; }
.player__placeholder strong {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}
.player__placeholder span { color: var(--muted); font-size: .93rem; }

/* ---- Inner pages: events -------------------------------------------------- */
.events {
  display: grid;
  gap: 2px;
  margin-top: 2.6rem;
  background: rgba(0, 0, 0, .12);
}
@media (min-width: 900px) {
  .events { grid-template-columns: 1fr 1fr; }
}
.event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.8rem;
  background: #fff;
}
.event h3 { margin: 0 0 .8rem; font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.event__date {
  margin: 0 0 .7rem;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.event__theme {
  margin: 0 0 .8rem;
  color: var(--flame);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.event__text { max-width: 52ch; margin: 0 0 .9rem; color: var(--text); }
.event__times { display: grid; gap: .35rem; margin: 0 0 1.2rem; list-style: none; }
.event__times li { display: flex; gap: .7rem; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.event__times span { min-width: 6.6rem; color: #fff; font-weight: 800; }
.event__place { margin: 0 0 1.5rem; color: var(--text-faint); font-size: .92rem; }
.event__note {
  max-width: 52ch;
  margin: 0 0 1.2rem;
  padding: .85rem 1rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: var(--text-note);
  font-size: .9rem;
}
.event__note strong { color: var(--red); }

.event--featured {
  display: grid;
  align-items: stretch;
  padding: 0;
  background: var(--ink);
  color: #fff;
}
@media (min-width: 900px) {
  .event--featured { grid-column: 1 / -1; grid-template-columns: .85fr 1.15fr; }
}
.event__art { background: #eee; }
.event__art img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
@media (min-width: 900px) {
  .event__art img { max-height: none; }
}
.event__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.8rem;
}
.event--featured .event__date { color: var(--flame); }
.event--featured .event__text { color: rgba(255, 255, 255, .85); }
.event--featured .event__place { color: rgba(255, 255, 255, .6); }

/* ---- Inner pages: path cards ---------------------------------------------- */
.paths {
  display: grid;
  gap: 2px;
  margin-top: 2.4rem;
  background: rgba(0, 0, 0, .12);
}
@media (min-width: 860px) {
  .paths { grid-template-columns: 1fr 1fr; }
}
.path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  transition: filter .2s;
}
.path:hover { filter: brightness(1.08); }
.path--red { background: var(--red); }
.path--dark { background: var(--ink); }
.section .path h2 { max-width: 16ch; margin: 0 0 1rem; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.path p { max-width: 44ch; margin: 0 0 1.6rem; color: rgba(255, 255, 255, .88); }
.path .path__kicker {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---- Inner pages: numbered steps ------------------------------------------ */
.step-cards {
  display: grid;
  gap: 2px;
  margin-top: 2.4rem;
  background: rgba(255, 255, 255, .14);
}
@media (min-width: 820px) {
  .step-cards { grid-template-columns: repeat(3, 1fr); }
}
.step-card { padding: 1.8rem 1.6rem; background: var(--ink); }
.step-card p { margin: 0; color: rgba(255, 255, 255, .78); font-size: .98rem; }
.step-card .step-card__num {
  margin: 0 0 .7rem;
  color: var(--flame);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---- Inner pages: embeds & forms ------------------------------------------ */
.embed,
.form-panel {
  max-width: 760px;
  margin: 2.4rem auto 0;
  background: #fff;
  border: 3px solid var(--ink);
  color: var(--ink);
}
.embed__head,
.form-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--ink);
  color: #fff;
}
.embed__head strong,
.form-panel__head strong {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}
.form-panel__head strong { letter-spacing: .04em; }
.embed__head span,
.form-panel__head span { color: rgba(255, 255, 255, .7); font-size: .85rem; }
.embed__body {
  min-height: 420px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #fff;
  color: var(--ink);
}
.embed__fallback { padding: 2rem 1.5rem; text-align: center; }
.embed__fallback p { max-width: 44ch; margin: 0 auto 1.2rem; color: var(--text-soft); }

.alt-give {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 1.6rem auto 0;
  padding: 1.3rem;
  border: 2px solid rgba(0, 0, 0, .12);
}
.alt-give__lead {
  margin: 0;
  color: var(--text-note);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.btn-paypal {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1.5rem;
  border: 1px solid #e5a800;
  border-radius: 24px;
  background: #ffc439;
  color: #253b80;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn-paypal:hover { background: #f0bb33; transform: translateY(-1px); }

.form-panel__body { padding: clamp(1.5rem, 4vw, 2.4rem); background: #fff; color: var(--ink); }
.form-panel__body label,
.form-panel__body p,
.form-panel__body span { color: var(--ink); }

.form-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.field { margin-bottom: 1.3rem; }
.field > label,
.field__label {
  display: block;
  margin: 0 0 .45rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.field__optional { opacity: .55; }
.form-panel__body .field__hint {
  display: block;
  margin: -.25rem 0 .5rem;
  color: var(--text-faint);
  font-size: .88rem;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: .85rem .95rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--flame); }
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid { border-color: var(--red); background: #fff5f4; }
.form-panel__body .field__error {
  display: none;
  margin-top: .4rem;
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
}
.form-panel__body .field__error.is-shown { display: block; }

.choices { display: grid; gap: .55rem; }
@media (min-width: 620px) {
  .choices { grid-template-columns: 1fr 1fr; }
}
.choice {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem .95rem;
  border: 2px solid #e2ded9;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.choice:hover { border-color: var(--ink); }
.choice input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--red); }
.choice span { flex: 1; }
.choice input:checked ~ span { font-weight: 700; }
.choice:has(input:checked) { border-color: var(--red); background: #fff6f5; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: 1.4rem;
  font-size: .93rem;
}
.consent input { flex: none; width: 18px; height: 18px; margin-top: .3rem; accent-color: var(--red); }

.form-alert {
  display: none;
  margin-top: 1.3rem;
  padding: 1.2rem 1.3rem;
  border: 2px solid var(--red);
  background: #fff5f4;
}
.form-alert.is-shown { display: block; }
.form-alert__title {
  margin-bottom: .4rem;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}
.form-panel__body .form-alert__text { margin: 0 0 .6rem; color: var(--text-soft); font-size: .95rem; }
.form-alert a { border-bottom: 2px solid var(--flame); color: var(--red); font-weight: 800; }

.form-panel__body .form-note { max-width: 46ch; margin: 1.1rem 0 0; color: var(--text-note); font-size: .88rem; }

.form-success { display: none; padding: clamp(1.8rem, 4vw, 2.6rem); background: var(--ink); color: #fff; }
.form-success.is-shown { display: block; }
.form-success:focus { outline: none; }
.form-success .form-success__title { margin-bottom: .6rem; color: var(--flame); font-size: 1.6rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.form-success p { margin: 0 0 .8rem; color: rgba(255, 255, 255, .85); }
.form-success p:last-child { margin-bottom: 0; }
.form-success .form-preview-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: var(--muted);
  font-size: .88rem;
}

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2rem;
  background: var(--ink);
  color: #fff;
}
.site-footer__top { display: grid; gap: 2.4rem; max-width: var(--container); margin: 0 auto; }
@media (min-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 2fr; gap: 3.5rem; }
}
.site-footer .brand { display: flex; width: max-content; margin-bottom: 1.2rem; font-size: 70px; }
.site-footer__tagline {
  max-width: 26ch;
  margin: 0 0 .3rem;
  color: rgba(255, 255, 255, .75);
  font-size: .97rem;
}
.site-footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
@media (min-width: 700px) {
  .site-footer__cols { grid-template-columns: repeat(4, 1fr); }
}
.site-footer h4 {
  margin: 0 0 1rem;
  color: var(--flame);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .5rem; color: rgba(255, 255, 255, .76); font-size: .96rem; }
.site-footer a:hover { color: var(--flame); }
.site-footer__info {
  display: grid;
  gap: .3rem;
  max-width: var(--container);
  margin: 2.6rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
@media (min-width: 700px) {
  .site-footer__info { grid-template-columns: auto 1fr auto; align-items: baseline; gap: 2rem; }
}
.site-footer__service {
  margin: 0;
  color: var(--flame);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-footer__address { margin: 0; color: rgba(255, 255, 255, .78); font-size: .97rem; line-height: 1.6; }
.site-footer__email { margin: 0; font-size: .95rem; }
.site-footer__email a { color: rgba(255, 255, 255, .78); }
.site-footer__email a:hover { color: var(--flame); }
.site-footer__legal {
  max-width: var(--container);
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.8;
}

.page-inner .site-footer { padding-top: clamp(2.8rem, 5vw, 4rem); }
.page-inner .site-footer .brand { margin-bottom: 1.1rem; font-size: 64px; }
.page-inner .site-footer h4 { margin-bottom: .9rem; font-size: .76rem; }
.page-inner .site-footer li { margin-bottom: .45rem; font-size: .95rem; }
.page-inner .site-footer__legal { font-size: .77rem; }

/* ---- Social icons --------------------------------------------------------- */
.social-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }
.page-inner .social-links { margin-top: 1.2rem; }
.page-inner .social-links--inline { justify-content: center; margin-top: 1.6rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  transition: background .2s, transform .2s;
}
.social-links a:hover { background: var(--red); transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; fill: var(--ink); transition: fill .2s; }
.social-links a:hover svg { fill: #fff; }

/* ---- Scroll reveal -------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Additions for the content management system
   ========================================================================== */

/* Logo image uploaded in Settings → Church details */
.brand__img { display: block; height: 1em; width: auto; }

/* Spam trap: hidden from people, filled in only by bots */
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Spacing between blocks that editors combine freely */
.container > .photo--banner:first-child { margin-top: 0; }
.photo--banner:has(+ .channels) { margin-top: 2.4rem; margin-bottom: 2px; }
.photo--banner + .channels { margin-top: 2px; }
.channels + .btn-row { margin-top: 2.2rem; }
.visit-info + .btn-row { margin-top: 0; }
.social-links--inline + .btn-row { margin-top: 2.4rem; }
.section--tight-bottom { padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero__content > p:not(.page-hero__crumb) + p { margin-top: .9rem; }
.page-hero__crumb a { color: inherit; }
.page-hero__crumb a:hover { color: var(--flame); }
.page-hero--message { min-height: 60vh; display: flex; align-items: center; }
.page-hero--message .page-hero__content { width: 100%; }
.timeline__body p + p { margin-top: 1rem; }
.two-col p + p { margin-top: .8em; }
.prose ul { margin: 0 0 1.1em 1.2em; font-size: 1.08rem; }
.intro + ul.intro { margin-top: -.4em; }
.text-center .social-links { justify-content: center; }
.text-center .btn-row { justify-content: center; }

/* Weekly schedule on a light background */
.schedule--light { background: rgba(0, 0, 0, .12); }
.schedule--light .schedule__item { background: #fff; }
.schedule--light .schedule__item h3 { color: var(--red); }
.schedule--light .schedule__item p { color: var(--text); }

/* Live stream and giving embeds pasted in Settings → Embeds */
.player__frame--embed > * { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player__frame iframe { width: 100%; height: 100%; border: 0; }
.embed__body iframe { max-width: 100%; }

/* Events */
.events__empty { grid-column: 1 / -1; }
.event h3 a:hover { color: var(--flame); }
.event--featured:not(:has(.event__art)) { grid-template-columns: 1fr; }
.split--top { align-items: start; }
.photo--natural img { height: auto; }
.section--dark .event__place,
.section--slate .event__place { color: rgba(255, 255, 255, .6); }
.section--dark .event__note,
.section--slate .event__note {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .07);
  border-left-color: var(--flame);
}
.section--dark .event__note strong,
.section--slate .event__note strong { color: var(--flame); }
.event-detail .event__times { margin-top: .4rem; }
.event-detail .prose { margin-top: 1rem; }

/* Pop-up without an image */
.announce__box--text { max-width: 560px; }
@media (min-width: 760px) {
  .announce__box.announce__box--text { grid-template-columns: 1fr; }
}

/* Form fields */
.field--consent .consent { margin-bottom: 0; }
.field select option[value=""] { color: var(--muted); }

/* Shown to signed-in editors on the public site */
.cms-bar {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 450;
  display: flex;
  gap: 2px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
  font-family: var(--font);
}
.cms-bar a {
  padding: .6rem .9rem;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cms-bar a:last-child { background: var(--red); }
.cms-bar a:hover { background: var(--flame); }
/* ==========================================================================
   Boxes: rows of containers that divide a section (built in the visual editor)
   A row is a wrapping flex line. Boxes share it equally unless they have a width
   (a fraction of 12); tablets and phones can keep, pair or stack them.
   ========================================================================== */
.boxes {
  --gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--gap);
  margin-top: 2.4rem;
}
.boxes--gap-none { --gap: 0px; }
.boxes--gap-sm { --gap: .75rem; }
.boxes--gap-lg { --gap: 2.5rem; }
.boxes--gap-xl { --gap: 4rem; }
.boxes--align-top { align-items: flex-start; }
.boxes--align-center { align-items: center; }
.boxes--align-bottom { align-items: flex-end; }
.boxes--justify-center { justify-content: center; }
.boxes--justify-end { justify-content: flex-end; }
.boxes--justify-between { justify-content: space-between; }
.boxes--space-none { margin-top: 0; }
.boxes--space-sm { margin-top: 1.2rem; }
.boxes--space-lg { margin-top: 4.5rem; }
.container > .boxes:first-child { margin-top: 0; }

.box {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: min(100%, 160px);
  container-type: inline-size;
}
.boxes > .box--w1 { --f: .083333; }
.boxes > .box--w2 { --f: .166667; }
.boxes > .box--w3 { --f: .25; }
.boxes > .box--w4 { --f: .333333; }
.boxes > .box--w5 { --f: .416667; }
.boxes > .box--w6 { --f: .5; }
.boxes > .box--w7 { --f: .583333; }
.boxes > .box--w8 { --f: .666667; }
.boxes > .box--w9 { --f: .75; }
.boxes > .box--w10 { --f: .833333; }
.boxes > .box--w11 { --f: .916667; }
.boxes > .box--w12 { --f: 1; }
.boxes > [class*="box--w"] { flex: 0 0 calc(var(--f) * 100% - (1 - var(--f)) * var(--gap)); }
@media (max-width: 959px) {
  .boxes--t-2 > .box { --f: .5; flex: 0 0 calc(var(--f) * 100% - (1 - var(--f)) * var(--gap)); }
  .boxes--t-1 > .box { flex: 0 0 100%; }
.boxes > .box--tw1 { --f: .083333; }
.boxes > .box--tw2 { --f: .166667; }
.boxes > .box--tw3 { --f: .25; }
.boxes > .box--tw4 { --f: .333333; }
.boxes > .box--tw5 { --f: .416667; }
.boxes > .box--tw6 { --f: .5; }
.boxes > .box--tw7 { --f: .583333; }
.boxes > .box--tw8 { --f: .666667; }
.boxes > .box--tw9 { --f: .75; }
.boxes > .box--tw10 { --f: .833333; }
.boxes > .box--tw11 { --f: .916667; }
.boxes > .box--tw12 { --f: 1; }
  .boxes > [class*="box--tw"] { flex: 0 0 calc(var(--f) * 100% - (1 - var(--f)) * var(--gap)); }
}
@media (max-width: 639px) {
  .boxes--p-2 > .box { --f: .5; flex: 0 0 calc(var(--f) * 100% - (1 - var(--f)) * var(--gap)); }
  .boxes--p-1 > .box { flex: 0 0 100%; }
.boxes > .box--pw1 { --f: .083333; }
.boxes > .box--pw2 { --f: .166667; }
.boxes > .box--pw3 { --f: .25; }
.boxes > .box--pw4 { --f: .333333; }
.boxes > .box--pw5 { --f: .416667; }
.boxes > .box--pw6 { --f: .5; }
.boxes > .box--pw7 { --f: .583333; }
.boxes > .box--pw8 { --f: .666667; }
.boxes > .box--pw9 { --f: .75; }
.boxes > .box--pw10 { --f: .833333; }
.boxes > .box--pw11 { --f: .916667; }
.boxes > .box--pw12 { --f: 1; }
  .boxes > [class*="box--pw"] { flex: 0 0 calc(var(--f) * 100% - (1 - var(--f)) * var(--gap)); }
  .boxes--reverse-p { flex-wrap: wrap-reverse; }
}
@media (min-width: 960px) { .box--hide-d { display: none !important; } }
@media (min-width: 640px) and (max-width: 959px) { .box--hide-t { display: none !important; } }
@media (max-width: 639px) { .box--hide-p { display: none !important; } }

.box__inner { position: relative; z-index: 1; display: flex; flex-direction: column; min-width: 0; }
.box > .box__inner > * { margin-top: 0; margin-bottom: 0; }
.box > .box__inner > * + * { margin-top: 1.1rem; }
.box > .box__inner > .spacer + *, .box > .box__inner > * + .spacer { margin-top: 0; }
.box--va-center { justify-content: center; }
.box--va-bottom { justify-content: flex-end; }
.box--va-spread > .box__inner { flex: 1; justify-content: space-between; }
.box--h-sm { min-height: 200px; }
.box--h-md { min-height: 320px; }
.box--h-lg { min-height: 480px; }
.box--h-screen { min-height: 100svh; }

/* Spacing sits inside the content, so boxes that share a row stay equal. */
.box--pad-sm > .box__inner { padding: 1rem; }
.box--pad-md > .box__inner { padding: clamp(1.25rem, 2.6vw, 2rem); }
.box--pad-lg > .box__inner { padding: clamp(1.75rem, 4vw, 3rem); }
.box--pad-xl > .box__inner { padding: clamp(2.5rem, 6vw, 4.5rem); }

.box--bg-white { background: #fff; }
.box--bg-light { background: #e9e6e1; }
.box--bg-slate { background: var(--slate); }
.box--bg-dark { background: var(--ink); }
.box--bg-red { background: var(--red); }
.box--bg-flame { background: var(--flame); }
.box--bg-custom { background: var(--box-bg, #fff); }
.box--on-light { color: var(--ink); }
.box--on-dark { color: #fff; }

.box--border-light { border: 1px solid rgba(0, 0, 0, .14); }
.box--on-dark.box--border-light { border-color: rgba(255, 255, 255, .22); }
.box--border-dark { border: 2px solid var(--ink); }
.box--on-dark.box--border-dark { border-color: #fff; }
.box--border-accent-top { border-top: 4px solid var(--red); }
.box--border-accent-left { border-left: 4px solid var(--red); }
.box--radius-sm { border-radius: 6px; }
.box--radius-md { border-radius: 14px; }
.box--radius-lg { border-radius: 28px; }
.box--shadow-sm { box-shadow: 0 2px 10px rgba(0, 0, 0, .08); }
.box--shadow-md { box-shadow: 0 12px 32px rgba(0, 0, 0, .13); }
.box--shadow-lg { box-shadow: 0 24px 60px rgba(0, 0, 0, .22); }

.box--photo { overflow: hidden; background-color: var(--ink); }
.box__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.box__overlay { position: absolute; inset: 0; z-index: 0; background: rgba(11, 11, 11, .45); }
.box__overlay--light { background: rgba(11, 11, 11, .25); }
.box__overlay--strong { background: rgba(11, 11, 11, .68); }

.box__link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.box__link:focus-visible { outline: 3px solid var(--flame); outline-offset: 3px; }
.box--linked .box__inner a,
.box--linked .box__inner button,
.box--linked .box__inner iframe { position: relative; z-index: 3; }
.box--hover-lift,
.box--hover-glow { transition: transform .25s ease, box-shadow .25s ease; }
.box--hover-lift:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, .16); }
.box--hover-glow:hover { box-shadow: 0 16px 44px rgba(0, 0, 0, .2); }
.js .box--hover-lift.reveal.is-visible:hover { transform: translateY(-6px); }
.box--hover-zoom .box__bg { transition: transform .7s ease; }
.box--hover-zoom:hover .box__bg { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) {
  .box--hover-lift:hover { transform: none; }
  .box--hover-zoom:hover .box__bg { transform: none; }
}

/* Text inside boxes with their own background follows the box, not the section. */
.box--on-light .prose p,
.box--on-light .intro,
.box--on-light .two-col p { color: var(--text-soft); }
.box--on-dark .prose p,
.box--on-dark .intro,
.box--on-dark .two-col p { color: rgba(255, 255, 255, .86); }
.box--on-light .kicker { color: var(--red); opacity: 1; }
.box--on-dark .kicker { color: var(--flame); opacity: 1; }
.box--bg-red .kicker,
.box--bg-flame .kicker { color: #fff; opacity: .8; }
.box--on-light .timeline { border-top-color: rgba(0, 0, 0, .15); }
.box--on-light .timeline__row { border-bottom-color: rgba(0, 0, 0, .1); }
.box--on-light .timeline__body h3 { color: var(--ink); }
.box--on-light .timeline__body p { color: var(--text); }
.u-left { text-align: left; }
.u-center { text-align: center; }
.u-right { text-align: right; }
.u-center .btn-row, .u-center .social-links { justify-content: center; }
.u-right .btn-row, .u-right .social-links { justify-content: flex-end; }
.u-center .prose, .u-center .intro { margin-left: auto; margin-right: auto; }
.u-right .prose, .u-right .intro { margin-left: auto; }

/* Content inside a narrow box uses fewer columns. */
@container (max-width: 699px) {
  .facts, .values, .schedule, .service-grid, .photo-grid, .photo-pair, .ministries, .channels,
  .paths, .step-cards, .two-col, .leader, .events, .event--featured { grid-template-columns: 1fr; }
  .timeline__row { grid-template-columns: 1fr; gap: .5rem; }
  .timeline__label { border-right: 0; padding-right: 0; }
}
@container (min-width: 480px) and (max-width: 699px) {
  .values, .photo-grid, .channels, .step-cards, .schedule { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Basic blocks: heading, image, buttons, video, icon, spacer, divider ---- */
.hb, .img-block, .buttons-block, .video-block, .icon-block, .divider { margin-top: 2rem; }
.container > .hb:first-child, .container > .img-block:first-child, .container > .icon-block:first-child { margin-top: 0; }
.hb .kicker { margin-bottom: .6rem; }
.hb .hb__title {
  max-width: none;
  margin: 0;
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hb--sm .hb__title { font-size: 1.15rem; line-height: 1.1; letter-spacing: -.005em; }
.hb--md .hb__title { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.hb--lg .hb__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.hb--xl .hb__title { font-size: var(--h2-size); }

.buttons-block { display: flex; flex-wrap: wrap; gap: .7rem; }
.buttons-block.u-center { justify-content: center; }
.buttons-block.u-right { justify-content: flex-end; }
.u-center > .buttons-block, .u-center .buttons-block:not(.u-left):not(.u-right) { justify-content: center; }

.img-block__frame { display: block; overflow: hidden; background: rgba(0, 0, 0, .06); border-radius: inherit; }
.img-block img { width: 100%; height: auto; }
.img-block--r1x1 img { aspect-ratio: 1; object-fit: cover; }
.img-block--r4x3 img { aspect-ratio: 4 / 3; object-fit: cover; }
.img-block--r3x2 img { aspect-ratio: 3 / 2; object-fit: cover; }
.img-block--r16x9 img { aspect-ratio: 16 / 9; object-fit: cover; }
.img-block--r4x5 img { aspect-ratio: 4 / 5; object-fit: cover; }
.img-block--lg { width: 75%; }
.img-block--md { width: 50%; }
.img-block--sm { width: 33.333%; }
.img-block.u-center, .u-center > .img-block:not(.u-left):not(.u-right) { margin-left: auto; margin-right: auto; }
.img-block.u-right { margin-left: auto; }
.img-block--radius-sm .img-block__frame { border-radius: 6px; }
.img-block--radius-md .img-block__frame { border-radius: 14px; }
.img-block--radius-lg .img-block__frame { border-radius: 28px; }
.img-block--radius-circle .img-block__frame { border-radius: 50%; }
.img-block figcaption { margin-top: .6rem; color: var(--text-faint); font-size: .9rem; }
.section--dark .img-block figcaption,
.section--slate .img-block figcaption,
.section--red .img-block figcaption,
.box--on-dark .img-block figcaption { color: rgba(255, 255, 255, .72); }
a.img-block__frame img { transition: transform .5s ease; }
a.img-block__frame:hover img { transform: scale(1.03); }

.video-block { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.video-block--r4x3 { aspect-ratio: 4 / 3; }
.video-block--r1x1 { aspect-ratio: 1; }
.video-block--r9x16 { max-width: 420px; aspect-ratio: 9 / 16; }
.video-block iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.icon-block { --icon: 44px; display: flex; }
.icon-block--sm { --icon: 30px; }
.icon-block--lg { --icon: 64px; }
.icon-block--xl { --icon: 88px; }
.icon-block.u-center, .u-center > .icon-block:not(.u-left):not(.u-right) { justify-content: center; }
.icon-block.u-right { justify-content: flex-end; }
.icon-block__glyph { display: inline-grid; place-items: center; color: var(--red); }
.icon-block__glyph svg { width: var(--icon); height: var(--icon); }
.icon-block--c-flame .icon-block__glyph { color: var(--flame); }
.icon-block--c-current .icon-block__glyph { color: currentColor; }
.icon-block--c-slate .icon-block__glyph { color: var(--slate); }
.icon-block--circle .icon-block__glyph,
.icon-block--square .icon-block__glyph { padding: calc(var(--icon) * .32); background: rgba(204, 6, 0, .1); }
.icon-block--circle .icon-block__glyph { border-radius: 50%; }
.icon-block--square .icon-block__glyph { border-radius: calc(var(--icon) * .3); }
.icon-block--c-flame.icon-block--circle .icon-block__glyph,
.icon-block--c-flame.icon-block--square .icon-block__glyph { background: rgba(255, 68, 0, .12); }
.icon-block--c-current.icon-block--circle .icon-block__glyph,
.icon-block--c-current.icon-block--square .icon-block__glyph,
.icon-block--c-slate.icon-block--circle .icon-block__glyph,
.icon-block--c-slate.icon-block--square .icon-block__glyph { background: rgba(128, 128, 128, .14); }

.spacer { height: 2.5rem; }
.spacer--sm { height: 1rem; }
.spacer--lg { height: 5rem; }
.spacer--xl { height: 8rem; }
.divider { height: 0; border: 0; border-top: 1px solid currentColor; opacity: .2; }
.divider--short { width: 72px; border-top-width: 4px; opacity: 1; color: var(--red); }
.divider--dots { border-top: 3px dotted currentColor; opacity: .35; }
.divider--red { color: var(--red); opacity: 1; }
.divider--flame { color: var(--flame); opacity: 1; }
.u-center > .divider--short, .divider--short.u-center { margin-left: auto; margin-right: auto; }

/* Highlighted words in headings (*like this*): red on light backgrounds,
   orange on dark ones, black on red. */
.hl { color: var(--red); }
.section--dark .hl,
.section--slate .hl,
.page-hero .hl,
.box--on-dark .hl { color: var(--flame); }
.section--red .hl,
.box--bg-red .hl,
.box--bg-flame .hl { color: var(--ink); }
.box--on-light .hl { color: var(--red); }

/* Longer writing: headings, quotes, lists and photos inside text */
.prose-h { margin: 1.7em 0 .55em; font-weight: 900; line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; }
h2.prose-h { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
h3.prose-h { font-size: 1.25rem; }
h4.prose-h { font-size: 1.05rem; }
.prose > .prose-h:first-child { margin-top: 0; }
.prose blockquote { margin: 1.6em 0; padding: .3em 0 .3em 1.2em; border-left: 4px solid var(--red); }
.prose blockquote p { font-size: 1.22rem; font-weight: 600; line-height: 1.45; }
.prose ol { margin: 0 0 1.1em 1.4em; font-size: 1.08rem; }
.prose li + li { margin-top: .35em; }
.prose-img { margin: 1.8em 0; }
.prose-img img { width: 100%; height: auto; }
.prose-rule { margin: 2.2em 0; border: 0; border-top: 1px solid currentColor; opacity: .2; }

/* Wider section content */
.container--wide { max-width: 1560px; }
.container--full { max-width: none; }

/* ==========================================================================
   Sermons, news and small groups
   ========================================================================== */
.card-grid { display: grid; gap: 1.5rem; margin-top: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.container > .card-grid:first-child, .library > .card-grid:first-child { margin-top: 0; }
.card-grid--list { grid-template-columns: 1fr; gap: 1rem; }

.media-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.media-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 0, 0, .14); }
.media-card__art { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.media-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.media-card:hover .media-card__art img { transform: scale(1.04); }
.media-card__blank { display: grid; place-items: center; height: 100%; padding: 1.2rem; color: #fff; font-size: 1.2rem; font-weight: 900; line-height: 1; text-align: center; text-transform: uppercase; background: linear-gradient(135deg, var(--slate), var(--ink)); }
.media-card__play { position: absolute; right: .8rem; bottom: .8rem; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); }
.media-card__play svg { width: 20px; height: 20px; fill: currentColor; }
.media-card__body { display: flex; flex: 1; flex-direction: column; gap: .35rem; padding: 1.2rem 1.25rem 1.35rem; }
.media-card__kicker { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.media-card__title { font-size: 1.12rem; font-weight: 900; line-height: 1.12; letter-spacing: -.01em; text-transform: uppercase; }
.media-card__meta { color: var(--text-faint); font-size: .88rem; }
.media-card__text { color: var(--text); font-size: .95rem; line-height: 1.5; }
.media-card__more { margin-top: auto; padding-top: .5rem; color: var(--red); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-grid--list .media-card { flex-direction: row; }
.card-grid--list .media-card__art { flex: 0 0 38%; aspect-ratio: auto; min-height: 150px; }
@container (max-width: 520px) {
  .card-grid--list .media-card { flex-direction: column; }
  .card-grid--list .media-card__art { flex-basis: auto; aspect-ratio: 16 / 9; min-height: 0; }
}
@media (max-width: 560px) {
  .card-grid--list .media-card { flex-direction: column; }
  .card-grid--list .media-card__art { flex-basis: auto; aspect-ratio: 16 / 9; min-height: 0; }
}

.sermon-feature { display: grid; gap: 1.6rem 3rem; align-items: center; }
@media (min-width: 920px) { .sermon-feature { grid-template-columns: 1.35fr 1fr; } }
@container (max-width: 760px) { .sermon-feature { grid-template-columns: 1fr; } }
.sermon-feature__media .video-block, .sermon-feature__media .media-card { margin: 0; }
.sermon-feature__title { margin: 0 0 .5rem; font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.sermon-feature__title a:hover { color: var(--red); }
.sermon-feature__text .media-card__meta { display: block; margin-bottom: 1rem; }
.sermon-feature__text p:not(.kicker):not(.media-card__meta) { color: var(--text-soft); }
.sermon-feature + .card-grid { margin-top: 2.2rem; }
.section--dark .sermon-feature__text p:not(.kicker), .section--slate .sermon-feature__text p:not(.kicker),
.box--on-dark .sermon-feature__text p:not(.kicker) { color: rgba(255, 255, 255, .8); }
.section--dark .media-card__meta, .section--slate .media-card__meta { color: var(--muted); }
.section--dark .sermon-feature .media-card__meta, .section--slate .sermon-feature .media-card__meta { color: rgba(255, 255, 255, .65); }

.library { scroll-margin-top: 110px; }
.library__count { margin: 0 0 1rem; color: var(--text-faint); font-size: .92rem; font-weight: 700; }
.library__empty { margin: 1rem 0; padding: 2rem; background: rgba(0, 0, 0, .04); color: var(--text-soft); text-align: center; }
.section--dark .library__empty, .section--slate .library__empty { background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .8); }

.filters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .9rem 1rem; margin: 0 0 1.8rem; padding: 1.1rem 1.2rem; background: #fff; color: var(--ink); }
.filters__field { display: flex; flex: 1 1 160px; flex-direction: column; gap: .35rem; min-width: 0; }
.filters__field--search { flex: 2 1 240px; }
.filters__field span { font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.filters input[type="search"], .filters select { width: 100%; height: 44px; padding: 0 .8rem; border: 2px solid var(--ink); border-radius: 0; background: #fff; color: var(--ink); font-size: .98rem; }
.filters input:focus, .filters select:focus { outline: none; border-color: var(--flame); }
.filters__check { display: inline-flex; align-items: center; gap: .5rem; height: 44px; font-size: .95rem; font-weight: 700; cursor: pointer; }
.filters__check input { width: 18px; height: 18px; accent-color: var(--red); }
.filters__actions { display: flex; align-items: center; gap: 1rem; height: 44px; }
.filters__actions .btn { height: 44px; }
.filters__actions .text-link { font-size: .9rem; font-weight: 700; text-decoration: underline; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.6rem; }
.chip { padding: .5rem 1rem; border: 2px solid rgba(11, 11, 11, .2); border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: all .15s; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.section--dark .chip, .section--slate .chip { border-color: rgba(255, 255, 255, .3); }
.section--dark .chip.is-active, .section--slate .chip.is-active { border-color: #fff; background: #fff; color: var(--ink); }

.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: 2.4rem; }
.pager__link, .pager__gap { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .9rem; font-size: .88rem; font-weight: 800; }
.pager__link { border: 2px solid rgba(11, 11, 11, .18); }
.pager__link:hover { border-color: var(--ink); }
.pager__link.is-current { border-color: var(--ink); background: var(--ink); color: #fff; }
.section--dark .pager__link, .section--slate .pager__link { border-color: rgba(255, 255, 255, .3); }
.section--dark .pager__link.is-current, .section--slate .pager__link.is-current { background: #fff; color: var(--ink); }

.group-card { display: flex; flex-direction: column; gap: .55rem; padding: 1.5rem 1.4rem; border-top: 4px solid var(--red); background: #fff; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.group-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 0, 0, .12); }
.group-card__type { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.group-card__title { font-size: 1.2rem; font-weight: 900; line-height: 1.1; text-transform: uppercase; }
.group-card__facts { display: flex; flex-wrap: wrap; gap: .3rem .9rem; color: var(--text-soft); font-size: .9rem; font-weight: 600; }
.group-card__facts span + span::before { content: '·'; margin-right: .9rem; color: var(--muted); }
.group-card__text { color: var(--text); font-size: .95rem; line-height: 1.5; }
.group-card__more, .group-card__status { margin-top: auto; padding-top: .4rem; font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.group-card__more { color: var(--red); }
.group-card__status { color: var(--muted); }

/* One sermon, series, post or group */
.page-hero--article { padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.page-hero--article h1 { max-width: 22ch; font-size: clamp(2rem, 5vw, 3.6rem); }
.page-hero .detail-meta { margin-top: .4rem; color: rgba(255, 255, 255, .72); font-size: 1rem; font-weight: 600; }
.detail > * + * { margin-top: 1.6rem; }
.detail .intro { font-size: 1.2rem; }
.detail .prose { max-width: none; }
.detail-intro { margin-bottom: 2rem; }
.detail-photo img { width: 100%; height: auto; }
.detail-audio { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; padding: 1rem 1.2rem; background: #fff; }
.detail-audio audio { flex: 1 1 280px; width: 100%; min-width: 0; }
.detail-audio .text-link { font-size: .9rem; font-weight: 700; text-decoration: underline; }
.detail-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; }

.share { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.share__label { margin-right: .3rem; color: var(--text-faint); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.share a, .share__copy { display: inline-flex; align-items: center; height: 36px; padding: 0 .85rem; border: 2px solid rgba(11, 11, 11, .16); background: none; color: var(--ink); font-size: .8rem; font-weight: 700; cursor: pointer; }
.share a:hover, .share__copy:hover { border-color: var(--ink); }
.share__copy.is-done { border-color: var(--red); color: var(--red); }

.facts-list { display: grid; gap: 0; margin: 0 0 2rem; border-top: 2px solid var(--ink); }
.facts-list > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid rgba(0, 0, 0, .12); }
.facts-list dt { font-size: .74rem; font-weight: 800; letter-spacing: .14em; line-height: 1.9; text-transform: uppercase; }
.facts-list dd { margin: 0; color: var(--text-soft); font-size: 1.02rem; }
.split--top .form-panel { margin-top: 0; }

/* ==========================================================================
   Interactive blocks: questions, tabs, slideshow, stories, countdown, numbers,
   plus quote, audio and map
   ========================================================================== */
.feed, .library, .faq, .tabs, .slider, .stories, .countdown, .stats, .quote-block, .audio-block, .map-block { margin-top: 2rem; }
.container > :is(.feed, .library, .faq, .tabs, .slider, .stories, .countdown, .stats, .quote-block, .audio-block, .map-block):first-child { margin-top: 0; }
.feed > .card-grid:first-child { margin-top: 0; }
.feed .btn-row { margin-top: 1.8rem; }

/* Questions & answers */
.faq { max-width: 900px; }
.u-center .faq, .text-center .faq { margin-left: auto; margin-right: auto; text-align: left; }
.faq__item { border-bottom: 1px solid rgba(0, 0, 0, .14); }
.faq--lines .faq__item:first-child { border-top: 2px solid currentColor; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.15rem 0; font-size: 1.12rem; font-weight: 800; line-height: 1.3; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red); }
.faq__icon { position: relative; flex: none; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; top: 10px; left: 3px; width: 16px; height: 2.5px; background: currentColor; transition: transform .2s ease; }
.faq__icon::after { transform: rotate(90deg); }
details[open] > .faq__q .faq__icon::after { transform: rotate(0deg); }
.faq__a { max-width: none; padding: 0 2.6rem 1.3rem 0; }
.faq__a p { font-size: 1.02rem; }
.faq__a > :last-child { margin-bottom: 0; }
.faq--cards .faq__item { margin-bottom: .7rem; padding: 0 1.3rem; border: 0; background: #fff; color: var(--ink); }
.faq--cards .faq__a p { color: var(--text-soft); }
.section--dark .faq--lines .faq__item, .section--slate .faq--lines .faq__item, .section--red .faq--lines .faq__item,
.box--on-dark .faq--lines .faq__item { border-bottom-color: rgba(255, 255, 255, .2); }
.section--dark .faq__q:hover, .section--slate .faq__q:hover, .box--on-dark .faq__q:hover { color: var(--flame); }

/* Tabs */
.tabs__list { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin-bottom: 1.8rem; border-bottom: 2px solid rgba(0, 0, 0, .12); }
.tabs--center .tabs__list { justify-content: center; }
.tabs__tab { position: relative; padding: .8rem 0; border: 0; background: none; color: inherit; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .6; cursor: pointer; }
.tabs__tab:hover { opacity: 1; }
.tabs__tab[aria-selected="true"] { opacity: 1; }
.tabs--underline .tabs__tab[aria-selected="true"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--red); }
.tabs--pills .tabs__list { gap: .5rem; border: 0; }
.tabs--pills .tabs__tab { padding: .65rem 1.2rem; border: 2px solid rgba(11, 11, 11, .2); border-radius: 999px; opacity: 1; }
.tabs--pills .tabs__tab[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.tabs--boxed .tabs__list { gap: 2px; margin-bottom: 0; border: 0; }
.tabs--boxed .tabs__tab { padding: .9rem 1.3rem; background: rgba(0, 0, 0, .06); opacity: 1; }
.tabs--boxed .tabs__tab[aria-selected="true"] { background: #fff; color: var(--ink); }
.tabs--boxed .tabs__panel { padding: clamp(1.4rem, 3vw, 2.2rem); background: #fff; color: var(--ink); }
.tabs__panel:focus-visible { outline-offset: 6px; }
.tabs__panel--photo { display: grid; gap: 1.6rem 2.6rem; align-items: center; }
@container (min-width: 760px) { .tabs__panel--photo { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .container > .tabs .tabs__panel--photo { grid-template-columns: 1fr 1fr; } }
.tabs__heading { margin: 0 0 .9rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.tabs__text .prose { max-width: 60ch; }
.tabs__text .btn-row { margin-top: 1.2rem; }
.tabs__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tabs__edit-label { margin: 1.4rem 0 .6rem; padding-top: .8rem; border-top: 1px dashed rgba(0, 0, 0, .25); color: var(--text-faint); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section--dark .tabs__list, .section--slate .tabs__list, .box--on-dark .tabs__list { border-bottom-color: rgba(255, 255, 255, .2); }
.section--dark .tabs--pills .tabs__tab, .section--slate .tabs--pills .tabs__tab { border-color: rgba(255, 255, 255, .3); }
.section--dark .tabs--pills .tabs__tab[aria-selected="true"], .section--slate .tabs--pills .tabs__tab[aria-selected="true"] { border-color: #fff; background: #fff; color: var(--ink); }
.section--dark .tabs--underline .tabs__tab[aria-selected="true"]::after, .section--slate .tabs--underline .tabs__tab[aria-selected="true"]::after { background: var(--flame); }

/* Slideshow (also used by Stories shown one at a time) */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior-x: contain; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; }
.slider .slider__slide { display: flex; align-items: flex-end; min-height: var(--slide-h, 460px); background: var(--ink); color: #fff; }
.slider--h-sm { --slide-h: 320px; }
.slider--h-lg { --slide-h: 620px; }
.slider--h-screen { --slide-h: 88svh; }
.slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slider__slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 11, 11, .05) 30%, rgba(11, 11, 11, .75)); pointer-events: none; }
.slider--o-none .slider__slide::after { display: none; }
.slider--o-strong .slider__slide::after { background: rgba(11, 11, 11, .62); }
.slider__content { position: relative; z-index: 1; width: 100%; max-width: 760px; padding: clamp(1.6rem, 4vw, 3.2rem) clamp(1.4rem, 5vw, 4rem) clamp(3.4rem, 6vw, 4.4rem); }
.slider--center .slider__slide { align-items: center; justify-content: center; text-align: center; }
.slider--center .slider__content { margin: 0 auto; }
.slider .kicker { color: var(--flame); opacity: 1; }
.slider .slider__heading { max-width: 18ch; margin: 0 0 .8rem; color: #fff; font-size: clamp(1.9rem, 4.6vw, 3.4rem); }
.slider--center .slider__heading { margin-left: auto; margin-right: auto; }
.slider__text { max-width: 52ch; margin: 0 0 1.2rem; color: rgba(255, 255, 255, .88); font-size: 1.05rem; }
.slider--center .slider__text { margin-left: auto; margin-right: auto; }
.slider__actions { margin: 1.3rem 0 0; }
.slider .hl { color: var(--flame); }
.slider__arrow { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 46px; height: 46px; margin-top: -23px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--ink); box-shadow: 0 4px 16px rgba(0, 0, 0, .25); cursor: pointer; transition: background .15s, color .15s; }
.slider__arrow:hover { background: var(--red); color: #fff; }
.slider__arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.slider__arrow--prev { left: 1rem; }
.slider__arrow--next { right: 1rem; }
.slider__dots { position: absolute; left: 0; right: 0; bottom: 1.1rem; z-index: 2; display: flex; justify-content: center; gap: .45rem; }
.slider__dot { width: 10px; height: 10px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slider__dot[aria-current="true"] { background: #fff; }
@media (max-width: 640px) { .slider__arrow { display: none; } }

/* Stories */
.stories { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.story { display: flex; flex-direction: column; gap: 1.2rem; margin: 0; padding: clamp(1.4rem, 3vw, 2rem); background: #fff; color: var(--ink); }
.story__quote { margin: 0; }
.story__quote p { margin: 0; font-size: 1.12rem; font-weight: 500; line-height: 1.55; }
.story__quote p::before { content: '“'; display: block; height: .55em; margin-bottom: .2rem; color: var(--red); font-size: 3.4rem; font-weight: 900; line-height: 1; }
.story__who { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.story__who strong { display: block; font-size: .95rem; font-weight: 800; }
.story__role { display: block; color: var(--text-faint); font-size: .88rem; }
.story__photo { flex: none; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.stories--dark .story, .section--dark .stories--auto .story { background: var(--ink); color: #fff; }
.stories--slate .story, .section--slate .stories--auto .story { background: var(--slate); color: #fff; }
.section--dark .stories--auto .story { background: #1c1c1c; }
.section--slate .stories--auto .story { background: #4b5361; }
.stories--dark .story__role, .stories--slate .story__role, .section--dark .stories--auto .story__role, .section--slate .stories--auto .story__role { color: rgba(255, 255, 255, .65); }
.stories--dark .story__quote p::before, .section--dark .stories--auto .story__quote p::before { color: var(--flame); }
.stories--slider { display: block; position: relative; overflow: hidden; }
.stories--slider .story { min-height: 100%; padding-bottom: 3.6rem; }
.stories--slider .story__quote p { max-width: 58ch; font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
.stories--slider .slider__dot { border-color: var(--red); }
.stories--slider .slider__dot[aria-current="true"] { background: var(--red); }
.stories--slider .slider__arrow { top: auto; bottom: .7rem; margin: 0; width: 40px; height: 40px; box-shadow: none; background: rgba(0, 0, 0, .06); }
.stories--slider .slider__arrow--prev { left: auto; right: 3.6rem; }
.stories--slider .slider__arrow--next { right: 1rem; }
.stories--slider .slider__dots { justify-content: flex-start; left: clamp(1.4rem, 3vw, 2rem); bottom: 1.3rem; }

/* Countdown */
.countdown__heading { margin: 0 0 1.1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.countdown__clock { display: flex; flex-wrap: wrap; gap: .7rem; }
.u-center .countdown__clock, .countdown.u-center .countdown__clock { justify-content: center; }
.u-right .countdown__clock, .countdown.u-right .countdown__clock { justify-content: flex-end; }
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 5.2rem; }
.countdown__unit strong { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown__unit span { margin-top: .45rem; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.countdown--boxes .countdown__unit { padding: 1rem .9rem .8rem; background: var(--ink); color: #fff; }
.section--dark .countdown--boxes .countdown__unit, .box--on-dark .countdown--boxes .countdown__unit { background: rgba(255, 255, 255, .1); }
.section--red .countdown--boxes .countdown__unit, .box--bg-red .countdown--boxes .countdown__unit { background: rgba(0, 0, 0, .25); }
.countdown--plain .countdown__unit { min-width: 4.6rem; }
.countdown__done { margin: 0; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; text-transform: uppercase; }
.countdown__actions { margin: 1.4rem 0 0; }

/* Numbers */
.stats { display: grid; gap: 1.8rem 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); }
.stat__value { display: block; font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 900; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stats--c-red .stat__value { color: var(--red); }
.stats--c-flame .stat__value { color: var(--flame); }
.section--dark .stats--c-red .stat__value, .section--slate .stats--c-red .stat__value, .box--on-dark .stats--c-red .stat__value { color: var(--flame); }
.section--red .stats--c-red .stat__value, .box--bg-red .stats--c-red .stat__value { color: #fff; }
.stat__label { display: block; margin-top: .55rem; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.stat__text { margin: .45rem 0 0; color: var(--text); font-size: .95rem; }
.section--dark .stat__text, .section--slate .stat__text, .section--red .stat__text, .box--on-dark .stat__text { color: rgba(255, 255, 255, .8); }

/* Quote */
.quote-block { margin-left: 0; margin-right: 0; }
.quote-block blockquote { margin: 0; }
.quote-block blockquote p { margin: 0; font-weight: 700; line-height: 1.3; }
.quote-block figcaption { margin-top: 1rem; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.quote-block figcaption::before { content: '— '; }
.quote-block--large blockquote p { font-size: clamp(1.5rem, 3.4vw, 2.4rem); letter-spacing: -.01em; }
.quote-block--large blockquote p::before { content: '“'; display: block; height: .5em; color: var(--red); font-size: 2.2em; font-weight: 900; line-height: 1; }
.section--dark .quote-block--large blockquote p::before, .section--slate .quote-block--large blockquote p::before, .box--on-dark .quote-block--large blockquote p::before { color: var(--flame); }
.quote-block--line { padding-left: 1.4rem; border-left: 4px solid var(--red); }
.quote-block--line blockquote p { font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
.quote-block--card { padding: clamp(1.5rem, 4vw, 2.4rem); background: var(--ink); color: #fff; }
.quote-block--card blockquote p { font-size: clamp(1.25rem, 2.6vw, 1.7rem); }
.quote-block--card figcaption { color: var(--flame); opacity: 1; }
.quote-block.u-center blockquote p::before { margin-left: auto; margin-right: auto; }

/* Audio */
.audio-block { display: flex; flex-direction: column; gap: .8rem; padding: 1.2rem 1.3rem; background: #fff; color: var(--ink); }
.audio-block__title { display: block; font-size: 1.05rem; font-weight: 800; }
.audio-block__text { margin: .3rem 0 0; color: var(--text); font-size: .95rem; }
.audio-block audio { width: 100%; }
.audio-block__download { align-self: flex-start; font-size: .85rem; font-weight: 700; text-decoration: underline; }

/* Map */
.map-block { position: relative; overflow: hidden; background: #e9e6e1; }
.map-block iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-block--sm iframe { height: 260px; }
.map-block--lg iframe { height: 520px; }
.map-block--gray iframe { filter: grayscale(1) contrast(1.05); }
.map-block__btn { position: absolute; left: 1rem; bottom: 1rem; box-shadow: 0 4px 16px rgba(0, 0, 0, .25); }

/* ==========================================================================
   Events: next dates, sign-up badges, the month calendar, "add to calendar"
   ========================================================================== */
.event__next { margin: -.35rem 0 .7rem; color: var(--text-faint); font-size: .86rem; font-weight: 700; }
.section--dark .event__next, .section--slate .event__next { color: rgba(255, 255, 255, .7); }
.event__badge { display: inline-block; margin: 0 0 .9rem; padding: .3rem .65rem; background: var(--paper); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.event__badge--open { background: #e8f5ec; color: #17602f; }
.event__badge--full { background: #fdecea; color: var(--red); }

.calendar { margin-top: 2rem; scroll-margin-top: 110px; }
.container > .calendar:first-child { margin-top: 0; }
.calendar__head { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin-bottom: 1rem; }
.calendar__title { min-width: 11ch; margin: 0; font-size: clamp(1.4rem, 3vw, 2rem); text-align: center; }
.calendar__nav { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid rgba(11, 11, 11, .2); font-size: 1.5rem; font-weight: 700; line-height: 1; }
a.calendar__nav:hover { border-color: var(--ink); }
span.calendar__nav { border-color: transparent; }
.calendar__today { margin-left: auto; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-decoration: underline; }
.calendar__grid { width: 100%; table-layout: fixed; border-collapse: collapse; background: #fff; color: var(--ink); }
.calendar__grid th { padding: .6rem .5rem; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-align: left; text-transform: uppercase; }
.calendar__grid abbr { text-decoration: none; }
.calendar__day { height: 118px; padding: .45rem; border: 1px solid #e6e2dd; vertical-align: top; }
.calendar__day.is-other { background: #faf9f7; }
.calendar__day.is-other .calendar__num { opacity: .35; }
.calendar__num { display: inline-grid; place-items: center; min-width: 26px; height: 26px; margin-bottom: .25rem; font-size: .85rem; font-weight: 800; }
.calendar__day.is-today .calendar__num { border-radius: 50%; background: var(--red); color: #fff; }
.calendar__event { display: block; margin-top: .25rem; padding: .3rem .45rem; overflow: hidden; background: var(--ink); color: #fff; font-size: .76rem; font-weight: 700; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.calendar__event:hover { background: var(--red); }
.calendar__event.is-continued { background: #5a5f69; }
.calendar__time { margin-right: .35rem; color: var(--flame); }
.calendar__event:hover .calendar__time { color: #fff; }
.calendar__list { display: none; margin: 0; padding: 0; list-style: none; background: #fff; color: var(--ink); }
.calendar__list li { display: grid; grid-template-columns: 6.5rem 1fr; gap: .2rem 1rem; padding: .9rem 1rem; border-bottom: 1px solid #e6e2dd; }
.calendar__list-date { grid-row: span 2; color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.calendar__list a { font-weight: 800; }
.calendar__list-time { color: var(--text-faint); font-size: .88rem; }
.calendar__empty { display: block !important; color: var(--text-soft); }
.calendar__foot { margin: 1rem 0 0; font-size: .92rem; }
.calendar__foot a { font-weight: 800; text-decoration: underline; }
.calendar__foot span { opacity: .7; }
@media (max-width: 760px) {
  .calendar__grid { display: none; }
  .calendar__list { display: block; }
}
@container (max-width: 700px) {
  .calendar__grid { display: none; }
  .calendar__list { display: block; }
}
.section--dark .calendar__nav, .section--slate .calendar__nav { border-color: rgba(255, 255, 255, .3); }

.add-cal { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 1.6rem 0 0; }
.add-cal__label { margin-right: .35rem; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.add-cal a { display: inline-flex; align-items: center; height: 36px; padding: 0 .85rem; border: 2px solid rgba(255, 255, 255, .3); font-size: .82rem; font-weight: 700; }
.add-cal a:hover { border-color: #fff; }
.event-dates { margin-top: 1.6rem; }
.event-dates__title { margin: 0 0 .5rem; color: var(--flame); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.event-dates ul { display: grid; gap: .3rem; list-style: none; color: rgba(255, 255, 255, .85); }
.signup-closed { max-width: 760px; margin: 0 auto; }
.signup-cancel { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.signup-cancel p { margin-bottom: 1rem !important; }
#signup-section .form-panel { margin-top: 0; }

/* ==========================================================================
   Prayer wall and search
   ========================================================================== */
.prayer-wall { margin-top: 2rem; scroll-margin-top: 110px; }
.container > .prayer-wall:first-child { margin-top: 0; }
.prayer-wall__list { columns: 3 300px; column-gap: 1.2rem; }
.prayer { display: flex; flex-direction: column; gap: .8rem; margin: 0 0 1.2rem; padding: 1.3rem 1.3rem 1.1rem; break-inside: avoid; background: #fff; color: var(--ink); }
.prayer--answered { border-top: 4px solid #1f8a4c; }
.prayer__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .7rem; }
.prayer__head strong { font-weight: 800; }
.prayer__head span { color: var(--text-faint); font-size: .85rem; }
.prayer__head .prayer__answered { padding: .15rem .5rem; background: #e8f5ec; color: #17602f; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.prayer__body { margin: 0; color: var(--text-soft); font-size: 1rem; line-height: 1.55; overflow-wrap: anywhere; }
.prayer__pray { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .8rem; }
.prayer__button { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border: 2px solid rgba(11, 11, 11, .15); border-radius: 999px; background: #fff; color: var(--ink); font-size: .82rem; font-weight: 800; cursor: pointer; transition: all .15s; }
.prayer__button svg { width: 17px; height: 17px; fill: none; stroke: var(--red); stroke-width: 2; }
.prayer__button:hover { border-color: var(--red); }
.prayer__pray.is-done .prayer__button { border-color: var(--red); background: var(--red); color: #fff; cursor: default; }
.prayer__pray.is-done .prayer__button svg { fill: #fff; stroke: #fff; }
.prayer__count { color: var(--text-faint); font-size: .84rem; }
.prayer-wall .form-panel { margin-top: 2.4rem; }

.search-box { display: flex; max-width: 640px; margin-top: 2rem; }
.container > .search-box:first-child { margin-top: 0; }
.u-center .search-box, .text-center .search-box { margin-left: auto; margin-right: auto; }
.search-box input { flex: 1; min-width: 0; height: 52px; padding: 0 1rem; border: 2px solid var(--ink); border-right: 0; border-radius: 0; background: #fff; color: var(--ink); font-size: 1rem; }
.search-box input:focus { outline: none; border-color: var(--flame); }
.search-box button { flex: none; height: 52px; padding: 0 1.3rem; border: 0; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.search-box button:hover { background: var(--red); }
.search-box--lg input, .search-box--lg button { height: 62px; font-size: 1.1rem; }
.search-results { display: grid; gap: 1rem; margin-top: 2rem; }
.search-result { display: block; padding: 1.2rem 1.3rem; background: #fff; color: var(--ink); transition: box-shadow .15s; }
.search-result:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, .1); }
.search-result__kind { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.search-result__title { display: block; margin: .25rem 0 .35rem; font-size: 1.2rem; font-weight: 900; line-height: 1.15; }
.search-result__text { margin: 0; color: var(--text-soft); font-size: .95rem; }
.search-result__text mark { background: #ffe7a8; color: inherit; }
.search-count { margin: 1.4rem 0 0; color: var(--text-faint); font-weight: 700; }
.header-search { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; color: inherit; }
.header-search svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; }
@media (min-width: 1100px) { .header-search { display: inline-flex; } }

/* ---- Giving form ------------------------------------------------------------------- */
.give__when { display: flex; gap: .5rem; margin-bottom: 1.4rem; }
.give__toggle { flex: 1; }
.give__toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.give__toggle span { display: block; padding: .8rem 1rem; border: 2px solid #e2ded9; font-size: .95rem; font-weight: 700; text-align: center; cursor: pointer; transition: all .15s; }
.give__toggle input:checked + span { border-color: var(--red); background: #fff6f5; }
.give__toggle input:focus-visible + span { outline: 3px solid var(--flame); outline-offset: 2px; }
.give__amounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: .5rem; }
.give__amount input { position: absolute; opacity: 0; width: 0; height: 0; }
.give__amount span { display: block; padding: .85rem .5rem; border: 2px solid #e2ded9; font-size: 1.05rem; font-weight: 800; text-align: center; cursor: pointer; transition: all .15s; }
.give__amount input:checked + span { border-color: var(--red); background: var(--red); color: #fff; }
.give__amount input:focus-visible + span { outline: 3px solid var(--flame); outline-offset: 2px; }
.give__other { display: none; align-items: center; gap: .6rem; margin-top: .7rem; }
.is-other .give__other { display: flex; }
.give__symbol { font-size: 1.2rem; font-weight: 800; }
.give__other input, .give .field input[type="number"] { width: 100%; padding: .85rem .95rem; border: 2px solid var(--ink); background: #fff; font-size: 1.05rem; }
.give .form-note { margin-top: .9rem; }

@media print { .cms-bar { display: none; } }

/* ---- Language chooser ------------------------------------------------------------- */
.lang-menu { position: relative; display: none; }
@media (min-width: 1100px) { .lang-menu { display: block; } }
.lang-menu__label { display: inline-flex; align-items: center; gap: .3rem; padding: .45rem .7rem; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; font-size: .78rem; font-weight: 700; cursor: default; }
.lang-menu__label::after { content: '▾'; font-size: .8em; opacity: .7; }
.lang-menu__list { position: absolute; right: 0; top: calc(100% + .4rem); z-index: 60; display: none; flex-direction: column; min-width: 150px; padding: .3rem; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.lang-menu:hover .lang-menu__list, .lang-menu:focus-within .lang-menu__list { display: flex; }
.lang-menu__list a { padding: .5rem .7rem; color: var(--ink); font-size: .9rem; font-weight: 600; }
.lang-menu__list a:hover { background: var(--paper); }
.lang-menu__list a[aria-current] { color: var(--red); }
.mobile-menu .lang-menu { display: block; margin-top: 1rem; }
.mobile-menu .lang-menu__label { display: none; }
.mobile-menu .lang-menu__list { position: static; display: flex; flex-direction: row; flex-wrap: wrap; gap: .4rem; padding: 0; background: none; box-shadow: none; }
.mobile-menu .lang-menu__list a { padding: .4rem .8rem; border: 1px solid rgba(255, 255, 255, .3); color: #fff; }

/* Shared sections and blocks keep the spacing of what they hold. */
.shared-block > *:first-child { margin-top: 0; }
.box > .box__inner > .shared-block > * { margin-top: 0; margin-bottom: 0; }

/* ==========================================================================
   Size & style: what a block gets when an editor changes its width, height,
   spacing, background, border, corners or shadow.
   ========================================================================== */
.el { margin-top: 2rem; }
.el > * { margin-top: 0 !important; }
.container > .el:first-child, .box > .box__inner > .el:first-child, .el:first-child { margin-top: 0; }
.box > .box__inner > .el { margin-bottom: 0; }

.el--w { width: var(--el-w); max-width: 100%; }
.el--center { margin-left: auto; margin-right: auto; }
.el--right { margin-left: auto; margin-right: 0; }
.el--left { margin-right: auto; margin-left: 0; }
.el--h { display: flex; flex-direction: column; justify-content: center; min-height: var(--el-h); }
.el--h > * { width: 100%; }

.el--p { padding: var(--el-p); }
.el--p-sm { padding: .8rem; }
.el--p-md { padding: 1.6rem; }
.el--p-lg { padding: clamp(1.6rem, 4vw, 2.6rem); }
.el--p-xl { padding: clamp(2rem, 6vw, 4rem); }

.el--sa-none { margin-top: 0; }
.el--sa-sm { margin-top: 1rem; }
.el--sa-md { margin-top: 2rem; }
.el--sa-lg { margin-top: 3.5rem; }
.el--sa-xl { margin-top: 5.5rem; }
.el--sb-none { margin-bottom: 0; }
.el--sb-sm { margin-bottom: 1rem; }
.el--sb-md { margin-bottom: 2rem; }
.el--sb-lg { margin-bottom: 3.5rem; }
.el--sb-xl { margin-bottom: 5.5rem; }

.el--bg { background: var(--el-bg); }
.el--bg-white { background: #fff; }
.el--bg-light { background: #e9e6e1; }
.el--bg-paper { background: var(--paper); }
.el--bg-slate { background: var(--slate); }
.el--bg-dark { background: var(--ink); }
.el--bg-red { background: var(--red); }
.el--bg-flame { background: var(--flame); }
.el--on-light { color: var(--ink); }
.el--on-dark { color: #fff; }
.el--on-light .prose p, .el--on-light .intro, .el--on-light p { color: var(--text-soft); }
.el--on-dark .prose p, .el--on-dark .intro, .el--on-dark p { color: rgba(255, 255, 255, .86); }
.el--on-light .kicker, .el--on-light .hl { color: var(--red); opacity: 1; }
.el--on-dark .kicker, .el--on-dark .hl { color: var(--flame); opacity: 1; }
.el--bg-red .hl, .el--bg-flame .hl { color: var(--ink); }

.el--b-light { border: 1px solid rgba(0, 0, 0, .14); }
.el--on-dark.el--b-light { border-color: rgba(255, 255, 255, .22); }
.el--b-dark { border: 2px solid var(--ink); }
.el--b-accent { border: 2px solid var(--red); }
.el--b-accent-top { border-top: 4px solid var(--red); }
.el--b-accent-left { border-left: 4px solid var(--red); }

.el--r { border-radius: var(--el-r); overflow: hidden; }
.el--r-sm { border-radius: 6px; overflow: hidden; }
.el--r-md { border-radius: 14px; overflow: hidden; }
.el--r-lg { border-radius: 28px; overflow: hidden; }
.el--r-pill { border-radius: 999px; overflow: hidden; }
.el--s-sm { box-shadow: 0 2px 10px rgba(0, 0, 0, .08); }
.el--s-md { box-shadow: 0 12px 32px rgba(0, 0, 0, .13); }
.el--s-lg { box-shadow: 0 24px 60px rgba(0, 0, 0, .22); }

@media (min-width: 1024px) { .el--hide-d { display: none !important; } }
@media (min-width: 700px) and (max-width: 1023px) { .el--hide-t { display: none !important; } }
@media (max-width: 699px) { .el--hide-p { display: none !important; } }
@container (min-width: 1024px) { .el--hide-d { display: none !important; } }
@container (min-width: 700px) and (max-width: 1023px) { .el--hide-t { display: none !important; } }
@container (max-width: 699px) { .el--hide-p { display: none !important; } }

/* ---- Serving: the "can you serve?" page -------------------------------------------- */
.serving-answer { margin-top: 1.8rem; }
.serving-answer__note { display: block; max-width: 420px; margin-bottom: 1rem; }
.serving-answer__note span { display: block; margin-bottom: .4rem; font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.serving-answer__note input { width: 100%; padding: .8rem .9rem; border: 2px solid #fff; background: rgba(255, 255, 255, .1); color: #fff; font-size: 1rem; }
.serving-answer__buttons { display: flex; flex-wrap: wrap; gap: .7rem; }
.serving-mine { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.serving-mine ul { margin: 0; padding-left: 1.1rem; color: rgba(255, 255, 255, .85); }

/* ---- Newsletter sign-up ------------------------------------------------------------- */
.signup { margin-top: 2rem; padding: clamp(1.4rem, 4vw, 2.2rem); background: #fff; color: var(--ink); }
.container > .signup:first-child { margin-top: 0; }
.signup__title { margin: 0 0 .5rem; font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.signup__text p { margin: 0 0 1.2rem; color: var(--text-soft); }
.signup__form { display: flex; flex-wrap: wrap; gap: .6rem; }
.signup__form input[type="email"] { flex: 1 1 240px; min-width: 0; padding: .85rem .95rem; border: 2px solid var(--ink); background: #fff; color: var(--ink); font-size: 1rem; }
.signup__form input[type="email"]:focus { outline: none; border-color: var(--flame); }
.signup__note { margin: .9rem 0 0; color: var(--text-faint); font-size: .85rem; }
.signup .form-success { margin-top: 1rem; padding: 1.2rem 1.4rem; }
.signup .form-alert { flex: 1 1 100%; }

.site-footer__cols h2.site-footer__heading { margin: 0 0 .9rem; font-size: .8rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

/* Giving target ---------------------------------------------------------- */
.campaign { max-width: 760px; background: #fff; border: 3px solid var(--ink); padding: 1.8rem; }
.campaign--plain { background: none; border: 0; padding: 0; }
.campaign__title { margin: 0 0 .4rem; font-size: 1.4rem; }
.campaign__text { color: var(--text); }
.campaign__figures { margin: 1rem 0 .55rem; font-size: .95rem; color: var(--text-note); }
.campaign__figures strong { display: block; font-size: 2.1rem; line-height: 1.1; color: var(--ink); }
.campaign__bar { height: .75rem; background: rgba(0, 0, 0, .1); overflow: hidden; }
.campaign__fill { display: block; height: 100%; background: var(--red); transition: width .6s ease; }
.campaign__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 1rem; margin: .55rem 0 0; font-size: .85rem; color: var(--text-faint); }
.campaign__action { margin: 1.2rem 0 0; }
.section--dark .campaign, .section--slate .campaign, .section--red .campaign { color: var(--ink); }
.section--dark .campaign--plain, .section--slate .campaign--plain, .section--red .campaign--plain { color: inherit; }
.section--dark .campaign--plain .campaign__figures strong, .section--slate .campaign--plain .campaign__figures strong, .section--red .campaign--plain .campaign__figures strong { color: inherit; }
.section--dark .campaign--plain .campaign__bar, .section--slate .campaign--plain .campaign__bar, .section--red .campaign--plain .campaign__bar { background: rgba(255, 255, 255, .2); }
@media (prefers-reduced-motion: reduce) { .campaign__fill { transition: none; } }

/* Paying for a place ----------------------------------------------------- */
.signup-pay { margin: 1.4rem 0 0; }
.signup-pay p { margin: 0 0 .7rem; }
.signup-paid { margin: 1.2rem 0 0; font-weight: 600; }

/* Bible references turned into links ------------------------------------- */
.bible-ref { border-bottom: 1px dotted currentColor; text-decoration: none; }
.bible-ref:hover, .bible-ref:focus-visible { border-bottom-style: solid; color: var(--red); }
.section--dark .bible-ref:hover, .section--slate .bible-ref:hover, .section--red .bible-ref:hover { color: inherit; }
