:root {
  --ink: #18312b;
  --ink-deep: #10251f;
  --forest: #17382f;
  --forest-soft: #245043;
  --cream: #f4efe3;
  --paper: #fbf9f3;
  --gold: #e9bd68;
  --gold-soft: #f4d99d;
  --sage: #b7c7b9;
  --muted: #68746e;
  --line: rgba(24, 49, 43, 0.16);
  --white: #fffef9;
  --shadow: 0 30px 80px rgba(20, 45, 37, 0.13);
  --radius-lg: 36px;
  --radius-md: 24px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 249, 243, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(20, 45, 37, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 6px;
  height: 1px;
  background: currentColor;
  box-shadow: 32px 0 0 currentColor;
  content: "";
}

.brand-mark::after {
  transform: rotate(90deg);
}

.brand-mark__core {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(233, 189, 104, 0.17);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.68;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  font-size: 14px;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(86svh, 800px);
  padding: 104px 0 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 78%, rgba(64, 112, 90, 0.42), transparent 32%),
    linear-gradient(125deg, var(--ink-deep), var(--forest) 48%, #245141);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -310px;
  right: -120px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(244, 217, 157, 0.32);
  border-radius: 50%;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  border: 1px solid rgba(244, 217, 157, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-glow::before {
  inset: 72px;
}

.hero-glow::after {
  inset: 144px;
  background: radial-gradient(circle, rgba(233, 189, 104, 0.16), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 68px;
  align-items: center;
}

.kicker {
  margin: 0 0 24px;
  color: #987329;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.gathering h2,
.videos-top h2,
.donation h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(54px, 6.2vw, 88px);
}

.hero h1 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-thesis {
  max-width: 680px;
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.36;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 254, 249, 0.7);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--light {
  color: var(--forest);
  background: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--gold-soft);
}

.button--gold {
  color: var(--ink-deep);
  background: var(--gold);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-soft);
}

.text-link {
  font-size: 14px;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link--light {
  color: rgba(255, 254, 249, 0.82);
}

.service-card {
  position: relative;
  padding: 29px;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.service-card::before {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(233, 189, 104, 0.25);
  content: "";
}

.service-card__label,
.service-card__date {
  margin: 0;
}

.service-card__label {
  color: #987329;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card__date {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.service-card__time {
  margin: 20px 0 18px;
  font-family: var(--serif);
  font-size: clamp(33px, 3.4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-card__time span {
  color: #a8aaa1;
}

.service-card__divider {
  height: 1px;
  background: var(--line);
}

.service-card__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 16px;
  line-height: 1.4;
}

.service-card__address svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #a3792b;
}

.service-card__address span {
  color: var(--muted);
  font-size: 13px;
}

.service-card__address strong {
  color: var(--ink);
  font-size: 15px;
}

.service-card__map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7e5a17;
  font-size: 13px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.service-card__map svg {
  width: 17px;
  height: 17px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-pastor {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-pastor__photo {
  height: 128px;
  overflow: hidden;
}

.hero-pastor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.88) contrast(0.99);
}

.hero-pastor__copy {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
}

.hero-pastor__copy span {
  color: #987329;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-pastor__copy strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero-caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 72px;
  color: rgba(255, 254, 249, 0.38);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.hero-caption i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.welcome {
  background: var(--paper);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: end;
}

.section-heading h2,
.videos-top h2,
.donation h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.welcome-copy {
  max-width: 560px;
  padding-bottom: 8px;
  color: var(--muted);
}

.welcome-copy p {
  margin: 0;
}

.welcome-copy p + p {
  margin-top: 21px;
}

.welcome-copy .welcome-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.42;
}

.pastor-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  height: 560px;
  min-height: 560px;
  margin-top: 82px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pastor-photo-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.pastor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.88) contrast(0.99);
}

.pastor-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 46px;
  align-items: end;
  padding: 58px 62px;
}

.pastor-info__number {
  color: #b5aa91;
  font-family: var(--serif);
  font-size: 14px;
}

.pastor-info h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(39px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pastor-info p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.gathering {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding-top: 84px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 44px 44px 0 0;
  padding-bottom: 70px;
}

.gathering-shell {
  display: block;
  padding: 0;
}

.kicker--light {
  color: var(--gold-soft);
}

.gathering h2 {
  max-width: 520px;
  font-size: clamp(50px, 6vw, 78px);
}

.gathering-details {
  align-self: center;
}

.detail-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-row span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-row strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.gathering-details .button {
  margin-top: 33px;
}

.walking-route {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 48px;
  align-items: center;
  margin-top: 0;
  padding: 36px 40px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 28px;
}

.walking-route__eyebrow {
  margin: 0 0 10px;
  color: #967127;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.walking-route__intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.walking-route__intro > p:not(.walking-route__eyebrow) {
  max-width: 420px;
  margin: 15px 0 19px;
  color: var(--muted);
  font-size: 13px;
}

.walking-route__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7e5a17;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.walking-route__link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.walking-route__link:hover svg,
.walking-route__link:focus-visible svg {
  transform: translate(2px, -2px);
}

.route-track {
  display: grid;
  grid-template-columns: minmax(130px, auto) minmax(105px, 1fr) minmax(120px, auto);
  align-items: center;
  min-height: 172px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(25, 48, 40, 0.1);
  border-radius: 22px;
}

.route-track__point {
  display: flex;
  align-items: center;
  gap: 13px;
}

.route-track__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--forest);
  background: white;
  border: 1px solid rgba(25, 48, 40, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(31, 48, 40, 0.08);
}

.route-track__icon svg {
  width: 20px;
  height: 20px;
}

.route-track__point--destination .route-track__icon {
  color: white;
  background: var(--forest);
  border-color: var(--forest);
}

.route-track__point small,
.route-track__point strong {
  display: block;
}

.route-track__point small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-track__point strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.12;
}

.route-track__path {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 90px;
  padding: 0 10px;
}

.route-track__path span {
  width: 100%;
  border-top: 2px dashed rgba(39, 83, 66, 0.35);
}

.route-track__path em {
  position: absolute;
  padding: 4px 9px;
  color: #7e5a17;
  background: #f9f5eb;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.route-map {
  grid-column: 1 / -1;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(25, 48, 40, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(31, 48, 40, 0.08);
}

.route-map__canvas {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #ece9dc;
}

.route-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.route-map__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(25, 48, 40, 0.1);
  font-size: 11px;
}

.route-map__caption strong {
  color: var(--ink);
  font-weight: 750;
}

.route-map__caption a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #7e5a17;
  font-weight: 700;
  text-underline-offset: 4px;
}

.route-map__caption svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.route-map__caption a:hover svg,
.route-map__caption a:focus-visible svg {
  transform: translate(2px, -2px);
}

.videos {
  padding-top: 46px;
  background: var(--paper);
}

.videos-top {
  display: block;
}

.videos-top h2 {
  font-size: clamp(28px, 6vw, 76px);
  white-space: nowrap;
}

.broadcast-callout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 27px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(79, 135, 108, 0.38), transparent 34%),
    var(--forest);
  border-radius: 24px;
}

.broadcast-callout__signal {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--forest);
  background: var(--cream);
  border-radius: 50%;
}

.broadcast-callout__signal svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.broadcast-callout__signal span {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #d86c53;
  border: 3px solid var(--forest);
  border-radius: 50%;
}

.broadcast-callout__eyebrow {
  margin: 0 0 5px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.broadcast-callout__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.broadcast-callout__times {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 11px;
}

.broadcast-callout__times span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.broadcast-callout__times small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.broadcast-callout__times strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.broadcast-callout__times i {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.broadcast-callout__note {
  max-width: 700px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.55;
}

.broadcast-callout__link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  width: 340px;
  padding: 16px;
  color: white;
  background: linear-gradient(135deg, #4e8bcf, #3d73b5);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(18, 45, 77, 0.24);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.broadcast-callout__vk {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 850;
}

.broadcast-callout__link-copy small,
.broadcast-callout__link-copy strong,
.broadcast-callout__link-copy em {
  display: block;
}

.broadcast-callout__link-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.broadcast-callout__link-copy strong {
  margin-top: 2px;
  font-size: 13px;
}

.broadcast-callout__link-copy em {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.broadcast-callout__link svg {
  grid-column: 3;
  width: 18px;
  height: 18px;
}

.broadcast-callout__link:hover,
.broadcast-callout__link:focus-visible {
  background: #5188c6;
  transform: translateY(-2px);
}

.broadcast-callout + .video-gallery {
  margin-top: 34px;
}

.video-gallery {
  margin-top: 70px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-gallery__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.video-gallery__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.video-gallery__status strong {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-gallery__status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #b78424;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 132, 36, 0.12);
}

.video-gallery__status-dot.is-live {
  background: #438461;
  box-shadow: 0 0 0 5px rgba(67, 132, 97, 0.12);
}

.video-gallery__status-dot.is-error {
  background: #a65846;
  box-shadow: 0 0 0 5px rgba(166, 88, 70, 0.12);
}

.video-gallery__all-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.video-gallery__all {
  display: grid;
  grid-template-columns: 1fr 17px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.video-gallery__all svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.video-gallery__all:hover svg,
.video-gallery__all:focus-visible svg {
  transform: translate(2px, -2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.video-card {
  display: flex;
  min-width: 0;
  background: var(--cream);
  flex-direction: column;
}

.video-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(72, 126, 101, 0.32), transparent 38%),
    #0f1916;
}

.video-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.video-card__meta {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.video-card h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.video-card h3 a {
  text-decoration: none;
}

.video-card h3 a:hover,
.video-card h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.video-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  color: #7e5a17;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.video-card__link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.video-card__link:hover svg,
.video-card__link:focus-visible svg {
  transform: translate(2px, -2px);
}

.video-card--loading .video-card__media,
.video-card--loading .video-card__body i {
  background: linear-gradient(100deg, rgba(25, 48, 40, 0.08) 25%, rgba(255, 255, 255, 0.72) 45%, rgba(25, 48, 40, 0.08) 65%);
  background-size: 220% 100%;
  animation: video-loading 1.4s ease-in-out infinite;
}

.video-card--loading .video-card__body {
  gap: 11px;
}

.video-card--loading .video-card__body i {
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 6px;
}

.video-card--loading .video-card__body i:last-child {
  width: 68%;
}

@keyframes video-loading {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.donation {
  padding: 88px 0;
  background: #eee7d7;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  align-items: stretch;
}

.donation-copy {
  grid-column: 1 / -1;
  padding-right: 0;
}

.donation-copy h2 {
  font-size: clamp(44px, 5.2vw, 70px);
}

.donation-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.donation-note {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.qr-card,
.bank-card {
  background: var(--paper);
  border-radius: var(--radius-md);
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.qr-card__image {
  display: grid;
  place-items: center;
  width: min(100%, 370px);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  padding: 13px;
  background: white;
  border: 1px solid rgba(24, 49, 43, 0.08);
  border-radius: 17px;
  overflow: hidden;
}

.qr-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.bank-card {
  padding: 32px;
}

.bank-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.bank-card__head .kicker {
  margin-bottom: 7px;
  font-size: 9px;
}

.bank-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  transition: background 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  background: var(--cream);
}

.copy-button svg {
  width: 14px;
  height: 14px;
}

.bank-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
}

.bank-details > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(24, 49, 43, 0.1);
}

.bank-details .bank-details__wide {
  grid-column: 1 / -1;
}

.bank-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 27px 0;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-inner p {
  max-width: 880px;
  margin: 0;
  padding: 0 100px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.back-to-top {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-underline-offset: 4px;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 17px;
  color: var(--white);
  background: var(--ink-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .section {
    padding: 92px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 36px;
  }

  .service-card {
    width: auto;
  }

  .welcome-grid,
  .videos-top {
    gap: 55px;
  }

  .pastor-info {
    padding: 45px;
  }

  .gathering-shell {
    padding: 0;
  }

  .walking-route {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .donation-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .qr-card,
  .bank-card {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 19px;
    padding: 90px 32px 40px;
    color: var(--white);
    background: var(--ink-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 34px;
  }

  .site-header:has(.site-nav.is-open) {
    color: var(--white);
  }

  .hero {
    min-height: auto;
    padding: 126px 0 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-side {
    gap: 14px;
  }

  .hero-glow {
    top: -160px;
    right: -260px;
    width: 600px;
    height: 600px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-thesis {
    margin-top: 31px;
    font-size: 21px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-caption {
    margin-top: 46px;
  }

  .welcome-grid,
  .pastor-card,
  .gathering-shell,
  .videos-top,
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid,
  .videos-top {
    gap: 34px;
  }

  .broadcast-callout {
    grid-template-columns: 48px 1fr;
    gap: 20px 16px;
    margin-top: 28px;
    padding: 25px 22px;
  }

  .broadcast-callout__signal {
    width: 48px;
    height: 48px;
  }

  .broadcast-callout__copy h3 {
    font-size: 24px;
  }

  .broadcast-callout__times {
    gap: 10px;
  }

  .broadcast-callout__times span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .broadcast-callout__times i {
    width: 13px;
  }

  .broadcast-callout__link {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 14px 17px;
  }

  .broadcast-callout + .video-gallery {
    margin-top: 28px;
  }

  .section-heading h2,
  .donation h2 {
    font-size: clamp(32px, 9vw, 42px);
    overflow-wrap: anywhere;
  }

  .videos-top h2 {
    font-size: clamp(25px, 8vw, 48px);
  }

  .welcome-copy .welcome-lead {
    font-size: 21px;
  }

  .pastor-card {
    height: auto;
    min-height: 0;
    margin-top: 54px;
    border-radius: 24px;
  }

  .pastor-photo-wrap {
    height: 430px;
    min-height: 430px;
  }

  .pastor-info {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 36px 28px 42px;
  }

  .pastor-info h3 {
    font-size: 42px;
  }

  .gathering {
    margin-top: -28px;
    padding-top: 60px;
    border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  }

  .gathering-shell {
    padding: 0;
  }

  .gathering h2 {
    font-size: 50px;
  }

  .walking-route {
    gap: 27px;
    margin: 0;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .walking-route__intro h3 {
    font-size: 30px;
  }

  .route-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px 24px;
  }

  .route-track__path {
    justify-items: start;
    min-height: 76px;
    margin-left: 20px;
    padding: 8px 0 8px 24px;
  }

  .route-track__path span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: auto;
    border-top: 0;
    border-left: 2px dashed rgba(39, 83, 66, 0.35);
  }

  .route-track__path em {
    position: static;
  }

  .route-map__canvas {
    height: 390px;
  }

  .route-map__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 15px 17px;
  }

  .detail-row {
    grid-template-columns: 70px 1fr;
  }

  .gathering-details .button {
    width: 100%;
  }

  .video-gallery {
    margin-top: 48px;
    border-radius: 24px;
  }

  .video-gallery__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }

  .video-gallery__status > span:last-child {
    display: none;
  }

  .video-gallery__all-links {
    justify-content: flex-start;
    gap: 10px 18px;
  }

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

  .donation-grid {
    gap: 20px;
  }

  .donation-copy {
    grid-column: auto;
    margin-bottom: 24px;
  }

  .qr-card {
    padding: 25px;
  }

  .bank-card {
    padding: 28px 22px;
  }

  .bank-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }

  .footer-inner p {
    padding: 0;
  }

  .back-to-top {
    position: static;
    align-self: center;
  }

}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .service-card {
    padding: 29px;
  }

  .service-card__time {
    font-size: 36px;
  }

  .hero-caption {
    gap: 10px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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