:root {
  --navy-950: #04152b;
  --navy-900: #071c38;
  --navy-800: #0a2d59;
  --navy-700: #13477f;
  --red-700: #9f111c;
  --red-600: #c41f2c;
  --red-500: #e12b38;
  --blue-600: #2366c6;
  --white: #fff;
  --cream: #f7f4ee;
  --gray-100: #edf0f3;
  --gray-300: #ccd3db;
  --gray-600: #596779;
  --ink: #102033;
  --display: Georgia, "Times New Roman", serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI",
    Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgb(4 21 43/20%);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
::selection {
  background: var(--red-600);
  color: var(--white);
}
* {
  scrollbar-color: var(--red-600) var(--navy-950);
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  background: var(--navy-950);
}
*::-webkit-scrollbar-thumb {
  border: 2px solid var(--navy-950);
  border-radius: 999px;
  background: var(--red-600);
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  font: inherit;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #73a8ff;
  outline-offset: 4px;
}
.gathering-bar {
  position: relative;
  z-index: 80;
  background: var(--red-600);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.gathering-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.gathering-bar p {
  margin: 0;
}
.gathering-bar a {
  font-weight: 750;
  text-decoration: none;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgb(255 255 255/18%);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgb(255 255 255/0);
  }
}
.site-header {
  position: absolute;
  z-index: 70;
  top: 38px;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255/20%);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}
.site-header.is-stuck {
  position: fixed;
  top: 0;
  color: var(--navy-900);
  background: rgb(255 255 255/94%);
  box-shadow: 0 8px 32px rgb(4 21 43/12%);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgb(0 0 0/22%));
}
.brand span {
  display: grid;
  line-height: 1.06;
}
.brand strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand small {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.78;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}
.site-nav a {
  position: relative;
  text-decoration: none;
}
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--red-500);
  transition: right 0.2s;
}
.site-nav a:hover::after {
  right: 0;
}
.nav-cta {
  padding: 13px 18px;
  color: var(--white);
  background: var(--red-600);
  border: 1px solid var(--red-600);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: inherit;
  width: 48px;
  height: 48px;
  padding: 10px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(4 21 43/97%) 0%,
      rgb(4 21 43/84%) 43%,
      rgb(4 21 43/22%) 76%,
      rgb(4 21 43/45%) 100%
    ),
    linear-gradient(0deg, rgb(4 21 43/72%) 0%, transparent 45%);
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 35%;
  background: url("../assets/images/church_exterior_front.jpg") center/cover
    no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 8vw, 130px);
  padding-top: 158px;
  padding-bottom: 116px;
}
.hero-copy {
  max-width: 760px;
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.4vw, 96px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--white);
}
.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgb(255 255 255/82%);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgb(4 21 43/24%);
}
.button-primary {
  background: var(--red-600);
  color: var(--white);
}
.button-primary:hover {
  background: var(--red-500);
}
.button-ghost {
  border-color: rgb(255 255 255/55%);
  color: var(--white);
  background: rgb(255 255 255/6%);
  backdrop-filter: blur(8px);
}
.button-dark {
  color: var(--white);
  background: var(--navy-900);
}
.button-white {
  color: var(--navy-900);
  background: var(--white);
}
.sunday-card {
  position: relative;
  padding: 34px;
  color: var(--navy-900);
  background: rgb(255 255 255/94%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.sunday-card__flag {
  display: flex;
  height: 7px;
  position: absolute;
  inset: 0 0 auto;
}
.sunday-card__flag span:nth-child(1) {
  width: 34%;
  background: var(--red-600);
}
.sunday-card__flag span:nth-child(2) {
  width: 33%;
  background: var(--white);
}
.sunday-card__flag span:nth-child(3) {
  flex: 1;
  background: var(--blue-600);
}
.sunday-card__kicker {
  margin: 0;
  color: var(--red-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sunday-card__time {
  margin: 13px 0 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.sunday-card__time span {
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.sunday-card h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 28px;
}
.sunday-card > p:not([class]) {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.65;
}
.sunday-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--red-600);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.hero-stars {
  position: absolute;
  z-index: 2;
  right: 4vw;
  top: 175px;
  width: 330px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgb(255 255 255/33%);
  font-size: 18px;
  gap: 30px 70px;
  transform: rotate(-10deg);
}
.hero-stripes {
  position: absolute;
  z-index: 4;
  right: -8%;
  bottom: 26px;
  width: 58%;
  transform: rotate(-7deg);
}
.hero-stripes span {
  display: block;
  height: 11px;
  margin: 10px 0;
  background: var(--red-600);
  transform: skewX(-18deg);
}
.hero-stripes span:nth-child(2) {
  width: 90%;
  margin-left: 10%;
  background: var(--white);
}
.hero-stripes span:nth-child(3) {
  width: 78%;
  margin-left: 22%;
  background: var(--blue-600);
}
.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 3vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255/68%);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.scroll-cue span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--white);
}
.service-ribbon {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
}
.service-ribbon__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
}
.service-ribbon__intro {
  padding: 56px 40px 56px 0;
}
.service-ribbon__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.05;
}
.time-block {
  position: relative;
  padding: 56px 24px;
  border-left: 1px solid rgb(255 255 255/18%);
}
.time-block p {
  margin: 0 0 18px;
  color: rgb(255 255 255/55%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.time-block strong {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.time-block > span {
  margin-left: 5px;
  color: var(--red-500);
  font-size: 11px;
  font-weight: 800;
}
.time-block small {
  display: block;
  margin-top: 18px;
  color: rgb(255 255 255/66%);
  font-size: 11px;
  line-height: 1.5;
}
.time-block--active {
  background: var(--red-600);
}
.time-block--active > span {
  color: var(--white);
}
.ticker {
  overflow: hidden;
  padding: 19px 0;
  border-bottom: 1px solid var(--gray-300);
  background: var(--cream);
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ticker 24s linear infinite;
}
.ticker span {
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.ticker b {
  color: var(--red-600);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: clamp(92px, 10vw, 150px) 0;
}
.welcome {
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}
.welcome-collage {
  position: relative;
  min-height: 670px;
}
.photo-main {
  position: absolute;
  inset: 0 12% 10% 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
}
.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 42%;
  margin: 0;
  border: 10px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-seal {
  position: absolute;
  top: 28px;
  right: 2%;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-600);
  box-shadow:
    0 0 0 9px var(--white),
    0 0 0 11px var(--red-600);
  transform: rotate(8deg);
}
.photo-seal span {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 0.8;
}
.photo-seal small {
  margin-top: 9px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.welcome-copy h2,
.section-heading h2,
.visit-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.welcome-copy .lead {
  margin: 30px 0 18px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.4;
}
.welcome-copy > p:not(.lead) {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
}
.welcome-points {
  margin-top: 36px;
  border-top: 1px solid var(--gray-300);
}
.welcome-points > div {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-300);
}
.welcome-points p {
  margin: 0;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.5;
}
.welcome-points strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
}
.sunday-journey {
  background: var(--cream);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}
.section-heading > p,
.section-heading--split > p {
  max-width: 580px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}
.journey-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--gray-300);
  list-style: none;
}
.journey-list li {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 40px 20px;
  border-bottom: 1px solid var(--gray-300);
  transition:
    background 0.25s,
    padding 0.25s;
}
.journey-list li:hover {
  padding-left: 34px;
  background: var(--white);
}
.journey-number {
  color: var(--red-600);
  font-family: var(--display);
  font-size: 34px;
}
.journey-time {
  margin: 0 0 6px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-list h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 31px;
}
.journey-list div > p:last-child {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.65;
}
.journey-mark {
  color: var(--red-600);
  font-size: 24px;
}
.beliefs {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  color: var(--white);
  background: var(--navy-900);
}
.beliefs::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: repeating-linear-gradient(
    -8deg,
    transparent 0 53px,
    rgb(255 255 255/18%) 54px 55px
  );
}
.beliefs-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
}
.beliefs-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.beliefs-intro > p {
  margin: 28px 0;
  color: rgb(255 255 255/70%);
  font-size: 16px;
  line-height: 1.8;
}
.text-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 7px;
}
.belief-statements {
  border-top: 1px solid rgb(255 255 255/25%);
}
.belief-statements article {
  display: block;
  padding: 36px 0;
  border-bottom: 1px solid rgb(255 255 255/25%);
}
.belief-statements h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
}
.belief-statements p {
  grid-column: 2;
  margin: -10px 0 0;
  color: rgb(255 255 255/66%);
  font-size: 14px;
  line-height: 1.7;
}
.beliefs-cross {
  position: absolute;
  right: -4vw;
  top: 4%;
  width: 230px;
  height: 430px;
  opacity: 0.06;
  background: var(--white);
}
.beliefs-cross::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 110px;
  left: -95px;
  top: 100px;
  background: var(--white);
}
.beliefs-stars {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  color: rgb(255 255 255/10%);
  font-size: 26px;
  letter-spacing: 3vw;
  white-space: nowrap;
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 80px;
}
.ministry-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  min-height: 600px;
}
.ministry-panel {
  position: relative;
  min-width: 0;
  padding: 50px 38px;
  overflow: hidden;
  color: var(--white);
}
.ministry-panel--red {
  background: var(--red-600);
}
.ministry-panel--blue {
  background: var(--navy-800);
}
.ministry-index {
  margin: 0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.ministry-icon {
  margin-top: 70px;
  font-size: 46px;
}
.ministry-panel h3 {
  margin: 28px 0 20px;
  font-family: var(--display);
  font-size: clamp(37px, 3.4vw, 53px);
  line-height: 0.98;
}
.ministry-panel > p:not(.ministry-index) {
  color: rgb(255 255 255/92%);
  font-size: 15px;
  line-height: 1.7;
}
.ministry-panel a {
  position: absolute;
  left: 38px;
  bottom: 50px;
  font-size: 12px;
  font-weight: 800;
}
.ministry-panel--photo {
  padding: 0;
}
.ministry-panel--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.ministry-panel--photo::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgb(4 21 43/94%));
}
.ministry-panel--photo > div {
  position: absolute;
  z-index: 2;
  left: 44px;
  right: 44px;
  bottom: 48px;
}
.ministry-panel--photo p:last-child {
  color: rgb(255 255 255/90%);
  font-size: 15px;
  line-height: 1.65;
}
.verse {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  text-align: center;
}
.verse-photo {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    linear-gradient(rgb(4 21 43/35%), rgb(4 21 43/76%)),
    url("../assets/images/793a0944-867c-4811-85da-ecd4b9fbdb78.jpg")
      center/cover;
  background-attachment: fixed;
}
.verse-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.verse-stars {
  color: var(--red-500);
  letter-spacing: 0.3em;
}
.verse blockquote {
  margin: 26px auto;
  font-family: var(--display);
  font-size: clamp(39px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.verse cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.visit {
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
}
.visit-copy > p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.75;
}
.visit-copy address {
  margin-top: 30px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 23px;
  font-style: normal;
  line-height: 1.5;
}
.visit-faq {
  border-top: 5px solid var(--red-600);
}
.visit-faq h3 {
  margin: 28px 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 31px;
}
.visit-faq details {
  border-top: 1px solid var(--gray-300);
}
.visit-faq details:last-child {
  border-bottom: 1px solid var(--gray-300);
}
.visit-faq summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.visit-faq summary::-webkit-details-marker {
  display: none;
}
.visit-faq summary span {
  color: var(--red-600);
  font-size: 25px;
  font-weight: 400;
  transition: transform 0.2s;
}
.visit-faq details[open] summary span {
  transform: rotate(45deg);
}
.visit-faq details p {
  margin: -6px 0 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--red-600);
}
.closing-cta::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 260%;
  top: -80%;
  right: -15%;
  background: var(--blue-600);
  transform: rotate(-18deg);
}
.closing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.4fr 1.4fr auto;
  align-items: center;
  gap: 50px;
}
.closing-inner > p {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.closing-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 4.5vw, 66px);
  line-height: 1;
}
.closing-stars {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 6%;
  color: rgb(255 255 255/14%);
  font-size: 28px;
  letter-spacing: 20px;
  white-space: nowrap;
}
.site-footer {
  padding: 75px 0 24px;
  color: var(--white);
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 70px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand img {
  width: 76px;
  height: 76px;
}
.footer-brand strong {
  font-family: var(--display);
  font-size: 26px;
}
.site-footer h2 {
  margin: 0 0 16px;
  color: rgb(255 255 255/50%);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-footer p {
  color: rgb(255 255 255/60%);
  font-size: 15px;
  line-height: 1.75;
}
.site-footer a {
  color: var(--white);
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 54px;
  border-top: 1px solid rgb(255 255 255/16%);
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }
  .menu-toggle {
    display: block;
    z-index: 3;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 120px 12vw;
    color: var(--white);
    background: var(--navy-950);
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .site-nav.is-open {
    transform: none;
  }
  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255/15%);
    font-family: var(--display);
    font-size: 28px;
  }
  .site-nav .nav-cta {
    margin-top: 20px;
    padding: 18px;
    text-align: center;
  }
  .menu-open .menu-toggle {
    color: var(--white);
  }
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 190px;
    padding-bottom: 120px;
  }
  .hero-photo {
    left: 0;
    opacity: 0.55;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgb(4 21 43/96%), rgb(4 21 43/62%)),
      linear-gradient(0deg, rgb(4 21 43/95%), transparent);
  }
  .hero h1 {
    max-width: 690px;
  }
  .sunday-card {
    max-width: 480px;
  }
  .service-ribbon__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-ribbon__intro {
    grid-column: 1/-1;
    padding-right: 0;
  }
  .time-block {
    border-top: 1px solid rgb(255 255 255/18%);
  }
  .welcome-grid,
  .beliefs-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .welcome-collage {
    min-height: 580px;
  }
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ministry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ministry-panel--photo {
    min-height: 620px;
    grid-row: span 2;
  }
  .closing-inner {
    grid-template-columns: 1fr;
  }
  .closing-cta::after {
    width: 45%;
    right: -30%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }
  .gathering-bar__inner {
    min-height: 46px;
    justify-content: space-between;
    gap: 8px;
  }
  .gathering-bar p:first-child {
    display: none;
  }
  .gathering-bar a {
    font-size: 10px;
  }
  .site-header {
    top: 46px;
  }
  .site-header.is-stuck {
    top: 0;
  }
  .header-inner {
    height: 74px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero-grid {
    padding-top: 164px;
    padding-bottom: 90px;
    gap: 48px;
  }
  .hero h1 {
    font-size: clamp(52px, 16vw, 76px);
    line-height: 0.9;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
  }
  .sunday-card {
    padding: 29px 24px;
  }
  .hero-stars,
  .scroll-cue {
    display: none;
  }
  .hero-stripes {
    width: 88%;
  }
  .service-ribbon__grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .service-ribbon__intro {
    padding: 56px 24px 38px;
  }
  .time-block {
    min-height: 225px;
    padding: 36px 22px;
  }
  .time-block:nth-of-type(odd) {
    border-left: 0;
  }
  .ticker-track {
    animation-duration: 18s;
  }
  .section {
    padding: 88px 0;
  }
  .welcome-collage {
    min-height: 470px;
  }
  .photo-main {
    right: 6%;
    bottom: 14%;
  }
  .photo-small {
    width: 50%;
    height: 36%;
    border-width: 6px;
  }
  .photo-seal {
    top: 18px;
    width: 100px;
    height: 100px;
  }
  .photo-seal span {
    font-size: 30px;
  }
  .welcome-copy h2,
  .section-heading h2,
  .visit-copy h2 {
    font-size: 46px;
  }
  .journey-list li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 30px 4px;
  }
  .journey-mark {
    display: none;
  }
  .journey-list h3 {
    font-size: 25px;
  }
  .beliefs {
    padding: 90px 0;
  }
  .beliefs-intro h2 {
    font-size: 48px;
  }
  .belief-statements article {
    grid-template-columns: 40px 1fr;
  }
  .ministry-grid {
    grid-template-columns: 1fr;
  }
  .ministry-panel {
    min-height: 500px;
    padding: 42px 28px;
  }
  .ministry-panel--photo {
    min-height: 600px;
    grid-row: auto;
  }
  .ministry-panel a {
    left: 28px;
    bottom: 42px;
  }
  .ministry-panel--photo > div {
    left: 28px;
    right: 28px;
  }
  .verse {
    min-height: 540px;
  }
  .verse-photo {
    background-attachment: scroll;
  }
  .verse blockquote {
    font-size: 42px;
  }
  .visit-actions {
    display: grid;
  }
  .closing-cta {
    padding: 85px 0;
  }
  .closing-inner {
    gap: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: auto;
    align-items: flex-start;
  }
  .footer-bottom {
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
