:root {
  color-scheme: dark;
  --navy: #0D1321;
  --ink: #111111;
  --night: #05070B;
  --gold: #D4A24C;
  --amber: #F0C36A;
  --white: #FFFFFF;
  --gray: #D1D5DB;
  --muted: #9CA3AF;
  --line: rgba(255, 255, 255, .12);
  --glass: rgba(255, 255, 255, .07);
  --glass-strong: rgba(255, 255, 255, .11);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --soft-shadow: 0 16px 42px rgba(0, 0, 0, .26);
  --radius: 8px;
  --max: 1180px;
  --heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ethiopic: "Noto Sans Ethiopic", "Abyssinica SIL", "Nyala", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(212, 162, 76, .12), transparent 32rem),
    linear-gradient(180deg, var(--night), var(--navy) 42%, var(--ink));
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(240, 195, 106, .35);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section.compact {
  padding: 72px 0;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--amber);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 4.35rem;
  max-width: 980px;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.lead {
  font-size: 1.16rem;
  max-width: 760px;
}

.am {
  display: block;
  margin-top: .35rem;
  font-family: var(--ethiopic);
  color: rgba(255, 255, 255, .82);
  line-height: 1.72;
}

.heading-pair .am {
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 560;
}

.gold {
  color: var(--amber);
}

.text-gold {
  color: var(--amber);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(13, 19, 33, .88);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(100% - 32px, 1320px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(240, 195, 106, .24));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: var(--heading);
  font-size: .92rem;
  font-weight: 780;
  line-height: 1.15;
}

.brand-location {
  color: var(--amber);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .78);
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.12;
  transition: color .25s ease;
}

.nav-link span {
  display: grid;
  gap: 3px;
}

.nav-link .am {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: .67rem;
  line-height: 1.2;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--amber), transparent);
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid rgba(240, 195, 106, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.button {
  padding: .78rem 1.08rem;
  font-size: .87rem;
}

.button .am {
  margin: .18rem 0 0;
  font-size: .72rem;
  line-height: 1.1;
  color: rgba(255, 255, 255, .72);
}

.button.primary {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #171108;
  border-color: rgba(240, 195, 106, .9);
  box-shadow: 0 16px 46px rgba(212, 162, 76, .25);
}

.button.primary .am {
  color: rgba(17, 17, 17, .74);
}

.button.ghost {
  background: rgba(13, 19, 33, .42);
  backdrop-filter: blur(14px);
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 195, 106, .92);
  box-shadow: 0 0 28px rgba(240, 195, 106, .16);
}

.icon-button {
  width: 46px;
  padding: 0;
}

.mobile-toggle {
  display: none;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 0;
  opacity: .88;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
  object-position: center center;
}

.hero-fallback {
  z-index: 0;
  opacity: .82;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 34%, rgba(240, 195, 106, .1), transparent 24rem),
    linear-gradient(90deg, rgba(5, 7, 11, .72), rgba(5, 7, 11, .24) 52%, rgba(5, 7, 11, .56)),
    linear-gradient(180deg, rgba(5, 7, 11, .22), rgba(5, 7, 11, .28) 60%, rgba(5, 7, 11, .82));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, .38));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1180px);
  margin: 88px auto 0;
  padding: 70px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--amber);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.hero h1 .am {
  color: rgba(240, 195, 106, .92);
  font-size: 1.9rem;
  font-weight: 560;
  line-height: 1.42;
}

.hero h1,
.hero .lead,
.hero-kicker {
  text-shadow: 0 2px 22px rgba(0, 0, 0, .58);
}

.hero .lead {
  margin-top: 22px;
  font-size: 1.24rem;
  max-width: 770px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(820px, 100%);
  margin-top: 56px;
}

.meta-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

.meta-card strong {
  display: block;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1.15;
}

.meta-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  line-height: 1.4;
}

.particle-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle-field i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(240, 195, 106, .85);
  animation: floatParticle 8s linear infinite;
  opacity: .45;
}

.particle-field i:nth-child(1) { left: 10%; top: 70%; animation-delay: -1s; }
.particle-field i:nth-child(2) { left: 23%; top: 54%; animation-delay: -3s; }
.particle-field i:nth-child(3) { left: 46%; top: 74%; animation-delay: -5s; }
.particle-field i:nth-child(4) { left: 63%; top: 50%; animation-delay: -2s; }
.particle-field i:nth-child(5) { left: 78%; top: 64%; animation-delay: -6s; }
.particle-field i:nth-child(6) { left: 88%; top: 42%; animation-delay: -4s; }
.particle-field i:nth-child(7) { left: 35%; top: 37%; animation-delay: -7s; }
.particle-field i:nth-child(8) { left: 56%; top: 31%; animation-delay: -2.4s; }

@keyframes floatParticle {
  0% {
    transform: translate3d(0, 80px, 0) scale(.8);
    opacity: 0;
  }
  15% {
    opacity: .5;
  }
  100% {
    transform: translate3d(28px, -160px, 0) scale(1.45);
    opacity: 0;
  }
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 76px;
  background:
    radial-gradient(circle at 72% 22%, rgba(240, 195, 106, .18), transparent 28rem),
    linear-gradient(135deg, #05070B, #0D1321 58%, #111111);
}

.page-hero::before {
  background:
    radial-gradient(circle at 65% 20%, rgba(240, 195, 106, .13), transparent 24rem),
    linear-gradient(180deg, rgba(5, 7, 11, .08), rgba(5, 7, 11, .62));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 .am {
  color: var(--amber);
  font-size: 1.75rem;
  font-weight: 560;
}

.page-hero p {
  margin-top: 20px;
  max-width: 760px;
  font-size: 1.12rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.image-panel {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .05);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s ease;
}

.image-panel:hover img {
  transform: scale(1.08);
}

.image-panel.large {
  inset: 0 12% 14% 0;
}

.image-panel.small {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 44%;
}

.image-panel.tall {
  inset: 0 0 0 22%;
}

.image-panel.float {
  left: 0;
  bottom: 10%;
  width: 48%;
  height: 38%;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.info-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--amber);
  margin-top: 3px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(13, 19, 33, .7);
  box-shadow: var(--soft-shadow);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 18% 0, rgba(240, 195, 106, .18), transparent 22rem);
  pointer-events: none;
}

.card > * {
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 195, 106, .35);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06)),
    rgba(13, 19, 33, .84);
}

.card .icon-chip,
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(240, 195, 106, .12);
  border: 1px solid rgba(240, 195, 106, .25);
  color: var(--amber);
}

.card .icon-chip svg,
.icon-chip svg {
  width: 21px;
  height: 21px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p + p {
  margin-top: 14px;
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-time {
  color: var(--amber);
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 780;
  line-height: 1.05;
}

.service-time .am {
  color: rgba(240, 195, 106, .78);
  font-size: 1.02rem;
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)),
    rgba(255, 255, 255, .02);
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(240, 195, 106, .12), transparent 24rem),
    radial-gradient(circle at 84% 52%, rgba(240, 195, 106, .08), transparent 26rem);
  pointer-events: none;
}

.band > * {
  position: relative;
}

.scripture-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 48px 0;
  color: var(--amber);
  font-family: var(--heading);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scripture-divider::before,
.scripture-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 195, 106, .58), transparent);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  min-height: 250px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  font-weight: 700;
}

.slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .04);
}

.slideshow {
  display: flex;
  width: max-content;
  animation: slideLoop 34s linear infinite;
}

.slideshow:hover {
  animation-play-state: paused;
}

.slide {
  width: 360px;
  height: 250px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, .58));
}

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

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  min-height: 72px;
  border: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  text-align: left;
}

.accordion-trigger strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.1rem;
}

.accordion-trigger .am {
  margin-top: 2px;
  color: rgba(240, 195, 106, .78);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 195, 106, .28);
  color: var(--amber);
  transition: transform .25s ease;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  padding: 0 22px 22px;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.sermon-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 28px;
  align-items: stretch;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sermon-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sermon-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  transition: transform .28s ease, border-color .28s ease;
}

.sermon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 195, 106, .36);
}

.sermon-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
  opacity: .9;
  transition: transform .5s ease;
}

.sermon-card:hover img {
  transform: scale(1.06);
}

.sermon-card-content {
  padding: 14px;
}

.play-badge {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 7, 11, .72);
  border: 1px solid rgba(240, 195, 106, .38);
  color: var(--amber);
  backdrop-filter: blur(12px);
}

.event-card {
  min-height: 280px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.event-date {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(240, 195, 106, .12);
  border: 1px solid rgba(240, 195, 106, .3);
  color: var(--amber);
  font-family: var(--heading);
  font-weight: 820;
  line-height: 1;
}

.event-date span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  margin-top: 4px;
}

.youth-hero {
  background:
    radial-gradient(circle at 74% 18%, rgba(240, 195, 106, .2), transparent 24rem),
    radial-gradient(circle at 24% 50%, rgba(94, 119, 255, .16), transparent 22rem),
    linear-gradient(135deg, #05070B, #0D1321 46%, #241f35);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--soft-shadow);
}

.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .78));
}

.reel-content {
  position: absolute;
  z-index: 2;
  inset: auto 16px 16px;
}

.masonry {
  columns: 3 280px;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.gallery-caption {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(5, 7, 11, .68);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .75));
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  border-color: rgba(240, 195, 106, .5);
  color: var(--white);
  background: rgba(240, 195, 106, .1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(20px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  font-size: .9rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(240, 195, 106, .72);
  box-shadow: 0 0 0 4px rgba(240, 195, 106, .12);
}

.form-note {
  margin-top: 16px;
  color: var(--amber);
  font-weight: 800;
  min-height: 28px;
}

.map-frame {
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .04);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(.25) invert(.88) contrast(.9);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.social-tile {
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  transition: transform .25s ease, border-color .25s ease;
}

.social-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 195, 106, .4);
}

.site-footer {
  position: relative;
  padding: 64px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0, rgba(240, 195, 106, .12), transparent 24rem),
    #05070B;
  border-top: 1px solid rgba(240, 195, 106, .16);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 195, 106, .7), transparent);
  box-shadow: 0 0 28px rgba(240, 195, 106, .32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .9fr;
  gap: 36px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .54);
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: #05070B;
  transition: opacity .45s ease, visibility .45s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(240, 195, 106, .26);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 48px rgba(240, 195, 106, .18);
}

.loader-mark img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1320px) {
  .site-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header.menu-active .site-nav,
  .site-header.menu-active .nav-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: grid;
    background: rgba(13, 19, 33, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
  }

  .site-header.menu-active .site-nav {
    top: 92px;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .site-header.menu-active .nav-actions {
    top: 423px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-video {
    object-fit: contain;
    object-position: center 30%;
    opacity: .96;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero h1 .am,
  .page-hero h1 .am {
    font-size: 1.42rem;
  }

  .section {
    padding: 84px 0;
  }

  .split,
  .split.reverse,
  .sermon-hero {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual-stack {
    order: 2;
  }

  .hero-meta,
  .cards-grid,
  .cards-grid.two,
  .cards-grid.four,
  .mission-grid,
  .reel-grid,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sermon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-stack {
    min-height: 430px;
  }

  .section-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    width: min(100% - 24px, 1320px);
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: .8rem;
  }

  .brand-location {
    font-size: .66rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .lead,
  .hero .lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    margin-top: 74px;
    padding: 54px 0;
  }

  .hero-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .cards-grid,
  .cards-grid.two,
  .cards-grid.four,
  .mission-grid,
  .sermon-list,
  .reel-grid,
  .social-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-header.menu-active .site-nav,
  .site-header.menu-active .nav-actions {
    grid-template-columns: 1fr;
  }

  .site-header.menu-active .nav-actions {
    top: 626px;
  }

  .page-hero {
    min-height: 54vh;
    padding: 126px 0 56px;
  }

  .section {
    padding: 68px 0;
  }

  .section.compact {
    padding: 56px 0;
  }

  .visual-stack {
    min-height: 350px;
  }

  .image-panel.large,
  .image-panel.tall {
    inset: 0;
  }

  .image-panel.small,
  .image-panel.float {
    display: none;
  }

  .slide {
    width: 260px;
    height: 210px;
  }

  .card {
    min-height: auto;
    padding: 20px;
  }

  .masonry {
    columns: 1;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
