:root {
  --ivory: #f9f9ff;
  --glory: #113a63;
  --night: #0a243e;
  --gold: #d4af37;
  --gold-light: #e9c349;
  --slate: #43474e;
  --ink: #111c2d;
  --surface-dim: #d8e3fb;
  --surface-soft: #eef3ff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, .06), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(216, 227, 251, .65), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 42%, #f5f7ff 100%);
  overflow-x: hidden;
}

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

iframe {
  display: block;
  height: 220px;
  width: 100%;
}

.site-logo {
  object-fit: contain;
  object-position: center;
}

.site-loader {
  align-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 200, 116, .18), transparent 22rem),
    linear-gradient(135deg, #061b2d, var(--night) 52%, #041625);
  color: white;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.5rem;
  position: fixed;
  transition: opacity .55s ease, visibility .55s ease;
  z-index: 9999;
}

.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-loader__panel {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 360px;
  text-align: center;
}

.site-loader__logo {
  animation: loaderFloat 1.8s ease-in-out infinite;
  background: white;
  border: 1px solid rgba(232, 200, 116, .58);
  border-radius: 999px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34), 0 0 0 10px rgba(255, 255, 255, .05);
  height: 96px;
  object-fit: contain;
  padding: .45rem;
  width: 96px;
}

.site-loader__kicker {
  color: white;
  font-family: Marcellus, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-top: 1.4rem;
}

.site-loader__title {
  color: var(--gold-light);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-top: .45rem;
  text-transform: uppercase;
}

.site-loader__bar {
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  height: 4px;
  margin-top: 1.4rem;
  overflow: hidden;
  width: min(220px, 70vw);
}

.site-loader__bar span {
  animation: loaderBar 1.25s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  display: block;
  height: 100%;
  transform: translateX(-100%);
  width: 70%;
}

.site-loader__text {
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.7;
  margin-top: 1rem;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderBar {
  to {
    transform: translateX(145%);
  }
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(232, 200, 116, .9);
  outline-offset: 3px;
}

.font800 {
  font-weight: 800;
}

.site-header {
  background: #F7F5F0;
  border-bottom: 1px solid rgba(7, 26, 46, .1);
  position: relative;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(7, 26, 46, .12);
}

.site-header__nav {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  min-height: 96px;
}

.site-header__brand,
.site-header__actions {
  flex: 0 0 auto;
}

.site-header__menu {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 2.35rem;
  justify-content: center;
  min-width: 0;
  white-space: nowrap;
}

.brand-lockup {
  align-items: center;
  display: flex;
}

.brand-lockup img {
  display: block;
}

.site-header__logo {
  flex: 0 0 auto;
}

.brand-lockup > span:last-child {
  line-height: 1;
}

.brand-title {
  color: #071A2E;
}

.brand-subtitle {
  color: #CBA454;
}

.brand-lockup__badge {
  align-items: center;
  background: linear-gradient(180deg, #f2c612, #d4af37);
  border-radius: .8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-lockup__icon {
  display: block;
  height: 26px;
  width: 26px;
}

.nav-link {
  border-bottom: 2px solid transparent;
  color: #071A2E;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding-block: .9rem;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: #082D5C;
  color: #082D5C;
}

.nav-link.active {
  border-color: #CBA454;
  color: #CBA454;
}

.site-header__cta {
  border-radius: .35rem;
  box-shadow: 0 12px 24px rgba(203, 164, 84, .22);
  min-height: 48px;
  padding-inline: 1.5rem;
  white-space: nowrap;
}

.site-header__toggle {
  border-color: rgba(7, 26, 46, .15);
  color: #071A2E;
}

.site-header .btn-gold,
#menu-mobile .btn-gold {
  background: #CBA454;
  color: #F7F5F0;
}

.site-header .btn-gold:hover,
#menu-mobile .btn-gold:hover {
  background: #082D5C;
  color: #F7F5F0;
}

#menu-mobile {
  background: #F7F5F0;
  border-color: rgba(7, 26, 46, .1);
  color: #071A2E;
}

.mobile-link {
  border-radius: .5rem;
  min-height: 44px;
  padding: .75rem;
}

.mobile-link:hover {
  background: rgba(7, 26, 46, .08);
  color: #082D5C;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: relative;
  width: 22px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.btn {
  align-items: center;
  border-radius: .45rem;
  display: inline-flex;
  font-weight: 800;
  gap: .65rem;
  min-height: 44px;
  padding: .8rem 1rem;
  position: relative;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
  box-shadow: 0 14px 32px rgba(10, 34, 56, .16);
  transform: translateY(-1px);
}

.icon-sm {
  flex: 0 0 auto;
  height: 1.15rem;
  width: 1.15rem;
}

.btn-gold {
  background: linear-gradient(135deg, #e7c36f 0%, var(--gold) 42%, #b9811f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 12px 26px rgba(180, 129, 31, .24);
  color: white;
}

.btn-blue {
  background: linear-gradient(135deg, var(--glory), var(--night));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 26px rgba(10, 34, 56, .18);
  color: white;
}

.btn-outline-light {
  border: 1px solid rgba(232, 200, 116, .8);
  color: white;
}

.btn-outline-blue {
  border: 1px solid var(--glory);
  color: var(--glory);
}

.btn-outline-blue:hover {
  background: var(--glory);
  color: white;
}

.hero {
  min-height: 560px;
}

.hero-slider,
.hero-slide,
.hero-slide img {
  inset: 0;
  position: absolute;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 46, .96) 0%, rgba(7, 26, 46, .9) 28%, rgba(7, 26, 46, .48) 62%, rgba(7, 26, 46, .18) 100%),
    linear-gradient(0deg, rgba(7, 26, 46, .42), rgba(7, 26, 46, .04)),
    radial-gradient(circle at 72% 18%, rgba(203, 164, 84, .24), transparent 22rem);
}

.slider-arrow {
  align-items: center;
  background: rgba(247, 245, 240, .95);
  border: 1px solid rgba(7, 26, 46, .16);
  border-radius: 999px;
  color: #071A2E;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  z-index: 25;
}

.slider-arrow:hover {
  background: #082D5C;
  color: #F7F5F0;
}

.slider-dot {
  background: rgba(255, 255, 255, .75);
  border-radius: 999px;
  height: 11px;
  transition: width .2s ease, background-color .2s ease;
  width: 11px;
}

.slider-dot[aria-current="true"] {
  background: #CBA454;
  width: 24px;
}

.shortcut {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f6f8ff);
  border-right: 1px solid rgba(17, 58, 99, .11);
  color: var(--night);
  display: flex;
  gap: 1rem;
  min-height: 108px;
  padding: 1.35rem 1.2rem;
  position: relative;
  transition: background-color .2s ease, transform .2s ease;
}

.shortcut:hover {
  background: linear-gradient(180deg, #ffffff, #edf3ff);
  transform: translateY(-2px);
}

.shortcut strong,
.shortcut small {
  display: block;
}

.shortcut small {
  color: var(--slate);
  font-size: .78rem;
  margin-top: .25rem;
}

.shortcut-icon {
  align-items: center;
  background: rgba(17, 58, 99, .04);
  border: 1px solid rgba(17, 58, 99, .18);
  border-radius: 999px;
  color: var(--glory);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.6rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.shortcut-icon svg {
  height: 30px;
  width: 30px;
}

.shortcut-icon.whatsapp {
  background: rgba(36, 196, 90, .08);
  border-color: #24c45a;
  color: #24c45a;
}

.panel,
.info-card {
  border: 1px solid rgba(17, 58, 99, .08);
  border-radius: .8rem;
  box-shadow: 0 18px 54px rgba(10, 34, 56, .09);
  padding: 1.65rem;
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .995), rgba(250, 251, 255, .98)),
    radial-gradient(circle at 100% 0%, rgba(216, 227, 251, .45), transparent 16rem);
  position: relative;
}

.panel::before {
  background: linear-gradient(90deg, var(--gold), rgba(212, 166, 58, 0));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 0;
}

.section-title-row {
  align-items: center;
  display: flex;
  gap: .75rem;
}

.section-title-row h2 {
  color: var(--night);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: .03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gold-icon {
  color: var(--gold);
  flex: 0 0 auto;
  height: 1.7rem;
  width: 1.7rem;
}

.program {
  align-items: start;
  border-bottom: 1px solid rgba(17, 58, 99, .1);
  display: grid;
  gap: .35rem .9rem;
  grid-template-columns: 94px minmax(0, 1fr);
  padding-bottom: 1.05rem;
}

.program span {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f4f6ff);
  border: 1px solid rgba(212, 166, 58, .72);
  border-radius: .5rem;
  color: var(--night);
  display: flex;
  font-size: .72rem;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  overflow-wrap: normal;
  padding: .45rem .35rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.program strong,
.program time {
  color: var(--night);
  font-size: .92rem;
}

.program strong {
  line-height: 1.45;
  padding-top: .1rem;
}

.program time {
  color: var(--gold);
  font-family: Marcellus, Georgia, serif;
  font-size: .98rem;
  grid-column: 2;
  line-height: 1.25;
}

.info-card .schedule-row:last-child,
.sermon-item:last-child,
.program:last-child,
.info-card .schedule-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sermon-item {
  align-items: center;
  border-bottom: 1px solid rgba(17, 58, 99, .1);
  display: grid;
  gap: 1rem;
  grid-template-columns: 112px 1fr 46px;
  padding-bottom: 1rem;
}

.sermon-thumb {
  aspect-ratio: 16 / 10;
  border-radius: .55rem;
  object-fit: cover;
  width: 100%;
}

.play-button {
  align-items: center;
  background: white;
  border: 1px solid rgba(17, 58, 99, .48);
  border-radius: 999px;
  color: var(--glory);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.play-button:hover {
  background: var(--glory);
  color: white;
}

.about-panel {
  display: grid;
  gap: 1.35rem;
  overflow: hidden;
}

.about-photo {
  border-radius: .85rem;
  box-shadow: 0 18px 44px rgba(10, 34, 56, .16);
  margin: 0;
  min-height: 190px;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  background: linear-gradient(0deg, rgba(10, 34, 56, .28), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.about-feature {
  background:
    radial-gradient(circle at 40% 34%, rgba(203, 164, 84, .12), transparent 19rem),
    radial-gradient(circle at 76% 12%, rgba(216, 227, 251, .52), transparent 18rem),
    linear-gradient(180deg, #ffffff, var(--ivory));
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.about-feature__inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.45fr);
}

.about-feature__copy {
  max-width: 520px;
}

.about-feature__copy h2 {
  color: var(--night);
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  line-height: 1.08;
  margin-top: 1rem;
}

.about-feature__copy p:not(.kicker) {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-top: 1rem;
}

.about-feature__media {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, .75fr);
  min-height: 380px;
  position: relative;
}

.about-feature__media::before {
  background-image: radial-gradient(rgba(203, 164, 84, .75) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  content: "";
  height: 120px;
  left: -42px;
  opacity: .52;
  position: absolute;
  top: 42%;
  width: 120px;
}

.about-feature__media::after {
  background: rgba(203, 164, 84, .22);
  border-radius: 999px;
  bottom: 2rem;
  content: "";
  height: 3.6rem;
  left: -3.1rem;
  position: absolute;
  width: 3.6rem;
}

.about-feature__media figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-feature__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-feature__prayer-photo {
  object-position: 70% 54%;
}

.about-feature__main {
  border: 2px solid rgba(203, 164, 84, .52);
  border-radius: 999px 999px 1.2rem 1.2rem;
  box-shadow: 0 26px 70px rgba(7, 26, 46, .14);
  min-height: 380px;
}

.about-feature__stack {
  display: grid;
  gap: 1rem;
}

.about-feature__stack figure {
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(7, 26, 46, .13);
  min-height: 180px;
}

.play-button svg {
  height: 18px;
  margin-left: 2px;
  width: 18px;
}

.sermon-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem;
}

.sermon-links a {
  border: 1px solid rgba(17, 58, 99, .18);
  border-radius: 999px;
  color: var(--glory);
  font-size: .72rem;
  font-weight: 800;
  padding: .25rem .55rem;
}

.identity-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 44%, var(--surface-soft) 44%, var(--surface-soft) 100%);
  padding: 4.5rem 0;
}

.identity-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}

.identity-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
    radial-gradient(circle at 100% 0, rgba(216, 227, 251, .6), transparent 15rem);
  border: 1px solid rgba(17, 58, 99, .12);
  border-radius: .8rem;
  box-shadow: 0 22px 60px rgba(10, 34, 56, .08);
  min-height: 300px;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
  position: relative;
}

.identity-card--accent::after {
  background: linear-gradient(135deg, rgba(232, 200, 116, .42), rgba(255, 255, 255, .16));
  border-bottom-left-radius: 1.1rem;
  content: "";
  height: 6rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 6rem;
}

.identity-icon,
.value-icon {
  align-items: center;
  background: rgba(216, 227, 251, .75);
  border-radius: .65rem;
  color: var(--glory);
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.identity-card--accent .identity-icon {
  color: var(--gold);
}

.identity-icon svg,
.value-icon svg {
  height: 1.35rem;
  width: 1.35rem;
}

.identity-card .kicker {
  margin-top: 1.5rem;
}

.identity-card h2 {
  color: var(--night);
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.12;
  margin-top: .7rem;
  max-width: 760px;
}

.identity-card p:not(.kicker) {
  color: var(--slate);
  font-size: 1.03rem;
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 680px;
}

.mission-list {
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
}

.mission-list li {
  align-items: center;
  background: rgba(249, 249, 255, .9);
  border: 1px solid rgba(17, 58, 99, .1);
  border-radius: .7rem;
  color: var(--night);
  display: flex;
  font-weight: 800;
  gap: .65rem;
  min-height: 3.2rem;
  padding: .85rem 1rem;
}

.mission-list li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: .48rem;
  width: .48rem;
}

.values-block {
  background:
    radial-gradient(circle at 50% 0%, rgba(203, 164, 84, .16), transparent 22rem),
    linear-gradient(135deg, #071A2E 0%, #082D5C 48%, #071A2E 100%);
  border-top: 1px solid rgba(203, 164, 84, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #F7F5F0;
  margin: 4.5rem calc(50% - 50vw) 0;
  overflow: hidden;
  padding: 3.2rem max(1rem, calc((100vw - 80rem) / 2)) 3rem;
}

.values-heading {
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
}

.values-heading h2 {
  color: #F7F5F0;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1.05;
  margin-top: .75rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .2);
}

.values-heading p:last-child {
  color: rgba(247, 245, 240, .82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.values-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.6rem;
}

.value-card {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(203, 164, 84, .38);
  box-shadow: none;
  min-height: 155px;
  padding: 1.35rem 1.6rem;
  text-align: center;
  transition: transform .2s ease, color .2s ease;
}

.value-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  background: transparent;
  color: #CBA454;
  height: 3.3rem;
  justify-content: center;
  margin-inline: auto;
  width: 3.3rem;
}

.value-icon svg {
  height: 100%;
  width: 100%;
}

.value-card h3 {
  color: #F7F5F0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 1.1rem;
  text-transform: uppercase;
}

.value-card p {
  color: rgba(247, 245, 240, .78);
  font-size: .95rem;
  line-height: 1.72;
  margin-top: .7rem;
}

.about-side-photo {
  margin: 0 0 1.4rem;
}

.about-side-photo img {
  aspect-ratio: 16 / 10;
  border-radius: .8rem;
  display: block;
  object-fit: cover;
  width: 100%;
}

.pastor-message {
  align-items: center;
  display: grid;
  gap: 2.2rem;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.pastor-message__media {
  margin: 0;
}

.pastor-message__frame {
  background: linear-gradient(180deg, #e7eeff, var(--surface-dim));
  border-radius: 1rem;
  box-shadow: 0 26px 65px rgba(10, 34, 56, .08);
  padding: 1rem;
}

.pastor-message__frame img {
  aspect-ratio: 3 / 4.6;
  border-radius: .7rem;
  display: block;
  object-fit: cover;
  width: 100%;
}

.pastor-message__content {
  max-width: 40rem;
}

.pastor-message__title {
  color: var(--night);
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: .98;
  margin-top: 1rem;
}

.pastor-message__content p:not(.kicker) {
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.95;
  margin-top: 1.5rem;
}

.pastor-message__signature {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}

.pastor-message__signature img {
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 10px 24px rgba(10, 34, 56, .12);
  height: 64px;
  object-fit: contain;
  padding: .35rem;
  width: 64px;
}

.pastor-message__signature strong {
  color: var(--night);
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.pastor-message__signature span {
  color: var(--slate);
  display: block;
  margin-top: .2rem;
}

.ministry-card {
  background: white;
  border: 1px solid rgba(17, 58, 99, .1);
  border-radius: .8rem;
  box-shadow: 0 18px 52px rgba(10, 34, 56, .09);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 180px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ministry-card:hover {
  box-shadow: 0 28px 74px rgba(10, 34, 56, .16);
  transform: translateY(-4px);
}

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

.ministry-card div {
  padding: 1.4rem;
}

.ministry-card h3 {
  color: var(--night);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.45rem;
  margin-top: .75rem;
}

.ministry-card p {
  color: var(--slate);
  line-height: 1.7;
  margin-top: .35rem;
}

.round-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--glory), var(--night));
  box-shadow: 0 12px 26px rgba(10, 34, 56, .18);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 1.4rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.round-icon svg {
  height: 30px;
  width: 30px;
}

.gallery-empty {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(244, 247, 255, .96)),
    radial-gradient(circle at 100% 0, rgba(216, 227, 251, .52), transparent 18rem);
  border: 1px dashed rgba(17, 58, 99, .22);
  border-radius: 1rem;
  color: var(--slate);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 180px;
  padding: 2rem;
}

.gallery-empty svg {
  color: var(--gold);
  height: 42px;
  width: 42px;
}

.gallery-empty p {
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 58, 99, .1);
  border-radius: .9rem;
  box-shadow: 0 18px 40px rgba(10, 34, 56, .06);
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.gallery-card figcaption {
  padding: .95rem 1rem 1.05rem;
}

.gallery-card strong {
  color: var(--night);
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.gallery-card p {
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.65;
  margin-top: .35rem;
}

.info-title {
  align-items: center;
  display: flex;
  font-family: Marcellus, Georgia, serif;
  font-size: 1.5rem;
  gap: .8rem;
}

.info-title svg {
  color: var(--gold);
  flex: 0 0 auto;
  height: 1.9rem;
  width: 1.9rem;
}

.info-card {
  border-radius: .8rem;
  padding: 1.65rem;
}

.info-card.bg-night {
  background:
    radial-gradient(circle at 88% 0%, rgba(233, 195, 73, .14), transparent 15rem),
    linear-gradient(135deg, var(--night), #082646);
}

.schedule-row {
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  gap: .5rem;
  grid-template-columns: 110px 120px 1fr;
  padding-bottom: 1rem;
}

.schedule-row b {
  color: var(--night);
  text-transform: uppercase;
}

.schedule-row span,
.schedule-row p {
  color: var(--slate);
}

.social-link {
  align-items: center;
  border-radius: .7rem;
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  min-width: 48px;
  padding-inline: .9rem;
}

.social-link svg {
  height: 26px;
  width: 26px;
}

.social-empty {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .7rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  padding: .85rem 1rem;
}

.floating-whatsapp {
  align-items: center;
  background: #24c45a;
  border-radius: 999px;
  bottom: 1.2rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
  color: white;
  display: inline-flex;
  font-size: 1.5rem;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 1.2rem;
  width: 56px;
  z-index: 60;
}

.floating-whatsapp svg {
  height: 30px;
  width: 30px;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(7, 26, 46, .98) 0%, rgba(8, 45, 92, .94) 34%, rgba(7, 26, 46, .7) 64%, rgba(7, 26, 46, .98) 100%),
    url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1800&q=78&fm=webp");
  background-position: center;
  background-size: cover;
  border-top: 1px solid rgba(203, 164, 84, .35);
  overflow: hidden;
  position: relative;
}

.site-footer::before {
  background: radial-gradient(circle at 58% 0%, rgba(247, 245, 240, .2), transparent 22rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.site-footer__content,
.site-footer > div:last-child {
  position: relative;
  z-index: 1;
}

.footer-title {
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .78);
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(10, 36, 62, .95), rgba(10, 36, 62, .76)),
    radial-gradient(circle at 78% 22%, rgba(216, 227, 251, .26), transparent 24rem),
    url("https://images.unsplash.com/photo-1438032005730-c779502df39b?auto=format&fit=crop&w=1800&q=82&fm=webp");
  background-position: center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .site-header__menu,
  .site-header__actions {
    display: none !important;
  }

  .identity-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 34%, var(--surface-soft) 34%, var(--surface-soft) 100%);
    padding: 3.5rem 0;
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .identity-card {
    min-height: auto;
  }

  .values-block {
    margin-top: 3.5rem;
  }

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

  .value-card {
    border-bottom: 1px solid rgba(203, 164, 84, .28);
    border-right: 1px solid rgba(203, 164, 84, .28);
  }

  .value-card:nth-child(2n),
  .value-card:last-child {
    border-right: 0;
  }

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

  .about-feature__inner {
    grid-template-columns: 1fr;
  }

  .about-feature__copy {
    max-width: 720px;
  }

  .hero {
    min-height: 560px;
  }

  .slider-arrow {
    display: none;
  }

  .shortcut {
    border-bottom: 1px solid #e4e8ee;
    border-right: 0;
  }

  .program {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .program time {
    grid-column: 2;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .pastor-message {
    grid-template-columns: 1fr;
  }

  .pastor-message__content {
    max-width: none;
  }
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    background: #F7F5F0;
    position: sticky;
  }

  .site-header__nav {
    min-height: 74px;
  }

  .site-header__menu,
  .site-header__actions {
    display: none !important;
  }

  .brand-lockup__badge {
    border-radius: .7rem;
    height: 36px;
    width: 36px;
  }

  .brand-lockup__icon {
    height: 20px;
    width: 20px;
  }

  .site-header__logo {
    height: 40px;
    width: 40px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 34, 56, .94), rgba(10, 34, 56, .74));
  }

  .hero .min-h-\[520px\] {
    min-height: 520px;
  }

  .shortcut {
    min-height: 92px;
    padding: 1rem;
  }

  .panel,
  .info-card {
    padding: 1.15rem;
  }

  .about-feature {
    padding-block: 2.6rem;
  }

  .about-feature__copy h2 {
    font-size: 2.35rem;
  }

  .about-feature__media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-feature__media::before,
  .about-feature__media::after {
    display: none;
  }

  .about-feature__main {
    border-radius: 1rem;
    min-height: 260px;
  }

  .about-feature__stack {
    grid-template-columns: 1fr;
  }

  .about-feature__stack figure {
    min-height: 190px;
  }

  .identity-section {
    padding: 2.6rem 0;
  }

  .identity-card {
    padding: 1.35rem;
  }

  .identity-card h2 {
    font-size: 2rem;
  }

  .identity-card p:not(.kicker) {
    font-size: 1rem;
    line-height: 1.75;
  }

  .mission-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-list li {
    min-height: 2.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .values-heading {
    text-align: center;
  }

  .values-heading h2 {
    font-size: 2.25rem;
  }

  .value-card {
    border-bottom: 1px solid rgba(203, 164, 84, .25);
    border-right: 0;
    min-height: auto;
    padding: 1.35rem;
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .program {
    gap: .65rem;
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .program span {
    font-size: .66rem;
    min-height: 46px;
    padding-inline: .25rem;
  }

  .sermon-item {
    align-items: start;
    grid-template-columns: 92px 1fr;
  }

  .sermon-item .play-button {
    grid-column: 2;
  }

  .ministry-card {
    grid-template-columns: 1fr;
  }

  .gallery-empty {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .pastor-message {
    gap: 1.4rem;
  }

  .pastor-message__frame {
    padding: .8rem;
  }

  .pastor-message__title {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .pastor-message__content p:not(.kicker) {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1rem;
  }

  .pastor-message__signature strong {
    font-size: 1.2rem;
  }

  .ministry-card img {
    aspect-ratio: 16 / 9;
  }

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

  .site-footer {
    background:
      linear-gradient(180deg, rgba(7, 26, 46, .98), rgba(8, 45, 92, .94)),
      url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1100&q=74&fm=webp");
    background-position: center;
    background-size: cover;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-loader,
  .site-loader__logo,
  .site-loader__bar span {
    animation: none;
    transition: none;
  }
}
