:root {
  --bg: #eaf3f5;
  --bg-soft: #dff0ee;
  --surface: rgba(245, 250, 249, 0.86);
  --surface-strong: rgba(251, 253, 252, 0.96);
  --surface-tint: rgba(130, 180, 156, 0.22);
  --ink: #20312d;
  --ink-soft: #586964;
  --line: rgba(32, 49, 45, 0.12);
  --line-strong: rgba(32, 49, 45, 0.22);
  --clay: #6a93a6;
  --olive: #6f9472;
  --pine: #2f5b4f;
  --navy: #5a819c;
  --night: #172622;
  --sky: #e5eff0;
  --gold: #9fc9d7;
  --rose: #d7b0a8;
  --stone: #edf2ea;
  --parchment: #f7faf5;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --max-wide: 1320px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--parchment);
  max-width: 100%;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.028em;
}

h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  min-width: 0;
}

.shell--wide {
  width: min(calc(100% - 2rem), var(--max-wide));
  min-width: 0;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--sky);
}

.section--atmosphere {
  background: color-mix(in srgb, var(--sky) 52%, white);
}

.section--contrast {
  background:
    radial-gradient(circle at 82% 16%, rgba(159, 201, 215, 0.18), transparent 18%),
    radial-gradient(circle at 18% 22%, rgba(111, 148, 114, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(53, 91, 112, 0.98), rgba(26, 39, 47, 0.98));
  color: rgba(247, 243, 235, 0.92);
}

.section--contrast h2,
.section--contrast h3,
.section--contrast p {
  color: inherit;
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

.section-heading h2,
.page-title h1 {
  font-size: clamp(1.95rem, 4.2vw, 3.3rem);
  color: var(--pine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1.22rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--night);
}

.button--light {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--night);
}

.button--light:hover,
.button--light:focus-visible {
  background: #fff;
}

.text-link {
  width: fit-content;
  color: var(--pine);
  text-decoration: none;
  font-weight: 700;
}

.button--disabled {
  pointer-events: none;
  opacity: 0.9;
}

.text-link:hover,
.text-link:focus-visible,
.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: var(--clay);
}

.text-link--light {
  color: rgba(255, 248, 238, 0.92);
}

header {
  padding: 1.2rem 0 0;
  position: relative;
  z-index: 10;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0 0.2rem;
}

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

.brand__wordmark {
  display: grid;
  gap: 0.02rem;
  width: fit-content;
}

.brand strong {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.94rem, 2.65vw, 2.72rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 0.92;
}

.brand__wordmark span {
  display: block;
  color: var(--olive);
  width: fit-content;
  margin-left: 0.08rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.site-nav__links a {
  color: var(--night);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.site-nav__links a[aria-current="page"] {
  color: var(--clay);
}

.site-nav__cta {
  min-height: 40px;
  padding: 0.62rem 1rem;
  background: var(--olive);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-color: rgba(47, 91, 79, 0.18);
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--pine);
}

.quick-link-row {
  display: grid;
  gap: 1.45rem;
}

.feature-grid,
.link-grid,
.check-grid,
.faq-grid,
.page-grid,
.story-grid,
.leadership-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card,
.check-card,
.faq-card,
.info-panel,
.callout-band__card,
.link-card,
.resource-category {
  position: relative;
}

a.feature-card,
a.event-chip,
a.event-directory-card,
a.event-related__card,
a.spotlight {
  color: inherit;
  text-decoration: none;
}

.feature-card,
.check-card,
.info-panel,
.callout-band__card {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-strong);
}

.feature-card h3,
.link-card h3,
.check-card h3,
.info-panel h3,
.resource-category h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.feature-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.feature-card__meta span {
  color: var(--clay);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-card__subhead {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.15rem;
}

.feature-card--event {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(248, 251, 249, 0.94);
  border: 1px solid rgba(28, 42, 58, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.feature-card--event:hover,
a.feature-card--event:focus-visible {
  border-color: rgba(28, 42, 58, 0.16);
  box-shadow: 0 18px 38px rgba(28, 42, 58, 0.12);
  transform: translateY(-2px);
}

.feature-card--visual {
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(17, 32, 48, 0.04) 0%, rgba(21, 39, 59, 0.14) 46%, rgba(17, 30, 44, 0.68) 100%),
    var(--feature-image) center / cover no-repeat;
}

.feature-card--visual h3,
.feature-card--visual p,
.feature-card--visual .feature-card__subhead,
.feature-card--visual .feature-card__meta strong {
  color: rgba(255, 249, 241, 0.98);
}

.feature-card--visual .feature-card__meta {
  color: rgba(255, 249, 241, 0.82);
}

.feature-card--visual .feature-card__meta span {
  color: #f0d7a8;
}

.link-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.link-card:first-child {
  border-top: 1px solid var(--line-strong);
}

.link-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-card__media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--sky) 62%, white);
}

.link-card__media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.link-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-card__cta.button {
  margin-top: 0.4rem;
}

.link-grid--action {
  gap: 1rem;
}

.link-card--action {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.link-card--action:first-child {
  border-top: 0;
}

.link-card--action .link-card__media {
  margin-bottom: 0.3rem;
}

.link-card--action .link-card__icon {
  display: none;
}

.link-card--action h3 {
  margin-bottom: 0.12rem;
}

.link-card--action p {
  color: var(--ink-soft);
  line-height: 1.54;
}

.link-card--action .button {
  width: fit-content;
  min-height: 40px;
  margin-top: 0.4rem;
  background: var(--olive);
  color: #fff;
}

@media (min-width: 760px) {
  .link-card--action h3,
  .link-card--action p,
  .link-card--action .link-card__cta {
    padding-right: clamp(0.5rem, 1.6vw, 1.15rem);
  }
}

.link-card--action .button:hover,
.link-card--action .button:focus-visible {
  background: var(--pine);
}

.link-card__placeholder {
  color: var(--ink-soft);
  font-weight: 700;
}

.day-card {
  display: grid;
  gap: 1.05rem;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.day-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.day-card__header h3 {
  font-size: 1.5rem;
}

.event-stack {
  display: grid;
  grid-template-rows: repeat(var(--event-count, 1), minmax(0, 1fr));
  gap: 0.9rem;
  min-height: 100%;
}

.event-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 186px;
  padding: 1.05rem;
  border-radius: 18px;
  background: rgba(246, 249, 247, 0.96);
  border: 1px solid rgba(28, 42, 58, 0.08);
  box-shadow: 0 14px 30px rgba(28, 42, 58, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.event-chip:hover,
a.event-chip:focus-visible {
  border-color: rgba(28, 42, 58, 0.16);
  box-shadow: 0 18px 38px rgba(28, 42, 58, 0.14);
  transform: translateY(-2px);
}

.event-chip--image {
  background:
    linear-gradient(180deg, rgba(17, 28, 40, 0.01) 0%, rgba(17, 28, 40, 0.03) 40%, rgba(17, 28, 40, 0.56) 100%),
    var(--event-image) center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.event-chip__content {
  display: grid;
  gap: 0.34rem;
  margin-top: auto;
  max-width: 100%;
  padding-right: 2.1rem;
}

.event-chip__time {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-chip--image .event-chip__time {
  color: #ffd08d;
}

.event-chip__body {
  display: grid;
  gap: 0.12rem;
}

.event-chip__body strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 0.98;
}

.event-chip__venue {
  color: rgba(255, 249, 241, 0.94);
  font-weight: 600;
  font-size: 0.95rem;
}

.event-chip__address,
.event-chip__meta {
  font-size: 0.8rem;
  line-height: 1.28;
}

.event-chip__address {
  color: var(--ink-soft);
}

.event-chip__meta {
  color: var(--ink-soft);
}

.event-chip--image .event-chip__body strong,
.event-chip--image .event-chip__venue,
.event-chip--image .event-chip__address,
.event-chip--image .event-chip__meta {
  color: rgba(255, 249, 241, 0.96);
}

.button--chip {
  width: fit-content;
  min-height: 32px;
  padding: 0.38rem 0.82rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--night);
  font-size: 0.84rem;
  border-color: rgba(28, 42, 58, 0.08);
}

.button--chip:hover,
.button--chip:focus-visible {
  background: rgba(255, 248, 241, 1);
}

.button--chip-disabled {
  pointer-events: none;
  opacity: 0.88;
}

.event-chip__arrow {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 249, 241, 0.9);
  text-decoration: none;
  z-index: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

a.event-chip:hover .event-chip__arrow,
a.event-chip:focus-visible .event-chip__arrow {
  color: rgba(255, 249, 241, 1);
  transform: translateX(3px);
}

.event-chip__arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-resource {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.quick-resource__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.quick-resource h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
}

.quick-resource__links {
  display: grid;
  gap: 0.42rem;
}

.quick-resource__links a,
.quick-resource__placeholder {
  width: fit-content;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
}

.quick-resource__placeholder {
  opacity: 0.82;
}

.info-panel {
  display: grid;
  gap: 0.35rem;
}

.callout-band {
  min-height: 320px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--pine) 18%, white);
  display: grid;
  align-content: end;
}

.callout-band__card {
  max-width: 28rem;
  padding: 1.25rem 1.3rem 0;
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  border-top: 1px solid var(--line-strong);
}

.leadership-group {
  display: grid;
  gap: 1.75rem;
  padding: 0;
  border-radius: 0;
}

.leadership-group + .leadership-group {
  padding-top: 2.8rem;
  border-top: 1px solid var(--line-strong);
}

.leadership-group__intro {
  display: grid;
  gap: 0.35rem;
  max-width: 52rem;
}

.leadership-group__intro h3 {
  color: var(--pine);
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.leadership-people {
  display: grid;
  gap: 1.35rem;
}

.leadership-person {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.leadership-person__photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ede7db;
}

.leadership-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--portrait-position, center);
  transform: scale(var(--portrait-scale, 1));
  transform-origin: var(--portrait-focus, center);
}

.leadership-person__photo--placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--portrait-accent) 28%, white), color-mix(in srgb, var(--portrait-accent) 70%, black 2%));
}

.leadership-person__photo--placeholder::before {
  content: "";
  position: absolute;
  top: 21px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.leadership-person__photo--placeholder::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 64px;
  height: 42px;
  border-radius: 52% 52% 40% 40%;
  background: rgba(255, 255, 255, 0.8);
}

.leadership-person__photo--placeholder span {
  position: absolute;
  bottom: 8px;
  right: 10px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.leadership-person__body {
  display: grid;
  gap: 0.12rem;
}

.leadership-person__body h4 {
  font-size: 1.34rem;
}

.leadership-person__role {
  color: var(--clay);
  font-weight: 700;
}

.resource-category {
  display: grid;
  gap: 1.4rem;
  padding: 0;
  align-content: start;
  border-top: 0;
}

.resource-category__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.resource-category__header h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  margin-bottom: 0;
}

.resource-category__links {
  display: grid;
  gap: 0.28rem;
}

.resource-link {
  display: grid;
  gap: 0.12rem;
  padding: 0.82rem 0;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.resource-link strong {
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 600;
}

.resource-link span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.resource-link--placeholder strong,
.resource-link--placeholder span {
  color: var(--ink);
  opacity: 0.82;
}

.spotlight {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

a.spotlight {
  cursor: pointer;
}

a.spotlight .spotlight__media {
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.spotlight:hover .spotlight__media,
a.spotlight:focus-visible .spotlight__media {
  box-shadow: 0 34px 82px rgba(22, 35, 50, 0.32);
  transform: translateY(-2px);
}

.spotlight--media-left .spotlight__media {
  order: -1;
}

.spotlight__copy {
  display: grid;
  gap: 0.88rem;
  align-content: center;
}

.spotlight__eyebrow {
  color: #cfe6ee;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight__copy h2 {
  font-size: clamp(2.45rem, 4.9vw, 4.55rem);
}

.spotlight__venue {
  color: rgba(255, 249, 241, 0.98);
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 600;
}

.spotlight__details,
.spotlight__note {
  max-width: 40rem;
}

.spotlight__details {
  color: rgba(255, 249, 241, 0.82);
  font-size: 0.98rem;
}

.spotlight__note {
  color: rgba(255, 249, 241, 0.72);
  font-size: 1.04rem;
  line-height: 1.74;
}

.spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.2rem;
}

.spotlight__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(22, 35, 50, 0.24);
  border: 1px solid rgba(255, 248, 241, 0.12);
}

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

.page-title {
  padding: 3.2rem 0 1.2rem;
}

.resource-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 1rem;
}

.resource-jumps a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

.resource-jumps a:hover,
.resource-jumps a:focus-visible {
  border-color: currentColor;
}

[data-site-footer] {
  padding: 2rem 0 1.8rem;
  background: var(--parchment);
  border-top: 0;
}

body[data-page="home"] header,
body[data-page="about"] header,
body[data-page="new-here"] header,
body[data-page="events"] header,
body[data-page="elders-quorum"] header,
body[data-page="relief-society"] header,
body[data-page="service-opportunities"] header {
  position: absolute;
  inset: 0 0 auto;
}

body[data-page="home"] header .brand strong,
body[data-page="home"] header .brand__wordmark span,
body[data-page="home"] header .site-nav__links a,
body[data-page="about"] header .brand strong,
body[data-page="about"] header .brand__wordmark span,
body[data-page="about"] header .site-nav__links a,
body[data-page="new-here"] header .brand strong,
body[data-page="new-here"] header .brand__wordmark span,
body[data-page="new-here"] header .site-nav__links a,
body[data-page="events"] header .brand strong,
body[data-page="events"] header .brand__wordmark span,
body[data-page="events"] header .site-nav__links a,
body[data-page="elders-quorum"] header .brand strong,
body[data-page="elders-quorum"] header .brand__wordmark span,
body[data-page="elders-quorum"] header .site-nav__links a,
body[data-page="relief-society"] header .brand strong,
body[data-page="relief-society"] header .brand__wordmark span,
body[data-page="relief-society"] header .site-nav__links a,
body[data-page="service-opportunities"] header .brand strong,
body[data-page="service-opportunities"] header .brand__wordmark span,
body[data-page="service-opportunities"] header .site-nav__links a {
  color: #ffffff;
}

body[data-page="home"] header .site-nav__links a[aria-current="page"],
body[data-page="about"] header .site-nav__links a[aria-current="page"],
body[data-page="new-here"] header .site-nav__links a[aria-current="page"],
body[data-page="events"] header .site-nav__links a[aria-current="page"],
body[data-page="elders-quorum"] header .site-nav__links a[aria-current="page"],
body[data-page="relief-society"] header .site-nav__links a[aria-current="page"],
body[data-page="service-opportunities"] header .site-nav__links a[aria-current="page"] {
  color: #dceef5;
}

body[data-page="home"] header .site-nav__links a:hover,
body[data-page="home"] header .site-nav__links a:focus-visible,
body[data-page="about"] header .site-nav__links a:hover,
body[data-page="about"] header .site-nav__links a:focus-visible,
body[data-page="new-here"] header .site-nav__links a:hover,
body[data-page="new-here"] header .site-nav__links a:focus-visible,
body[data-page="events"] header .site-nav__links a:hover,
body[data-page="events"] header .site-nav__links a:focus-visible,
body[data-page="elders-quorum"] header .site-nav__links a:hover,
body[data-page="elders-quorum"] header .site-nav__links a:focus-visible,
body[data-page="relief-society"] header .site-nav__links a:hover,
body[data-page="relief-society"] header .site-nav__links a:focus-visible,
body[data-page="service-opportunities"] header .site-nav__links a:hover,
body[data-page="service-opportunities"] header .site-nav__links a:focus-visible {
  color: #eef7fb;
}

body[data-page="home"] header .site-nav__cta:hover,
body[data-page="home"] header .site-nav__cta:focus-visible,
body[data-page="about"] header .site-nav__cta:hover,
body[data-page="about"] header .site-nav__cta:focus-visible,
body[data-page="new-here"] header .site-nav__cta:hover,
body[data-page="new-here"] header .site-nav__cta:focus-visible,
body[data-page="events"] header .site-nav__cta:hover,
body[data-page="events"] header .site-nav__cta:focus-visible,
body[data-page="elders-quorum"] header .site-nav__cta:hover,
body[data-page="elders-quorum"] header .site-nav__cta:focus-visible,
body[data-page="relief-society"] header .site-nav__cta:hover,
body[data-page="relief-society"] header .site-nav__cta:focus-visible {
  background: var(--pine);
  color: #fff;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-shell__title {
  color: var(--ink);
}

.brand__wordmark--footer {
  display: grid;
  gap: 0.12rem;
  width: fit-content;
}

.brand__wordmark--footer strong {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.6rem, 2.25vw, 2.12rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.88;
}

.brand__wordmark--footer span {
  color: var(--olive);
  width: fit-content;
  margin-left: 0.08rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-shell__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.35;
}

.culture-card {
  display: grid;
  gap: 0.95rem;
  padding-top: 0;
}

.culture-card__icon {
  display: inline-flex;
}

.culture-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.culture-card h3 {
  font-size: clamp(1.38rem, 2.2vw, 1.8rem);
}

.culture-card p {
  color: var(--ink-soft);
}

.image-feature-card {
  display: grid;
  gap: 0.9rem;
}

.image-feature-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 36px rgba(26, 44, 40, 0.1);
  aspect-ratio: 1.45 / 1;
}

.image-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature-card h3 {
  margin-bottom: -0.42rem;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.image-feature-card p {
  color: var(--ink-soft);
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.story-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.story-copy p {
  max-width: 42rem;
}

.story-figure {
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--sky) 62%, white);
  box-shadow: 0 22px 48px rgba(26, 44, 40, 0.12);
}

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

.story-stack {
  display: grid;
  gap: 2.4rem;
}

.story-split {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.story-split__copy {
  display: grid;
  gap: 0.75rem;
}

.story-split__copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.story-split__copy p {
  max-width: 40rem;
}

.story-split__media {
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(26, 44, 40, 0.12);
}

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

.faq-stack {
  display: grid;
  gap: 0.95rem;
}

.faq-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 1rem;
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.34rem);
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--pine);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card__body {
  padding-top: 0.75rem;
  max-width: 56rem;
}

.section--faq-invert {
  background: linear-gradient(180deg, rgba(47, 91, 79, 0.98), rgba(35, 69, 60, 0.98));
  color: rgba(255, 252, 247, 0.94);
}

.section--faq-invert .section-heading h2,
.section--faq-invert .faq-card summary,
.section--faq-invert .faq-card__body p {
  color: inherit;
}

.section--faq-invert .faq-card {
  border-top-color: rgba(255, 252, 247, 0.22);
}

.section--faq-invert .faq-card summary::after {
  color: rgba(255, 252, 247, 0.94);
}

.slack-banner {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--pine);
  color: rgba(255, 252, 247, 0.94);
}

.slack-banner__copy {
  display: grid;
  gap: 0.7rem;
}

.slack-banner__eyebrow {
  color: rgba(222, 242, 236, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slack-banner__copy h2,
.slack-banner__copy p {
  color: inherit;
}

.slack-banner__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.slack-banner__copy p {
  max-width: 44rem;
  color: rgba(255, 252, 247, 0.82);
}

.slack-banner__actions {
  display: flex;
  align-items: center;
}

.slack-banner--centered {
  justify-items: center;
  text-align: center;
}

.slack-banner--centered .slack-banner__copy {
  justify-items: center;
}

.slack-banner--centered .slack-banner__copy p {
  margin-inline: auto;
}

.slack-banner--centered .slack-banner__actions {
  justify-content: center;
}

.slack-banner--full {
  padding: 3rem 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 252, 247, 0.96);
}

.slack-banner--full .slack-banner__copy p {
  color: rgba(255, 252, 247, 0.84);
}

.slack-banner .button {
  background: #fff;
  color: var(--pine);
}

.slack-banner .button:hover,
.slack-banner .button:focus-visible {
  background: color-mix(in srgb, white 84%, var(--sky));
}

.section--org-priorities {
  background: linear-gradient(180deg, rgba(53, 91, 112, 0.98), rgba(28, 48, 60, 0.98));
  color: rgba(255, 252, 247, 0.94);
}

.section--slack-band {
  padding: 0;
  background: var(--pine);
}

.section--org-priorities .section-heading {
  max-width: none;
}

.section--org-priorities .section-heading h2 {
  color: inherit;
}

.section--org-priorities .check-card {
  padding-top: 0;
  border-top: 0;
}

.section--org-priorities .check-card h3,
.section--org-priorities .check-card p {
  color: inherit;
}

.section--org-priorities .check-card p {
  color: rgba(255, 252, 247, 0.8);
}

#new-here-leadership-section .section-heading {
  max-width: none;
}

.event-directory-grid {
  display: grid;
  gap: 1.35rem;
}

.week-grid {
  display: grid;
  gap: 1rem;
}

.event-directory-card {
  display: grid;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-strong);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

a.event-directory-card:hover,
a.event-directory-card:focus-visible {
  border-color: rgba(139, 87, 65, 0.46);
  transform: translateY(-2px);
}

.event-directory-card__media {
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.event-directory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-directory-card__body {
  display: grid;
  gap: 0.78rem;
  align-content: start;
}

.event-directory-card__when {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-directory-card__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.event-directory-card__summary {
  color: var(--ink);
  max-width: 42rem;
}

.event-directory-card__facts {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.event-directory-card__facts div {
  display: grid;
  gap: 0.12rem;
}

.event-directory-card__facts dt {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-directory-card__facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.event-directory-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

a.event-related__card {
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

a.event-related__card:hover,
a.event-related__card:focus-visible {
  border-color: rgba(28, 42, 58, 0.16);
}

a.event-related__card:hover .text-link,
a.event-related__card:focus-visible .text-link {
  color: var(--forest);
}

.event-detail-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.event-detail-hero__copy {
  display: grid;
  gap: 1.15rem;
}

.event-detail-hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.event-detail-hero__summary {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.event-detail-hero__story {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 0.35rem;
}

.event-detail-hero__story p {
  color: var(--ink-soft);
}

.event-detail-hero__story p:first-child {
  color: var(--ink);
}

.event-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.9rem 1.5rem;
  margin: 0.35rem 0 0;
  text-align: left;
}

.event-detail-hero__facts div {
  display: grid;
  gap: 0.15rem;
  width: max-content;
  max-width: 100%;
}

.event-detail-hero__facts dt {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-detail-hero__facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.event-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.35rem;
}

.event-detail-hero__media {
  min-height: 380px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(21, 34, 46, 0.12);
}

.event-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-gallery {
  display: grid;
  gap: 0;
  margin-top: 3.6rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.event-gallery__tile {
  margin: 0;
  min-height: 220px;
  border-radius: 0;
  overflow: hidden;
}

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

.photo-masonry {
  column-count: 4;
  column-gap: 1rem;
}

.photo-masonry__item {
  margin: 0 0 1rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--sky) 62%, white);
  box-shadow: 0 14px 32px rgba(21, 34, 46, 0.08);
  transform: translateZ(0);
}

.photo-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.event-related {
  margin-top: 3rem;
}

.event-related__grid {
  display: grid;
  gap: 1.2rem;
}

.event-related__card {
  display: grid;
  gap: 0.9rem;
  padding-top: 0;
  border-top: 0;
}

.event-related__media {
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--related-image) center / cover no-repeat;
}

.event-related__body {
  display: grid;
  gap: 0.32rem;
}

.event-related__when {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.45rem;
}

.event-related__body h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.event-related__arrow {
  display: none;
}

.event-detail-body {
  display: grid;
  gap: 2rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-strong);
}

.event-detail-body__copy,
.event-detail-body__expect {
  display: grid;
  gap: 0.75rem;
}

.event-detail-body__copy h2,
.event-detail-body__expect h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.event-detail-body ul {
  display: grid;
  gap: 0.6rem;
}

.section--feature-home {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.78));
}

.section--feature-home::before {
  content: "";
  position: absolute;
  inset: -4% 0;
  background: url("../../mountbg.jpg") center top / cover no-repeat;
  filter: grayscale(1) brightness(0.58) contrast(1.04);
  transform: translate3d(0, var(--feature-home-parallax, 0px), 0) scale(1.04);
  transform-origin: center top;
  will-change: transform;
  z-index: 0;
}

.section--feature-home > .shell {
  position: relative;
  z-index: 1;
}

.section--events-hero {
  padding-top: 8.8rem;
  padding-bottom: 5.6rem;
}

.section--feature-home .spotlight__copy h2,
.section--feature-home .spotlight__venue,
.section--feature-home .spotlight__details,
.section--feature-home .spotlight__note {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.section--feature-home .spotlight__copy h2 {
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.section--feature-home .spotlight__actions .button {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.section--schedule-home {
  position: relative;
}

.section--resources-home {
  padding-top: 4rem;
}

.section--events-directory {
  padding-top: 4.4rem;
}

.section--events-season {
  padding-top: 4.4rem;
}

body[data-page="events"] .section--events-season .feature-card--event {
  display: block;
  overflow: hidden;
  min-height: 390px;
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__meta {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  display: grid;
  gap: 0.26rem;
  justify-content: start;
  margin-bottom: 0;
  text-align: left;
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__body {
  position: absolute;
  left: 1.2rem;
  right: 9rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.28rem;
  padding-right: 1rem;
  text-align: left;
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__body h3,
body[data-page="events"] .section--events-season .feature-card--event .feature-card__subhead {
  margin-bottom: 0;
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__body h3 {
  font-size: clamp(2rem, 2.6vw, 2.1875rem);
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__actions {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: max-content;
  max-width: calc(100% - 2.4rem);
  margin-top: 0;
  justify-content: flex-end;
}

body[data-page="events"] .section--events-season .feature-card--event .feature-card__actions .text-link {
  overflow-wrap: normal;
  white-space: nowrap;
}

.page-title--resources {
  position: relative;
}

.page-title--resources .shell {
  display: grid;
  gap: 0.45rem;
}

.page-title--service .shell {
  display: grid;
  gap: 0.75rem;
}

.page-title--service p {
  max-width: 52rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.service-hero {
  min-height: clamp(580px, 86vh, 840px);
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(8, 16, 15, 0.64) 0%,
      rgba(12, 24, 30, 0.42) 22%,
      rgba(12, 24, 30, 0.24) 48%,
      rgba(12, 24, 30, 0.72) 100%
    ),
    url("../img/generated/service-ward-opportunity.jpg") center / cover no-repeat;
}

.service-hero__link {
  display: grid;
  min-height: inherit;
  text-decoration: none;
  color: inherit;
}

.service-hero__inner {
  display: grid;
  align-content: center;
  gap: 1.1rem;
  min-height: inherit;
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.service-hero h1 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(3.8rem, 8.4vw, 7.4rem);
  line-height: 0.9;
}

.service-hero p {
  max-width: 42rem;
  color: rgba(255, 249, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.service-link-card:hover .service-link-card__media,
.service-link-card:focus-visible .service-link-card__media {
  border-color: rgba(28, 42, 58, 0.16);
  box-shadow: 0 22px 48px rgba(21, 34, 46, 0.12);
  transform: translateY(-2px);
}

.service-link-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-link-grid {
  display: grid;
  gap: clamp(2rem, 3.4vw, 3rem) 1.35rem;
}

.service-link-card {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.service-link-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(28, 42, 58, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(21, 34, 46, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-link-card__body {
  display: grid;
  gap: 0.55rem;
  padding-right: 0.4rem;
}

.service-link-card h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.quote-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 500px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: -4% 0;
  background: var(--quote-image) center / cover no-repeat;
  transform: translate3d(0, var(--quote-band-parallax, 0px), 0) scale(1.04);
  transform-origin: center center;
  will-change: transform;
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 44, 40, 0.46);
}

.quote-band__inner {
  width: min(calc(100% - 2rem), 960px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-band__quote {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.quote-band__quote p {
  color: rgba(255, 248, 240, 0.97);
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  line-height: 1.1;
}

.quote-band__quote footer {
  color: rgba(255, 248, 240, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  background: transparent;
  padding: 0;
}

.photo-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(260px, 34vw, 420px);
  overflow: hidden;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: -4% 0;
  background: var(--band-image) center center / cover no-repeat;
  transform: translate3d(0, var(--photo-band-parallax, 0px), 0) scale(1.04);
  transform-origin: center center;
  will-change: transform;
}

#org-leadership .leadership-person__photo {
  width: 132px;
  height: 132px;
}

#org-leadership .leadership-person__body h4 {
  font-size: 1.42rem;
}

.leadership-group + .leadership-group {
  padding-top: 3.2rem;
  border-top: 0;
}

.lesson-grid {
  display: grid;
  gap: 0;
}

.lesson-row {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.lesson-row:first-child {
  border-top: 1px solid var(--line-strong);
}

.lesson-row__date,
.lesson-row__teacher {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lesson-row__teacher {
  color: var(--ink-soft);
}

.lesson-row__topic {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.38;
}

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

.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 24px), 0)
    scale(var(--reveal-scale, 1));
  transform-origin: center center;
  transition:
    opacity var(--reveal-duration, 780ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration, 780ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

@media (min-width: 900px) {
  .feature-grid,
  .check-grid,
  .faq-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #values-grid.feature-grid,
  #about-overview.feature-grid,
  #new-here-steps.feature-grid,
  #org-priorities.check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-link-row,
  .quick-link-row--shared {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .link-grid--action {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .week-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
  }

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

  .story-split--reverse .story-split__media {
    order: -1;
  }

  #resource-categories {
    display: grid;
    gap: 3.4rem;
  }

  .resource-category {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 2.4rem;
  }

  .resource-category__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.6rem;
  }

  .service-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .spotlight {
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.92fr);
  }

  .spotlight--media-left {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 0.96fr);
  }

  .event-directory-card {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .event-directory-card:nth-child(even) .event-directory-card__media {
    order: 2;
  }

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

  .event-detail-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.95fr);
  }

  .event-detail-hero__facts {
    flex-wrap: nowrap;
  }

  .event-gallery {
    grid-template-columns: 1.15fr repeat(3, 0.9fr);
    grid-template-rows: 260px 260px;
  }

  .event-gallery__tile--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .event-gallery__tile--2 {
    grid-column: 2 / span 3;
    grid-row: 1;
  }

  .event-gallery__tile--3,
  .event-gallery__tile--4,
  .event-gallery__tile--5 {
    grid-row: 2;
    min-height: 0;
  }

  .event-gallery__tile--3 {
    grid-column: 2;
  }

  .event-gallery__tile--4 {
    grid-column: 3;
  }

  .event-gallery__tile--5 {
    grid-column: 4;
  }

  .event-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lesson-row {
    grid-template-columns: 110px 180px minmax(0, 1fr);
    align-items: start;
    column-gap: 1.4rem;
  }

  .photo-masonry {
    column-count: 3;
  }
}

@media (max-width: 899px) {
  .section {
    padding: 3.6rem 0;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-shell__meta {
    justify-content: flex-start;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-link-row,
  .quick-link-row--shared {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-category {
    padding-top: 1rem;
  }

  .resource-category__links {
    grid-template-columns: 1fr;
  }

  .photo-masonry {
    column-count: 2;
  }

}

@media (max-width: 640px) {
  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section,
  article,
  div,
  p,
  h1,
  h2,
  h3,
  .button,
  .text-link {
    min-width: 0;
  }

  p,
  h1,
  h2,
  h3,
  .button,
  .text-link {
    overflow-wrap: break-word;
  }

  h1,
  h2,
  h3 {
    text-wrap: balance;
  }

  p {
    text-wrap: pretty;
  }

  header {
    padding-top: 1.35rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.95rem 1rem;
    align-items: center;
    justify-content: stretch;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0.45rem;
    text-align: left;
    position: relative;
  }

  .brand {
    justify-self: start;
  }

  .brand__wordmark {
    justify-items: start;
    margin-inline: 0;
  }

  .brand strong {
    font-size: clamp(2.18rem, 9vw, 2.55rem);
    line-height: 0.86;
    letter-spacing: -0.035em;
  }

  .brand__wordmark span {
    width: max-content;
    margin-left: 0.08rem;
    font-size: 0.58rem;
    letter-spacing: 0.075em;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .site-nav__right {
    display: contents;
  }

  .site-nav__links {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.78rem, 4vw, 1.15rem);
    justify-content: center;
    width: fit-content;
    grid-column: 1 / -1;
    justify-self: center;
    margin-inline: auto;
    overflow-x: visible;
    padding-bottom: 0.25rem;
    max-width: 100%;
    scrollbar-width: none;
  }

  .site-nav__links::-webkit-scrollbar {
    display: none;
  }

  .site-nav__links a {
    flex: 0 0 auto;
    font-size: clamp(0.86rem, 3.7vw, 0.94rem);
  }

  .site-nav__cta {
    display: inline-flex;
    position: absolute;
    top: 0;
    right: 5rem;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
    min-height: 34px;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--olive) 90%, white);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(18, 30, 42, 0.16);
  }

  body[data-page="home"] header .site-nav__cta,
  body[data-page="about"] header .site-nav__cta,
  body[data-page="new-here"] header .site-nav__cta,
  body[data-page="events"] header .site-nav__cta,
  body[data-page="elders-quorum"] header .site-nav__cta,
  body[data-page="relief-society"] header .site-nav__cta {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--night);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  body[data-page="service-opportunities"] header .site-nav__cta {
    padding-inline: 0.64rem;
    font-size: 0.74rem;
    letter-spacing: -0.01em;
  }

  .feature-card--event {
    min-height: 340px;
    padding: 1.05rem;
    display: block;
    overflow: hidden;
  }

  .feature-card--event .feature-card__meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.22rem;
    justify-content: start;
    margin-bottom: 0;
    text-align: left;
  }

  .feature-card__meta strong {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .feature-card--event .feature-card__body {
    position: absolute;
    left: 1rem;
    right: 6.9rem;
    bottom: 1rem;
    display: grid;
    gap: 0.24rem;
    text-align: left;
  }

  .feature-card--event .feature-card__body h3 {
    margin-bottom: 0;
    font-size: clamp(1.22rem, 5.65vw, 1.5rem);
    line-height: 1.02;
  }

  .feature-card--event .feature-card__subhead {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.24;
  }

  .feature-card--event .feature-card__body p:not(.feature-card__subhead) {
    max-width: 28ch;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .feature-card--event .feature-card__actions {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: max-content;
    max-width: calc(100% - 2rem);
    margin-top: 0;
    justify-content: flex-end;
  }

  .feature-card--event .feature-card__actions .text-link {
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .feature-card--visual .feature-card__body p:not(.feature-card__subhead) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body[data-page="events"] .section--events-season .feature-card--event {
    min-height: 286px;
  }

  body[data-page="events"] .section--events-season .feature-card--event .feature-card__body {
    right: 1rem;
  }

  body[data-page="events"] .section--events-season .feature-card--event .feature-card__actions {
    display: none;
  }

  body[data-page="events"] .section--events-season .feature-card--visual .feature-card__body p:not(.feature-card__subhead) {
    -webkit-line-clamp: 1;
  }

  .week-grid {
    gap: 1.6rem;
  }

  .day-card {
    height: auto;
    gap: 0.85rem;
  }

  .event-stack {
    grid-template-rows: none;
    min-height: auto;
    gap: 0.9rem;
  }

  .event-chip {
    min-height: 0;
    height: 172px;
    padding: 1rem;
    border-radius: 16px;
  }

  .event-chip--image {
    min-height: 0;
  }

  .event-chip__body strong {
    font-size: 1.02rem;
    line-height: 1.05;
  }

  .event-chip__time {
    font-size: 0.68rem;
  }

  .event-chip__venue,
  .event-chip__meta,
  .event-chip__address {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .event-chip__arrow {
    right: 1rem;
    bottom: 1rem;
    width: 24px;
    height: 24px;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
  }

  .spotlight {
    gap: 1.35rem;
  }

  .spotlight__copy {
    max-width: min(100%, 42rem);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  body[data-page="events"] .section--events-hero .spotlight__copy {
    max-width: 100%;
  }

  .spotlight__copy h2 {
    font-size: clamp(2.12rem, 9.35vw, 3rem);
    line-height: 0.98;
  }

  .spotlight__actions .button,
  .event-detail-hero__actions .button,
  .page-hero__actions .button,
  .hero__actions .button,
  .slack-banner__actions .button {
    min-height: 34px;
    padding: 0.48rem 0.9rem;
    font-size: 0.82rem;
    line-height: 1;
  }

  .spotlight__venue {
    font-size: 1.03rem;
    line-height: 1.22;
  }

  .spotlight__details {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .spotlight__details,
  .spotlight__note {
    max-width: min(100%, 37ch);
  }

  body[data-page="events"] .section--events-hero .spotlight__details,
  body[data-page="events"] .section--events-hero .spotlight__note {
    max-width: 100%;
  }

  .spotlight__note {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .spotlight__media {
    border-radius: 22px;
  }

  .section--events-hero {
    padding-top: 7.05rem;
    padding-bottom: 2rem;
  }

  .section--events-directory {
    padding-top: 3.6rem;
  }

  .event-directory-card {
    gap: 1rem;
    padding-top: 1.4rem;
  }

  .event-directory-card__media {
    min-height: 210px;
    border-radius: 18px;
  }

  .event-directory-card__body,
  .event-directory-card__summary,
  .event-related__body {
    max-width: 35ch;
  }

  .event-directory-card__facts {
    gap: 0.65rem;
  }

  .event-detail-hero {
    gap: 1.8rem;
  }

  .event-detail-hero__copy {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    justify-items: center;
    overflow-wrap: anywhere;
  }

  .event-detail-hero__copy h1 {
    font-size: 2.1875rem;
    line-height: 0.96;
  }

  .event-detail-hero__summary {
    max-width: min(100%, 27ch);
    margin-inline: auto;
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .event-detail-hero__story {
    gap: 0.9rem;
  }

  .event-detail-hero__story p {
    max-width: min(100%, 26ch);
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.65;
  }

  .event-detail-hero__facts {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 0.9rem;
    max-width: 100%;
    text-align: center;
  }

  .event-detail-hero__facts div {
    justify-items: center;
    width: 100%;
    max-width: min(100%, 29ch);
  }

  .event-detail-hero__facts dd {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .event-detail-hero__media {
    order: -1;
    min-height: 300px;
    border-radius: 24px;
  }

  .event-detail-hero__actions {
    justify-content: center;
    margin-top: 0.25rem;
  }

  .event-related__grid {
    gap: 0.9rem;
  }

  .event-related__card {
    position: relative;
    display: block;
    min-height: 172px;
    overflow: hidden;
    padding: 1rem;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(17, 32, 48, 0.06) 0%, rgba(21, 39, 59, 0.22) 40%, rgba(17, 30, 44, 0.72) 100%),
      var(--related-image) center / cover no-repeat;
  }

  .event-related__media {
    display: none;
  }

  .event-related__body {
    position: absolute;
    inset: auto 1rem 1rem;
    display: grid;
    gap: 0.15rem;
    width: calc(100% - 4.75rem);
    max-width: calc(100% - 4.75rem);
    min-width: 0;
    text-align: left;
  }

  .event-related__when {
    position: absolute;
    top: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
    margin-top: 0;
    color: #f0d7a8;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .event-related__body h3,
  .event-related__body p,
  .event-related__body .text-link {
    color: rgba(255, 249, 241, 0.98);
  }

  .event-related__body h3 {
    font-size: 1.02rem;
    line-height: 1.05;
  }

  .event-related__body p:not(.event-related__when) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.84rem;
    line-height: 1.38;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .event-related__body .text-link {
    display: none;
  }

  .event-related__arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgba(255, 249, 241, 0.9);
    transition:
      color 180ms ease,
      transform 180ms ease;
  }

  a.event-related__card:hover .event-related__arrow,
  a.event-related__card:focus-visible .event-related__arrow {
    color: rgba(255, 249, 241, 1);
    transform: translateX(3px);
  }

  .event-related__arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .event-gallery {
    margin-top: 2.8rem;
  }

  .quote-band {
    min-height: 330px;
    padding: 3rem 0;
  }

  .quote-band__inner {
    width: min(calc(100% - 2rem), 36rem);
  }

  .quote-band__quote p {
    max-width: 35ch;
    font-size: clamp(1.08rem, 4.55vw, 1.42rem);
    line-height: 1.2;
  }

  .quote-band__quote footer {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .link-card,
  .image-feature-card,
  .check-card {
    max-width: 100%;
    justify-items: center;
    text-align: center;
  }

  .link-card p,
  .image-feature-card p,
  .check-card p {
    max-width: min(100%, 36ch);
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.55;
    text-align: center;
  }

  .link-card h3,
  .image-feature-card h3,
  .check-card h3 {
    font-size: clamp(1.18rem, 5.3vw, 1.42rem);
    line-height: 1.14;
  }

  .link-card--action .link-card__cta,
  .link-card--action .button {
    justify-self: center;
  }

  .section--org-priorities .check-card {
    justify-items: center;
    text-align: center;
  }

  .section--org-priorities .section-heading h2 {
    font-size: 1.625rem;
    line-height: 1.05;
  }

  .section--org-priorities .check-card h3 {
    font-size: 1.0625rem;
    line-height: 1.18;
  }

  .section--org-priorities .check-card p {
    max-width: min(100%, 34ch);
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .section--org-priorities .check-grid {
    gap: 1.35rem;
  }

  #new-here-steps {
    gap: 2.35rem;
  }

  #new-here-steps .image-feature-card {
    gap: 0.65rem;
  }

  #new-here-steps .image-feature-card h3 {
    font-size: 1.18rem;
    line-height: 1.14;
  }

  #new-here-steps .image-feature-card p {
    max-width: 34ch;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  #new-here-steps .image-feature-card p {
    margin-bottom: 0.2rem;
  }

  #new-here-overview .story-split {
    justify-items: center;
    text-align: center;
  }

  #new-here-overview .story-split__copy {
    justify-items: center;
    text-align: center;
  }

  #new-here-overview .story-split__copy h3 {
    font-size: 1.24rem;
    line-height: 1.12;
  }

  #new-here-overview .story-split__copy p {
    max-width: min(100%, 36ch);
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.55;
    text-align: center;
  }

  #new-here-overview .story-split__media {
    min-height: auto;
    aspect-ratio: 1.35 / 1;
  }

  body[data-page="new-here"] .section-heading h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
    line-height: 1.05;
  }

  body[data-page="new-here"] .page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.35rem);
  }

  body[data-page="new-here"] .page-hero__lede {
    max-width: min(100%, 36ch);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .image-feature-card__media {
    aspect-ratio: 1.35 / 1;
  }

  .resource-category {
    gap: 1.25rem;
  }

  .resource-category__header {
    justify-content: center;
    text-align: center;
  }

  .resource-category__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }

  .resource-link {
    min-width: 0;
  }

  .resource-link span {
    max-width: 24ch;
  }

  .resource-link strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .resource-link span {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .page-title--resources .shell {
    justify-items: center;
    text-align: center;
  }

  .page-title--resources p {
    max-width: min(100%, 37ch);
    margin-inline: auto;
  }

  .page-title--service .shell,
  .service-link-card,
  body[data-page="service-opportunities"] .section-heading {
    justify-items: center;
    text-align: center;
  }

  body[data-page="service-opportunities"] .shell {
    width: min(calc(100% - 2rem), 390px);
  }

  .page-title--service p,
  .service-link-card p,
  body[data-page="service-opportunities"] .section-heading p {
    max-width: min(100%, 31ch);
    margin-inline: auto;
  }

  .service-hero {
    min-height: 640px;
    background:
      linear-gradient(
        180deg,
        rgba(12, 24, 30, 0.62) 0%,
        rgba(12, 24, 30, 0.36) 38%,
        rgba(12, 24, 30, 0.74) 100%
      ),
      url("../img/generated/service-ward-opportunity.jpg") 58% center / cover no-repeat;
  }

  .service-hero__inner {
    align-content: end;
    justify-items: center;
    min-height: 640px;
    padding-top: 7.5rem;
    padding-bottom: 3.6rem;
    text-align: center;
  }

  .service-hero h1 {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(2.7rem, 13vw, 3.45rem);
  }

  .service-hero p {
    max-width: min(100%, 31ch);
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .service-link-grid,
  .service-link-card {
    width: 100%;
    max-width: 100%;
  }

  .service-link-grid {
    gap: 2.4rem;
  }

  .quick-link-row,
  .quick-link-row--shared {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 1.8rem 1.35rem;
  }

  .quick-resource {
    justify-items: center;
    text-align: center;
  }

  .quick-resource__top {
    justify-content: center;
  }

  .quick-resource__links {
    justify-items: center;
  }

  .section-heading {
    max-width: 34rem;
    margin-inline: auto;
    margin-bottom: 2rem;
    text-align: center;
  }

  .leadership-group__intro {
    margin-inline: auto;
    text-align: center;
  }

  .leadership-person {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    text-align: left;
  }

  .leadership-person__photo,
  #org-leadership .leadership-person__photo {
    width: 72px;
    height: 72px;
  }

  .leadership-person__photo--placeholder::before {
    top: 12px;
    width: 22px;
    height: 22px;
  }

  .leadership-person__photo--placeholder::after {
    bottom: 8px;
    width: 42px;
    height: 28px;
  }

  .leadership-person__photo--placeholder span {
    bottom: 5px;
    right: 7px;
    font-size: 0.56rem;
  }

  .leadership-person__body h4,
  #org-leadership .leadership-person__body h4 {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .leadership-person__role,
  .leadership-person__body p:not(.leadership-person__role) {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .photo-masonry {
    column-count: 2;
    column-gap: 0.8rem;
  }

  .photo-masonry__item {
    margin-bottom: 0.8rem;
    border-radius: 14px;
  }

  .footer-shell {
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-shell__meta {
    justify-content: center;
    row-gap: 0.18rem;
    gap: 0.25rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .footer-shell__meta span {
    font-size: inherit;
  }

  .reveal-ready .story-split.reveal {
    --reveal-x: 0px !important;
  }

  .footer-shell__meta span[aria-hidden="true"] {
    display: none;
  }

  .brand__wordmark--footer,
  .brand__wordmark--footer span {
    margin-inline: auto;
  }

  .brand__wordmark--footer strong {
    font-size: 2.24rem;
  }

  .brand__wordmark--footer span {
    font-size: 0.68rem;
    letter-spacing: 0.095em;
  }
}
