/* ==========================================================
   LEGACY AWAKENING · v3
   Aesthetic: pulpit energy + premium polish
   Display:   ANTON (bold condensed sans) — pulpit
   Accent:    FRAUNCES italic — for "em" emphasis only
   Body:      INTER TIGHT — modern & clean
   Palette:   ink-black · bone-white · ember-red
   ========================================================== */

:root {
  /* Color — anchored to the red in your brand */
  --ink: #0a0606;
  --ink-soft: #141010;
  --ink-deep: #060404;
  --ink-card: #1a1412;
  --bone: #f5efe6;
  --bone-dim: #e6ddd0;
  --bone-muted: #b5ad9f;
  --muted: #7a716a;
  --muted-dark: #4a423d;

  /* Brand red */
  --ember: #c93838;
  --ember-bright: #e04040;
  --ember-deep: #8a2020;
  --ember-glow: rgba(201, 56, 56, 0.18);
  --ember-glow-soft: rgba(201, 56, 56, 0.08);

  /* Navy accent */
  --navy: #0f2744;
  --navy-deep: #091a30;
  --navy-light: #1a3d66;
  --navy-glow: rgba(15, 39, 68, 0.4);

  --line: rgba(245, 239, 230, 0.1);
  --line-strong: rgba(245, 239, 230, 0.2);

  /* Type */
  --display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --accent: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }
ul { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-block;
}
.eyebrow--center { display: block; text-align: center; }

/* Anton is naturally uppercase-feeling; we lean into it */
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.section-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.02em;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--bone-muted);
  max-width: 56ch;
  margin-top: 1.5rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 12px; height: 12px; }
.btn--primary {
  background: var(--ember);
  color: var(--bone);
  border: 2px solid var(--ember);
}
.btn--primary:hover {
  background: var(--ember-bright);
  border-color: var(--ember-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px var(--ember-glow);
}
.btn--ghost {
  color: var(--bone);
  border: 2px solid var(--line-strong);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--bone);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.2rem 2.2rem; font-size: 0.82rem; }

.btn--accent {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.btn--accent:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px var(--ember-glow);
}

/* Hero lead CTA — the most prominent button on the page */
.btn--hero-lead {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  box-shadow: 0 0 0 0 var(--ember-glow);
  animation: heroPulse 2.8s var(--ease) infinite;
}
.btn--hero-lead:hover {
  animation: none;
  box-shadow: 0 16px 50px -10px var(--ember-glow);
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 56, 56, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(201, 56, 56, 0); }
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 6, 6, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: opacity 0.3s var(--ease);
}
.nav__brand:hover { opacity: 0.85; }
.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav__name {
  font-family: 'Cinzel', 'Trajan Pro', serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: nowrap;
}
.nav__links > a,
.nav__group-trigger {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 0.3rem 0;
  cursor: pointer;
  white-space: nowrap;
}
.nav__links > a::after,
.nav__group-trigger::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width 0.4s var(--ease);
}
.nav__links > a:hover,
.nav__group-trigger:hover { color: var(--bone); }
.nav__links > a:hover::after,
.nav__group:hover .nav__group-trigger::after { width: 100%; }

/* Dropdown groups */
.nav__group {
  position: relative;
}
.nav__caret {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 0.35rem;
  transition: transform 0.3s var(--ease);
  opacity: 0.7;
}
.nav__group:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  margin-top: 0.6rem;
  background: rgba(10, 6, 6, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: all 0.25s var(--ease);
  border-left: 2px solid transparent;
}
.nav__dropdown a:hover {
  color: var(--ember-bright);
  background: rgba(201, 56, 56, 0.08);
  border-left-color: var(--ember);
  padding-left: 1.4rem;
}

/* Mobile nav groups */
.nav__mobile-group {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
.nav__mobile-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.8rem;
}
.nav__mobile-group a {
  font-size: 1.4rem !important;
  padding-bottom: 0.4rem !important;
  border-bottom: 0 !important;
  margin-bottom: 0.2rem;
}

.nav__cta {
  padding: 0.7rem 1.4rem;
  background: var(--ember);
  border: 2px solid var(--ember);
  color: var(--bone);
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--ember-bright);
  border-color: var(--ember-bright);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}
.nav__toggle span {
  height: 2px;
  background: var(--bone);
  transition: all 0.3s var(--ease);
}
.nav__toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 3rem var(--pad);
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 99;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--bone);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease);
  text-transform: uppercase;
}
.nav__mobile a:hover { color: var(--ember-bright); }
.nav__mobile-cta {
  margin-top: auto;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.1rem !important;
  background: var(--ember);
  color: var(--bone) !important;
  border-bottom: 0 !important;
  font-weight: 600 !important;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad) 3.5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(100%) contrast(1.18) brightness(0.45);
  transform: scale(1.08);
  animation: heroZoom 25s ease-out forwards;
}
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: contrast(1.05) brightness(0.58);
  display: block;
}
/* Respect reduced-motion preferences - show poster instead of playing */
@media (prefers-reduced-motion: reduce) {
  .hero__bg-video { animation: none; }
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 15% 50%, var(--ink) 15%, transparent 70%),
    linear-gradient(180deg, rgba(10, 6, 6, 0.7) 0%, transparent 25%, transparent 55%, var(--ink) 100%),
    linear-gradient(90deg, rgba(10, 6, 6, 0.9) 0%, rgba(10, 6, 6, 0.5) 60%, rgba(10, 6, 6, 0.2) 100%);
}

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 16px var(--ember);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
}

/* Orange pastel glow circling around LEGACY */
.hero__title-legacy {
  position: relative;
  display: inline-block;
}
.hero__title-legacy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 180%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 170, 100, 0.35) 0%,
    rgba(255, 140, 70, 0.22) 25%,
    rgba(255, 120, 60, 0.1) 50%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: legacyGlow 6s ease-in-out infinite;
}
@keyframes legacyGlow {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__tagline {
  font-family: var(--accent);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--bone-dim);
  margin-top: 1.2rem;
  line-height: 1.3;
  font-weight: 300;
  max-width: 30ch;
}
.hero__tagline em {
  color: var(--ember);
  font-style: italic;
}

.hero__details {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero__detail span {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.hero__detail strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--bone);
  text-transform: uppercase;
}

.hero__ctas {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-muted);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--ember);
  animation: scrollLine 2.5s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   B&W PHOTO STRIP (under hero)
   ========================================================== */
.strip {
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.strip__track {
  display: flex;
  gap: 4px;
  animation: stripScroll 50s linear infinite;
  width: max-content;
}
.strip__track:hover { animation-play-state: paused; }
.strip__img {
  width: 22vw;
  min-width: 280px;
  max-width: 400px;
  height: 50vh;
  max-height: 420px;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  transition: filter 0.6s var(--ease);
  flex-shrink: 0;
  position: relative;
}
.strip__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 6, 6, 0.4));
}
.strip__img:hover { filter: grayscale(0%) contrast(1.05) brightness(1); }

/* Real ministry photos — strongest moments curated for maximum impact */
.strip__img--1 { background-image: url('assets/ministry-09.jpg'); background-position: center 40%; }  /* praying over woman with walker */
.strip__img--2 { background-image: url('assets/ministry-07.jpg'); background-position: center 30%; }  /* kids with hands raised */
.strip__img--3 { background-image: url('assets/ministry-06.jpg'); background-position: center 40%; }  /* praying over person, skyline */
.strip__img--4 { background-image: url('assets/ministry-05.jpg'); background-position: center 35%; }  /* laying hands, sunset */
.strip__img--5 { background-image: url('assets/ministry-08.jpg'); background-position: center 55%; }  /* kneeling with child */
.strip__img--6 { background-image: url('assets/ministry-04.jpg'); background-position: right 35%; }   /* preaching to seated kids */

@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
  background: var(--bone);
  color: var(--ink);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1;
}
.marquee__track .dot {
  color: var(--ember);
  font-family: var(--accent);
  font-style: italic;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================
   SECTION FADE TRANSITIONS
   Each section fades its top and bottom edges into its neighbors.
   Approach: thin gradient overlays at section edges that blend
   into the adjacent section's color. Creates a cinematic scroll.
   ========================================================== */

/* Borders must go — they create hard edges that fight the fades */
.row--deep, .row--accent, .row--ember, .row--light,
.salvation, .testimonies, .gallery, .newsletter, .book,
.strip, .marquee, .stats, .stats__verse {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Dark sections — fade top/bottom with the ink color */
.row--dark::before,
.row--dark::after,
.row--deep::before,
.row--deep::after,
.row--accent::before,
.row--accent::after,
.row--ember::before,
.row--ember::after,
.testimonies::before,
.testimonies::after,
.gallery::before,
.gallery::after,
.newsletter::before,
.newsletter::after,
.book::before,
.book::after,
.strip::before,
.strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 3;
}

.row--dark::before,
.testimonies::before,
.gallery::before,
.book::before,
.strip::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), transparent);
}
.row--dark::after,
.testimonies::after,
.gallery::after,
.book::after,
.strip::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink), transparent);
}

/* Ink-soft variants (deep, accent, ember all use slightly different dark tones) */
.row--deep::before { top: 0; background: linear-gradient(to bottom, var(--ink-soft), transparent); }
.row--deep::after { bottom: 0; background: linear-gradient(to top, var(--ink-soft), transparent); }
.row--accent::before { top: 0; background: linear-gradient(to bottom, var(--ink-deep), transparent); }
.row--accent::after { bottom: 0; background: linear-gradient(to top, var(--ink-deep), transparent); }
.row--ember::before { top: 0; background: linear-gradient(to bottom, var(--ink), transparent); }
.row--ember::after { bottom: 0; background: linear-gradient(to top, var(--ink), transparent); }
.newsletter::before { top: 0; background: linear-gradient(to bottom, var(--ink-deep), transparent); }
.newsletter::after { bottom: 0; background: linear-gradient(to top, var(--ink-deep), transparent); }

/* White sections — fade with bone color */
.row--light::before,
.row--light::after,
.salvation::before,
.salvation::after,
.book--light::before,
.book--light::after,
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 3;
}
.row--light::before,
.salvation::before,
.book--light::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bone), transparent);
}
.row--light::after,
.salvation::after,
.book--light::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bone), transparent);
}

/* Marquee is short — use a softer fade */
.marquee::before {
  top: 0;
  height: 40px;
  background: linear-gradient(to bottom, var(--bone), transparent);
}
.marquee::after {
  bottom: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bone), transparent);
}

/* Stats strip — navy fades */
.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  pointer-events: none;
  z-index: 3;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Ensure section content sits above the fade overlays */
.row > .container,
.row > .row__bg,
.salvation > .container,
.testimonies > .container,
.book > .container,
.gallery > .container,
.gallery > .gallery__grid,
.newsletter > .container,
.newsletter > .newsletter__watermark,
.stats > .stats__grid,
.stats > .stats__verse,
.strip > .strip__track,
.marquee > .marquee__track {
  position: relative;
  z-index: 4;
}

/* Hero gets a bottom fade that blends into whatever comes below
   (the salvation section is white, so fade to bone) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bone), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Footer fade in */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--ink-deep), transparent);
  pointer-events: none;
  z-index: 3;
}
.footer { position: relative; }
.footer > .container,
.footer > .footer__base {
  position: relative;
  z-index: 4;
}


/* ==========================================================
   ROW SYSTEM — alternating image/text blocks
   ========================================================== */
.row {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.row--dark { background: var(--ink); }
.row--deep {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.row--accent {
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, var(--ember-glow-soft), transparent 70%),
    var(--ink-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.row--ember {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--ember-glow), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
}

/* ---------- WHITE ROW VARIANT ---------- */
.row--light {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid rgba(10, 6, 6, 0.08);
  border-bottom: 1px solid rgba(10, 6, 6, 0.08);
}
.row--light .eyebrow { color: var(--ember-deep); }
.row--light .row__title { color: var(--ink); }
.row--light .row__title em { color: var(--ember); }
.row--light .row__text { color: var(--muted-dark); }
.row--light .row__text strong { color: var(--ink); }
.row--light .row__text em { color: var(--ember); font-style: italic; }
.row--light .row__details {
  border-top: 1px solid rgba(10, 6, 6, 0.1);
  border-bottom: 1px solid rgba(10, 6, 6, 0.1);
}
.row--light .row__details span { color: var(--ember-deep); }
.row--light .row__details strong { color: var(--ink); }
.row--light .btn--ghost {
  color: var(--ink);
  border-color: rgba(10, 6, 6, 0.2);
}
.row--light .btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}
.row--light .row__image {
  background: rgba(10, 6, 6, 0.05);
  border-color: rgba(10, 6, 6, 0.1);
}
.row--light .row__image img {
  filter: contrast(1.05);
}
.row--light .row__image:hover img {
  filter: contrast(1.05);
  transform: scale(1.04);
}
.row--light .row__verse {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--ink);
  color: var(--bone);
  border-left: 4px solid var(--ember);
  position: relative;
  max-width: 56ch;
}
.row--light .row__verse::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.5rem;
  font-family: var(--accent);
  font-style: italic;
  font-size: 4rem;
  color: var(--ember);
  line-height: 1;
  opacity: 0.8;
}
.row--light .row__verse-text {
  display: block;
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bone-dim);
  line-height: 1.55;
  font-weight: 400;
  padding-top: 0.4rem;
}
.row--light .row__verse-ref {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  font-family: var(--sans);
  font-style: normal;
}

/* Dark-row verse callout (inverted palette) */
.row--dark .row__verse {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ember);
  position: relative;
  max-width: 56ch;
}
.row--dark .row__verse::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.5rem;
  font-family: var(--accent);
  font-style: italic;
  font-size: 4rem;
  color: var(--ember);
  line-height: 1;
  opacity: 0.8;
}
.row--dark .row__verse-text {
  display: block;
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bone-dim);
  line-height: 1.55;
  font-weight: 400;
  padding-top: 0.4rem;
}
.row--dark .row__verse-ref {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  font-family: var(--sans);
  font-style: normal;
}

.row__bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.row__mark {
  width: 60%;
  max-width: 600px;
  opacity: 0.15;
}

.row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.row__grid--reverse .row__image { order: 2; }
.row__grid--reverse .row__body { order: 1; }

.row__image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line);
}
.row__image--tall { aspect-ratio: 3 / 4; }
.row__image--poster {
  aspect-ratio: 3 / 4;
  max-width: 520px;
  margin: 0 auto;
}

/* Logo variant — flame on dark gradient background, not stretched */
.row__image--logo {
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background: radial-gradient(ellipse at center, var(--navy) 0%, var(--ink) 70%);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem);
}
.row__image--logo img {
  width: 60%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: none;
}
.row__image--logo:hover img {
  transform: scale(1.05);
  filter: none;
}
.row__image--logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, var(--ember-glow-soft), transparent 70%);
  pointer-events: none;
}

.row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.2s var(--ease-smooth), filter 1.2s var(--ease);
}
.row__image--poster img {
  filter: none;
  object-position: center;
}
.row__image:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}

.row__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 6, 6, 0.8));
  pointer-events: none;
}

.row__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
  z-index: 3;
  box-shadow: 0 14px 44px rgba(0,0,0,0.4);
}
.row__play svg { width: 32px; height: 32px; margin-left: 4px; }
.row__play:hover {
  background: var(--ember);
  color: var(--bone);
  transform: translate(-50%, -50%) scale(1.1);
}

.row__badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  padding: 0.55rem 1rem;
  background: rgba(10, 6, 6, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.row__live {
  color: var(--ember-bright);
  animation: pulse 2s ease-in-out infinite;
}

.row__body .eyebrow { margin-bottom: 0; }

.row__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 1.5rem;
}
.row__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.02em;
}

.row__text {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--bone-muted);
  max-width: 52ch;
  margin-top: 1.8rem;
  line-height: 1.65;
  font-weight: 300;
}

.row__ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* Event details list */
.row__details {
  margin-top: 2.2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.row__details li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.row__details span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  flex-shrink: 0;
  font-weight: 600;
}
.row__details strong {
  font-family: var(--display);
  font-weight: 400;
  color: var(--bone-dim);
  text-align: right;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Vision pillars */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 2rem;
}
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease);
  align-items: start;
}
.pillar:hover { border-color: var(--ember); }
.pillar__num {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ember);
  line-height: 1;
  padding-top: 0.1rem;
}
.pillar__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.pillar__verse {
  font-family: var(--accent);
  font-style: italic;
  color: var(--bone-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
}
.pillar__verse span {
  display: inline-block;
  margin-left: 0.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  white-space: nowrap;
}
.pillar__note {
  color: var(--bone-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
  padding-top: 0.2rem;
}

/* ==========================================================
   HERO WATERMARK
   ========================================================== */
.hero__watermark {
  position: absolute;
  right: -6%;
  top: 15%;
  width: 55%;
  max-width: 700px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  animation: floatMark 14s ease-in-out infinite;
}
@keyframes floatMark {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@media (max-width: 900px) {
  .hero__watermark { right: -15%; top: 8%; width: 75%; opacity: 0.05; }
}

/* ==========================================================
   NEWSLETTER / STAY CONNECTED
   ========================================================== */
.newsletter {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--ember-glow), transparent 70%),
    var(--ink-deep);
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}
.newsletter__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 700px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.newsletter__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 1.5rem 0 1.5rem;
}
.newsletter__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.02em;
}
.newsletter__text {
  color: var(--bone-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: 2px solid var(--line-strong);
  border-radius: 2px;
  padding: 1.1rem 1.4rem;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
  height: 56px;
  box-sizing: border-box;
}
.newsletter__form input:focus { border-color: var(--ember); }
.newsletter__form input::placeholder { color: var(--muted-dark); }
.newsletter__form .btn {
  flex-shrink: 0;
  height: 56px;
  padding: 0 2rem;
  font-size: 0.82rem;
  box-sizing: border-box;
}

/* ==========================================================
   FOOTER NEWSLETTER LINK
   ========================================================== */
.footer__newsletter-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--ember);
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.footer__newsletter-link:hover { color: var(--ember-bright); }


/* ==========================================================
   IMPACT STATS STRIP — navy horizontal band
   ========================================================== */
.stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.stats__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201, 56, 56, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stats__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 3.5vw, 2.6rem) var(--pad);
  height: 160px;
  position: relative;
}
.stats__item {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
}
.stats__num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.stats__plus {
  color: var(--ember);
  font-size: 0.75em;
  vertical-align: top;
  margin-left: 0.05em;
}
.stats__label {
  margin-top: 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.75);
  line-height: 1.3;
  white-space: nowrap;
}
.stats__divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(245, 239, 230, 0.25), transparent);
  flex-shrink: 0;
}

/* Psalm 85:6 verse sits as its own subtle band below */
.stats__verse {
  position: relative;
  text-align: center;
  padding: 1.3rem var(--pad);
  background: var(--navy-deep);
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.88);
}
.stats__verse span:first-child {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.5;
  font-weight: 300;
}
.stats__verse-ref {
  margin-left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  font-family: var(--sans);
  font-style: normal;
}


.salvation {
  padding: clamp(5rem, 10vw, 7.5rem) 0;
  background: var(--bone);
  color: var(--ink);
  text-align: center;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(10, 6, 6, 0.08);
}
.salvation__inner {
  max-width: 760px;
  margin: 0 auto;
}
.salvation .eyebrow { color: var(--ember); }
.salvation__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.5rem 0 1.8rem;
}
.salvation__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.02em;
}
.salvation__text {
  font-size: 1.1rem;
  color: var(--muted-dark);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================
   TESTIMONIES
   ========================================================== */
.testimonies {
  padding: clamp(6rem, 12vw, 9rem) 0;
  position: relative;
  z-index: 2;
  background: var(--ink);
}
.testimonies__head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.testimonies__head .eyebrow { margin-bottom: 0; }
.testimonies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimony {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.5s var(--ease);
}
.testimony:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
}
.testimony__quote {
  font-family: var(--accent);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--ember);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimony blockquote {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--bone-dim);
  margin-bottom: 2rem;
}
.testimony figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--bone);
  text-transform: uppercase;
}
.testimony figcaption span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* ==========================================================
   BOOK / CONTACT
   ========================================================== */
.book {
  padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative;
  z-index: 2;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* Light variant for booking */
.book--light {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid rgba(10, 6, 6, 0.08);
  border-bottom: 1px solid rgba(10, 6, 6, 0.08);
}
.book--light .eyebrow { color: var(--ember-deep); }
.book--light .section-title { color: var(--ink); }
.book--light .section-title em { color: var(--ember); }
.book--light .lede { color: var(--muted-dark); }
.book--light .lede a { color: var(--ember); }
.book--light .book__socials {
  border-top-color: rgba(10, 6, 6, 0.1);
}
.book--light .book__socials a { color: var(--muted-dark); }
.book--light .book__socials a:hover { color: var(--ember); }
.book--light .book__right {
  background: var(--ink);
  border: 1px solid var(--ink);
}
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.book__left .eyebrow { margin-bottom: 0; }
.book__socials {
  display: flex;
  gap: 1.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.book__socials a {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bone-muted);
  transition: color 0.3s var(--ease);
  position: relative;
}
.book__socials a:hover { color: var(--ember-bright); }

.book__right {
  background: var(--ink-deep);
  border: 1px solid var(--line);
  padding: 2.5rem;
}
.book__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.book__item:first-of-type { padding-top: 0; }
.book__item:last-of-type { border-bottom: 0; }
.book__item span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.book__item strong {
  font-family: var(--accent);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bone-muted);
  text-align: right;
}
.book__btn { margin-top: 2rem; width: 100%; }

/* ==========================================================
   B&W MEDIA GALLERY
   ========================================================== */
.gallery {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5rem, 11vw, 9rem);
  position: relative;
  z-index: 2;
  background: var(--ink-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Light variant */
.gallery--light {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid rgba(10, 6, 6, 0.08);
  border-bottom: 1px solid rgba(10, 6, 6, 0.08);
}
.gallery--light .section-title { color: var(--ink); }
.gallery--light .section-title em { color: var(--ember); }
.gallery--light .eyebrow { color: var(--ember-deep); }
.gallery--light .gallery__item {
  background: #fff;
  border-color: rgba(10, 6, 6, 0.1);
}
.gallery--light .gallery__item img {
  filter: grayscale(100%) contrast(1.02) brightness(1);
}
.gallery--light .gallery__item:hover img {
  filter: grayscale(0%) contrast(1.02) brightness(1);
}

/* Override the dark fade overlays for the light gallery variant */
.gallery--light::before {
  background: linear-gradient(to bottom, var(--bone), transparent) !important;
}
.gallery--light::after {
  background: linear-gradient(to top, var(--bone), transparent) !important;
}
.gallery__head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.gallery__head .eyebrow { margin-bottom: 0; }

.gallery__grid {
  column-count: 3;
  column-gap: 1.25rem;
  padding: 0;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), border-color 0.5s var(--ease);
}
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.08) brightness(0.88);
  transition: filter 0.6s var(--ease);
}
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 6, 6, 0.55));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__item::after {
  content: '+';
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--bone);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
  z-index: 2;
  line-height: 1;
  pointer-events: none;
}
.gallery__item:hover {
  transform: translateY(-4px);
  border-color: var(--ember);
}
.gallery__item:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}
.footer__name {
  font-family: 'Cinzel', 'Trajan Pro', serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  color: var(--bone);
  font-weight: 600;
  text-transform: uppercase;
}
.footer__brand p { color: var(--bone-muted); font-size: 0.95rem; max-width: 30ch; line-height: 1.55; font-weight: 300; }

.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: var(--bone-dim);
  font-size: 0.92rem;
  padding: 0.35rem 0;
  transition: all 0.3s var(--ease);
  font-weight: 300;
}
.footer__col a:hover { color: var(--ember-bright); transform: translateX(4px); }

.footer__sub-text {
  color: var(--bone-muted);
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
}

.subscribe {
  display: flex;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.subscribe:focus-within { border-color: var(--ember); }
.subscribe input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.9rem 1.2rem;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
}
.subscribe input::placeholder { color: var(--muted-dark); }
.subscribe button {
  padding: 0 1.3rem;
  color: var(--ember);
  font-size: 1.2rem;
  transition: all 0.3s var(--ease);
}
.subscribe button:hover { background: var(--ember); color: var(--bone); }

.footer__base {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--bone-muted);
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.05em;
}
.footer__motto {
  font-family: var(--display);
  letter-spacing: 0.2em;
  color: var(--ember);
  font-weight: 400;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .gallery__grid { column-count: 3; column-gap: 1rem; }
  .gallery__item { margin-bottom: 1rem; }
  .testimonies__grid { grid-template-columns: repeat(2, 1fr); }
  .testimony:last-child { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 900px) {
  .row__grid,
  .row__grid--reverse,
  .book__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .row__grid--reverse .row__image { order: 1; }
  .row__grid--reverse .row__body { order: 2; }
  .row__image { max-height: 480px; aspect-ratio: 4 / 3; }
  .row__image--tall, .row__image--poster { max-height: 560px; aspect-ratio: 3 / 4; max-width: 460px; margin: 0 auto; }

  .hero__details { gap: 2rem; }

  /* Stats strip — 2x2 grid on tablet, no dividers */
  .stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
    height: auto;
    padding: 2rem var(--pad);
  }
  .stats__divider { display: none; }
  .stats__item { max-width: none; }
  .stats__verse { padding: 1.2rem var(--pad); }
  .stats__verse-ref { display: block; margin-left: 0; margin-top: 0.5rem; }

  .testimonies__grid { grid-template-columns: 1fr; }
  .testimony:last-child { grid-column: span 1; }

  .gallery__grid { column-count: 2; column-gap: 0.85rem; }
  .gallery__item { margin-bottom: 0.85rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .hero { padding-top: 6.5rem; }
  .hero__ctas .btn,
  .row__ctas .btn { flex: 1; min-width: 0; }
  .hero__details { flex-direction: column; gap: 1.3rem; }

  .newsletter__form { flex-direction: column; }
  .newsletter__form input { min-width: 0; width: 100%; }
  .newsletter__form .btn { width: 100%; justify-content: center; }

  .strip__img { width: 65vw; min-width: 240px; height: 40vh; min-height: 260px; }

  .gallery__grid { column-count: 1; }
  .gallery__item { margin-bottom: 0.75rem; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; text-align: center; }

  .book__right { padding: 1.8rem; }
  .book__item { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .book__item strong { text-align: left; }

  .row__play { width: 72px; height: 72px; }
  .row__play svg { width: 26px; height: 26px; }

  .row__details li { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .row__details strong { text-align: left; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__bg-img, .strip__track, .marquee__track { transform: none !important; animation: none !important; }
}

/* ==========================================================
   WAYS TO GIVE
   ========================================================== */
.give-ways {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
}
.give-ways::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bone), transparent);
  pointer-events: none;
  z-index: 3;
}
.give-ways::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bone), transparent);
  pointer-events: none;
  z-index: 3;
}
.give-ways > .container { position: relative; z-index: 4; }
.give-ways__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.give-ways__title {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.give-ways__title em { color: var(--ember); }
.give-ways .eyebrow { color: var(--ember-deep); }
.give-ways__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.give-way {
  background: #fff;
  border: 1px solid rgba(10, 6, 6, 0.1);
  padding: 1.8rem 1.4rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.give-way:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(201, 56, 56, 0.2);
}
.give-way--wide {
  grid-column: span 4;
}
.give-way__badge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.give-way__badge--venmo { background: #008CFF; }
.give-way__badge--cashapp { background: #00D632; }
.give-way__badge--paypal { background: #0070BA; font-family: var(--sans); font-weight: 800; font-style: italic; }
.give-way__badge--zelle { background: #6D1ED4; }
.give-way__badge--other { background: var(--ink); font-size: 1.3rem; }

.give-way h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.give-way__handle {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 0.6rem;
  word-break: break-all;
}
.give-way p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted-dark);
}
.give-way--wide h3 { font-size: 1.3rem; }
.give-way--wide .give-way__handle { font-size: 1rem; }
.give-way--wide p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .give-ways__grid { grid-template-columns: repeat(2, 1fr); }
  .give-way--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .give-ways__grid { grid-template-columns: 1fr; }
  .give-way--wide { grid-column: span 1; }
}

/* ==========================================================
   BOOKING FORM
   ========================================================== */
.booking {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
}
.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bone), transparent);
  pointer-events: none;
  z-index: 3;
}
.booking::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bone), transparent);
  pointer-events: none;
  z-index: 3;
}
.booking > .container { position: relative; z-index: 4; }
.booking__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.booking__title { color: var(--ink); font-size: clamp(2rem, 5vw, 3.4rem); }
.booking__title em { color: var(--ember); }
.booking .eyebrow { color: var(--ember-deep); }
.eyebrow--center { display: block; text-align: center; }

.booking__intro {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted-dark);
  font-weight: 400;
  margin-top: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.booking__form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(10, 6, 6, 0.1);
  border-top: 4px solid var(--ember);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.field__label em {
  color: var(--ember);
  font-style: normal;
  margin-left: 0.1em;
}
.field__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-dark);
  font-size: 0.75rem;
  margin-left: 0.4rem;
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(10, 6, 6, 0.15);
  border-radius: 2px;
  background: #fafafa;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
  box-sizing: border-box;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ember);
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(10, 6, 6, 0.35); }

.booking__dates {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking__radio {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid rgba(10, 6, 6, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-size: 0.9rem;
  font-weight: 500;
  background: #fafafa;
}
.radio:hover {
  border-color: var(--ember);
  background: #fff;
}
.radio input { accent-color: var(--ember); margin: 0; }
.radio input:checked + span { color: var(--ember); font-weight: 600; }

.booking__submit {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ placeholder */
.booking__faq {
  max-width: 760px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(10, 6, 6, 0.12);
  text-align: center;
}
.booking__faq-head .eyebrow {
  color: var(--ember-deep);
  display: block;
  margin-bottom: 1rem;
}
.booking__faq h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
}
.booking__faq h3 em {
  font-family: var(--accent);
  font-style: italic;
  color: var(--ember);
  text-transform: none;
  font-weight: 300;
}
.booking__faq-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted-dark);
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.booking__faq-note a {
  color: var(--ember);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 640px) {
  .booking__grid { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ==========================================================
   WHAT WE BELIEVE
   ========================================================== */
.beliefs {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
}
.beliefs::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--bone), transparent);
  pointer-events: none; z-index: 3;
}
.beliefs::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bone), transparent);
  pointer-events: none; z-index: 3;
}
.beliefs > .container { position: relative; z-index: 4; }
.beliefs__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.beliefs__title { color: var(--ink); font-size: clamp(2rem, 5vw, 3.4rem); }
.beliefs__title em { color: var(--ember); }
.beliefs .eyebrow { color: var(--ember-deep); }
.beliefs__intro {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted-dark);
  margin-top: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column list format for long doctrinal statements */
.beliefs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.belief {
  background: #fff;
  border: 1px solid rgba(10, 6, 6, 0.1);
  padding: 2rem 1.8rem;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.belief:hover {
  border-color: var(--ember);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -15px rgba(201, 56, 56, 0.2);
}
.belief__num {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--ember);
  display: block;
  margin-bottom: 0.9rem;
}
.belief h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.belief p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted-dark);
  margin-bottom: 1.1rem;
  flex: 1;
}
.belief p strong { color: var(--ink); font-weight: 600; }
.belief cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(10, 6, 6, 0.08);
  line-height: 1.5;
}

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

/* ==========================================================
   TESTIMONIES — with light variant
   ========================================================== */
.testimonies--light { background: var(--bone); color: var(--ink); }
.testimonies--light .section-title { color: var(--ink); }
.testimonies--light .section-title em { color: var(--ember); }
.testimonies--light .eyebrow { color: var(--ember-deep); }
.testimonies--light .testimony {
  background: #fff;
  border-color: rgba(10, 6, 6, 0.1);
}
.testimonies--light .testimony:hover {
  background: #fafafa;
  border-color: var(--ember);
}
.testimonies--light .testimony__quote { color: var(--ember); }
.testimonies--light .testimony blockquote { color: var(--ink); }
.testimonies--light .testimony figcaption strong { color: var(--ink); }
.testimonies--light .testimony figcaption span { color: var(--muted-dark); }
.testimonies--light::before {
  background: linear-gradient(to bottom, var(--bone), transparent) !important;
}
.testimonies--light::after {
  background: linear-gradient(to top, var(--bone), transparent) !important;
}

/* ==========================================================
   PRAYER — light variant
   ========================================================== */
.prayer--light {
  background: var(--bone);
  color: var(--ink);
}
.prayer--light .prayer__title { color: var(--ink); }
.prayer--light .prayer__title em { color: var(--ember); }
.prayer--light .eyebrow { color: var(--ember-deep); }
.prayer--light .prayer__intro { color: var(--muted-dark); }
.prayer--light .prayer__form {
  background: #fff;
  border-color: rgba(10, 6, 6, 0.1);
}
.prayer--light .prayer__form .field__label { color: var(--ink); }
.prayer--light .prayer__form .field__optional { color: var(--muted-dark); }
.prayer--light .prayer__form .field input,
.prayer--light .prayer__form .field textarea {
  background: #fafafa;
  border-color: rgba(10, 6, 6, 0.15);
  color: var(--ink);
}
.prayer--light .prayer__form .field input::placeholder,
.prayer--light .prayer__form .field textarea::placeholder {
  color: rgba(10, 6, 6, 0.35);
  opacity: 1;
}
.prayer--light .prayer__form .field input:focus,
.prayer--light .prayer__form .field textarea:focus {
  border-color: var(--ember);
  background: #fff;
}
.prayer--light .checkbox { color: var(--muted-dark); }
.prayer--light .prayer__verse {
  border-top-color: rgba(10, 6, 6, 0.12);
}
.prayer--light .prayer__verse span:first-child { color: var(--muted-dark); }
.prayer--light::before {
  background: linear-gradient(to bottom, var(--bone), transparent) !important;
}
.prayer--light::after {
  background: linear-gradient(to top, var(--bone), transparent) !important;
}


.values {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Light variant */
.values--light { background: var(--bone); color: var(--ink); }
.values--light .values__title { color: var(--ink); }
.values--light .eyebrow { color: var(--ember-deep); }
.values--light .value {
  background: #fff;
  border-color: rgba(10, 6, 6, 0.1);
}
.values--light .value:hover { background: #fafafa; border-color: var(--ember); }
.values--light .value h3 { color: var(--ink); }
.values--light .value p { color: var(--muted-dark); }
.values--light .value cite { border-top-color: rgba(10, 6, 6, 0.08); }
.values--light::before {
  background: linear-gradient(to bottom, var(--bone), transparent) !important;
}
.values--light::after {
  background: linear-gradient(to top, var(--bone), transparent) !important;
}
.values::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  pointer-events: none; z-index: 3;
}
.values::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none; z-index: 3;
}
.values > .container { position: relative; z-index: 4; }
.values__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.values__title { color: var(--bone); font-size: clamp(2rem, 5vw, 3.4rem); }
.values__title em { color: var(--ember); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.value {
  padding: 1.8rem 1.6rem;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value:hover { background: #1a1010; border-color: var(--line-strong); transform: translateY(-3px); }
.value:hover::before { transform: scaleX(1); }
.value__num {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--ember);
  display: block;
  margin-bottom: 0.9rem;
}
.value h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--bone);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.value p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--bone-muted);
  font-weight: 300;
  flex: 1;
  margin-bottom: 1rem;
}
.value cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

@media (max-width: 900px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values__grid { grid-template-columns: 1fr; } }

/* ==========================================================
   PRAYER REQUEST
   ========================================================== */
.prayer {
  background: var(--ink-deep);
  color: var(--bone);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.prayer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--ink-deep), transparent);
  pointer-events: none; z-index: 3;
}
.prayer::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--ink-deep), transparent);
  pointer-events: none; z-index: 3;
}
.prayer > .container { position: relative; z-index: 4; }
.prayer__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.prayer__title { color: var(--bone); font-size: clamp(2rem, 5vw, 3.4rem); }
.prayer__title em { color: var(--ember); }
.prayer__intro {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--bone-dim);
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.prayer__form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--ink-soft);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ember);
}
.prayer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.2rem;
}

/* Dark-theme form fields */
.prayer__form .field__label { color: var(--bone); }
.prayer__form .field__optional { color: var(--bone-muted); }
.prayer__form .field input,
.prayer__form .field textarea {
  background: rgba(245, 239, 230, 0.04);
  border: 1.5px solid var(--line);
  color: var(--bone);
}
.prayer__form .field input::placeholder,
.prayer__form .field textarea::placeholder {
  color: var(--bone-muted);
  opacity: 0.6;
}
.prayer__form .field input:focus,
.prayer__form .field textarea:focus {
  border-color: var(--ember);
  background: rgba(245, 239, 230, 0.06);
}

.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--bone-dim);
  padding: 0.3rem 0;
}
.checkbox input {
  accent-color: var(--ember);
  margin: 0.2rem 0 0 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.prayer__submit {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

.prayer__verse {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.prayer__verse span:first-child {
  display: block;
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--bone-dim);
  line-height: 1.5;
  font-weight: 300;
}
.prayer__verse-ref {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  font-style: normal !important;
}

@media (max-width: 640px) {
  .prayer__grid { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ==========================================================
   SECONDARY PAGE HERO
   ========================================================== */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--ember-glow), transparent 70%),
    linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 60%, var(--ink) 100%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none;
  z-index: 2;
}
.page-hero > .container {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.page-hero .eyebrow {
  color: var(--ember);
  margin-bottom: 1.5rem;
  display: block;
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-hero__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.02em;
}
.page-hero__subtitle {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--bone-dim);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}


/* ==========================================================
   MINISTRY STATEMENT BAND
   ========================================================== */
.statement {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
.statement::before,
.statement::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.statement::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bone), transparent);
}
.statement::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bone), transparent);
}
.statement > .container {
  position: relative;
  z-index: 3;
}
.statement__text {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.statement__text em {
  color: var(--ember);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================
   MODAL
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  overflow-y: auto;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 4, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--bone);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 4px solid var(--ember);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal.is-open .modal__dialog { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.modal__close:hover { background: rgba(10, 6, 6, 0.08); color: var(--ember); }

.modal__header { text-align: center; margin-bottom: 1.8rem; }
.modal__header .eyebrow {
  color: var(--ember-deep);
  display: block;
  margin-bottom: 1rem;
}
.modal__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.modal__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
}
.modal__intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 440px;
  margin: 0 auto;
}
.modal__intro strong { color: var(--ember); font-weight: 600; }

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.select {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(10, 6, 6, 0.15);
  border-radius: 2px;
  background: #fafafa;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c93838' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.select:focus {
  border-color: var(--ember);
  background-color: #fff;
}

.modal__submit {
  width: 100%;
  justify-content: center;
}
.modal__small {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted-dark);
  text-align: center;
  line-height: 1.5;
}

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


/* ==========================================================
   FAQ ACCORDION (booking page)
   ========================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.faq__item {
  border-bottom: 1px solid rgba(10, 6, 6, 0.12);
  padding: 0;
}
.faq__item:first-child {
  border-top: 1px solid rgba(10, 6, 6, 0.12);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ember); }
.faq__q {
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: inherit;
  line-height: 1.3;
  flex: 1;
}
.faq__toggle {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ember);
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  padding: 0 0 1.6rem;
  animation: faqSlide 0.35s var(--ease);
}
.faq__answer p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-dark);
  max-width: 68ch;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   BOOK NOW NAV LINK (between About and Teachings)
   ========================================================== */
.nav__book {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 0.3rem 0;
  cursor: pointer;
  white-space: nowrap;
}
.nav__book::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width 0.4s var(--ease);
}
.nav__book:hover { color: var(--ember-bright); }
.nav__book:hover::after { width: 100%; }
.nav__mobile-book {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--ember) !important;
  text-decoration: none;
  padding: 1rem 0;
  text-transform: uppercase;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
  margin: 0.5rem 0;
}

/* ==========================================================
   DECLARATION BAND (navy, before gallery)
   Same navy aesthetic as the stats strip
   ========================================================== */
.declaration {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden;
}
.declaration::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(201, 56, 56, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(245, 239, 230, 0.04), transparent 60%);
  pointer-events: none;
}
.declaration > .container {
  position: relative;
  z-index: 2;
}
.declaration__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.declaration__text em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}

/* ==========================================================
   DEVOTIONALS PAGE
   ========================================================== */

/* ---------- Featured devotional (DARK pulpit-style block) ---------- */
.devo-featured {
  position: relative;
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.devo-featured::before,
.devo-featured::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.devo-featured::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.devo-featured::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.devo-featured > .container { position: relative; z-index: 2; }

.devo-featured__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(26, 20, 18, 0.6) 0%, rgba(10, 6, 6, 0.4) 100%),
    radial-gradient(ellipse 80% 60% at 0% 0%, var(--ember-glow), transparent 60%);
}
.devo-featured__inner::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--ember);
  border-left: 2px solid var(--ember);
}
.devo-featured__inner::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--ember);
  border-right: 2px solid var(--ember);
}

.devo-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.devo-featured__series {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.devo-featured__pill {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  background: var(--ember-glow-soft);
}
.devo-featured__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.75rem;
}
.devo-featured__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.devo-featured__verse {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bone-muted);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--ember);
}
.devo-featured__verse strong {
  color: var(--bone);
  font-weight: 700;
}
.devo-featured__excerpt {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--bone-dim);
  margin-bottom: 2.25rem;
}
.devo-featured__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Series sections ---------- */
.devo-series {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.devo-series--dark { background: var(--ink); color: var(--bone); }
.devo-series--light { background: var(--bone); color: var(--ink); }

.devo-series--dark::before,
.devo-series--dark::after,
.devo-series--light::before,
.devo-series--light::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.devo-series--dark::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.devo-series--dark::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.devo-series--light::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
}
.devo-series--light::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bone-dim), transparent);
}
.devo-series > .container { position: relative; z-index: 2; }

.devo-series__head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.devo-series--light .devo-series__head .eyebrow { color: var(--ember-deep); }
.devo-series__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.devo-series--dark .devo-series__title { color: var(--bone); }
.devo-series--light .devo-series__title { color: var(--ink); }
.devo-series__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.devo-series__intro {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
}
.devo-series--dark .devo-series__intro { color: var(--bone-muted); }
.devo-series--light .devo-series__intro { color: var(--muted-dark); }

/* ---------- Card grid ---------- */
.devo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.devo-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; margin: 0 auto; }
.devo-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .devo-grid,
  .devo-grid--two { grid-template-columns: 1fr; }
}

/* ---------- Devo card ---------- */
.devo-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bone);
  border: 1px solid var(--bone-dim);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.devo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--ember);
  transition: height 0.5s var(--ease);
}
.devo-card:hover {
  transform: translateY(-4px);
  border-color: var(--ember);
  box-shadow: 0 18px 40px -20px rgba(10, 6, 6, 0.35);
}
.devo-card:hover::before { height: 100%; }

.devo-card__num {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ember);
  letter-spacing: 0.01em;
  align-self: start;
  padding-top: 0.15rem;
}
.devo-card__body { display: flex; flex-direction: column; }
.devo-card__series {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-bottom: 0.5rem;
}
.devo-card__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.devo-card__verse {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ember);
  margin-bottom: 1rem;
}
.devo-card__excerpt {
  font-family: var(--sans);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--muted-dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.devo-card__cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.devo-card:hover .devo-card__cta { color: var(--ember); }

/* ---------- Devo card — DARK variant ---------- */
.devo-card--dark {
  background: var(--ink-card);
  border-color: var(--line-strong);
  color: var(--bone);
}
.devo-card--dark .devo-card__title { color: var(--bone); }
.devo-card--dark .devo-card__series { color: var(--ember); }
.devo-card--dark .devo-card__excerpt { color: var(--bone-muted); }
.devo-card--dark .devo-card__cta { color: var(--bone); }
.devo-card--dark:hover { border-color: var(--ember); box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6); }

/* ---------- Newsletter band ---------- */
.devo-newsletter {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--ember-glow), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.devo-newsletter::before,
.devo-newsletter::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.devo-newsletter::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.devo-newsletter::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.devo-newsletter > .container { position: relative; z-index: 2; }

.devo-newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.devo-newsletter__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0.5rem 0 1.25rem;
}
.devo-newsletter__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.devo-newsletter__text {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-muted);
  margin-bottom: 2rem;
}
.devo-newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  flex-wrap: wrap;
}
.devo-newsletter__form input[type="email"] {
  flex: 1 1 240px;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1.25rem;
  background: var(--ink-card);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.devo-newsletter__form input[type="email"]::placeholder {
  color: var(--bone-muted);
  opacity: 0.6;
}
.devo-newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--ember);
}
.devo-newsletter__fine {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--bone-muted);
  opacity: 0.7;
}
.devo-newsletter .hp { display: none; }

/* ==========================================================
   DEVOTIONAL READING TEMPLATE (single-devo pages)
   ========================================================== */
.devo-read {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.devo-read::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  z-index: 1;
  pointer-events: none;
}
.devo-read > .container { position: relative; z-index: 2; }

.devo-read__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-bottom: 2.5rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.devo-read__back:hover {
  border-bottom-color: var(--ember);
  color: var(--ember);
}

.devo-read__article {
  max-width: 720px;
  margin: 0 auto;
}
.devo-read__series {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-bottom: 1.25rem;
  display: block;
}
.devo-read__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.devo-read__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.devo-read__verse {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--ember);
  margin: 2.5rem 0;
}
.devo-read__verse cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-top: 0.75rem;
}
.devo-read__body p {
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-dark);
  margin-bottom: 1.5rem;
}
.devo-read__body p strong { color: var(--ink); font-weight: 600; }
.devo-read__body p em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}
.devo-read__body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.devo-read__prayer {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bone-dim);
  border-left: 3px solid var(--ember);
}
.devo-read__prayer-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-bottom: 0.75rem;
  display: block;
}
.devo-read__prayer p {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
}

.devo-read__signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bone-dim);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted-dark);
}
.devo-read__signature strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

/* Next/Prev navigation between devotionals */
.devo-read__nav {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bone-dim);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.devo-read__nav-link {
  display: block;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--bone-dim);
  background: var(--bone);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.devo-read__nav-link:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
}
.devo-read__nav-link--prev { text-align: left; }
.devo-read__nav-link--next { text-align: right; }
.devo-read__nav-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.devo-read__nav-title {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 600px) {
  .devo-read__nav { grid-template-columns: 1fr; }
  .devo-read__nav-link--next { text-align: left; }
}

/* Visually hidden (for a11y form labels) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   EVENTS PAGE
   ========================================================== */

/* ---------- Featured event (DARK split-block) ---------- */
.event-featured {
  position: relative;
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.event-featured::before,
.event-featured::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.event-featured::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.event-featured::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.event-featured > .container { position: relative; z-index: 2; }

.event-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .event-featured__inner { grid-template-columns: 1fr; }
}

.event-featured__media {
  position: relative;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--ink-card);
  aspect-ratio: 4 / 5;
}
.event-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-featured__body { color: var(--bone); }

.event-featured__meta { margin-bottom: 1.5rem; }
.event-featured__pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  background: var(--ember-glow-soft);
}

.event-featured__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.event-featured__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.event-featured__text {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-muted);
  margin-bottom: 1.75rem;
}
.event-featured__details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line-strong);
}
.event-featured__details li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--sans);
}
.event-featured__details li > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
  align-self: center;
}
.event-featured__details li > strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bone);
  line-height: 1.5;
}
.event-featured__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Event list (LIGHT) ---------- */
.event-list {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.event-list::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  z-index: 1;
  pointer-events: none;
}
.event-list > .container { position: relative; z-index: 2; }

.event-list__head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.event-list__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0;
}
.event-list__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: 90px 110px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--bone);
  border: 1px solid var(--bone-dim);
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--ember);
  transition: height 0.5s var(--ease);
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: var(--ember);
  box-shadow: 0 18px 40px -20px rgba(10, 6, 6, 0.3);
}
.event-card:hover::before { height: 100%; }

.event-card--active {
  border-color: var(--ember);
}
.event-card--active::before { height: 100%; }

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid var(--bone-dim);
  text-align: center;
}
.event-card__month {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.4rem;
}
.event-card__day {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.event-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card__type {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin-bottom: 0.5rem;
}
.event-card__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.event-card__detail {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-dark);
  margin-bottom: 1rem;
}
.event-card__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-card__cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ember);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.event-card__cta:hover { color: var(--ember); }

.event-card__status {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--bone-dim);
  border-radius: 2px;
}
.event-card__status--live {
  color: var(--ember);
  border-color: var(--ember);
  background: var(--ember-glow-soft);
}

@media (max-width: 720px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .event-card__date {
    flex-direction: row;
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--bone-dim);
    padding: 0 0 0.75rem;
    gap: 0.6rem;
  }
  .event-card__month { margin-bottom: 0; }
}

/* ---------- Registration form (DARK) ---------- */
.event-register {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--ember-glow), transparent 60%),
    var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.event-register::before,
.event-register::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.event-register::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.event-register::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.event-register > .container { position: relative; z-index: 2; }

.event-register__head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.event-register__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0.5rem 0 1.25rem;
}
.event-register__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.event-register__subtitle {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-muted);
}

.event-form {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(26, 20, 18, 0.5);
  border: 1px solid var(--line-strong);
}
.event-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .event-form__grid { grid-template-columns: 1fr; }
}
.event-form .field--full { grid-column: 1 / -1; }

.event-form .field__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 0.55rem;
}
.event-form .field__label em {
  color: var(--ember);
  font-style: normal;
  font-weight: 700;
}
.event-form .field__optional {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85em;
  color: var(--bone-muted);
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.7;
}
.event-form input[type="text"],
.event-form input[type="email"],
.event-form input[type="tel"],
.event-form input[type="number"],
.event-form select,
.event-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--ink-card);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.event-form input:focus,
.event-form select:focus,
.event-form textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.event-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bone-muted) 50%),
                    linear-gradient(135deg, var(--bone-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}
.event-form textarea { resize: vertical; min-height: 100px; }

.event-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--bone-muted);
}
.event-form .checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--ember);
}

.event-form__submit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}
.event-form__fine {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--bone-muted);
  margin-top: 1rem;
  opacity: 0.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ==========================================================
   100 PARTNERS CALLOUT (give.html)
   ========================================================== */
.partners-callout {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--ember-glow), transparent 60%),
    var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.partners-callout::before,
.partners-callout::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.partners-callout::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.partners-callout::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.partners-callout > .container { position: relative; z-index: 2; }

.partners-callout__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--line-strong);
  background: rgba(26, 20, 18, 0.4);
  position: relative;
}
.partners-callout__inner::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--ember);
  border-left: 2px solid var(--ember);
}
.partners-callout__inner::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--ember);
  border-right: 2px solid var(--ember);
}

.partners-callout__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0.75rem 0 1.5rem;
}
.partners-callout__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.partners-callout__text {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--bone-muted);
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.partners-callout__text strong {
  color: var(--bone);
  font-weight: 600;
}

.partners-callout__metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 0 2.5rem;
  flex-wrap: wrap;
}
.partners-callout__big {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ember);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.partners-callout__small {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.partners-callout__divider {
  width: 1px;
  height: 60px;
  background: var(--line-strong);
}
@media (max-width: 600px) {
  .partners-callout__divider { width: 60px; height: 1px; }
}

.partners-callout__ctas {
  margin-bottom: 2rem;
}

.partners-callout__fine {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--bone-muted);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto;
}
.partners-callout__fine a {
  color: var(--ember);
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-underline-offset: 3px;
}
.partners-callout__fine a:hover { opacity: 0.85; }

/* ==========================================================
   TESTIMONIES PAGE
   ========================================================== */

/* ---------- Crusade stats banner (DARK) ---------- */
.testimony-stats {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--ember-glow), transparent 60%),
    var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.testimony-stats::before,
.testimony-stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.testimony-stats::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
}
.testimony-stats::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-soft), transparent);
}
.testimony-stats > .container { position: relative; z-index: 2; }

.testimony-stats__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.testimony-stats__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0.5rem 0 1.5rem;
}
.testimony-stats__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.testimony-stats__intro {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-muted);
}

.testimony-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 880px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 2.5rem 0;
}
@media (max-width: 700px) {
  .testimony-stats__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.testimony-stat { text-align: center; }
.testimony-stat__num {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.testimony-stat__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.testimony-stats__breakdown {
  max-width: 720px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}
.testimony-stats__day {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line-strong);
  background: rgba(26, 20, 18, 0.4);
}
@media (max-width: 600px) {
  .testimony-stats__day {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
.testimony-stats__day-label {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--ember);
  align-self: center;
}
.testimony-stats__day-detail {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--bone-muted);
  align-self: center;
}

.testimony-stats__close {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bone-muted);
}
.testimony-stats__close em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
}

/* ---------- Featured testimony (long-form, light/dark variants) ---------- */
.testimony-feature {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.testimony-feature--light { background: var(--bone); color: var(--ink); }
.testimony-feature--dark { background: var(--ink); color: var(--bone); }
.testimony-feature--light::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  z-index: 1;
  pointer-events: none;
}
.testimony-feature--dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  z-index: 1;
  pointer-events: none;
}
.testimony-feature > .container { position: relative; z-index: 2; }

.testimony-feature__inner {
  max-width: 760px;
  margin: 0 auto;
}
.testimony-feature__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.testimony-feature__pill {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  background: var(--ember-glow-soft);
}
.testimony-feature__byline {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
}
.testimony-feature--light .testimony-feature__byline { color: var(--muted-dark); }
.testimony-feature--dark .testimony-feature__byline { color: var(--bone-muted); }

.testimony-feature__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.testimony-feature--light .testimony-feature__title { color: var(--ink); }
.testimony-feature--dark .testimony-feature__title { color: var(--bone); }
.testimony-feature__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}

.testimony-feature__body p {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimony-feature--light .testimony-feature__body p { color: var(--muted-dark); }
.testimony-feature--dark .testimony-feature__body p { color: var(--bone-muted); }
.testimony-feature__body p strong {
  font-weight: 600;
}
.testimony-feature--light .testimony-feature__body p strong { color: var(--ink); }
.testimony-feature--dark .testimony-feature__body p strong { color: var(--bone); }
.testimony-feature__body p em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}

.testimony-feature__pullquote {
  font-family: var(--display) !important;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 2.5rem 0 !important;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--ember);
}
.testimony-feature--light .testimony-feature__pullquote { color: var(--ink) !important; }
.testimony-feature--dark .testimony-feature__pullquote { color: var(--bone) !important; }
.testimony-feature__pullquote em {
  font-family: var(--accent) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: -0.01em;
}
.testimony-feature__pullquote strong {
  font-family: inherit !important;
  font-weight: 700 !important;
}

.testimony-feature__verse {
  font-family: var(--accent) !important;
  font-style: italic !important;
  font-weight: 400;
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--ember);
  margin-top: 2.5rem !important;
}
.testimony-feature--light .testimony-feature__verse { color: var(--ink) !important; }
.testimony-feature--dark .testimony-feature__verse { color: var(--bone) !important; }
.testimony-feature__verse cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 0.75rem;
}

/* ---------- Share your testimony CTA (LIGHT) ---------- */
.testimony-share {
  background: var(--bone);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.testimony-share::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  z-index: 1;
  pointer-events: none;
}
.testimony-share > .container { position: relative; z-index: 2; }
.testimony-share__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimony-share__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.75rem 0 1.5rem;
}
.testimony-share__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: none;
  letter-spacing: -0.01em;
}
.testimony-share__text {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted-dark);
  margin-bottom: 2rem;
}

/* ---------- Give-way fine print (1023/bank disclaimer on Checks card) ---------- */
.give-way__fine {
  font-family: var(--sans);
  font-size: 0.78rem !important;
  line-height: 1.55;
  color: var(--muted-dark);
  opacity: 0.78;
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bone-dim);
  font-style: italic;
}

/* ==========================================================
   MOBILE POLISH — comprehensive breakpoint cleanup
   These rules ensure the mobile layout mirrors desktop but
   scales properly without jumbling.
   ========================================================== */

@media (max-width: 900px) {
  /* Make sure all multi-column page-row grids stack cleanly */
  .row__grid,
  .row__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .row__grid--reverse > * { order: unset; }
  .row__image { max-width: 100%; }

  /* Stat strips */
  .stats__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat__num { font-size: clamp(2.4rem, 7vw, 3.6rem); }

  /* Hero typography */
  .hero__title { font-size: clamp(2.6rem, 11vw, 5rem); }

  /* About / Founder column tightening */
  .about__grid,
  .mission__grid,
  .vision__grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Photo strips and gallery don't overflow */
  .photo-strip,
  .gallery__grid { padding-left: var(--pad); padding-right: var(--pad); }

  /* Modal / dialog adjusts */
  .modal__panel { width: calc(100vw - 2rem) !important; max-width: 560px; }
  .modal__grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 700px) {
  /* Stats grid → single column on small phones */
  .stats__grid { grid-template-columns: 1fr !important; }

  /* Form fields always stack */
  .booking__grid,
  .prayer__grid,
  .modal__grid,
  .event-form__grid { grid-template-columns: 1fr !important; }

  /* Buttons in hero/row CTA bars wrap and stretch full width */
  .row__ctas,
  .hero__ctas,
  .event-featured__ctas,
  .partners-callout__ctas,
  .devo-featured__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem !important;
  }
  .row__ctas .btn,
  .hero__ctas .btn,
  .event-featured__ctas .btn,
  .partners-callout__ctas .btn,
  .devo-featured__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Big titles slightly smaller so they don't wrap awkwardly */
  .page-hero__title { font-size: clamp(2.1rem, 9vw, 3.4rem); }
  .row__title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .devo-featured__title,
  .testimony-feature__title,
  .partners-callout__title,
  .event-featured__title { font-size: clamp(2rem, 8vw, 3.2rem); }

  /* Featured event split-block stacks */
  .event-featured__inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .event-featured__media { aspect-ratio: 4 / 5; max-width: 480px; margin: 0 auto; }

  /* Devotional grids always 1 column */
  .devo-grid,
  .devo-grid--two { grid-template-columns: 1fr !important; }

  /* Footer columns stack */
  .footer__inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }

  /* Event featured detail rows allow label to break above value */
  .event-featured__details li { grid-template-columns: 1fr !important; gap: 0.25rem !important; }

  /* Partners callout big numbers go vertical */
  .partners-callout__metric { gap: 1.5rem; }
  .partners-callout__divider { width: 60px; height: 1px; }

  /* Give-way cards stack */
  .give-ways { grid-template-columns: 1fr !important; }
  .give-way { padding: 1.5rem !important; }
}

@media (max-width: 480px) {
  /* Final tightening for very small phones (iPhone SE, etc.) */
  :root { --pad: 1rem; }

  /* Reduce vertical space slightly so content density stays high */
  section { padding-top: clamp(2.5rem, 8vw, 4rem); padding-bottom: clamp(2.5rem, 8vw, 4rem); }

  /* Eyebrows / small caps stay readable */
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }

  /* Buttons readable but not oversized */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.75rem; }
  .btn--lg { padding: 1rem 1.6rem; font-size: 0.8rem; }

  /* Devotional reading body slightly smaller */
  .devo-read__body p { font-size: 1rem; line-height: 1.75; }
  .testimony-feature__body p { font-size: 1rem; line-height: 1.75; }

  /* Forms — taller touch targets */
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], select, textarea {
    font-size: 16px !important; /* prevents iOS zoom on focus */
  }

  /* Nav — make hamburger and logo balanced on small screens */
  .nav__inner { padding: 0.65rem var(--pad) !important; }
  .nav__logo { width: 36px !important; height: 36px !important; }
  .nav__cta { padding: 0.5rem 0.85rem; font-size: 0.7rem; letter-spacing: 0.12em; }

  /* Page hero subtitle slightly smaller */
  .page-hero__subtitle { font-size: 0.95rem; }

  /* Featured devotional padding tightens */
  .devo-featured__inner,
  .partners-callout__inner,
  .testimony-feature__inner,
  .event-form { padding: 1.5rem !important; }
}

/* ---------- Universal mobile safety net ---------- */
@media (max-width: 900px) {
  /* Prevent horizontal scroll from any oversized child */
  html, body { overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }
}

/* ---------- iOS form input zoom prevention ---------- */
@media (max-width: 760px) {
  input, select, textarea { font-size: 16px !important; }
}

/* ==========================================================
   HERO MOBILE FIXES — buttons stack cleanly, details readable
   ========================================================== */
@media (max-width: 700px) {
  /* Hero CTAs go full-width vertical on phones (no awkward wrap) */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .hero__ctas .btn {
    width: 100%;
    flex: none;
    justify-content: center;
  }

  /* Hero details — single column, clean spacing */
  .hero__details {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
  }
  .hero__detail strong { font-size: 1rem; }

  /* Slightly more padding above hero title so it doesn't crowd nav */
  .hero {
    padding-top: 6rem;
  }

  /* Hero title sizing: don't let it dominate phone screen */
  .hero__title { font-size: clamp(2.4rem, 11vw, 4rem); line-height: 1.05; }
}

@media (max-width: 480px) {
  /* iPhone SE / small phones — even tighter */
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero { padding-top: 5.5rem; padding-bottom: 4rem; }
}

/* =================================================================
   VOLUNTEER CTA BAND (events page) + CHECKBOX GRID (volunteer page)
   ================================================================= */

.event-volunteer-cta {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(10, 6, 6, 0.08);
}

.event-volunteer-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.event-volunteer-cta__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.event-volunteer-cta__title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--ember);
  text-transform: lowercase;
  letter-spacing: 0;
}

.event-volunteer-cta__text {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: rgba(10, 6, 6, 0.78);
  margin-bottom: 2rem;
}

/* Volunteer checkbox grid (2 columns on desktop, 1 on mobile) */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 0.75rem;
}

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

/* =================================================================
   EVENT CARD FLYER THUMBNAIL + LIGHTBOX
   ================================================================= */

.event-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid var(--bone-dim);
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  align-self: center;
}
.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), opacity 0.35s var(--ease);
}
.event-card__thumb:hover {
  border-color: var(--ember);
  box-shadow: 0 12px 28px -16px rgba(10, 6, 6, 0.5);
}
.event-card__thumb:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}
.event-card__thumb:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.event-card__thumb-hint {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.45rem 0.5rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(to top, rgba(10, 6, 6, 0.85), rgba(10, 6, 6, 0));
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.event-card__thumb:hover .event-card__thumb-hint,
.event-card__thumb:focus-visible .event-card__thumb-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile thumbnail sizing — handled by the consolidated .event-card 720px breakpoint above.
   Just constrain thumbnail width on small screens. */
@media (max-width: 720px) {
  .event-card__thumb {
    aspect-ratio: 4 / 5;
    max-width: 220px;
    margin: 0 auto;
  }
}

/* =================================================================
   FLYER LIGHTBOX
   ================================================================= */

.flyer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 6, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.flyer-lightbox[hidden] { display: none !important; }
.flyer-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.flyer-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}
.flyer-lightbox.is-open .flyer-lightbox__img {
  transform: scale(1);
}

.flyer-lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 239, 230, 0.3);
  background: rgba(10, 6, 6, 0.6);
  color: var(--bone);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.flyer-lightbox__close:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: scale(1.05);
}
.flyer-lightbox__close:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}

/* Body lock when lightbox open */
body.flyer-lightbox-open {
  overflow: hidden;
}

/* =================================================================
   ============================================================
   MOBILE EXCELLENCE PASS
   ============================================================
   Purpose: refine every page for phone screens without
   touching desktop layout. All rules below ≤768px only.
   Last cascade — overrides earlier mobile rules where needed.
   ================================================================= */

/* -------- iOS safe-area + smooth font rendering on touch -------- */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    body {
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }
    .nav {
      padding-top: env(safe-area-inset-top);
    }
  }
}

/* -------- TOUCH-FRIENDLY BASELINE: tap targets ≥44px on phones -------- */
@media (max-width: 768px) {

  /* Buttons — guarantee comfortable thumb size */
  .btn {
    min-height: 48px;
    padding: 0.95rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
  .btn--lg {
    min-height: 54px;
    padding: 1.1rem 1.8rem;
    font-size: 0.82rem;
  }

  /* Stack hero/row CTAs vertically with full width — easier to tap, no wrapping */
  .hero__ctas,
  .row__ctas,
  .event-featured__ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero__ctas .btn,
  .row__ctas .btn,
  .event-featured__ctas .btn {
    width: 100%;
    flex: none;
  }

  /* Form fields — iOS auto-zoom prevention (16px min) + bigger taps */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  input[type="search"],
  input[type="date"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
    min-height: 48px;
  }
  textarea {
    min-height: 120px;
  }

  /* Checkbox/radio: larger hit target via padded label */
  label.checkbox {
    padding: 0.5rem 0;
    min-height: 44px;
    align-items: flex-start;
  }
  label.checkbox input[type="checkbox"],
  label.checkbox input[type="radio"] {
    min-height: auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    flex-shrink: 0;
  }
}

/* -------- TYPE & READING COMFORT -------- */
@media (max-width: 640px) {
  /* Body line-length comfort across all text containers */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }

  /* Tighten paragraphs in dark/light rows for phone reading */
  .row__text,
  .row__sub,
  .salvation__text,
  .partner__text,
  .vision__text,
  .mission__text,
  .ministry-band__text,
  .declaration__text,
  .page-hero__subtitle,
  .event-featured__text,
  .event-volunteer-cta__text,
  .event-register__subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Eyebrow labels — slightly smaller on phone, but keep tracking */
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
}

/* -------- NAV: mobile menu polish -------- */
@media (max-width: 1024px) {
  /* Hamburger more visible, comfortable hit target */
  .nav__toggle {
    width: 48px;
    height: 48px;
    padding: 14px 12px;
  }
  .nav__toggle span {
    width: 22px;
  }

  /* Mobile menu — tighten + scroll lock-friendly */
  .nav__mobile {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__mobile a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__mobile-group {
    margin-bottom: 1.25rem;
  }
  .nav__mobile-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }
  .nav__mobile-cta,
  .nav__mobile-book {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem !important;
    min-height: 52px;
    text-align: center;
    justify-content: center;
  }
}

/* -------- HERO: phone refinement -------- */
@media (max-width: 640px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .hero__tagline {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 1.25rem 0 1.75rem;
  }
  .hero__details {
    margin: 1.75rem 0 2rem;
    padding-top: 1.25rem;
    gap: 1rem;
  }
  .hero__detail {
    text-align: left;
  }
  .hero__detail span {
    font-size: 0.65rem;
  }
  .hero__detail strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  /* iPhone SE / very narrow */
  .hero__title { font-size: clamp(2.2rem, 12.5vw, 3.4rem); }
  .hero { padding-top: 5.5rem; padding-bottom: 3rem; }
}

/* -------- ROW SECTIONS (homepage panels): phone breathing room -------- */
@media (max-width: 640px) {
  .row {
    padding: 4rem 0;
  }
  .row__title {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 1;
  }
  .row__grid {
    gap: 2rem;
  }
  .row__details li {
    padding: 0.85rem 0;
  }
  .row__details span {
    font-size: 0.7rem;
  }
  .row__details strong {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* -------- PAGE HERO (subpages): right-size titles -------- */
@media (max-width: 640px) {
  .page-hero {
    padding: 7rem 0 3rem;
  }
  .page-hero__title {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 1;
  }
  .page-hero__subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

/* -------- SALVATION SECTION ("I Said Yes") -------- */
@media (max-width: 640px) {
  .salvation {
    padding: 4rem 0;
  }
  .salvation__title {
    font-size: clamp(2rem, 8vw, 3.4rem);
  }
  .salvation__cta-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .salvation__cta-row .btn {
    width: 100%;
  }
}

/* -------- DECLARATION BAND (navy strip) -------- */
@media (max-width: 640px) {
  .declaration {
    padding: 3rem 0;
  }
  .declaration__title {
    font-size: clamp(1.9rem, 8.5vw, 3.2rem);
    line-height: 1.05;
  }
}

/* -------- STATS STRIP -------- */
@media (max-width: 640px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    padding: 1.75rem 1rem;
  }
  .stats__num {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .stats__label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .stats__verse {
    font-size: 0.95rem;
    padding: 1rem 1rem;
    line-height: 1.5;
  }
}

/* -------- PHOTO STRIP (homepage) -------- */
@media (max-width: 640px) {
  .strip__img {
    width: 78vw;
    min-width: 220px;
    height: 38vh;
    min-height: 240px;
  }
}

/* -------- GALLERY -------- */
@media (max-width: 640px) {
  .gallery {
    padding: 4rem 0;
  }
  .gallery__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }
}

/* -------- NEWSLETTER -------- */
@media (max-width: 640px) {
  .newsletter {
    padding: 4rem 0;
  }
  .newsletter__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }
  .newsletter__text {
    font-size: 1rem;
  }
  .newsletter__form input {
    min-height: 52px;
    padding: 0.9rem 1.1rem;
  }
  .newsletter__form .btn {
    min-height: 52px;
  }
}

/* -------- EVENTS PAGE: featured event polish -------- */
@media (max-width: 640px) {
  .event-featured {
    padding: 4rem 0;
  }
  .event-featured__title {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    line-height: 1;
  }
  .event-featured__text {
    font-size: 1rem;
  }
  .event-featured__details li {
    padding: 0.85rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .event-featured__details strong {
    text-align: left;
    font-size: 0.95rem;
  }
  .event-featured__media {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* -------- EVENT CARDS: tighten spacing on phone -------- */
@media (max-width: 640px) {
  .event-card {
    padding: 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  .event-card__day {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .event-card__month {
    font-size: 0.72rem;
  }
  .event-card__title {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .event-card__detail {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .event-card__cta-row {
    margin-top: 0.85rem;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
  }
  .event-card__cta {
    font-size: 0.82rem;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* -------- EVENT REGISTRATION FORM -------- */
@media (max-width: 640px) {
  .event-register {
    padding: 4rem 0;
  }
  .event-register__title {
    font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  }
  .event-form__grid {
    gap: 1.25rem;
    grid-template-columns: 1fr !important;
  }
  .event-form .field--full,
  .event-form .field {
    grid-column: span 1 !important;
  }
  .event-form .field__label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
  }
  /* Volunteer checkbox grid: single column on phone */
  .checkbox-grid {
    grid-template-columns: 1fr !important;
    gap: 0.25rem 0;
  }
}

/* -------- VOLUNTEER CTA BAND -------- */
@media (max-width: 640px) {
  .event-volunteer-cta {
    padding: 4rem 0;
  }
  .event-volunteer-cta__title {
    font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  }
  .event-volunteer-cta__text {
    font-size: 1rem;
  }
  .event-volunteer-cta__inner .btn {
    width: 100%;
    max-width: 360px;
  }
}

/* -------- BOOKING / PRAYER / SALVATION FORMS -------- */
@media (max-width: 640px) {
  .book__grid {
    gap: 2rem;
  }
  .book__right {
    padding: 1.5rem 1.25rem;
  }
  .book__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }
  /* Generic field grids (booking, prayer) */
  .form-grid,
  .booking__grid,
  .prayer__grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* -------- SALVATION MODAL ("I Said Yes") -------- */
@media (max-width: 640px) {
  .modal__inner {
    padding: 1.75rem 1.25rem;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
}

/* -------- DEVOTIONALS index + reading view -------- */
@media (max-width: 640px) {
  .devotional {
    padding: 4rem 0;
  }
  .devotional__title,
  .devotionals__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
    line-height: 1.05;
  }
  .devotional__body p,
  .devotional__body li {
    font-size: 1.02rem;
    line-height: 1.7;
  }
  .devotional__body h2,
  .devotional__body h3 {
    margin-top: 2rem;
  }
  /* Devotional cards on index */
  .devotionals__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .devotionals__card {
    padding: 1.5rem 1.25rem;
  }
}

/* -------- BELIEFS / VALUES / STORY pages -------- */
@media (max-width: 640px) {
  .beliefs__list,
  .values__grid {
    grid-template-columns: 1fr !important;
  }
  .beliefs__item,
  .values__card {
    padding: 1.5rem 1.25rem;
  }
  .beliefs__title,
  .values__title,
  .our-story__title,
  .story-row__title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  /* our-story rows alternating image/body — already stack via .row, polish here */
  .story-row {
    padding: 3rem 0;
  }
  .story-row__title {
    margin-bottom: 1rem;
  }
  .story-row__text {
    font-size: 1rem;
  }
}

/* -------- BROADCAST page -------- */
@media (max-width: 640px) {
  .broadcast {
    padding: 4rem 0;
  }
  .broadcast__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }
  .broadcast__embed {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
}

/* -------- GIVE page -------- */
@media (max-width: 640px) {
  .give {
    padding: 4rem 0;
  }
  .give__title {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }
  .give__methods,
  .give__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .give__method {
    padding: 1.5rem 1.25rem;
  }
  .partner__title {
    font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  }
}

/* -------- TESTIMONIES -------- */
@media (max-width: 640px) {
  .testimonies {
    padding: 4rem 0;
  }
  .testimonies__title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }
  .testimony {
    padding: 1.5rem 1.25rem;
  }
}

/* -------- FOOTER: phone-friendly stacking -------- */
@media (max-width: 640px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer__inner {
    gap: 2rem;
  }
  .footer__col h4 {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
  }
  .footer__col a {
    padding: 0.55rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer__brand p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .footer__base {
    font-size: 0.78rem;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }
  .footer__motto {
    font-size: 0.75rem;
  }
}

/* -------- FLYER LIGHTBOX: full-screen on phone, easier close -------- */
@media (max-width: 640px) {
  .flyer-lightbox {
    padding: 1rem;
  }
  .flyer-lightbox__close {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    top: max(0.75rem, env(safe-area-inset-top, 0.75rem));
    right: max(0.75rem, env(safe-area-inset-right, 0.75rem));
  }
}

/* -------- HORIZONTAL OVERFLOW PROTECTION -------- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .container,
  main,
  section,
  footer {
    max-width: 100%;
  }
  /* Catch any rogue images that overflow */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
}

/* -------- SECTION RHYTHM: tighten transitions on phone -------- */
@media (max-width: 640px) {
  /* Rule of thumb: 4rem padding everywhere on phone instead of 6-8rem on desktop */
  .row,
  .salvation,
  .gallery,
  .newsletter,
  .partner,
  .vision,
  .mission,
  .testimonies,
  .book,
  .declaration,
  .stats {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* -------- TAP HIGHLIGHT (subtle, on-brand) -------- */
@media (max-width: 768px) {
  a, button, .btn, label.checkbox, .event-card__thumb {
    -webkit-tap-highlight-color: rgba(201, 56, 56, 0.18);
  }
}

/* -------- LANDSCAPE PHONE: keep hero compact -------- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero__details {
    flex-direction: row;
    gap: 1.5rem;
  }
  .nav__mobile {
    padding-top: 4rem;
  }
}

/* -------- END MOBILE EXCELLENCE PASS ============================ */

/* -------- HERO VIDEO CROP: favor the right (preaching) half on phones -------- */
@media (max-width: 640px) {
  .hero__bg-video,
  .hero__bg-img {
    object-position: 70% 50%;
  }
}

/* =================================================================
   EVENT CARD — NO FLYER VARIANT
   For events without flyer artwork yet (date | body, no thumb column)
   ================================================================= */
.event-card--no-flyer {
  grid-template-columns: 90px 1fr;
}

@media (max-width: 720px) {
  .event-card--no-flyer {
    grid-template-columns: 1fr;
  }
}
