@font-face {
  font-family: "Inter";
  src: url("fonts/InterVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #112d4a;
  --navy-2: #0a2239;
  --navy-3: #1d4468;
  --cream: #f4efe6;
  --paper: #fbfaf7;
  --sand: #dfd3c0;
  --brown: #795d49;
  --gold: #d1ad63;
  --gold-2: #efd69f;
  --sky: #cfe2e9;
  --ink: #162332;
  --muted: #64717b;
  --line: rgba(17, 45, 74, 0.16);
  --shell: 1240px;
  --display: "Inter", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --type-section-title: clamp(3.1rem, 5.2vw, 5.5rem);
  --type-section-label: clamp(.75rem, .8vw, .84rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: white;
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus {
  transform: none;
}
.topline {
  background: var(--navy-2);
  color: #dce5ea;
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}
.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topline p {
  margin: 0;
}
.topline a {
  color: var(--gold-2);
  font-weight: 700;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header__inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.logo {
  flex: 0 0 auto;
}
.logo img {
  width: 190px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}
.nav a {
  position: relative;
  color: #3f5060;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav a:hover::after,
.nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}
.live-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
}
.live-link i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bc3d34;
  box-shadow: 0 0 0 5px rgba(188, 61, 52, 0.12);
}
.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 750;
}
.menu-button__icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-button__icon::before,
.menu-button__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-button__icon::before {
  top: -7px;
}
.menu-button__icon::after {
  top: 7px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-2);
  color: white;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  will-change: transform;
}
.hero__media-img {
  position: absolute;
  inset: -6%;
  background: url("banner-obpc-real.webp") 58% 47% / cover no-repeat;
  transform: scale(1.015) translate3d(0, 0, 0);
  animation:
    hero-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both,
    hero-breathe 34s ease-in-out 1.4s infinite alternate;
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 25, 42, 0.95) 0%,
      rgba(8, 31, 50, 0.82) 42%,
      rgba(9, 31, 49, 0.3) 76%,
      rgba(9, 31, 49, 0.2)
    ),
    linear-gradient(0deg, rgba(6, 24, 39, 0.5), transparent 45%);
}
.hero::after {
  content: none;
}
.hero__inner {
  display: grid;
  gap: 80px;
  align-items: end;
  padding-block: 110px 125px;
}
.kicker {
  margin: 0 0 23px;
  text-transform: uppercase;
  letter-spacing: 0.185em;
  color: var(--brown);
  font-size: var(--type-section-label);
  font-weight: 850;
  line-height: 1.35;
}
.kicker--light {
  color: var(--gold-2);
}

.hero h1,
.section h2,
.location__card h2 {
  font-family: var(--display);
  font-weight: 640;
  letter-spacing: -0.032em;
  line-height: 0.98;
  text-wrap: balance;
}
.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.3rem, 6.6vw, 6.5rem);
}
.hero h1 em {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 320;
}
.hero__lead {
  max-width: 610px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button--gold {
  background: var(--gold);
  color: var(--navy-2);
}
.button--gold:hover {
  background: var(--gold-2);
}
.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}
.button--ghost:hover {
  background: white;
  color: var(--navy);
}
.button--blue {
  background: var(--navy);
  color: white;
}
.button--blue:hover {
  background: var(--navy-2);
}
.button--outline {
  border-color: rgba(17, 45, 74, 0.28);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
}
.button--outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.hero__schedule {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  padding-top: 22px;
  align-self: end;
  backdrop-filter: blur(2px);
}
.hero__schedule > p {
  margin: 0 0 14px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  font-weight: 800;
}
.hero__schedule div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
}
.hero__schedule span {
  color: var(--gold-2);
  font-size: 0.65rem;
  font-weight: 850;
}
.hero__schedule strong {
  font-size: 0.82rem;
}
.hero__schedule time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero__schedule > a {
  display: block;
  margin-top: 14px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.scroll-cue {
  position: absolute;
  left: 24px;
  bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-cue i {
  height: 45px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.section {
  padding: 120px 0;
}
.intro {
  background: var(--paper);
}
.intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  column-gap: 10vw;
  row-gap: 80px;
}
.intro__title h2,
.section-head h2,
.rhythm__aside h2,
.message__copy h2,
.prayer h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 0.97;
}
.intro__title em {
  color: var(--brown);
}
.intro__body {
  padding-top: 20px;
}
.intro__body p {
  color: var(--muted);
}
.intro__body .intro__large {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.45;
}
.arrow-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
}
.intro__statement {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 45px 0 0;
  border-top: 1px solid var(--line);
}
.intro__statement span {
  color: var(--gold);
  font-weight: 800;
}
.intro__statement p {
  margin: 0;
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.visit {
  background: var(--cream);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.section-head > p {
  max-width: 330px;
  color: var(--muted);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  border-top: 1px solid rgba(17, 45, 74, 0.24);
  border-right: 1px solid rgba(17, 45, 74, 0.24);
  border-bottom: 1px solid rgba(17, 45, 74, 0.24);
}
.visit-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(17, 45, 74, 0.24);
}
.visit-card:first-child {
  border-left: 0;
}
.visit-card > span {
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 800;
}
.visit-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
}
.visit-card p {
  color: #65717b;
}
.visit-card > a {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.visit-card--primary {
  background: var(--navy);
  color: white;
}
.visit-card--primary > span,
.visit-card--primary h3 {
  color: white;
}
.visit-card--primary p {
  color: rgba(255, 255, 255, 0.72);
}
.rhythm {
  padding: 0;
  background: var(--navy-2);
  color: white;
}
.rhythm__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
}
.rhythm__aside {
  background: var(--navy);
}
.rhythm__aside h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}
.rhythm__aside > p:last-child {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.62);
}
.rhythm__list article {
  position: relative;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.25s;
}
.rhythm__list article:hover {
  background: rgba(255, 255, 255, 0.055);
}
.rhythm__list span {
  color: var(--gold-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.rhythm__list h3 {
  font-family: var(--display);
  font-size: 1.5rem;
}
.rhythm__list time {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}
.rhythm__list b {
  position: absolute;
  right: 25px;
  bottom: -15px;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
}
.ministries {
  background: var(--paper);
}
.ministries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ministry {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--paper);
  transition:
    background 0.25s,
    color 0.25s;
}
.ministry:hover {
  background: var(--navy);
  color: white;
}
.ministry--large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--cream);
}
.ministry--accent {
  background: var(--sky);
}
.ministry span {
  position: absolute;
  left: 30px;
  top: 28px;
  color: var(--brown);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.ministry h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.ministry b {
  position: absolute;
  right: 25px;
  top: 24px;
  color: rgba(17, 45, 74, 0.22);
  font-size: 0.7rem;
}
.ministry i {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-style: normal;
}
.ministry:hover span,
.ministry:hover b {
  color: var(--gold-2);
}
.message {
  background: var(--navy-2);
  color: white;
}
.message__grid {
  display: grid;
  align-items: center;
}
.message__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.message__image {
  position: absolute;
  inset: 0;
  filter: saturate(0.68);
}
.message__visual button {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.message__visual button span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
}
.message__visual > p {
  position: absolute;
  left: 25px;
  bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
}
.message__copy h2 {
  margin: 0 0 25px;
}
.message__copy > p {
  color: rgba(255, 255, 255, 0.65);
}
.message__meta {
  display: flex;
  gap: 28px;
  margin: 28px 0;
  color: var(--gold-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.prayer {
  background: var(--gold-2);
  text-align: center;
}
.prayer__inner {
  max-width: 820px;
}
.prayer h2 {
  color: var(--navy);
}
.prayer > div > p:not(.kicker) {
  max-width: 550px;
  margin: 24px auto;
  color: #66563c;
}
.prayer .button {
  margin-top: 10px;
}
.location {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}
.location__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 26, 43, 0.7), rgba(6, 26, 43, 0.02)),
    url("banner-obpc-real.jpg") center/cover no-repeat;
}
.location__inner {
  position: relative;
  z-index: 1;
}
.location__card {
  position: relative;
  background: rgba(10, 34, 57, 0.94);
  color: white;
  backdrop-filter: blur(10px);
}
.location__card h2 {
  margin: 0 0 20px;
  font-size: var(--type-section-title);
  line-height: 0.97;
}
.location__card address {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

/* Rolo vertical do contador: as camadas ficam isoladas e nunca vazam da célula. */
.service-countdown strong[data-value] {
  position: relative;
  display: inline-grid;
  min-width: 2.15ch;
  height: 1em;
  overflow: hidden;
  color: #112d4a;
  isolation: isolate;
  vertical-align: top;
}
.countdown-number__value {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 1em;
  line-height: 1;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.footer {
  background: var(--cream);
  color: var(--navy);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1.2fr;
  gap: 60px;
  padding-block: 80px;
}
.footer__top img {
  width: 225px;
  margin-bottom: 24px;
}
.footer__top > div:first-child p {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__top h2 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer__top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__top a {
  color: #596775;
  font-size: 0.85rem;
}
.footer__bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Atrasos escalonados mais pausados e calmos para cards em lista/grid */
.welcome__cards .welcome-card:nth-child(1) { transition-delay: 0.10s; }
.welcome__cards .welcome-card:nth-child(2) { transition-delay: 0.26s; }
.welcome__cards .welcome-card:nth-child(3) { transition-delay: 0.42s; }
.welcome__cards .welcome-card:nth-child(4) { transition-delay: 0.58s; }

.visit__grid .visit-card:nth-child(1) { transition-delay: 0.10s; }
.visit__grid .visit-card:nth-child(2) { transition-delay: 0.26s; }
.visit__grid .visit-card:nth-child(3) { transition-delay: 0.42s; }

.ministries-editorial-grid .ministry-card-editorial:nth-child(1) { transition-delay: 0.10s; }
.ministries-editorial-grid .ministry-card-editorial:nth-child(2) { transition-delay: 0.26s; }
.ministries-editorial-grid .ministry-card-editorial:nth-child(3) { transition-delay: 0.42s; }
.ministries-editorial-grid .ministry-card-editorial:nth-child(4) { transition-delay: 0.58s; }
.ministries-editorial-grid .ministry-card-editorial:nth-child(5) { transition-delay: 0.74s; }

.rhythm__list article:nth-child(1) { transition-delay: 0.10s; }
.rhythm__list article:nth-child(2) { transition-delay: 0.24s; }
.rhythm__list article:nth-child(3) { transition-delay: 0.38s; }
.rhythm__list article:nth-child(4) { transition-delay: 0.52s; }

/* Efeito Eloqwnt: Text Reveal Linha a Linha */
.split-line-mask {
  display: block;
  overflow: hidden;
  vertical-align: top;
  padding-block: 0.06em 0.24em;
  margin-block: -0.04em -0.22em;
}
.split-line-inner {
  display: block;
  transform: translateY(125%);
  opacity: 0;
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.95s ease;
  will-change: transform, opacity;
}
.is-revealed .split-line-inner,
.is-visible .split-line-inner {
  transform: translateY(0%);
  opacity: 1;
}
@keyframes hero-in {
  from {
    opacity: 0.2;
    transform: scale(1.07) translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.015) translate3d(0, 0, 0);
  }
}
@keyframes hero-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1%, -1%, 0); }
}
@media (max-width: 1050px) {
  .header {
    background: var(--paper);
    backdrop-filter: none;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 118px 0 0;
    background: var(--paper);
    padding: 45px 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 26px;
    overflow: auto;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    font-family: var(--display);
    font-size: 2rem;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .live-link {
    margin-left: 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__schedule {
    max-width: 560px;
  }
  .scroll-cue {
    display: none;
  }
  .intro__grid {
    column-gap: 6vw;
  }
  .visit__grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit-card:last-child {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .rhythm__grid {
    grid-template-columns: 1fr;
  }
  .rhythm__aside {
    padding: 90px 40px;
  }
  .ministries__grid {
    grid-template-columns: 1fr 1fr;
  }
  .message__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }
  .topline__inner {
    min-height: 44px;
    text-align: center;
    justify-content: center;
  }
  .topline p {
    display: none;
  }
  .header__inner {
    height: 72px;
  }
  .logo img {
    width: 160px;
    height: 56px;
  }
  .live-link {
    display: none;
  }
  .nav {
    inset: 116px 0 0;
  }
  .hero {
    min-height: 720px;
  }
  .hero__media-img {
    background-position: 64% center;
  }
  .hero__veil {
    background: linear-gradient(
      90deg,
      rgba(5, 25, 42, 0.94),
      rgba(8, 31, 50, 0.7)
    );
  }
  .hero__inner {
    padding-block: 75px 90px;
    gap: 55px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }
  .hero__schedule {
    display: none;
  }
  .section {
    padding: 84px 0;
  }
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .intro__statement {
    grid-template-columns: 45px 1fr;
    padding-top: 30px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 22px;
  }
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .visit-card,
  .visit-card:last-child {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 245px;
  }
  .visit-card:first-child {
    border-top: 0;
  }
  .rhythm__aside {
    padding: 80px 28px;
  }
  .rhythm__list article {
    grid-template-columns: 70px 1fr;
    min-height: 115px;
    padding: 20px 28px;
  }
  .rhythm__list h3 {
    font-size: 1.2rem;
  }
  .rhythm__list time {
    grid-column: 2;
  }
  .ministries__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .ministry,
  .ministry--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .message__visual {
    min-height: 400px;
  }
  .location {
    min-height: 600px;
  }
  .location__card {
    margin: 0 14px 14px;
    padding: 32px;
    width: auto;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
    padding-block: 60px;
  }
  .footer__top > div:first-child {
    grid-column: 1/-1;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__media-img {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .split-line-inner {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .sect-dot-badge .dot {
    animation: none !important;
  }
}
