:root {
  --header-height: 92px;
  --ink: #031e29;
  --deep: #023a52;
  --panel: #043952;
  --panel-soft: #0d6b72;
  --green: #00d888;
  --green-deep: #00ad70;
  --sky: #8fadd5;
  --gold: #eed890;
  --white: #ffffff;
  --mist: #eef7f4;
  --muted: rgba(255, 255, 255, 0.72);
  --ink-muted: rgba(3, 30, 41, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(3, 30, 41, 0.14);
  --media-shade-strong: rgba(0, 0, 0, 0.84);
  --media-shade: rgba(0, 0, 0, 0.58);
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --font: "Futura PT", Futura, "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
}

/* Sermon series archive and detail pages */
.series-page-main,
.series-detail-main {
  background: #f1f8f6;
  color: var(--ink);
}

.series-hero {
  padding: 148px max(6vw, 28px) 92px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.series-hero > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.series-hero .kicker {
  margin-left: auto;
  margin-right: auto;
}

.series-hero h1 {
  margin: 8px auto 18px;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: .9;
  overflow-wrap: normal;
  word-break: normal;
}

.series-hero > p:last-child {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.12rem;
}

.series-archive-section,
.series-message-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 86px 28px 120px;
}

.series-archive-header,
.series-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 18px;
}

.series-archive-header h2,
.series-section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .95;
}

.series-filters {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.series-filters label {
  display: grid;
  gap: 6px;
  color: #4d626a;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.series-filters select,
.series-clear {
  min-height: 46px;
  border: 1px solid #b9c9c6;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0 38px 0 14px;
}

.series-clear {
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
}

.series-result-count {
  margin: 0 0 28px;
  color: #5d6d72;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.series-card {
  min-width: 0;
}

.series-artwork,
.series-detail-artwork {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #dce7e4;
  aspect-ratio: 16 / 9;
}

.series-artwork img,
.series-detail-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.series-card:hover .series-artwork img {
  transform: scale(1.025);
}

.series-card-copy {
  padding: 20px 2px 0;
}

.series-meta,
.series-detail-date {
  margin: 0 0 8px;
  color: #587078;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.series-card h2,
.series-message-card h3 {
  margin: 0 0 12px;
  overflow-wrap: normal;
  word-break: normal;
}

.series-card h2 a {
  color: inherit;
  text-decoration: none;
}

.series-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 158px 28px 92px;
}

.series-detail-intro h1 {
  margin: 8px 0 16px;
  font-size: clamp(3.1rem, 6.5vw, 6.2rem);
  line-height: .92;
  overflow-wrap: normal;
  word-break: normal;
}

.series-detail-intro > p:not(.kicker):not(.series-detail-date) {
  max-width: 620px;
  color: #51656c;
  font-size: 1.05rem;
  line-height: 1.7;
}

.series-related-pathway {
  margin: 0 0 18px;
}

.series-message-section {
  border-top: 1px solid #cedbd8;
}

.series-section-heading > span {
  color: #5d6d72;
  font-weight: 700;
}

.series-message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}

.series-message-card {
  overflow: hidden;
  border: 1px solid #c8d5d2;
  border-radius: 6px;
  background: #fff;
}

.series-message-card .message-player,
.series-message-card .watch-thumb {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.series-message-copy {
  padding: 24px;
}

.series-message-copy > p:not(.series-meta) {
  margin: -4px 0 16px;
  color: #5d6d72;
}

.series-empty {
  min-height: 70vh;
  padding: 180px 28px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .series-artwork img,
  .series-detail-artwork img {
    transition: none;
  }
}

@media (max-width: 900px) {
  .series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .series-archive-header,
  .series-section-heading,
  .series-detail-hero {
    align-items: stretch;
  }

  .series-archive-header,
  .series-section-heading {
    flex-direction: column;
  }

  .series-detail-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .series-hero {
    padding: 118px 22px 64px;
  }

  .series-hero h1 {
    font-size: clamp(3.25rem, 18vw, 5rem);
  }

  .series-archive-section,
  .series-message-section {
    padding: 64px 22px 88px;
  }

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

  .series-filters,
  .series-filters label,
  .series-filters select,
  .series-clear {
    width: 100%;
  }

  .series-detail-hero {
    padding: 120px 22px 68px;
    gap: 32px;
  }

  .series-detail-intro h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
}

/* Share Your Story */
.story-hero {
  min-height: 540px;
  display: grid;
  align-items: end;
  padding: 150px clamp(24px, 8vw, 120px) 80px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3)),
    var(--hero-image) center 42% / cover;
  border-bottom: 1px solid var(--line);
}

.story-hero-copy {
  width: min(790px, 100%);
}

.story-hero h1,
.story-intro h2,
.story-aside h2,
.story-confirmation h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.story-hero h1 {
  margin: 10px 0 20px;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.story-hero-copy > p:not(.kicker) {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.story-experience {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 7vw, 110px);
  background: #f6faf8;
  color: var(--ink);
}

.story-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: start;
}

.story-intro {
  padding-bottom: 56px;
}

.story-intro h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2.8rem, 5.7vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.story-intro > p:not(.kicker) {
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.story-progress {
  max-width: 470px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.story-progress a {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  background: transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.story-progress a.is-current:not(.is-complete) {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 216, 136, 0.18);
}

.story-progress a.is-complete {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: scale(1.06);
}

.story-progress span {
  height: 1px;
  flex: 1;
  background: var(--dark-line);
  transition: background 220ms ease;
}

.story-progress span.is-complete {
  background: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  .story-progress a,
  .story-progress span {
    transition: none;
  }

  .story-progress a.is-complete {
    transform: none;
  }
}

.story-form-section {
  scroll-margin-top: 110px;
  padding: 62px 0;
  border-top: 1px solid var(--dark-line);
}

.story-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}

.story-section-heading > span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-section-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.story-section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-muted);
}

.story-choice-grid,
.story-permission-grid {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

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

.story-choice,
.story-permission {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.story-choice input,
.story-permission input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.story-choice > span,
.story-permission > span {
  min-height: 88px;
  display: flex;
  align-items: center;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 20px 48px 20px 20px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.story-choice > span::after,
.story-permission > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(3, 30, 41, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
}

.story-choice:hover > span,
.story-permission:hover > span {
  border-color: rgba(0, 173, 112, 0.65);
  transform: translateY(-2px);
}

.story-choice input:checked + span,
.story-permission input:checked + span {
  border-color: var(--green-deep);
  background: rgba(0, 216, 136, 0.1);
}

.story-choice input:checked + span::after,
.story-permission input:checked + span::after {
  border: 5px solid var(--green);
  background: var(--ink);
}

.story-choice input:focus-visible + span,
.story-permission input:focus-visible + span,
.story-field input:focus-visible,
.story-form textarea:focus-visible,
.story-upload:focus-within {
  outline: 3px solid rgba(0, 173, 112, 0.28);
  outline-offset: 3px;
}

.story-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.story-field,
.story-textarea-label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-field > span,
.story-textarea-label > span {
  color: var(--green-deep);
}

.story-field input,
.story-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(3, 30, 41, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.1rem;
  text-transform: none;
}

.story-field input {
  min-height: 58px;
  padding: 12px 4px;
}

.story-field input:focus,
.story-form textarea:focus {
  border-color: var(--green-deep);
  outline: 0;
}

.story-field input[aria-invalid="true"],
.story-form textarea[aria-invalid="true"] {
  border-color: #a72b2b;
}

.story-choice-grid.has-error,
.story-permission-grid.has-error,
.story-upload.has-error {
  outline: 2px solid #a72b2b;
  outline-offset: 6px;
  border-radius: var(--radius);
}

.story-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.story-prompts div {
  padding: 18px;
  border-left: 2px solid var(--green);
  background: rgba(3, 30, 41, 0.035);
}

.story-prompts span {
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-prompts p {
  margin: 5px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.story-form textarea {
  min-height: 300px;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  resize: vertical;
  line-height: 1.65;
}

.story-writing-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.story-error {
  min-height: 1.25em;
  margin: 10px 0 0;
  color: #8b1e1e;
  font-size: 0.82rem;
  font-weight: 700;
}

.story-upload {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed rgba(3, 30, 41, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.story-upload.is-dragging,
.story-upload:hover {
  border-color: var(--green-deep);
  background: rgba(0, 216, 136, 0.06);
}

.story-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.story-upload-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.story-upload strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.story-upload small,
.story-technical-note,
.story-privacy-note {
  color: var(--ink-muted);
  font-weight: 400;
}

.story-technical-note,
.story-privacy-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
}

.story-permission-grid {
  grid-template-columns: 1fr;
}

.story-permission > span {
  min-height: 116px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.story-permission small {
  max-width: 570px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.story-submit-row {
  padding-top: 20px;
}

.story-submit {
  min-height: 58px;
  min-width: 230px;
  justify-content: center;
}

.story-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.story-submit-row > p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--ink-muted);
}

.story-aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.story-aside-card {
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.story-aside-card h2 {
  margin: 16px 0 22px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.story-aside-card > p:not(.kicker) {
  color: var(--muted);
}

.story-aside-card ul {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--green);
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
}

.story-care-note {
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
}

.story-care-note span,
.story-care-note a {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-care-note p {
  margin: 8px 0 18px;
  color: var(--ink-muted);
}

/* Prayer Request */
.prayer-request-hero {
  min-height: 480px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38)),
    var(--hero-image) center 44% / cover;
}

.prayer-request-hero h1 {
  max-width: 920px;
  font-size: clamp(3.25rem, 7vw, 7rem);
}

.prayer-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.prayer-back-link:hover,
.prayer-back-link:focus-visible {
  color: var(--green);
}

.story-contact-choice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
}

.story-contact-choice input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--green-deep);
}

.story-contact-choice span {
  display: grid;
  gap: 5px;
}

.story-contact-choice small {
  color: var(--ink-muted);
  font-weight: 400;
}

.prayer-email-fallback {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid var(--green-deep);
  border-radius: var(--radius);
  background: var(--white);
}

.prayer-email-fallback[hidden] {
  display: none;
}

.prayer-email-fallback h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-transform: uppercase;
}

.prayer-email-fallback p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--ink-muted);
}

.prayer-urgent-note p {
  margin-bottom: 0;
}

.story-confirmation {
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--dark-line);
}

.story-confirmation-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 2rem;
}

.story-confirmation h2 {
  margin: 12px 0 18px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.story-confirmation > p:not(.kicker) {
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-aside {
    position: static;
    grid-row: 1;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  }
}

@media (max-width: 760px) {
  .story-hero {
    min-height: 500px;
    padding: 130px 22px 62px;
  }

  .story-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .story-experience {
    padding: 62px 22px;
  }

  .story-aside,
  .story-choice-grid,
  .story-field-grid,
  .story-prompts {
    grid-template-columns: 1fr;
  }

  .story-aside-card,
  .story-care-note {
    padding: 26px;
  }

  .story-form-section {
    padding: 48px 0;
  }

  .story-section-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .story-choice > span {
    min-height: 76px;
  }

  .story-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-choice > span,
  .story-permission > span,
  .story-upload {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.main-nav,
.nav-link,
.dropdown-toggle,
.nav-cta,
.button,
.kicker,
.small-label,
.panel-number,
.text-link,
.hero-side-panel strong,
.meta-line,
.youtube-fallback-link,
.youtube-play-label,
.feature-card span,
.pathway-band span,
.new-socials a,
.give-explore span,
.give-explore a,
.give-icon,
.detail-explore span,
.detail-explore a,
.detail-card span,
.detail-number,
.detail-quote,
.filter-button,
.event-item time span,
.footer-column h2,
.footer-bottom,
.back-to-top {
  font-family: var(--font);
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(3, 30, 41, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: none;
}

.main-nav a {
  padding: 8px 0;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: none;
  cursor: pointer;
}

.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.nav-cta:focus-visible,
.dropdown-menu a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  color: var(--green);
}

.nav-item {
  position: relative;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.has-dropdown.open .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.dropdown-toggle:hover,
.has-dropdown.open .dropdown-toggle {
  color: var(--green);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 30, 41, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.dropdown-menu.dropdown-wide {
  left: 0;
  min-width: min(520px, calc(100vw - 48px));
  padding: 16px 14px 14px;
  transform: translate(0, -8px);
}

.dropdown-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.dropdown-column {
  min-width: 0;
}

.dropdown-heading {
  margin: 0 0 4px;
  padding: 6px 12px 8px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.has-dropdown:hover .dropdown-menu.dropdown-wide,
.has-dropdown.open .dropdown-menu.dropdown-wide,
.has-dropdown:focus-within .dropdown-menu.dropdown-wide {
  transform: translate(0, 0);
}

.has-dropdown.dropdown-closed .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 10px 16px !important;
  background: rgba(142, 200, 240, 0.12);
  color: var(--white) !important;
  text-transform: uppercase;
}

.nav-cta:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 120px clamp(24px, 8vw, 120px) clamp(48px, 7vh, 88px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  /* Keep video fully visible — no darkening overlay */
  background: none;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  max-width: 960px;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.home-hero .hero-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 28px rgba(0, 0, 0, 0.28);
}

.home-hero .hero-copy {
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.25);
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: 0.92;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.hero-copy span {
  display: block;
}

.hero-shell h1,
.hero-shell .hero-copy {
  opacity: var(--hero-text-opacity, 1);
  transition: opacity 80ms linear;
}

.translation-line {
  margin-top: 6px;
  color: var(--green);
}

.button-row,
.calendar-actions,
.ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-shell .button-row {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.ghost.on-dark {
  border-color: rgba(255, 255, 255, 0.34);
}

.button.quiet {
  min-height: 40px;
  padding: 8px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
}

.intro-band,
.feature-message,
.home-guest-band,
.home-message-section,
.ministries-section,
.featured-ministries-section,
.journey-pathway-section,
.staff-directory {
  padding: clamp(70px, 10vw, 130px) clamp(24px, 8vw, 120px);
}

.section-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col > *,
.message-grid > *,
.pg-hero-grid > *,
.pg-vision-grid > *,
.pg-final-cta > *,
.page-hero > *,
.detail-hero > *,
.detail-two-col > *,
.detail-cta > *,
.new-visit-hero > *,
.give-hero > *,
.give-ways-layout > *,
.why-give-band > *,
.account-help-band > *,
.lead-pastors > *,
.visit-intro-grid > *,
.calendar-band > *,
.ready-visit-band > *,
.events-layout > *,
.footer-main > * {
  min-width: 0;
}

.intro-band h2,
.section-heading h2,
.message-copy h2,
.page-hero h1,
.detail-copy h2,
.detail-cta h2,
.new-visit-content h1,
.pg-copy h2,
.pg-vision-grid blockquote,
.pg-final-cta h3,
.lead-copy h2,
.calendar-band h2,
.ready-visit-band h2 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
}

.intro-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.intro-band::after {
  content: "";
  position: absolute;
  inset: auto -80px -180px auto;
  width: min(48vw, 620px);
  aspect-ratio: 1.56;
  background: url("assets/brand/journey-pattern.png") center / cover;
  opacity: 0.09;
  pointer-events: none;
}

.intro-band h2,
.section-heading h2,
.message-copy h2,
.calendar-band h2,
.page-hero h1,
.lead-copy h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.rich-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.action-panel {
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 180ms ease, transform 180ms ease;
}

.action-panel.light {
  background: var(--mist);
  color: var(--ink);
}

.action-panel:hover {
  background: var(--panel-soft);
}

.action-panel.light:hover {
  background: var(--white);
}

.panel-number,
.small-label {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.action-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.action-panel p {
  max-width: 360px;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
}

.feature-message {
  background:
    linear-gradient(rgba(2, 58, 82, 0.92), rgba(2, 58, 82, 0.92)),
    url("assets/brand/journey-pattern.png") center / 620px auto;
}

.home-message-section {
  background: linear-gradient(180deg, var(--ink) 0%, #052f42 52%, var(--ink) 100%);
}

.home-guest-band {
  background: linear-gradient(180deg, var(--ink) 0%, #052f42 42%, var(--ink) 100%);
}

.home-guest-band .home-message-section,
.home-guest-band .ministries-section {
  padding: 0;
  background: transparent;
}

.home-guest-band .home-message-section {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.home-guest-band .family-section .section-heading {
  margin-bottom: 28px;
}

.footer-brand .church-center-app {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 280px;
}

.footer-brand .church-center-app-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand .store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-brand .store-badge-row a {
  display: inline-flex;
  line-height: 0;
  border-radius: 6px;
}

.footer-brand .store-badge-row a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.footer-brand .store-badge-row img {
  display: block;
  width: auto;
  max-width: 120px;
  height: 36px;
  margin: 0;
}

.footer-brand .store-badge-row .google-play-badge {
  height: 52px;
  max-width: none;
  margin: -8px -7px;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.message-player {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.message-player iframe,
.message-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.message-player iframe {
  border: 0;
}

.message-player iframe {
  z-index: 4;
}

.message-player img {
  object-fit: cover;
  opacity: 0.86;
  transition: transform 220ms ease, opacity 220ms ease;
}

.youtube-poster-button {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  color: var(--ink);
  cursor: pointer;
}

.youtube-poster-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.youtube-channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.youtube-channel-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.youtube-lite:not(.is-loaded):hover img,
.youtube-poster-button:focus-visible img {
  transform: scale(1.035);
  opacity: 1;
}

.youtube-preview-frame {
  z-index: 0 !important;
  pointer-events: none;
}

.youtube-lite.has-preview .youtube-poster-button {
  background: transparent;
}

.youtube-lite.has-preview .youtube-poster-button img {
  opacity: 0;
}

.youtube-lite.is-loaded .youtube-preview-frame {
  display: none;
}

.youtube-fallback-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.youtube-fallback-link:hover {
  color: var(--green);
}

.youtube-lite.is-loaded .youtube-poster-button,
.youtube-lite.is-loaded .youtube-fallback-link {
  display: none;
}

.youtube-play-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.youtube-play-label::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.detail-video-panel {
  border: 10px solid var(--white);
}

.media-frame {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.message-copy p {
  color: var(--muted);
}

.message-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 28px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.ministries-section {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 66%, #31545f 86%, var(--mist) 100%);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading.simple h2 {
  margin-bottom: 0;
}

.ministry-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ministry-grid .image-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.ministry-grid .image-card img {
  flex: 0 0 auto;
}

.ministry-grid .image-card div {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}

.image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 220, 136, 0.6);
}

.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div {
  padding: 22px;
}

.image-card h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.image-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-ministries-section {
  background: linear-gradient(180deg, var(--mist) 0%, var(--mist) 72%, rgba(255, 255, 255, 0.94) 100%);
  color: var(--ink);
}

.featured-ministries-section .section-heading h2 {
  color: var(--ink);
}

.featured-ministry-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 30, 41, 0.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(3, 30, 41, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(3, 30, 41, 0.18);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.04));
  z-index: 1;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card .feature-logo {
  inset: 22px auto auto 22px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 1;
  z-index: 2;
  transform: none;
}

.feature-card:hover .feature-logo {
  transform: none;
}

.feature-card span,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 2;
}

.feature-card span {
  margin-bottom: auto;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  font-weight: 700;
}

.feature-card.project-card span {
  margin-top: 88px;
}

.feature-card.journey-card span {
  margin-top: 0;
}

.feature-card.journey-card .feature-logo {
  inset: 48px auto auto 22px;
}

.feature-card.journey-card,
.feature-card.project-card {
  background: var(--white);
  color: var(--ink);
}

.feature-card.journey-card::after,
.feature-card.project-card::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
}

.feature-card.journey-card img,
.feature-card.project-card img {
  object-fit: cover;
  opacity: 0.22;
}

.feature-card.journey-card p,
.feature-card.project-card p {
  color: var(--ink-muted);
}

.journey-pathway-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 244, 0.86) 42%, rgba(255, 255, 255, 0.9)),
    url("assets/brand/journey-pattern.png") center / 520px auto;
  color: var(--ink);
}

.journey-pattern-panel {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(3, 30, 41, 0.12);
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 64px) clamp(24px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
  box-shadow: none;
}

.journey-eyebrow {
  margin-bottom: clamp(10px, 1.4vw, 16px);
  color: var(--sky);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

.journey-timeline-link {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.journey-timeline-art {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.journey-pattern-panel > p:not(.journey-eyebrow) {
  max-width: 660px;
  margin: clamp(8px, 1.6vw, 18px) auto 22px;
  color: var(--panel-soft);
  text-align: center;
  font-weight: 700;
}

.journey-timeline-button {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.project-generations-home-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) clamp(24px, 8vw, 120px);
  background: #f8f7f4;
  color: #0f1720;
  font-family: "Helvetica Neue", var(--font);
}

.project-generations-home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 247, 244, 0.42), rgba(248, 247, 244, 0.92) 44%, rgba(248, 247, 244, 0.72)),
    url("assets/project-generations/project-generations-pattern.png") left 7% top 8% / 360px auto repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.pg-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(46px, 7vw, 92px);
}

.pg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(42px, 6.6vw, 96px);
  align-items: center;
}

.pg-copy {
  min-width: 0;
  max-width: 640px;
}

.pg-mark {
  width: 76px;
  margin-bottom: 28px;
}

.pg-label {
  margin: 0 0 18px;
  color: #0c4460;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pg-copy h2 {
  margin-bottom: 26px;
  color: #0f1720;
  font-size: clamp(3rem, 5.1vw, 4.95rem);
  line-height: 0.96;
  font-weight: 700;
}

.pg-page .project-generations-home-section .pg-copy h1 {
  margin-bottom: 26px;
  color: #0f1720;
  font-size: clamp(2.15rem, 4.6vw, 3.2rem);
  line-height: 0.98;
  font-weight: 700;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: wrap;
}

.pg-copy p:not(.pg-label),
.pg-vision-grid p:not(.pg-label),
.pg-pillars p {
  color: #5e646b;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.pg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #0c4460;
  background: #0c4460;
  color: #f8f7f4;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pg-button.secondary {
  background: transparent;
  color: #0c4460;
}

.pg-button:hover {
  transform: translateY(-2px);
  background: #0f1720;
  color: #f8f7f4;
}

.pg-image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e9e5df;
  box-shadow: 0 28px 80px rgba(15, 23, 32, 0.14);
}

.pg-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.pg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pg-pillars article {
  min-height: 240px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}

.pg-pillars span,
.pg-timeline span {
  color: #0c4460;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pg-pillars h3 {
  margin: 38px 0 14px;
  color: #0f1720;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.pg-vision-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 24px;
  background: #e9e5df;
}

.pg-vision-grid blockquote {
  margin: 0;
  color: #0c4460;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 700;
}

.pg-brand-frame {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: clamp(16px, 3vw, 32px);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 24px;
  background: #ffffff;
}

.pg-brand-frame img {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
}

.pg-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(15, 23, 32, 0.12);
}

.pg-timeline span {
  min-height: 110px;
  padding: 22px;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
}

.pg-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 24px;
  background: #0c4460;
  color: #f8f7f4;
}

.pg-final-cta h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 0.98;
}

.pg-final-cta .pg-button {
  border-color: #f8f7f4;
  background: #f8f7f4;
  color: #0c4460;
}

.pathway-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.pathway-band a {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(rgba(4, 57, 82, 0.95), rgba(4, 57, 82, 0.95)),
    url("assets/brand/journey-pattern.png") center / 520px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--green);
  text-transform: uppercase;
}

.pathway-band a.active {
  background:
    linear-gradient(rgba(238, 247, 244, 0.92), rgba(238, 247, 244, 0.92)),
    url("assets/brand/journey-pattern.png") center / 420px auto;
  color: var(--green-deep);
}

.pathway-band span {
  color: inherit;
  font-weight: 700;
}

.pathway-band strong {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.page-main {
  padding-top: 82px;
}

.visit-photo-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px) 0 clamp(36px, 5vw, 52px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(0, 216, 136, 0.08), transparent 58%),
    var(--ink);
}

.visit-photo-marquee-viewport {
  overflow: hidden;
  min-height: clamp(240px, 30vw, 360px);
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.visit-photo-marquee-track {
  display: flex;
  width: max-content;
  animation: visit-photo-marquee 88s linear infinite;
  will-change: transform;
}

.visit-photo-marquee-track:focus {
  outline: none;
}

.visit-photo-marquee-track:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.visit-photo-marquee-group {
  flex: 0 0 auto;
}

.visit-photo-marquee-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  margin: 0;
  padding: 0 clamp(14px, 2vw, 22px) 0 0;
  list-style: none;
}

.visit-photo-card {
  flex: 0 0 auto;
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.92);
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(var(--tilt, 0deg)) translateY(var(--lift, 0));
}

.visit-photo-card.is-landscape {
  width: clamp(170px, 16vw, 250px);
  aspect-ratio: 4 / 3;
}

.visit-photo-card.is-portrait {
  width: clamp(150px, 14vw, 220px);
  aspect-ratio: 3 / 4;
}

.visit-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-photo-marquee-curve {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 1;
  width: min(140%, 2200px);
  height: clamp(34px, 5vw, 56px);
  transform: translateX(-50%);
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  background:
    linear-gradient(rgba(3, 30, 41, 0.96), rgba(3, 30, 41, 0.96)),
    url("assets/brand/journey-pattern.png") center / 640px auto;
  pointer-events: none;
}

@keyframes visit-photo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.visit-photo-break {
  padding: clamp(48px, 7vw, 84px) clamp(24px, 8vw, 120px);
  background: var(--mist);
  border-top: 1px solid rgba(3, 30, 41, 0.08);
}

.visit-photo-break-line {
  max-width: 920px;
  margin: 0 auto clamp(24px, 4vw, 36px);
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.visit-photo-break-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: clamp(12px, 2vw, 18px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.visit-photo-break-grid.detail-photo-strip {
  margin-top: 0;
}

.visit-photo-break-grid.detail-photo-strip button {
  min-height: clamp(160px, 22vw, 240px);
}

.visit-photo-break-grid.detail-photo-strip button.is-feature {
  min-height: clamp(190px, 26vw, 280px);
}

.visit-photo-break-grid.detail-photo-strip img {
  aspect-ratio: auto;
  height: 100%;
  min-height: inherit;
  border-color: var(--dark-line);
  box-shadow: 0 16px 36px rgba(3, 30, 41, 0.12);
}

.new-visit-hero {
  position: relative;
  z-index: 0;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(24px, 8vw, 120px) clamp(70px, 10vw, 130px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(3, 30, 41, 0.96), rgba(3, 30, 41, 0.96)),
    url("assets/brand/journey-pattern.png") center / 640px auto;
}

.new-visit-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.new-visit-content h1,
.visit-intro h2,
.expect-page-section h2,
.ready-visit-band h2 {
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.new-visit-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.vertical-video-card {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.talking-head-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vertical-video-card.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.baptism-hero {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.baptism-hero .vertical-video-card {
  width: 100%;
}

.new-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.new-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-intro {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--mist);
  color: var(--ink);
}

.visit-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.portrait-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  box-shadow: 0 28px 70px rgba(3, 30, 41, 0.18);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visit-intro p {
  max-width: 700px;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.expect-page-section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
  background:
    linear-gradient(rgba(3, 30, 41, 0.96), rgba(3, 30, 41, 0.96)),
    url("assets/brand/journey-pattern.png") center / 620px auto;
}

.expect-card-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.expect-card {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(4, 57, 82, 0.92);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.expect-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  filter: invert(59%) sepia(99%) saturate(2014%) hue-rotate(116deg) brightness(96%) contrast(101%);
}

.expect-card .expect-brand-logo {
  width: 78px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.expect-card .expect-nhk-logo {
  width: 72px;
}

.expect-card .expect-nhy-logo {
  width: 82px;
}

.expect-card-mark {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.expect-card h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
}

.expect-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.expect-card .text-link {
  margin-top: auto;
  color: var(--white);
}

.ready-visit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(24px, 8vw, 120px);
  background: var(--panel);
}

.ready-visit-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.ready-visit-band .ready-actions {
  margin-top: 22px;
}

.ready-visit-map {
  margin-top: 0;
  width: 100%;
}

.ready-visit-map .mission-map-frame {
  min-height: 280px;
}

.give-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(420px, 720px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  padding: clamp(116px, 13vw, 180px) clamp(24px, 8vw, 120px) clamp(70px, 9vw, 120px);
  background:
    linear-gradient(90deg, var(--media-shade-strong), var(--media-shade)),
    url("assets/nhwc/featured.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.give-video-card {
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  justify-self: center;
  border: 0;
  outline: 10px solid var(--green);
  outline-offset: 0;
  background: #000;
}

.give-video-card .talking-head-video {
  object-fit: cover;
  object-position: center;
}

.give-hero-content {
  max-width: 780px;
}

.give-hero-content h1,
.why-give-band h2,
.account-help-band h2 {
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.give-hero-content h1 {
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
}

.why-give-band h2 {
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.account-help-band h2 {
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

@media (min-width: 1041px) and (max-width: 1500px) {
  .give-hero-content h1 {
    font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  }

  .why-give-band h2 {
    font-size: clamp(2rem, 3.8vw, 3.5rem);
  }
}

.give-hero-content p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.give-explore {
  position: sticky;
  top: var(--header-height);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 3vw, 36px);
  padding: 16px clamp(24px, 8vw, 120px);
  background: rgba(238, 247, 244, 0.96);
  border-bottom: 1px solid var(--dark-line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.give-explore span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.give-explore a {
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.give-explore a:hover {
  color: var(--green-deep);
}

.give-section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
}

.give-online-panel {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}

.give-online-panel h3 {
  margin: 10px 0 12px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.give-online-panel p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 400;
}

.give-ways-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px 32px;
  align-items: start;
}

.ways-to-give-section {
  background: #f7fbfa;
  color: var(--ink);
}

.section-heading.light h2 {
  color: var(--ink);
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.give-method-card {
  min-height: 278px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.give-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 173, 112, 0.48);
  box-shadow: 0 22px 48px rgba(3, 30, 41, 0.12);
}

.give-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.give-method-card h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.give-method-card p {
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.give-method-card .text-link {
  margin-top: auto;
}

.why-give-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.why-give-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.account-help-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(50px, 8vw, 88px) clamp(24px, 8vw, 120px);
  background: var(--green);
  color: var(--ink);
}

.account-help-band .small-label {
  color: var(--ink);
}

.account-help-band h2 {
  margin-bottom: 10px;
}

.account-help-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(3, 30, 41, 0.76);
  font-weight: 700;
}

.page-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(72px, 11vw, 150px) clamp(24px, 8vw, 120px);
  background:
    linear-gradient(90deg, var(--media-shade-strong), var(--media-shade)),
    url("assets/nhwc/cards/sundays.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.events-hero {
  background:
    linear-gradient(90deg, var(--media-shade-strong), rgba(0, 0, 0, 0.5)),
    url("https://photos.smugmug.com/2026/n-b3Tt6B/Events/International-Celebration-Dinner/i-P36ZvjD/0/KdhxBXwG6fP2pZqSLPCJRBGrPRrCt74g2Vn5vVfQC/L/IMG_9439-L.jpg") center / cover;
}

.staff-hero {
  background:
    linear-gradient(90deg, var(--media-shade-strong), rgba(0, 0, 0, 0.46)),
    url("assets/nhwc/cards/contact.jpg") center / cover;
}

.detail-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  padding: clamp(96px, 12vw, 160px) clamp(24px, 8vw, 120px) clamp(70px, 9vw, 118px);
  background:
    linear-gradient(90deg, var(--media-shade-strong), var(--media-shade)),
    var(--hero-image) center / cover;
  border-bottom: 1px solid var(--line);
}

.detail-hero.dream-team-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.26)),
    var(--hero-image) center / cover;
}

.detail-hero.nursery-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18)),
    var(--hero-image) center / cover;
}

.detail-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  /* Keep slightly under the old 8.2rem max so long words like GATHERINGS
     wrap at spaces instead of mid-word in the two-column hero. */
  font-size: clamp(2.9rem, 6.4vw, 6.4rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.dream-team-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

@media (min-width: 1041px) and (max-width: 1200px) {
  .dream-team-hero h1 {
    font-size: clamp(2.8rem, 5.2vw, 5rem);
  }
}

.young-adults-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.legacy-hero h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.journey-hero {
  min-height: clamp(560px, 78svh, 720px);
  align-items: center;
}

.journey-hero h1 {
  max-width: 1040px;
  font-size: clamp(3.2rem, 5.7vw, 6.3rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.detail-page-logo {
  display: block;
  width: min(210px, 48vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}

.detail-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 700;
}

.detail-explore {
  position: sticky;
  top: var(--header-height);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 3vw, 36px);
  padding: 16px clamp(24px, 8vw, 120px);
  background: rgba(238, 247, 244, 0.96);
  border-bottom: 1px solid var(--dark-line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.detail-explore span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-explore a {
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-explore a:hover {
  color: var(--green-deep);
}

.detail-section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--ink);
}

.detail-section.light {
  background: var(--mist);
  color: var(--ink);
}

.detail-section.panel {
  background: var(--panel);
}

.detail-section.pattern {
  background:
    linear-gradient(rgba(3, 30, 41, 0.94), rgba(3, 30, 41, 0.94)),
    url("assets/brand/journey-pattern.png") center / 620px auto;
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.detail-two-col.flip {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.detail-two-col.flip .detail-image-panel {
  order: 2;
}

.detail-two-col > .detail-copy:only-child {
  grid-column: 2;
}

.detail-image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.detail-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

#purpose .detail-image-panel {
  position: relative;
  width: min(100%, calc(640px * 4 / 5));
  aspect-ratio: 4 / 5;
  max-height: 640px;
  justify-self: start;
  align-self: start;
}

#purpose .detail-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.detail-image-panel.contain img {
  object-fit: contain;
  background: var(--ink);
}

.detail-image-panel.journey-logo-panel img {
  padding: clamp(42px, 8vw, 92px);
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 216, 136, 0.14), transparent 48%),
    var(--panel-soft);
}

.detail-copy {
  min-width: 0;
}

.detail-copy h2,
.detail-cta h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.detail-two-col .detail-copy h2 {
  font-size: clamp(2.6rem, 4.2vw, 3.95rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.detail-section.light .detail-copy p,
.detail-section.light .detail-card p {
  color: var(--ink-muted);
}

.detail-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 700;
}

.detail-copy .mission-plan-list {
  max-width: 780px;
  margin: 16px 0 0;
  padding-left: 1.15em;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 700;
}

.detail-section.light .detail-copy .mission-plan-list {
  color: var(--ink-muted);
}

.detail-copy .mission-plan-list li + li {
  margin-top: 8px;
}

.detail-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail-photo-strip button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-photo-strip button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.detail-photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: scale(1);
  transition: transform 280ms ease;
}

.detail-section.light .detail-photo-strip img {
  border-color: var(--dark-line);
}

.detail-photo-strip button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.detail-photo-strip button:hover img,
.detail-photo-strip button:focus-visible img {
  transform: scale(1.018);
}

.detail-photo-strip button:hover::before,
.detail-photo-strip button:focus-visible::before {
  opacity: 0.08;
}

.detail-photo-strip .photo-expand-cue {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 20px;
  height: 20px;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) top left / 8px 2px no-repeat,
    linear-gradient(#fff, #fff) top left / 2px 8px no-repeat,
    linear-gradient(#fff, #fff) top right / 8px 2px no-repeat,
    linear-gradient(#fff, #fff) top right / 2px 8px no-repeat,
    linear-gradient(#fff, #fff) bottom left / 8px 2px no-repeat,
    linear-gradient(#fff, #fff) bottom left / 2px 8px no-repeat,
    linear-gradient(#fff, #fff) bottom right / 8px 2px no-repeat,
    linear-gradient(#fff, #fff) bottom right / 2px 8px no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  transition: opacity 180ms ease;
}

.detail-photo-strip button:hover .photo-expand-cue,
.detail-photo-strip button:focus-visible .photo-expand-cue {
  opacity: 1;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.detail-two-col .detail-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.detail-card-grid > *,
.event-item > *,
.image-card > *,
.staff-card > * {
  min-width: 0;
}

.detail-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.detail-card-grid.five .detail-card.image {
  height: 100%;
}

.detail-card-grid.five .detail-card-body .mission-card-actions {
  margin-top: auto;
}

.detail-two-col .detail-card-grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card-grid.trips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card-grid.trips.single {
  grid-template-columns: minmax(0, 760px);
}

.detail-card {
  min-height: 238px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(4, 57, 82, 0.86);
  display: flex;
  flex-direction: column;
}

.detail-section.light .detail-card {
  border-color: var(--dark-line);
  background: var(--white);
}

.detail-card.image {
  overflow: hidden;
  padding: 0;
}

.detail-card-grid.trips .detail-card.image {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
}

.detail-card.image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journey-pathway-cards .detail-card {
  min-height: 0;
}

.journey-pathway-cards .detail-card.image img {
  aspect-ratio: 16 / 9;
  padding: clamp(28px, 4vw, 48px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 216, 136, 0.12), transparent 48%),
    var(--panel-soft);
}

.detail-card-grid.trips .detail-card.image img {
  height: 100%;
  aspect-ratio: auto;
}

.detail-card-body {
  min-width: 0;
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.detail-card span,
.detail-number {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-section.light .detail-card span,
.detail-section.light .detail-number {
  color: var(--green-deep);
}

.detail-card h3 {
  margin: 14px 0 10px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
}

.detail-section.light .detail-card h3 {
  color: var(--deep);
}

.detail-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.detail-card-meta {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mission-trip-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 16px 0 18px;
}

.mission-trip-facts div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-section.light .mission-trip-facts div {
  border-top-color: var(--dark-line);
}

.mission-trip-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-section.light .mission-trip-facts dt {
  color: var(--ink-muted);
}

.mission-trip-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.detail-section.light .mission-trip-facts dd {
  color: var(--ink);
}

.detail-section.light .detail-card-meta {
  color: var(--green-deep);
}

.detail-card .text-link {
  margin-top: auto;
}

.mission-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: auto;
}

.mission-card-actions .text-link {
  margin-top: 0;
}

.mission-donate-link {
  color: var(--green);
}

.section-brand-mark {
  width: min(240px, 56vw);
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--dark-line);
  box-shadow: var(--shadow);
}

.section-brand-mark img {
  width: 100%;
  object-fit: contain;
}

.mission-map-panel {
  margin-top: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(4, 57, 82, 0.86);
  box-shadow: var(--shadow);
}

.detail-section.light .mission-map-panel {
  border-color: var(--dark-line);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(3, 30, 41, 0.14);
}

.mission-map-frame {
  display: block;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  border: 0;
  filter: none;
}

.mission-map-caption {
  display: grid;
  gap: 6px;
  padding: 22px 24px 24px;
}

.mission-map-caption span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mission-map-caption strong {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.mission-map-caption p {
  margin: 0;
  color: var(--muted);
}

.detail-section.light .mission-map-caption span {
  color: var(--green-deep);
}

.detail-section.light .mission-map-caption strong {
  color: var(--ink);
}

.detail-section.light .mission-map-caption p {
  color: var(--ink-muted);
}

.kids-step-grid,
.kids-hub-grid,
.kids-environment-grid {
  display: grid;
  gap: 18px;
}

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

.kids-step-card {
  min-height: 230px;
}

.kids-hub-grid,
.kids-environment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.kids-hub-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.kids-hub-card:hover,
.kids-hub-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 216, 136, 0.62);
  outline: 0;
}

.kids-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04));
}

.kids-hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease;
}

.kids-hub-card:hover img,
.kids-hub-card:focus-visible img {
  transform: scale(1.04);
}

.kids-hub-card span,
.kids-hub-card strong,
.kids-hub-card p {
  position: relative;
  z-index: 2;
}

.kids-hub-card span,
.kids-highlight-card .small-label {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.kids-hub-card strong {
  display: block;
  margin: 10px 0 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.kids-hub-card p,
.kids-highlight-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.kids-environment-card {
  min-height: 100%;
}

.kids-environment-card img {
  aspect-ratio: 4 / 3;
}

.kids-page .detail-image-panel img,
.kids-page .detail-card.image img {
  height: auto;
}

.kids-page .detail-card:not(.image),
.kids-page .kids-step-card,
.kids-page .kids-environment-card {
  min-height: 0;
}

.kids-page .detail-card:not(.image) {
  padding: 22px;
}

.kids-page .detail-card:not(.image) p {
  margin-bottom: 0;
}

.kids-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.kids-highlight-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 216, 136, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 216, 136, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(4, 57, 82, 0.92);
  box-shadow: var(--shadow);
}

.kids-highlight-card strong {
  display: block;
  margin: 24px 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 700;
  text-transform: uppercase;
}

.kids-highlight-card .text-link {
  display: inline-flex;
  margin-top: 28px;
}

.kids-page .kids-jump,
.kids-page #sunday,
.kids-page #environments,
.kids-page #safety,
.kids-page #faq,
.kids-page #parents,
.kids-page #moment {
  scroll-margin-top: 148px;
}

.kids-page .kids-jump {
  position: sticky;
  top: var(--header-height);
  z-index: 12;
}

.kids-page .kids-sunday,
.kids-page .kids-ages-section,
.kids-page .kids-moment,
.kids-page .kids-parents {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 8vw, 120px);
}

.kids-page .kids-sunday {
  background: var(--mist);
  color: var(--ink);
}

.kids-page .kids-sunday .kicker,
.kids-page .kids-ages-section .kicker,
.kids-page .kids-parents .kicker {
  color: var(--green-deep);
}

.kids-page .kids-sunday-grid,
.kids-page .kids-age-body,
.kids-page .kids-moment-collage,
.kids-page .kids-parents-copy {
  min-width: 0;
}

.kids-page .kids-sunday-grid > *,
.kids-page .kids-age-body > *,
.kids-page .kids-moment-collage > * {
  min-width: 0;
}

.kids-page .kids-sunday-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.kids-page .kids-sunday-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.kids-page .kids-sunday-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1650 / 2200;
  object-fit: cover;
  object-position: center 18%;
}

.kids-page .kids-sunday-copy h2,
.kids-page .kids-ages-intro h2,
.kids-page .kids-parents-copy h2,
.kids-page .kids-moment-copy h2,
.kids-page .kids-safety-copy h2,
.kids-page .kids-age-copy h3 {
  overflow-wrap: break-word;
}

.kids-page .kids-sunday-copy h2,
.kids-page .kids-ages-intro h2,
.kids-page .kids-parents-copy h2 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.kids-page .kids-sunday-copy p:not(.kicker) {
  max-width: 640px;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 400;
}

.kids-page .kids-parents-copy p {
  max-width: 640px;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 700;
}

.kids-page .kids-ages-intro p,
.kids-page .kids-age-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 700;
}

.kids-page .kids-sunday-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em 0.55em;
  margin: 28px 0 22px;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 400;
}

.kids-page .kids-sunday-path span[aria-hidden="true"] {
  color: var(--green-deep);
}

.kids-page .kids-sunday .text-link {
  color: var(--green-deep);
}

.kids-page .kids-ages-section {
  background: var(--ink);
}

.kids-page .kids-ages-intro,
.kids-page .kids-ages {
  max-width: 1180px;
  margin: 0 auto;
}

.kids-page .kids-ages-intro {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.kids-page .kids-ages-intro h2 {
  color: var(--white);
}

.kids-page .kids-ages-intro p {
  color: var(--muted);
}

.kids-page .kids-ages-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.kids-page .kids-ages-tabs[hidden] {
  display: none;
}

.kids-page .kids-ages-section .text-link {
  color: var(--green);
}

.kids-page .kids-ages-tabs button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.kids-page .kids-ages-tabs button[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.kids-page .kids-ages-tabs button:focus-visible,
.kids-page .kids-age-panel summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.kids-page .kids-age-panel {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.kids-page .kids-age-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.kids-page .kids-age-panel > summary::-webkit-details-marker {
  display: none;
}

.kids-page .kids-age-panel > summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.kids-page .kids-age-panel[open] > summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.kids-page .kids-age-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 0 0 28px;
}

.kids-page .kids-age-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
}

.kids-page .kids-age-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

#kids-age-junior .kids-age-photo img {
  object-position: center 62%;
}

.kids-page .kids-age-copy h3 {
  margin: 10px 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.kids-page .kids-ages.is-enhanced .kids-age-panel {
  border-bottom: 0;
}

.kids-page .kids-ages.is-enhanced .kids-ages-panels {
  display: grid;
}

.kids-page .kids-ages.is-enhanced .kids-age-panel {
  grid-area: 1 / 1;
}

.kids-page .kids-ages.is-enhanced .kids-age-panel:not(.is-active) {
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
}

.kids-page .kids-ages.is-enhanced .kids-age-panel.is-active {
  visibility: visible;
  z-index: 1;
}

.kids-page .kids-ages.is-enhanced .kids-age-panel > summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kids-page .kids-ages.is-enhanced .kids-age-body {
  padding-bottom: 0;
}

.kids-page .kids-safety {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(72vh, 680px);
  color: var(--white);
  overflow: hidden;
}

.kids-page .kids-safety-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kids-page .kids-safety-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2200 / 1650;
  object-fit: cover;
  object-position: center 40%;
}

.kids-page .kids-safety::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--media-shade-strong) 0%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 46%);
}

.kids-page .kids-safety-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(72px, 12vw, 140px) clamp(24px, 8vw, 120px) clamp(56px, 8vw, 92px);
}

.kids-page .kids-safety-copy h2 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.kids-page .kids-safety-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  font-weight: 700;
}

.kids-page .kids-safety-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.kids-page .kids-safety-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--white);
  font-weight: 700;
}

.kids-page .kids-safety-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.kids-page .kids-safety-link {
  color: var(--green);
}

.kids-page .kids-moment {
  background: var(--panel);
}

.kids-page .kids-moment-copy,
.kids-page .kids-moment-collage {
  max-width: 1180px;
  margin: 0 auto;
}

.kids-page .kids-moment-copy {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.kids-page .kids-moment-copy h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 0.94;
}

.kids-page .kids-moment-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.kids-page .kids-moment-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.kids-page .kids-moment-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-page .kids-moment-wide img {
  aspect-ratio: 2200 / 1650;
  object-position: center 30%;
}

.kids-page .kids-moment-tall img {
  aspect-ratio: 1650 / 2200;
  object-position: center 18%;
}

.kids-page .kids-parents {
  background: var(--mist);
  color: var(--ink);
}

.kids-page .kids-parents-copy h2 {
  max-width: 12ch;
}

.kids-page .kids-parents-copy .button-row {
  margin-top: 22px;
}

.kids-page .kids-parents .text-link {
  color: var(--green-deep);
}

@media (max-width: 1024px) {
  .kids-page .kids-sunday-photo img {
    max-height: 640px;
  }

  .kids-page .kids-moment-collage {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 768px) {
  .kids-page .kids-jump,
  .kids-page #sunday,
  .kids-page #environments,
  .kids-page #safety,
  .kids-page #faq,
  .kids-page #parents,
  .kids-page #moment {
    scroll-margin-top: 128px;
  }

  .kids-page .kids-jump {
    top: var(--header-height);
  }

  .kids-page .kids-sunday-copy h2,
  .kids-page .kids-ages-intro h2,
  .kids-page .kids-parents-copy h2,
  .kids-page .kids-moment-copy h2,
  .kids-page .kids-safety-copy h2 {
    max-width: none;
  }

  .kids-page .kids-sunday-photo img {
    max-height: 520px;
  }

  .kids-page .kids-sunday-grid,
  .kids-page .kids-age-body,
  .kids-page .kids-ages.is-enhanced .kids-age-body {
    grid-template-columns: 1fr;
  }

  .kids-page .kids-safety {
    min-height: 0;
  }

  .kids-page .kids-safety-copy {
    max-width: none;
  }

  .kids-page .kids-moment-collage {
    grid-template-columns: 1fr;
  }

  .kids-page .kids-moment-wide img,
  .kids-page .kids-moment-tall img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 390px) {
  .kids-page .kids-sunday,
  .kids-page .kids-ages-section,
  .kids-page .kids-moment,
  .kids-page .kids-parents,
  .kids-page .kids-safety-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .kids-page .kids-sunday-path {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kids-page .kids-ages-tabs button,
  .kids-page .kids-age-panel > summary::after,
  .kids-page .kids-age-panel,
  .kids-page .kids-age-body {
    transition: none;
  }
}

.detail-quote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.detail-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(50px, 8vw, 88px) clamp(24px, 8vw, 120px);
  background: var(--green);
  color: var(--ink);
}

.detail-cta p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(3, 30, 41, 0.76);
  font-weight: 700;
}

.detail-cta .small-label {
  color: var(--ink);
}

.detail-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.youth-page {
  background: #050507;
}

.youth-page .page-main {
  padding-top: 0;
  background: #050507;
}

.youth-hero {
  position: relative;
  min-height: clamp(680px, 92svh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  overflow: hidden;
  padding: clamp(118px, 13vw, 180px) clamp(24px, 8vw, 120px) clamp(72px, 9vw, 118px);
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.54)),
    url("assets/youth/invite-night-title.png") center / cover;
  border-bottom: 1px solid rgba(0, 216, 136, 0.38);
}

.youth-hero-video,
.youth-hero-overlay {
  position: absolute;
  inset: 0;
}

.youth-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.35) contrast(1.18);
  opacity: 0.72;
}

.youth-hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 30%, rgba(0, 216, 136, 0.24), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(255, 19, 92, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.52) 58%, rgba(5, 5, 7, 0.84)),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 5px);
  mix-blend-mode: normal;
}

.youth-hero-content,
.youth-hero-panel {
  position: relative;
  z-index: 2;
}

.youth-logo {
  width: min(330px, 58vw);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.58));
}

.youth-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(3.4rem, 8.8vw, 9.6rem);
  line-height: 0.84;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.youth-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 700;
}

.youth-hero .kicker,
.youth-copy .kicker,
.youth-event-copy .kicker {
  color: var(--green);
}

.youth-hero-panel {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 136, 0.46);
  background: rgba(5, 5, 7, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.youth-hero-panel strong {
  display: block;
  margin: 10px 0 16px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.youth-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.youth-explore {
  background: rgba(5, 5, 7, 0.94);
  border-bottom-color: rgba(0, 216, 136, 0.22);
  color: var(--white);
}

.youth-explore a {
  color: rgba(255, 255, 255, 0.72);
}

.youth-explore a:hover {
  color: var(--green);
}

.youth-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 216, 136, 0.13), transparent 30%),
    radial-gradient(circle at 92% 42%, rgba(255, 19, 92, 0.12), transparent 32%),
    #050507;
}

.youth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 6px);
}

.youth-section > * {
  position: relative;
  z-index: 1;
}

.youth-image-panel {
  border: 1px solid rgba(0, 216, 136, 0.44);
  background: #0b1115;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.youth-image-panel img {
  filter: saturate(1.08) contrast(1.04);
}

.youth-image-panel.light {
  border-color: var(--white);
}

.youth-copy h2 {
  color: var(--white);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.youth-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.youth-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.youth-stat-row div {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 136, 0.28);
  background: rgba(0, 216, 136, 0.08);
}

.youth-stat-row span {
  display: block;
  color: var(--green);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 0.9;
}

.youth-stat-row strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

.youth-card {
  min-height: 220px;
  border-color: rgba(0, 216, 136, 0.28);
  background:
    linear-gradient(180deg, rgba(0, 216, 136, 0.1), rgba(255, 19, 92, 0.06)),
    rgba(9, 16, 21, 0.94);
}

.youth-card h3 {
  color: var(--white);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.youth-groups {
  background:
    linear-gradient(135deg, rgba(0, 216, 136, 0.12), transparent 44%),
    linear-gradient(315deg, rgba(255, 209, 0, 0.1), transparent 48%),
    #061014;
}

.youth-wide-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.youth-crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

.youth-crew-grid article {
  min-width: 0;
  min-height: 300px;
  padding: clamp(24px, 2.5vw, 30px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
}

.youth-crew-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.youth-crew-grid h3 {
  margin: 50px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2vw, 2.08rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.youth-find-crew-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 216, 136, 0.14), transparent 34%),
    linear-gradient(180deg, #050507, #061014);
}

.crew-directory-shell {
  display: grid;
  gap: 28px;
}

.crew-directory-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
}

.crew-parent-note {
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.crew-help-card,
.crew-group-card,
.crew-detail-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 136, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(9, 16, 21, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.crew-help-card {
  padding: 28px;
}

.crew-help-card span,
.crew-group-card-eyebrow,
.crew-meta-label,
.crew-status,
.crew-filter-group span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.crew-help-card h3 {
  margin: 16px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.crew-help-card p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.crew-filter-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.crew-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.crew-filter-group span {
  width: 92px;
}

.crew-filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.crew-filter:hover,
.crew-filter:focus-visible,
.crew-filter.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
  outline: 0;
}

.crew-clear-filter {
  justify-self: start;
}

.crew-result-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.crew-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 20px;
}

.crew-group-card {
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.crew-group-card h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.crew-group-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.crew-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.crew-status {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 216, 136, 0.36);
  background: rgba(0, 216, 136, 0.1);
}

.crew-status.limited,
.crew-status.limited-space {
  color: #fff06a;
  border-color: rgba(255, 240, 106, 0.4);
  background: rgba(255, 240, 106, 0.1);
}

.crew-status.full,
.crew-status.not-currently-meeting {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.crew-status.coming-soon {
  color: #ff8fb0;
  border-color: rgba(255, 143, 176, 0.42);
  background: rgba(255, 143, 176, 0.1);
}

.crew-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.crew-meta-grid div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.crew-meta-value {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.18;
}

.crew-leaders {
  display: grid;
  gap: 10px;
}

.crew-leader {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.crew-leader img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 216, 136, 0.58);
}

.crew-leader strong,
.crew-leader span {
  display: block;
}

.crew-leader strong {
  color: var(--white);
  line-height: 1.1;
}

.crew-leader span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
}

.crew-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.crew-card-actions .button {
  flex: 1 1 190px;
}

.crew-detail-panel {
  padding: clamp(24px, 4vw, 36px);
}

.crew-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
}

.crew-detail-panel h3 {
  margin: 10px 0 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.crew-detail-panel h4 {
  margin: 24px 0 10px;
  color: var(--green);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.crew-detail-panel p,
.crew-detail-panel li {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.crew-detail-panel ul {
  padding-left: 20px;
}

.crew-detail-leaders {
  display: grid;
  gap: 14px;
}

.crew-detail-leader {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.crew-detail-leader img {
  width: 94px;
  height: 94px;
  border-radius: var(--radius);
  object-fit: cover;
}

.crew-detail-leader strong,
.crew-detail-leader span {
  display: block;
}

.crew-detail-leader strong {
  color: var(--white);
  line-height: 1.1;
}

.crew-detail-leader span {
  margin: 4px 0 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.crew-detail-leader p {
  margin: 0;
  font-size: 0.9rem;
}

.crew-interest-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.crew-interest-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.crew-interest-form input,
.crew-interest-form select,
.crew-interest-form textarea {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px 12px;
}

.crew-interest-form textarea {
  min-height: 96px;
  resize: vertical;
}

.crew-interest-form ::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.youth-crew-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.youth-invite-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.86)),
    url("assets/youth/invite-night-notes.png") center / cover;
}

.youth-invite-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.youth-event-copy img {
  width: min(210px, 54vw);
  margin-bottom: 24px;
}

.youth-event-copy h2 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 5.45vw, 5.9rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.youth-event-copy p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.youth-event-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 16px;
  align-items: stretch;
}

.youth-event-stack img {
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.youth-event-stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.youth-event-stack img:nth-child(2) {
  aspect-ratio: 4 / 5;
}

.youth-event-stack img:nth-child(3) {
  aspect-ratio: 4 / 5;
  object-position: 50% 28%;
}

.youth-selah-section {
  background:
    linear-gradient(90deg, rgba(227, 17, 46, 0.94), rgba(227, 17, 46, 0.84)),
    url("assets/youth/selah-night.png") center / cover;
  color: var(--white);
}

.youth-selah-art {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.detail-two-col.flip .youth-selah-art {
  order: 2;
}

.youth-selah-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.youth-social-art {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.68fr);
  gap: 16px;
  margin-top: 28px;
  align-items: end;
}

.youth-social-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.youth-social-art img:last-child {
  max-height: 420px;
  object-fit: cover;
  object-position: bottom center;
}

.youth-selah-section .youth-copy .kicker {
  color: #fff06a;
}

.youth-selah-section .youth-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.youth-middle-section .detail-copy h2 {
  color: var(--deep);
}

.youth-cta {
  background:
    linear-gradient(90deg, var(--green), #fff06a);
}

@media (prefers-reduced-motion: reduce) {
  .youth-hero-video {
    display: none;
  }
}

.journey-page-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.journey-page-lockup img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-side-panel,
.integration-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(6, 72, 95, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-side-panel strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.baptism-hero-video-card {
  align-self: center;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.baptism-hero-video-card video,
.baptism-hero-video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: clamp(46px, 7vw, 90px) clamp(24px, 8vw, 120px);
  background: var(--mist);
  color: var(--ink);
}

.gathering-rhythm {
  padding: clamp(58px, 8vw, 110px) clamp(24px, 8vw, 120px);
  background: var(--ink);
}

.gathering-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.events-main {
  min-width: 0;
  max-width: 1180px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--green);
  border-color: var(--green);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-item {
  display: grid;
  grid-template-columns: 92px 144px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--dark-line);
}

.event-item-image {
  overflow: hidden;
  width: 144px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--mist);
}

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

.event-item-image-fallback {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 700;
}

.event-item-content {
  min-width: 0;
}

.event-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.event-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.event-status-closed,
.event-status-full {
  color: var(--ink-muted);
}

.event-status-waitlist {
  color: #9a5b00;
}

.event-location {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.event-location::before {
  content: "Location: ";
  color: var(--ink-muted);
  font-weight: 500;
}

.events-loading,
.events-error {
  padding: 34px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
}

.events-loading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.events-loading p,
.events-error p,
.events-results-summary {
  margin: 0;
  color: var(--ink-muted);
}

.events-loading-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--dark-line);
  border-top-color: var(--green-deep);
  border-radius: 50%;
  animation: event-loading-spin 800ms linear infinite;
}

.events-results-summary {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes event-loading-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .events-loading-mark { animation: none; }
}

.event-item[hidden],
.staff-card[hidden] {
  display: none;
}

.event-item.feature {
  background: var(--ink);
  color: var(--white);
}

.event-item time {
  width: 78px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--green);
  color: var(--ink);
  text-transform: uppercase;
}

.event-item time span {
  font-size: 0.75rem;
  font-weight: 700;
}

.event-item time strong {
  font-size: 2rem;
  line-height: 1;
}

.event-item h3 {
  margin: 4px 0 6px;
  font-size: 1.35rem;
}

.event-item p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.event-item.feature p {
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.iframe-wrap {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--dark-line);
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
}

.calendar-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(46px, 8vw, 86px) clamp(24px, 8vw, 120px);
  background: var(--panel);
}

.lead-pastors {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(24px, 8vw, 120px);
  background: var(--mist);
  color: var(--ink);
}

.lead-photo {
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(3, 30, 41, 0.2);
  overflow: hidden;
}

.lead-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.lead-copy p {
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 1.15rem;
}

.staff-directory {
  background: var(--ink);
}

.staff-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.staff-card {
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.staff-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ink);
}

.staff-photo-heather {
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.45);
  transform-origin: 50% 22%;
}

.staff-photo-andrew {
  object-position: 50% 28%;
}

.staff-photo-lacy {
  object-position: 50% 27%;
}

.staff-card-body {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: var(--panel);
}

.staff-card h4 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.staff-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.staff-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 0;
  background: #021722;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(34px, 8vw, 110px);
  padding: clamp(46px, 7vw, 86px) clamp(24px, 8vw, 120px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: clamp(24px, 5vw, 70px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-brand a,
.footer-bottom a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-column a:hover,
.footer-brand a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  text-align: right;
}

.footer-brand > img,
.footer-brand > a > img {
  width: 170px;
}

.footer-brand > a {
  display: inline-flex;
  line-height: 0;
}

.social-links-icons,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.social-links-icons {
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  color: var(--ink) !important;
}

.social-icon.facebook span {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(2px);
}

.social-icon.instagram span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.social-icon.instagram span::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.social-icon.instagram span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.social-icon.youtube span {
  position: relative;
  width: 21px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.social-icon.youtube span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.legal-links a {
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 22px clamp(24px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.next-step-landing {
  background: var(--ink);
}

.next-step-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(116px, 13vw, 168px) clamp(24px, 8vw, 120px) clamp(56px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(3, 30, 41, 0.96), rgba(2, 58, 82, 0.88)),
    radial-gradient(circle at top right, rgba(0, 216, 136, 0.18), transparent 42%);
}

.next-step-hero-video,
.next-step-hero-shade {
  position: absolute;
  inset: 0;
}

.next-step-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.next-step-hero-shade {
  background: linear-gradient(90deg, rgba(3, 30, 41, 0.9) 0%, rgba(3, 30, 41, 0.68) 48%, rgba(3, 30, 41, 0.42) 100%);
}

.next-step-hero-copy,
.next-step-form-panel {
  position: relative;
  z-index: 1;
}

.next-step-hero.come-see-hero {
  background:
    linear-gradient(90deg, rgba(3, 30, 41, 0.9) 0%, rgba(3, 30, 41, 0.68) 46%, rgba(3, 30, 41, 0.42) 100%),
    url("assets/photos/2026/next-steps/come-see-booklet.jpg") 42% 58% / cover no-repeat;
}

.next-step-hero.come-see-hero .next-step-form-panel {
  background: rgba(3, 30, 41, 0.72);
  backdrop-filter: blur(10px);
}

.next-step-hero-copy h1 {
  max-width: 11ch;
  margin: 8px 0 18px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.next-step-hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  font-weight: 700;
}

.next-step-hero-copy p + p {
  margin-top: 14px;
}

.next-step-form-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.interest-info-form {
  display: grid;
  gap: 12px;
}

.interest-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.interest-field input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 14px;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
}

.interest-field input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.interest-field input[aria-invalid="true"] {
  border-color: #ffb4b4;
}

.interest-info-form .button {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

.interest-privacy,
.interest-status,
.interest-error,
.interest-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 400;
  font-family: "Futura PT Book", "Futura PT", Futura, "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
}

.interest-error {
  color: #ffc9c9;
  min-height: 1.2em;
}

.interest-status {
  color: var(--green);
  min-height: 1.2em;
}

.interest-error {
  color: #ffc9c9;
  min-height: 1.2em;
}

.interest-status {
  color: var(--green);
  min-height: 1.2em;
}

.interest-fallback {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.interest-fallback[hidden] {
  display: none;
}

.interest-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.next-step-section {
  padding: clamp(56px, 9vw, 104px) clamp(24px, 8vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.next-step-section.light {
  background: var(--mist);
  color: var(--ink);
}

.next-step-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.next-step-section-inner.compact {
  max-width: 980px;
}

.next-step-section h2 {
  margin: 6px 0 16px;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 0.96;
}

.next-step-lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.next-step-section:not(.light) .next-step-lead {
  color: var(--muted);
}

.page-main.journey-landing {
  padding-top: 0;
}

.journey-path-intro .next-step-lead {
  margin-bottom: 0;
}

.journey-stages {
  background: var(--mist);
  color: var(--ink);
  padding: clamp(20px, 3.5vw, 32px) clamp(20px, 5vw, 48px) 0;
}

.journey-stages-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.journey-stages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.journey-stage-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 18px 18px 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
}

.journey-stage-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-stage-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.journey-stage-card p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.journey-stage-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.journey-ask {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 3.5vw, 36px) clamp(20px, 5vw, 48px) clamp(36px, 5vw, 56px);
  background: var(--mist);
  color: var(--ink);
}

.journey-ask-inner {
  display: grid;
  gap: 14px;
  width: min(560px, 100%);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(3, 30, 41, 0.08);
  text-align: left;
}

.journey-ask-inner > .kicker {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: left;
}

.journey-series-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.journey-ask-form {
  width: 100%;
}

.journey-ask .interest-info-form {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 12px;
}

.journey-ask .interest-field {
  color: var(--ink-muted);
}

.journey-ask .interest-field input {
  border-color: var(--dark-line);
  background: var(--white);
  color: var(--ink);
}

.journey-ask .interest-info-form .button {
  width: auto;
  min-width: 180px;
}

.journey-ask .interest-error,
.journey-ask .interest-privacy,
.journey-ask .interest-status,
.journey-ask .interest-fallback {
  grid-column: 1 / -1;
}

.journey-ask .interest-error,
.journey-ask .interest-status {
  min-height: 0;
}

.journey-ask .interest-error:empty,
.journey-ask .interest-status:empty {
  display: none;
}

.journey-ask .interest-privacy,
.journey-ask .interest-fallback p {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.journey-ask .interest-fallback {
  gap: 8px;
  padding-top: 2px;
}

.journey-ask .interest-fallback .button {
  width: auto;
  min-width: 0;
  min-height: 0;
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  box-shadow: none;
}

.journey-ask .interest-fallback .button:hover,
.journey-ask .interest-fallback .button:focus-visible {
  background: none;
  color: var(--green-deep);
}

.journey-scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Prefer a stable viewport unit so mobile browser chrome show/hide
     does not constantly resize the pinned section and fight scroll. */
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #ffffff;
}

/* Keep the pin spacer from flashing the dark page background if ScrollTrigger desyncs. */
.journey-landing > .pin-spacer {
  background: #ffffff;
}

.journey-scroll.is-static {
  height: min(100svh, 820px);
  min-height: 520px;
}

.journey-scroll.is-static .journey-scroll-cue {
  display: none;
}

.journey-scroll .journey-part:not(.title-part),
.journey-scroll .journey-route-segment,
.journey-scroll .journey-route-arrow {
  opacity: 0;
}

.journey-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

.journey-scroll-cue svg {
  width: 28px;
  height: 28px;
  animation: journey-scroll-cue-bounce 1.6s ease-in-out infinite;
}

@keyframes journey-scroll-cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-scroll-cue,
  .journey-scroll-cue svg {
    animation: none;
  }
}

.journey-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1);
}

.camera {
  position: absolute;
  top: 0;
  left: 0;
  width: 1294.95px;
  height: 1040.39px;
  transform: translate(-612px, 280.8px) scale(2.4);
  transform-origin: 0 0;
  will-change: transform;
}

.camera svg {
  display: block;
  width: 1294.95px;
  height: 1040.39px;
  overflow: visible;
}

#journey-motion-guide {
  opacity: 0 !important;
  stroke: none !important;
  fill: none !important;
}

.next-step-grid {
  display: grid;
  gap: 16px;
}

.next-step-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.next-step-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.next-step-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.next-step-section:not(.light) .next-step-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.next-step-card.plain {
  background: transparent;
  border: 0;
  padding: 0;
}

.next-step-card.large,
.next-step-grid.three .next-step-card {
  padding: clamp(28px, 4vw, 40px);
}

.next-step-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-step-section:not(.light) .next-step-card span {
  color: var(--green);
}

.next-step-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: wrap;
}

.next-step-grid.four .next-step-card h3 {
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
}

.next-step-card p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 700;
}

.next-step-section:not(.light) .next-step-card p {
  color: var(--muted);
}

.next-step-rhythm {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
}

.next-step-rhythm li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.next-step-rhythm span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
}

.next-step-rhythm p {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 700;
}

.next-step-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(50px, 8vw, 88px) clamp(24px, 8vw, 120px);
  background: var(--green);
  color: var(--ink);
}

.next-step-final h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.next-step-final p {
  margin: 0;
  max-width: 680px;
  color: rgba(3, 30, 41, 0.76);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .next-step-grid.four,
  .journey-stages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 14px;
    font-size: 0.76rem;
  }

  .quick-actions,
  .ministry-grid,
  .featured-ministry-grid,
  .pathway-band,
  .gathering-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .message-grid,
  .events-layout,
  .page-hero,
  .detail-hero,
  .detail-two-col,
  .detail-cta,
  .new-visit-hero,
  .give-hero,
  .give-ways-layout,
  .why-give-band,
  .account-help-band,
  .lead-pastors,
  .visit-intro-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .detail-two-col > .detail-copy:only-child {
    grid-column: auto;
  }

	  .expect-card-grid,
	  .staff-grid,
	  .ways-grid,
	  .detail-card-grid,
	  .detail-card-grid.four,
	  .detail-card-grid.five,
	  .detail-card-grid.trips,
	  .kids-step-grid,
	  .kids-hub-grid,
	  .kids-environment-grid,
	  .detail-photo-strip,
	  .team-directory {
	    grid-template-columns: repeat(2, 1fr);
	  }

  .kids-highlight-grid {
    grid-template-columns: 1fr;
  }

  .detail-two-col.flip .detail-image-panel {
    order: 0;
  }

  .detail-two-col.flip {
    grid-template-columns: 1fr;
  }

  .calendar-band,
  .ready-visit-band {
    grid-template-columns: 1fr;
  }

  .pg-hero-grid,
  .pg-vision-grid,
  .pg-final-cta {
    grid-template-columns: 1fr;
  }

  .pg-copy {
    max-width: 760px;
  }

  .pg-pillars {
    grid-template-columns: 1fr;
  }

  .pg-timeline {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
  }

  .pg-final-cta {
    text-align: left;
  }

  .vertical-video-card {
    width: min(100%, 360px);
  }

  .vertical-video-card.give-video-card {
    width: min(100%, 720px);
  }

  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }

  .social-links-icons,
  .legal-links,
  .footer-brand .store-badge-row {
    justify-content: flex-start;
  }

  .footer-brand .church-center-app {
    align-items: flex-start;
  }

  .youth-hero,
  .youth-invite-grid,
  .youth-wide-grid,
  .crew-directory-header,
  .crew-detail-layout {
    grid-template-columns: 1fr;
  }

  .youth-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .youth-hero-panel {
    max-width: 540px;
  }

  .detail-two-col.flip .youth-selah-art {
    order: 0;
  }

  .youth-event-stack {
    max-width: 760px;
  }

  .crew-help-card {
    max-width: 540px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding: 14px 18px;
  }

  body.nav-open .site-header {
    z-index: 100;
    background: rgba(3, 30, 41, 0.98);
    border-bottom-color: var(--line);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 31;
  }

  .main-nav {
    position: fixed;
    top: var(--mobile-header-height, 73px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: calc(100vh - var(--mobile-header-height, 73px));
    height: calc(100dvh - var(--mobile-header-height, 73px));
    max-height: calc(100dvh - var(--mobile-header-height, 73px));
    padding: 20px 28px calc(32px + env(safe-area-inset-bottom));
    background: rgba(3, 30, 41, 0.98);
    font-size: 1.25rem;
    pointer-events: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .dropdown-toggle {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 16px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown-menu::before {
    content: none;
  }

  .dropdown-menu.dropdown-wide {
    left: auto;
    min-width: 0;
    padding: 0 0 10px 16px;
    transform: none;
  }

  .dropdown-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dropdown-heading {
    padding: 12px 0 4px;
  }

  .has-dropdown:hover:not(.open) .dropdown-menu,
  .has-dropdown:focus-within:not(.open) .dropdown-menu {
    display: none;
    transform: none;
  }

  .has-dropdown.open .dropdown-menu,
  .has-dropdown.open .dropdown-menu.dropdown-wide {
    display: block;
    transform: none;
  }

  .dropdown-menu a {
    padding: 9px 0;
    font-size: 0.9rem;
    white-space: normal;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .home-hero {
    min-height: 760px;
    padding: 110px 22px 56px;
    place-items: end center;
  }

  .home-hero .hero-shell h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.6rem);
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.6rem);
  }

  .intro-band,
  .feature-message,
  .home-guest-band,
  .home-message-section,
  .ministries-section,
  .featured-ministries-section,
  .journey-pathway-section,
  .expect-page-section,
  .staff-directory,
  .detail-section,
  .detail-cta,
  .give-section,
  .why-give-band,
  .account-help-band {
    padding: 62px 22px;
  }

  .home-guest-band .home-message-section,
  .home-guest-band .ministries-section {
    padding: 0;
  }

  .two-col,
  .quick-actions,
  .ministry-grid,
  .featured-ministry-grid,
  .pathway-band,
  .gathering-grid,
  .expect-card-grid,
  .staff-grid,
	  .ways-grid,
	  .detail-card-grid,
	  .detail-card-grid.four,
	  .detail-card-grid.five,
	  .detail-card-grid.trips,
	  .kids-step-grid,
	  .kids-hub-grid,
	  .kids-environment-grid,
	  .detail-photo-strip,
	  .team-directory {
	    grid-template-columns: 1fr;
	  }

		  .detail-card-grid.trips .detail-card.image {
		    grid-template-columns: 1fr;
		  }

  .detail-two-col .detail-card-grid.four {
    grid-template-columns: 1fr;
  }

  .journey-pattern-panel {
    padding: 44px 22px;
  }

  .journey-eyebrow {
    margin-bottom: 8px;
  }

  .journey-pattern-panel > p:not(.journey-eyebrow) {
    margin-bottom: 18px;
  }

  .action-panel,
  .pathway-band a {
    min-height: 210px;
  }

  .new-visit-hero {
    padding: 48px 22px;
  }

  .give-hero {
    min-height: auto;
    padding: 48px 22px 64px;
  }

  .give-explore {
    position: static;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 22px;
  }

  .give-explore span,
  .give-explore a {
    flex: 0 0 auto;
  }

  .detail-hero {
    min-height: auto;
    padding: 70px 22px;
  }

  .detail-explore {
    position: static;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 22px;
  }

  .detail-explore span,
  .detail-explore a {
    flex: 0 0 auto;
  }

  .new-visit-content h1,
  .visit-intro h2,
  .expect-page-section h2,
  .ready-visit-band h2,
  .give-hero-content h1,
  .why-give-band h2,
  .account-help-band h2,
  .pg-copy h2,
  .pg-final-cta h3 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .give-hero-content h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 0.95;
  }

  .why-give-band h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    line-height: 0.98;
  }

  .account-help-band h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .pg-page .project-generations-home-section .pg-copy h1 {
    font-size: clamp(2.05rem, 8.2vw, 2.7rem);
  }

  .project-generations-home-section {
    padding: 64px 22px;
  }

  .pg-shell {
    gap: 36px;
  }

  .pg-mark {
    width: 62px;
    margin-bottom: 20px;
  }

  .pg-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pg-button {
    width: 100%;
  }

  .pg-image-frame,
  .pg-brand-frame,
  .pg-pillars article,
  .pg-vision-grid,
  .pg-timeline,
  .pg-final-cta {
    border-radius: 18px;
  }

  .pg-brand-frame {
    padding: 14px;
  }

  .pg-brand-frame img {
    border-radius: 12px;
  }

  .pg-pillars article,
  .pg-vision-grid,
  .pg-final-cta {
    padding: 24px;
  }

  .pg-pillars article {
    min-height: 0;
  }

  .pg-pillars h3 {
    margin-top: 28px;
  }

  .pg-timeline {
    grid-template-columns: 1fr;
  }

  .pg-timeline span {
    min-height: 72px;
  }

  .vertical-video-card {
    width: min(100%, 310px);
    margin: 0 auto;
  }

  .vertical-video-card.give-video-card {
    width: 100%;
  }

  .visit-intro,
  .ready-visit-band {
    padding: 46px 22px;
  }

  .message-grid {
    padding: 16px;
  }

  .page-main {
    padding-top: 72px;
  }

  .youth-page .page-main {
    padding-top: 0;
  }

  .page-hero {
    min-height: auto;
    padding: 70px 22px;
  }

  .youth-hero {
    padding: 94px 22px 54px;
  }

  .youth-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.1rem);
  }

  .youth-logo {
    width: min(245px, 72vw);
  }

  .youth-hero-panel,
  .youth-stat-row div,
  .youth-crew-grid article {
    padding: 22px;
  }

  .youth-stat-row,
  .youth-card-grid,
  .youth-crew-grid,
  .youth-event-stack,
  .youth-social-art,
  .crew-directory-grid,
  .crew-meta-grid {
    grid-template-columns: 1fr;
  }

  .crew-directory-header {
    gap: 24px;
  }

  .crew-filter-panel,
  .crew-group-card,
  .crew-detail-panel {
    padding: 18px;
  }

  .crew-filter-group {
    align-items: flex-start;
  }

  .crew-filter-group span {
    width: 100%;
  }

  .crew-card-top {
    flex-direction: column;
  }

  .crew-card-actions .button,
  .crew-help-card .button,
  .crew-interest-form .button {
    width: 100%;
  }

  .crew-detail-layout {
    grid-template-columns: 1fr;
  }

  .crew-detail-leader {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .crew-detail-leader img {
    width: 76px;
    height: 76px;
  }

  .youth-event-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .youth-event-stack img:nth-child(2),
  .youth-event-stack img:nth-child(3) {
    aspect-ratio: 16 / 10;
  }

  .youth-crew-grid article {
    min-height: 0;
  }

  .youth-crew-grid h3 {
    margin-top: 34px;
  }

  .page-hero h1,
  .detail-hero h1,
  .intro-band h2,
  .section-heading h2,
  .message-copy h2,
  .calendar-band h2,
  .lead-copy h2,
  .detail-copy h2,
  .detail-cta h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .dream-team-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 0.95;
  }

  .events-layout,
  .lead-pastors,
  .calendar-band {
    padding: 46px 22px;
  }

  .event-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .event-item .text-link {
    grid-column: 2;
  }

  .event-item-image {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    aspect-ratio: 16 / 7;
  }

  .event-item time {
    grid-column: 1;
    grid-row: 2;
  }

  .event-item-content {
    grid-column: 2;
    grid-row: 2;
  }

  .event-item time {
    width: 64px;
  }

  .iframe-wrap {
    min-height: 420px;
  }

  .footer-main {
    padding: 42px 22px;
  }

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

  .footer-bottom {
    padding: 24px 22px 86px;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }

  .next-step-hero {
    grid-template-columns: 1fr;
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .next-step-hero.come-see-hero {
    background:
      linear-gradient(180deg, rgba(3, 30, 41, 0.88) 0%, rgba(3, 30, 41, 0.7) 100%);
  }

  .next-step-hero.come-see-hero {
    background-image:
      linear-gradient(180deg, rgba(3, 30, 41, 0.88) 0%, rgba(3, 30, 41, 0.7) 100%),
      url("assets/photos/2026/next-steps/come-see-booklet.jpg");
    background-position: 42% 58%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .next-step-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .journey-stages {
    padding: 20px 16px 0;
  }

  .journey-stages-grid {
    grid-template-columns: 1fr;
  }

  .journey-ask {
    padding: 20px 16px 32px;
  }

  .journey-ask-inner > .kicker {
    white-space: normal;
  }

  .journey-ask .interest-info-form {
    grid-template-columns: 1fr;
  }

  .journey-ask .interest-info-form .button {
    width: 100%;
  }

  .next-step-grid.four,
  .next-step-grid.three,
  .next-step-grid.two {
    grid-template-columns: 1fr;
  }

  .next-step-final {
    grid-template-columns: 1fr;
  }

  .next-step-final .button {
    width: 100%;
    justify-content: center;
  }
}

.watch-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: #e11d2e;
  vertical-align: 1px;
}

.watch-page-main {
  background: #f1f8f6;
  color: var(--ink);
}

.watch-featured-section {
  color: var(--white);
}

.watch-featured-section .message-copy h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.watch-meta {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.watch-recent-section,
.watch-related-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 86px 28px 120px;
}

.watch-related-section {
  border-top: 1px solid #cedbd8;
}

.watch-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.watch-message-card {
  min-width: 0;
}

.watch-thumb {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #dce7e4;
  aspect-ratio: 16 / 9;
}

.watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.watch-message-card:hover .watch-thumb img,
.watch-message-card a:focus-visible .watch-thumb img,
.series-message-card:hover .watch-thumb img {
  transform: scale(1.025);
}

.watch-card-copy {
  padding: 20px 2px 0;
}

.watch-card-copy h3 {
  margin: 0;
}

.watch-card-copy h3 a,
.series-message-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.watch-card-copy h3 a:hover,
.watch-card-copy h3 a:focus-visible,
.series-message-copy h3 a:hover,
.series-message-copy h3 a:focus-visible,
.series-card h2 a:focus-visible {
  color: var(--green-deep);
}

.watch-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.watch-detail-hero {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  padding: 148px max(6vw, 28px) 72px;
  background: linear-gradient(180deg, var(--ink) 0%, #052f42 52%, var(--ink) 100%);
  color: var(--white);
}

.watch-detail-player,
.watch-detail-copy {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.watch-detail-copy h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.watch-detail-frame,
.watch-featured-grid .message-player {
  min-height: 0;
}

.watch-empty,
.watch-error,
.watch-redirect {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 28px 120px;
  text-align: center;
}

.watch-redirect-main,
.watch-empty,
.watch-error {
  color: var(--ink);
}

.watch-redirect h1,
.watch-empty p,
.watch-error p {
  margin-bottom: 18px;
}

.watch-skeleton {
  background: linear-gradient(90deg, #dce7e4 0%, #eef4f2 50%, #dce7e4 100%);
  background-size: 200% 100%;
  animation: watch-skeleton-shift 1.2s ease-in-out infinite;
}

.watch-featured-section .watch-skeleton,
.watch-detail-hero .watch-skeleton {
  background: linear-gradient(90deg, #04283a 0%, #0a3d52 50%, #04283a 100%);
  background-size: 200% 100%;
}

.watch-skeleton-line {
  height: 12px;
  width: 42%;
  margin-bottom: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #dce7e4 0%, #eef4f2 50%, #dce7e4 100%);
  background-size: 200% 100%;
  animation: watch-skeleton-shift 1.2s ease-in-out infinite;
}

.watch-skeleton-line.is-title {
  height: 28px;
  width: 78%;
}

.watch-detail-hero .watch-skeleton-line {
  background: linear-gradient(90deg, #04283a 0%, #0a3d52 50%, #04283a 100%);
  background-size: 200% 100%;
}

@keyframes watch-skeleton-shift {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .watch-thumb img,
  .watch-live-dot,
  .watch-skeleton,
  .watch-skeleton-line {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .watch-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-detail-hero,
  .watch-recent-section,
  .watch-related-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 620px) {
  .watch-recent-grid {
    grid-template-columns: 1fr;
  }

  .watch-detail-hero {
    padding-top: 118px;
  }

  .watch-featured-section .message-copy h1,
  .watch-detail-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }
}

.feedback-page {
  background: var(--mist);
  color: var(--ink);
}

.feedback-hero {
  padding: 148px max(6vw, 28px) 48px;
  background: var(--ink);
  color: #fff;
}

.feedback-hero > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.feedback-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feedback-hero a {
  color: var(--green);
  font-weight: 700;
}

.feedback-hero a:hover,
.feedback-hero a:focus-visible {
  text-decoration: underline;
}

.feedback-body {
  padding: 28px 20px 88px;
}

.feedback-panel {
  display: grid;
  gap: 22px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(3, 30, 41, 0.08);
}

.feedback-system {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
}

.feedback-system > p:first-child {
  margin: 0 0 12px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.feedback-system dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.feedback-system dl div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1fr);
  gap: 8px 16px;
  align-items: baseline;
}

.feedback-system dt {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feedback-system dd {
  margin: 0;
  font-weight: 700;
}

.feedback-useragent {
  margin: 14px 0 0;
}

.feedback-useragent code {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
  word-break: break-word;
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-form h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.feedback-form textarea {
  width: 100%;
  min-height: 180px;
  padding: 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.feedback-form textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.feedback-form .story-error:empty,
.feedback-form [data-feedback-status]:empty {
  display: none;
}

@media (max-width: 620px) {
  .feedback-hero {
    padding: 118px 22px 36px;
  }

  .feedback-system dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.legal-page {
  background: var(--mist);
  color: var(--ink);
}

.legal-hero {
  padding: 148px max(6vw, 28px) 48px;
  background: var(--ink);
  color: #fff;
}

.legal-hero > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.legal-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-hero a {
  color: var(--green);
  font-weight: 700;
}

.legal-hero a:hover,
.legal-hero a:focus-visible {
  text-decoration: underline;
}

.legal-body {
  padding: 28px 20px 88px;
}

.legal-copy {
  width: min(840px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(3, 30, 41, 0.08);
}

.legal-copy h2 {
  margin: 2.2rem 0 0.7rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.05rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal-copy a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
  color: var(--green);
}

.legal-copy address {
  margin: 0;
  font-style: normal;
  line-height: 1.7;
}

.legal-toc {
  margin: 0 0 2rem;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--mist);
}

.legal-toc .kicker {
  margin-bottom: 10px;
}

.legal-toc ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  text-decoration: none;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.4rem;
}

.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.legal-copy th,
.legal-copy td {
  padding: 12px 14px;
  border: 1px solid var(--dark-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.legal-copy thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-copy tbody th {
  width: 28%;
  background: var(--mist);
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 118px 22px 36px;
  }

  .legal-copy tbody th,
  .legal-copy tbody td {
    display: block;
    width: auto;
  }

  .legal-copy tbody tr {
    display: block;
    margin-bottom: 12px;
  }
}

.contact-page {
  background: var(--mist);
  color: var(--ink);
}

.contact-hero {
  padding: 148px max(6vw, 28px) 48px;
  background: var(--ink);
  color: #fff;
}

.contact-hero > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-body {
  padding: 28px 20px 88px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.78fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-form-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(3, 30, 41, 0.08);
}

.contact-form-panel h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.contact-form-intro,
.contact-disclosure,
.contact-embed-note,
.contact-info p,
.contact-visit p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-embed-actions {
  margin: 8px 0 0;
}

.contact-embed-actions .button.primary {
  min-width: min(100%, 16.5rem);
}

.contact-embed-actions .button:focus-visible,
.contact-info a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.contact-disclosure,
.contact-embed-note {
  font-size: 0.92rem;
}

.contact-info a:hover {
  color: var(--green-deep);
}

.contact-info {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.contact-info address {
  margin: 0;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-info a {
  color: var(--ink);
  font-weight: 700;
}

.contact-info-actions {
  margin-top: 4px;
}

.contact-visit {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
}

.contact-visit h3 {
  margin: 0;
  font-size: 1.15rem;
}

.contact-visit .button {
  justify-self: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    padding: 118px 22px 36px;
  }
}

.about-page {
  --about-deep: #023a52;
  --about-green: #50bc81;
  --about-sky: #7fa9d3;
  --about-black: #231f20;
  background: var(--white);
  color: var(--about-black);
}

.about-page .kicker {
  color: var(--about-green);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 132px clamp(24px, 6vw, 88px) 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(127, 169, 211, 0.28) 0 180px, transparent 181px),
    radial-gradient(circle at 6% 78%, rgba(80, 188, 129, 0.16) 0 140px, transparent 141px),
    var(--white);
  overflow: hidden;
}

.about-hero-copy {
  max-width: 640px;
}

.about-hero h1 {
  margin: 8px 0 22px;
  color: var(--about-deep);
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  line-height: 0.92;
}

.about-hero-mission,
.about-hero-support,
.about-motion-intro p,
.about-pillar-copy p,
.about-invite p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.about-hero-mission {
  color: var(--about-deep);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 700;
}

.about-hero-actions {
  align-items: center;
  margin-top: 10px;
}

.about-hero-actions .text-link {
  color: var(--about-deep);
}

.about-hero-actions .text-link:hover {
  color: var(--about-green);
}

.about-hero-posters {
  position: relative;
  min-height: min(78vh, 680px);
}

.about-hero-poster {
  margin: 0;
  width: 46%;
  aspect-ratio: 2 / 3;
  background: var(--white);
  box-shadow: 0 28px 64px rgba(2, 58, 82, 0.18);
}

.about-hero-poster img {
  animation: about-rise 0.7s ease both;
}

.about-hero-poster img,
.about-pillar-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-hero-poster-connect {
  position: absolute;
  left: 0;
  top: 16%;
  z-index: 2;
  width: 44%;
  transform: rotate(-8deg);
}

.about-hero-poster-grow {
  position: absolute;
  left: 24%;
  top: 0;
  z-index: 3;
  width: 52%;
  transform: rotate(5deg);
}

.about-hero-poster-give {
  position: absolute;
  right: -2%;
  top: 24%;
  z-index: 1;
  width: 44%;
  transform: rotate(-4deg);
}

.about-hero-poster-connect img { animation-delay: 0.05s; }
.about-hero-poster-grow img { animation-delay: 0.14s; }
.about-hero-poster-give img { animation-delay: 0.22s; }

@keyframes about-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-motion {
  position: relative;
  background: var(--mist);
  overflow: hidden;
}

.about-motion::before,
.about-motion::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-motion::before {
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  left: 12%;
  top: 28%;
  background: radial-gradient(circle, rgba(127, 169, 211, 0.26) 0%, rgba(127, 169, 211, 0) 68%);
}

.about-motion::after {
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  right: 10%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(80, 188, 129, 0.22) 0%, rgba(80, 188, 129, 0) 68%);
}

.about-motion-intro {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 72px clamp(24px, 6vw, 88px) 28px;
  text-align: center;
}

.about-motion-intro h2,
.about-values-intro h2,
.about-glimpse-copy h2,
.about-invite h2 {
  margin: 6px 0 16px;
  color: var(--about-deep);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.about-pillar {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 88px);
  position: relative;
  z-index: 1;
}

.about-pillar-grow {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.about-pillar-poster {
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(2, 58, 82, 0.12);
}

.about-pillar-copy {
  max-width: 560px;
}

.about-pillar-copy h3 {
  margin: 0 0 16px;
  color: var(--about-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.about-pillar-copy .text-link {
  color: var(--about-deep);
}

.about-pillar-copy .text-link:hover {
  color: var(--about-green);
}

.about-values {
  padding: clamp(72px, 10vw, 120px) clamp(24px, 6vw, 88px);
  background: var(--white);
}

.about-values-intro {
  width: min(760px, 100%);
  margin-bottom: 48px;
}

.about-values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values-list li {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(2, 58, 82, 0.16);
}

.about-values-list li:nth-child(5),
.about-values-list li:nth-child(6) {
  border-bottom: 1px solid rgba(2, 58, 82, 0.16);
}

.about-values-list span {
  color: var(--about-green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-values-list h3 {
  margin: 0 0 8px;
  color: var(--about-deep);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.about-values-list p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.about-glimpse {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 80px);
  background: var(--about-deep);
  color: var(--white);
}

.about-glimpse .kicker {
  color: var(--about-green);
}

.about-glimpse-copy h2 {
  color: var(--white);
  max-width: 18ch;
}

.about-glimpse-copy {
  margin-bottom: 20px;
}

.about-glimpse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "worship worship friends kids"
    "worship worship friends family"
    "sunday sunday dream dream";
  gap: 12px;
  aspect-ratio: 4 / 3;
  background: transparent;
}

.about-glimpse-rail {
  display: contents;
}

.about-glimpse-item {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #012433;
}

.about-glimpse-worship { grid-area: worship; }
.about-glimpse-friends { grid-area: friends; }
.about-glimpse-kids { grid-area: kids; }
.about-glimpse-family { grid-area: family; }
.about-glimpse-sunday { grid-area: sunday; }
.about-glimpse-dream { grid-area: dream; }

.about-glimpse-item button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.about-glimpse-item button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -4px;
}

.about-glimpse-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 280ms ease;
}

.about-glimpse-worship img { object-position: 50% 32%; }
.about-glimpse-friends img { object-position: 50% 26%; }
.about-glimpse-kids img { object-position: 44% 26%; }
.about-glimpse-family img { object-position: 40% 22%; }
.about-glimpse-sunday img { object-position: 68% 28%; }
.about-glimpse-dream img { object-position: 50% 34%; }

.about-glimpse-item button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.about-glimpse-item button:hover img,
.about-glimpse-item button:focus-visible img {
  transform: scale(1.018);
}

.about-glimpse-item button:hover::before,
.about-glimpse-item button:focus-visible::before {
  opacity: 0.08;
}

.about-glimpse-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 22px;
  height: 22px;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) top left / 9px 2px no-repeat,
    linear-gradient(#fff, #fff) top left / 2px 9px no-repeat,
    linear-gradient(#fff, #fff) top right / 9px 2px no-repeat,
    linear-gradient(#fff, #fff) top right / 2px 9px no-repeat,
    linear-gradient(#fff, #fff) bottom left / 9px 2px no-repeat,
    linear-gradient(#fff, #fff) bottom left / 2px 9px no-repeat,
    linear-gradient(#fff, #fff) bottom right / 9px 2px no-repeat,
    linear-gradient(#fff, #fff) bottom right / 2px 9px no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  transition: opacity 180ms ease;
}

.about-glimpse-item button:hover .about-glimpse-expand,
.about-glimpse-item button:focus-visible .about-glimpse-expand {
  opacity: 1;
}

.about-invite {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 88px);
  background:
    radial-gradient(circle at 90% 20%, rgba(127, 169, 211, 0.28) 0 180px, transparent 181px),
    var(--mist);
}

.about-invite-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-invite .button-row {
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.about-invite-times {
  font-weight: 700;
  color: var(--about-deep) !important;
}

.about-invite-link {
  color: var(--about-deep);
}

.about-invite-link:hover {
  color: var(--about-green);
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-poster img {
    animation: none;
  }
}

@media (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .about-hero-posters {
    display: flex;
    gap: 16px;
    min-height: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 18px;
  }

  .about-hero-poster,
  .about-hero-poster-connect,
  .about-hero-poster-grow,
  .about-hero-poster-give {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex: 0 0 min(78vw, 340px);
    width: min(78vw, 340px);
    transform: none;
    scroll-snap-align: start;
  }

  .about-pillar,
  .about-pillar-grow {
    grid-template-columns: 1fr;
  }

  .about-pillar-grow .about-pillar-poster {
    order: 1;
  }

  .about-pillar-grow .about-pillar-copy {
    order: 2;
  }

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

  .about-values-list li:nth-child(5) {
    border-bottom: 0;
  }
}

@media (max-width: 999px) and (min-width: 600px) {
  .about-glimpse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 2.2fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    grid-template-areas:
      "worship worship"
      "friends kids"
      "friends family"
      "sunday dream";
    aspect-ratio: 2 / 3;
    gap: 10px;
  }
}

@media (max-width: 599px) {
  .about-glimpse-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    aspect-ratio: auto;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .about-glimpse-worship {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-glimpse-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .about-glimpse-rail .about-glimpse-item {
    flex: 0 0 81vw;
    width: 81vw;
    height: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .about-hero-poster,
  .about-hero-poster-connect,
  .about-hero-poster-grow,
  .about-hero-poster-give {
    flex: 0 0 min(82vw, 360px);
    width: min(82vw, 360px);
  }
}

html.media-dialog-open,
html.media-dialog-open body {
  overflow: hidden;
}

.media-dialog {
  width: min(960px, calc(100vw - 32px));
  max-width: 960px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.media-dialog::backdrop {
  background: rgba(3, 30, 41, 0.84);
}

.media-dialog-panel {
  position: relative;
  padding: 18px 18px 22px;
}

.media-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 30, 41, 0.88);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.media-dialog-close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.media-dialog-player {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.media-dialog-player iframe,
.media-dialog-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-dialog-photo {
  touch-action: pan-y;
  user-select: none;
}

.media-dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 30, 41, 0.88);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.media-dialog-nav.is-prev {
  left: 10px;
}

.media-dialog-nav.is-next {
  right: 10px;
}

.media-dialog-nav:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.media-dialog-nav[hidden] {
  display: none;
}

.media-dialog-caption {
  margin: 12px 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-dialog-fallback {
  position: static;
  display: inline-block;
  margin: 14px 8px 0;
  color: var(--green);
}

.media-dialog-caption[hidden],
.media-dialog-fallback[hidden] {
  display: none !important;
}

.faq-section {
  padding: clamp(64px, 9vw, 112px) clamp(24px, 6vw, 88px);
}

.faq-section-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.faq-section h2 {
  margin: 8px 0 28px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-section.on-light {
  background: var(--mist);
  color: var(--ink);
}

.faq-section.on-light .faq-item {
  border-bottom-color: var(--dark-line);
}

.faq-section.on-light h2 {
  color: var(--deep);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-section.on-light .faq-answer {
  color: var(--ink-muted);
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-section.on-light .faq-answer a {
  color: var(--green-deep);
}

.stories-of-hope[hidden] {
  display: none !important;
}

.stories-of-hope-inner {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(24px, 6vw, 88px);
}

.stories-viewport {
  position: relative;
  overflow: hidden;
}

.stories-slide {
  display: none;
}

.stories-slide.is-active {
  display: block;
}

.stories-quote {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.stories-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.stories-controls button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.stories-controls button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.stories-status {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .media-dialog {
    width: calc(100vw - 16px);
    max-width: none;
  }

  .dropdown-menu a {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dropdown-menu,
  .faq-item summary::after,
  .about-glimpse-item img,
  .about-glimpse-item button::before,
  .about-glimpse-expand {
    transition: none;
  }

  .about-glimpse-item button:hover img,
  .about-glimpse-item button:focus-visible img,
  .detail-photo-strip button:hover img,
  .detail-photo-strip button:focus-visible img {
    transform: none;
  }
}

/* Content-pattern primitives: purpose-based reading modes.
   Scoped so existing .detail-section layouts are not forced into one template. */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-section.light .fact-strip {
  border-color: var(--dark-line);
}

.fact-strip div {
  padding: 18px 20px 18px 0;
}

.fact-strip dt,
.fact-strip .fact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-section.light .fact-strip dt,
.detail-section.light .fact-strip .fact-label {
  color: var(--green-deep);
}

.fact-strip dd,
.fact-strip .fact-value {
  margin: 0;
  color: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.true-timeline {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: true-step;
}

.true-timeline li {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  counter-increment: true-step;
}

.detail-section.light .true-timeline li {
  border-color: var(--dark-line);
}

.true-timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-section.light .true-timeline li:last-child {
  border-bottom-color: var(--dark-line);
}

.true-timeline .step-mark,
.true-timeline li::before {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.true-timeline li::before {
  content: counter(true-step, decimal-leading-zero);
}

.true-timeline h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.true-timeline p {
  margin: 0;
}

.path-selector {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.path-selector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.path-selector-tabs button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.detail-section.light .path-selector-tabs button {
  border-color: var(--dark-line);
  color: var(--ink);
}

.path-selector-tabs button[aria-selected="true"],
.path-selector-tabs button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.path-selector-tabs button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.path-selector-panel {
  max-width: 720px;
}

.path-selector-panel[hidden] {
  display: none;
}

.path-selector-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.link-directory {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.link-directory a,
.link-directory .link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.detail-section.light .link-directory a,
.featured-ministries-section .link-directory a {
  border-color: var(--dark-line);
  color: var(--ink);
}

.detail-section.light .link-directory span,
.featured-ministries-section .link-directory span {
  color: var(--ink-muted);
}

.link-directory a:last-child,
.link-directory .link-row:last-child {
  border-bottom: 1px solid var(--line);
}

.link-directory a:hover strong,
.link-directory a:focus-visible strong {
  color: var(--green);
}

.link-directory a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.link-directory strong {
  display: block;
  min-width: 0;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.link-directory span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .link-directory a,
  .link-directory .link-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .link-directory span {
    text-align: left;
  }
}

.team-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 28px 0 0;
}

.team-directory article {
  min-width: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.team-directory h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.team-directory strong {
  color: var(--green);
}

.team-directory p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.quote-band {
  padding: clamp(64px, 9vw, 110px) clamp(24px, 8vw, 120px);
  background: var(--panel);
}

.quote-band blockquote,
#belonging blockquote {
  margin: 0 auto;
  max-width: min(34rem, 100%);
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}

.quote-band cite,
#belonging blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.detail-section.light .schedule-board {
  border-color: var(--dark-line);
  background: var(--dark-line);
}

.schedule-board article {
  padding: 24px;
  background: var(--ink);
}

.detail-section.light .schedule-board article {
  background: var(--mist);
  color: var(--ink);
}

.schedule-board .small-label {
  display: block;
  margin-bottom: 10px;
}

.schedule-board h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
}

.schedule-board p {
  margin: 0;
}

.rhythm-phrase {
  display: block;
  margin: 28px 0 0;
  padding: 28px 0 0 1.2em;
  border-top: 1px solid var(--line);
  list-style: disc;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.rhythm-phrase li {
  margin: 0 0 0.55em;
}

.rhythm-phrase li:last-child {
  margin-bottom: 0;
}

.rhythm-phrase li::marker {
  color: var(--green);
}

.manifesto-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.manifesto-list li,
.manifesto-list article {
  padding: 28px 0;
  border-top: 1px solid currentColor;
}

.about-values-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
}

.about-values-manifesto article {
  min-width: 0;
  padding: clamp(28px, 4vw, 42px) 0;
  border-top: 1px solid rgba(2, 58, 82, 0.16);
}

.about-values-manifesto article:last-child {
  border-bottom: 1px solid rgba(2, 58, 82, 0.16);
}

.about-values-manifesto h3 {
  margin: 0 0 10px;
  color: var(--about-deep);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.about-values-manifesto p {
  margin: 0;
  max-width: 38ch;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (min-width: 720px) {
  .about-values-manifesto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(32px, 5vw, 80px);
  }

  .about-values-manifesto article:nth-child(5) {
    border-bottom: 1px solid rgba(2, 58, 82, 0.16);
  }

  .about-values-manifesto article:first-child h3 {
    font-size: clamp(2rem, 3.6vw, 3.15rem);
  }
}

.home-next-editorial {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.home-next-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.home-next-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-next-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
}

.home-next-feature > * {
  position: relative;
  z-index: 1;
}

.home-next-feature h3 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.home-next-feature p {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.home-next-editorial .link-directory {
  margin-top: 0;
}

.pg-story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 32, 0.08);
}

.pg-story-band h3 {
  margin: 8px 0 12px;
  color: #0f1720;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.pg-story-band p {
  margin: 0;
  color: #314049;
  font-weight: 700;
}

.give-method-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
}

.give-method-list article {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr) auto;
  gap: 16px 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--dark-line);
}

.give-method-list article:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.give-method-list h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.give-method-list p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 700;
}

.give-method-list .text-link {
  white-space: nowrap;
}

.youth-manifesto {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 46ch;
}

.youth-manifesto p {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}

.youth-crew-manifesto {
  display: grid;
  gap: 8px;
  margin: 0;
}

.youth-crew-manifesto strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.mission-interest {
  max-width: 640px;
  padding: 28px 0 0;
}

.visit-times-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-times-band article {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 48px);
  background: var(--ink);
}

.visit-times-band .small-label {
  display: block;
  margin-bottom: 8px;
}

.visit-times-band strong {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
}

.visit-times-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.support-pathway {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  max-width: 640px;
}

.support-pathway a {
  color: var(--green);
  font-weight: 700;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.filter-chip-row button {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip-row button.is-active,
.filter-chip-row button[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
}

.filter-chip-row button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.detail-card-body .group-label {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .home-next-editorial,
  .pg-story-band,
  .pg-home-teaser {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fact-strip,
  .schedule-board {
    grid-template-columns: 1fr;
  }

  .true-timeline li {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .path-selector-tabs {
    flex-direction: column;
  }

  .path-selector-tabs button {
    width: 100%;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .path-selector-tabs button,
  .filter-chip-row button,
  .home-next-feature {
    transition: none;
  }
}

.pg-home-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 8vw, 120px);
  background: #f8f7f4;
  color: #0f1720;
  font-family: "Helvetica Neue", var(--font);
}

.pg-home-teaser figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.pg-home-teaser img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.pg-home-teaser h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.pg-page .project-generations-home-section {
  min-height: auto;
}

.welcome-video-card .video-pause-mark {
  display: none;
}

.welcome-video-card.is-playing .video-play-button {
  inset: auto 10px 10px auto;
  width: 44px;
  height: 44px;
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  padding: 0;
  border-radius: 50%;
  background: transparent;
}

.welcome-video-card.is-playing .video-play-mark {
  display: none;
}

.welcome-video-card.is-playing .video-pause-mark {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.welcome-video-card.is-playing [data-video-play-label] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.welcome-video-card .talking-head-video {
  aspect-ratio: 0.72;
}

.welcome-video-card .talking-head-video::cue {
  color: var(--white);
  background: rgba(2, 23, 34, 0.78);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-video-toggle {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.hero-video-toggle img {
  grid-area: 1 / 1;
  width: 44px;
  height: 44px;
}

.hero-video-toggle .hero-video-toggle-play,
.hero-video-toggle .hero-video-toggle-pause {
  display: block;
}

.hero-video-toggle .hero-video-toggle-pause,
.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-play {
  visibility: hidden;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-pause {
  visibility: visible;
}

.hero-video-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.footer-column a,
.legal-links a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-brand .store-badge-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 760px) {
  .dropdown-menu a,
  .main-nav .nav-link,
  .dropdown-toggle {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-media:not([src]):not(:has(source)) {
    background: #031e29 url("assets/nhwc/hero-still.jpg") center / cover no-repeat;
  }
}

@media (max-width: 760px) {
  .visit-photo-marquee {
    padding-bottom: 42px;
  }

  .visit-photo-marquee-viewport {
    min-height: clamp(190px, 42vw, 260px);
  }

  .visit-photo-card.is-landscape {
    width: clamp(132px, 36vw, 180px);
  }

  .visit-photo-card.is-portrait {
    width: clamp(118px, 32vw, 160px);
  }

  .visit-photo-break-grid {
    grid-template-columns: 1fr;
  }

  .visit-photo-break-grid.detail-photo-strip button,
  .visit-photo-break-grid.detail-photo-strip button.is-feature {
    min-height: clamp(180px, 52vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-photo-marquee-track {
    animation: none;
  }

  .visit-photo-marquee-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    mask-image: none;
  }

  .visit-photo-card {
    scroll-snap-align: start;
  }
}

@media (hover: none) and (pointer: coarse) {
  .visit-photo-marquee-track {
    animation: none;
  }

  .visit-photo-marquee-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
}

@media (min-width: 1100px) and (max-height: 820px) {
  .new-visit-hero {
    min-height: calc(100svh - 82px);
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 36px;
    align-items: center;
  }

  .new-visit-hero .vertical-video-card {
    width: min(100%, 280px);
  }

  .new-visit-content h1 {
    font-size: clamp(2.4rem, 4.6vw, 4.4rem);
    margin-bottom: 12px;
  }

  .new-visit-content p {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 390px) {
  .new-visit-hero,
  .page-main {
    overflow-x: hidden;
  }
}

.faith-page {
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
}

.faith-hero {
  display: grid;
  grid-template-columns: min(72ch, 100%);
  justify-content: center;
  padding: 148px max(6vw, 28px) 56px;
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.faith-hero > * {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.faith-hero .kicker {
  text-align: left;
}

.faith-hero h1 {
  margin: 8px 0 20px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
  overflow-wrap: break-word;
}

.faith-hero p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.6;
}

.faith-articles {
  padding: 28px max(6vw, 28px) 40px;
}

.faith-articles article {
  width: min(72ch, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--dark-line);
}

.faith-articles article:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.faith-articles h2 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 700;
}

.faith-articles h3 {
  margin: 28px 0 12px;
  color: var(--deep);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
  font-weight: 700;
}

.faith-articles p {
  margin: 0 0 14px;
  max-width: 72ch;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faith-scripture {
  margin: 0;
  color: #3a5560;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 700;
}

.faith-closing {
  margin-top: 24px;
  padding: clamp(80px, 12vw, 120px) max(6vw, 28px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.faith-closing > * {
  width: min(72ch, 100%);
  margin-left: auto;
  margin-right: auto;
}

.faith-closing h2 {
  margin: 8px auto 18px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.96;
  font-weight: 700;
}

.faith-closing p:not(.kicker) {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.6;
}

.faith-closing .button {
  width: auto;
}

.about-values-actions {
  margin-top: 36px;
}

@media (prefers-reduced-motion: reduce) {
  .faith-page * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


