/*
  New Horizons Missions — standalone / Squarespace-safe stylesheet
  All page styles are scoped beneath .nh-missions.
*/


.nh-missions {
  --nh-night: #071a24;
  --nh-night-2: #0b2632;
  --nh-night-3: #103744;
  --nh-teal: #0f716c;
  --nh-teal-soft: #4ea69a;
  --nh-mint: #c9ebe2;
  --nh-sun: #ff9a32;
  --nh-sun-deep: #df6f1e;
  --nh-gold: #ffd07d;
  --nh-cream: #fbf7ef;
  --nh-paper: #ffffff;
  --nh-ink: #14242c;
  --nh-ink-soft: #53636a;
  --nh-line: rgba(20, 36, 44, .13);
  --nh-light-line: rgba(255, 255, 255, .14);
  --nh-shadow-sm: 0 12px 35px rgba(7, 26, 36, .10);
  --nh-shadow-md: 0 24px 70px rgba(7, 26, 36, .17);
  --nh-shadow-xl: 0 45px 120px rgba(2, 15, 22, .35);
  --nh-radius-sm: 14px;
  --nh-radius: 24px;
  --nh-radius-lg: 36px;
  --nh-shell: 1240px;
  position: relative;
  overflow: clip;
  color: var(--nh-ink);
  background: var(--nh-cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

.nh-missions img,
.nh-missions svg {
  display: block;
  max-width: 100%;
}

.nh-missions a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.nh-missions button,
.nh-missions input {
  font: inherit;
}

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

.nh-missions button:focus-visible,
.nh-missions a:focus-visible,
.nh-missions input:focus-visible,
.nh-missions summary:focus-visible,
.nh-missions [tabindex="0"]:focus-visible {
  outline: 3px solid var(--nh-gold);
  outline-offset: 4px;
}

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

.nh-section {
  padding: clamp(86px, 9vw, 150px) 0;
}

.nh-skip {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  translate: 0 -160%;
  opacity: 0;
  pointer-events: none;
  padding: 11px 16px;
  border-radius: 12px;
  color: #071a24;
  background: #ffd07d;
  font: 800 .86rem/1.2 system-ui, sans-serif;
  transition: translate .2s ease;
}

.nh-skip:focus-visible {
  translate: 0;
  opacity: 1;
  pointer-events: auto;
}

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

.nh-kicker,
.nh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nh-sun-deep);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nh-kicker span {
  width: 34px;
  height: 2px;
  background: var(--nh-sun);
}

.nh-eyebrow--light {
  color: var(--nh-gold);
}

.nh-missions h1,
.nh-missions h2,
.nh-missions h3,
.nh-missions p {
  margin-top: 0;
}

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

.nh-missions h1,
.nh-missions h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}

.nh-missions h1 em,
.nh-missions h2 em {
  color: var(--nh-sun);
  font-weight: inherit;
}

.nh-missions h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: .92;
}

.nh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.nh-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nh-button--sun {
  color: #17242a;
  background: linear-gradient(135deg, var(--nh-gold), var(--nh-sun));
  box-shadow: 0 14px 35px rgba(255, 154, 50, .22);
}

.nh-button--sun:hover {
  box-shadow: 0 18px 45px rgba(255, 154, 50, .34);
}

.nh-button--glass {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.nh-button--glass:hover {
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.14);
}

/* Hero */
.nh-hero {
  position: relative;
  min-height: min(940px, 100svh);
  color: #fff;
  background:
    radial-gradient(circle at 78% 46%, rgba(17, 133, 122, .38), transparent 31%),
    radial-gradient(circle at 13% 12%, rgba(255, 154, 50, .13), transparent 26%),
    linear-gradient(135deg, #06141d 0%, #082733 58%, #0b3c43 100%);
  isolation: isolate;
}

.nh-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -18% 45%;
  height: 53%;
  border-radius: 50%;
  background: rgba(49, 164, 148, .08);
  filter: blur(4px);
  transform: rotate(-8deg);
}

.nh-hero__aurora {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  opacity: .75;
}

.nh-hero__aurora::before,
.nh-hero__aurora::after {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(90px);
}

.nh-hero__aurora::before {
  top: -24%;
  right: 8%;
  background: rgba(23, 155, 140, .18);
}

.nh-hero__aurora::after {
  bottom: -35%;
  left: -8%;
  background: rgba(255, 149, 50, .11);
}

.nh-hero__grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.nh-page-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--nh-shell));
  margin-inline: auto;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nh-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.nh-wordmark__mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.nh-wordmark__mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nh-wordmark__mark svg path:last-child {
  fill: var(--nh-sun);
  stroke: var(--nh-sun);
}

.nh-wordmark > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.nh-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.nh-wordmark small {
  margin-top: 4px;
  color: var(--nh-mint);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nh-page-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nh-page-nav__links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.nh-page-nav__links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nh-page-nav__links .nh-page-nav__give {
  margin-left: 6px;
  padding-inline: 18px;
  color: #112229;
  background: var(--nh-gold);
}

.nh-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.nh-hero__brand img {
  width: clamp(230px, 24vw, 335px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

.nh-hero__brand span {
  padding: 8px 11px 7px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.06);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  min-height: 790px;
  padding: 92px 0 120px;
}

.nh-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.nh-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(4.4rem, 8.2vw, 8.8rem);
  line-height: .82;
}

.nh-hero h1 em {
  display: inline-block;
  padding-right: .07em;
}

.nh-hero__lede {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255,255,255,.75);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.nh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nh-hero__stats {
  display: flex;
  gap: 0;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.nh-hero__stats > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 0 clamp(18px, 2.1vw, 32px);
  border-left: 1px solid rgba(255,255,255,.14);
}

.nh-hero__stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.nh-hero__stats strong {
  color: var(--nh-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.nh-hero__stats span {
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.nh-hero__visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.nh-globe {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(280px, 27vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 235, 226, .27);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.12), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(34, 145, 133, .34), rgba(3, 31, 40, .72) 72%);
  box-shadow: inset 0 0 55px rgba(201,235,226,.08), 0 0 90px rgba(19, 136, 123, .13);
  transform: translate(-50%, -50%);
}

.nh-globe::before,
.nh-globe::after,
.nh-globe__line {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(201,235,226,.17);
  border-radius: 50%;
}

.nh-globe::before {
  transform: scaleX(.42);
}

.nh-globe::after {
  transform: scaleY(.42);
}

.nh-globe__line--one {
  transform: rotate(28deg) scaleX(.72);
}

.nh-globe__line--two {
  transform: rotate(-34deg) scaleY(.72);
}

.nh-globe__line--three {
  inset: 38%;
  background: var(--nh-sun);
  border: 0;
  box-shadow: 0 0 28px rgba(255,154,50,.55);
}

.nh-globe__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 68px;
  transform: translate(-50%, -50%);
}

.nh-globe__cross::before,
.nh-globe__cross::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.82);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255,255,255,.2);
}

.nh-globe__cross::before {
  left: 22px;
  width: 6px;
  height: 68px;
}

.nh-globe__cross::after {
  top: 20px;
  width: 50px;
  height: 6px;
}

.nh-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.nh-orbit--one {
  width: 92%;
  aspect-ratio: 1.15;
}

.nh-orbit--two {
  width: 76%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(34deg);
}

.nh-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 21px;
  background: #17333d;
  box-shadow: var(--nh-shadow-xl);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), z-index .2s;
}

.nh-photo:hover {
  z-index: 6;
  transform: translateY(-8px) rotate(0deg) scale(1.035);
}

.nh-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-photo figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #10232b;
  background: rgba(255, 208, 125, .94);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.nh-photo--catalan {
  top: 8%;
  right: 2%;
  width: 47%;
  aspect-ratio: 1.16;
  transform: rotate(4deg);
}

.nh-photo--layne {
  top: 14%;
  left: 0;
  width: 36%;
  aspect-ratio: .97;
  transform: rotate(-7deg);
}

.nh-photo--mccrocklin {
  right: 0;
  bottom: 5%;
  width: 39%;
  aspect-ratio: 1.08;
  transform: rotate(-5deg);
}

.nh-photo--tica {
  bottom: 2%;
  left: 7%;
  width: 42%;
  aspect-ratio: 1.15;
  transform: rotate(5deg);
}

.nh-hero__tag {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(7,26,36,.68);
  backdrop-filter: blur(15px);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(2,15,22,.3);
}

.nh-hero__tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nh-sun);
  box-shadow: 0 0 0 5px rgba(255,154,50,.14);
}

.nh-hero__tag--one {
  top: 50%;
  right: 2%;
}

.nh-hero__tag--two {
  top: 44%;
  left: 0;
}

.nh-country-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(3,15,22,.34);
  backdrop-filter: blur(10px);
}

.nh-country-ribbon > div {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 16px 0;
  animation: nh-marquee 34s linear infinite;
}

.nh-country-ribbon span {
  padding-inline: 17px;
  color: rgba(255,255,255,.47);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nh-country-ribbon i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nh-sun);
}

@keyframes nh-marquee {
  to { transform: translateX(-50%); }
}

/* Intro */
.nh-intro {
  position: relative;
  background: var(--nh-cream);
}

.nh-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26%;
  height: 6px;
  background: linear-gradient(90deg, var(--nh-sun), var(--nh-gold));
}

.nh-intro__grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: start;
}

.nh-intro__headline h2 {
  font-size: clamp(3.7rem, 6vw, 6.8rem);
}

.nh-intro__copy {
  padding-top: 38px;
}

.nh-intro__copy > p {
  color: var(--nh-ink-soft);
  font-size: 1rem;
}

.nh-intro__copy .nh-intro__lead {
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.45;
}

.nh-support-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(15,113,108,.18);
  border-left: 5px solid var(--nh-sun);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,244,225,.72));
  box-shadow: 0 14px 34px rgba(7,26,36,.06);
}

.nh-support-note > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--nh-night);
  background: var(--nh-gold);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.nh-support-note p {
  margin: 0;
  color: var(--nh-ink-soft);
  font-size: .94rem;
  line-height: 1.65;
}

.nh-support-note strong {
  color: var(--nh-ink);
}

.nh-intro__verse {
  position: relative;
  margin-top: 44px;
  padding: 29px 30px 29px 84px;
  border: 1px solid rgba(15,113,108,.16);
  border-radius: var(--nh-radius);
  background: rgba(255,255,255,.62);
}

.nh-intro__verse svg {
  position: absolute;
  top: 29px;
  left: 29px;
  width: 34px;
  height: 34px;
  fill: var(--nh-sun);
  opacity: .78;
}

.nh-intro__verse blockquote {
  margin: 0 0 7px;
  color: var(--nh-night-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.nh-intro__verse cite {
  color: var(--nh-teal);
  font-size: .69rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Local mission */
.nh-local {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(255,154,50,.11), transparent 28%),
    linear-gradient(180deg, #f5f0e7 0%, #fbf7ef 100%);
}

.nh-local::before,
.nh-local::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nh-local::before {
  top: 2%;
  right: -110px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(15,113,108,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(15,113,108,.025), 0 0 0 96px rgba(15,113,108,.018);
}

.nh-local::after {
  bottom: 0;
  left: 0;
  width: 36%;
  height: 4px;
  background: linear-gradient(90deg, var(--nh-teal), var(--nh-teal-soft), transparent);
}

.nh-local__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.nh-local-spotlight {
  position: relative;
  display: flex;
  min-height: 654px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--nh-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 68% 23%, rgba(15,147,137,.25), transparent 32%),
    linear-gradient(145deg, #071a24, #0b3039 72%, #0f5a58);
  box-shadow: var(--nh-shadow-md);
  isolation: isolate;
}

.nh-local-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .075;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.nh-local-spotlight::after {
  content: "MARYSVILLE";
  position: absolute;
  right: -13px;
  bottom: -34px;
  z-index: -1;
  color: rgba(255,255,255,.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.nh-local-spotlight__map {
  position: absolute;
  inset: -20px -50px auto 25%;
  height: 73%;
  opacity: .9;
}

.nh-local-spotlight__map svg {
  width: 100%;
  height: 100%;
}

.nh-local-spotlight__roads path {
  fill: none;
  stroke: rgba(201,235,226,.24);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 11;
}

.nh-local-spotlight__blocks path {
  fill: rgba(255,255,255,.035);
  stroke: rgba(255,255,255,.11);
  stroke-width: 1.3;
}

.nh-local-spotlight__pin circle:first-child {
  fill: rgba(255,154,50,.12);
  stroke: rgba(255,208,125,.55);
  stroke-width: 2;
  animation: nh-local-pulse 2.8s ease-out infinite;
}

.nh-local-spotlight__pin circle:nth-child(2) {
  fill: var(--nh-gold);
}

.nh-local-spotlight__pin path {
  fill: var(--nh-sun);
  filter: drop-shadow(0 14px 20px rgba(255,154,50,.34));
}

@keyframes nh-local-pulse {
  0% { opacity: .9; transform: scale(.72); }
  78%,100% { opacity: 0; transform: scale(1.65); }
}

.nh-local-spotlight__content {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: min(610px, 86%);
  padding: clamp(34px, 5vw, 64px);
}

.nh-local-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--nh-gold);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nh-local-label span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--nh-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,208,125,.1);
}

.nh-local-spotlight h3 {
  max-width: 520px;
  margin-bottom: 17px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.nh-local-spotlight__content > p:not(.nh-local-label) {
  max-width: 570px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.69);
}

.nh-local-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 29px;
}

.nh-local-chips span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.77);
  background: rgba(255,255,255,.055);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.nh-local-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--nh-gold);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nh-local-link span {
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.nh-local-link:hover span {
  transform: translateX(4px);
}

.nh-local__partners {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nh-local-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(15,113,108,.13);
  border-radius: var(--nh-radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--nh-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nh-local-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 140px;
  aspect-ratio: 1;
  border: 1px solid rgba(15,113,108,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(15,113,108,.025), 0 0 0 48px rgba(15,113,108,.018);
}

.nh-local-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15,113,108,.25);
  box-shadow: var(--nh-shadow-md);
}

.nh-local-card--sun {
  border-color: rgba(223,111,30,.17);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,241,217,.8));
}

.nh-local-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}

.nh-local-card__icon {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--nh-teal), #0a4e4e);
  box-shadow: 0 12px 28px rgba(15,113,108,.2);
}

.nh-local-card--sun .nh-local-card__icon {
  color: var(--nh-night);
  background: linear-gradient(145deg, var(--nh-gold), var(--nh-sun));
  box-shadow: 0 12px 28px rgba(255,154,50,.21);
}

.nh-local-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nh-local-card__tag {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.075);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-local-card--sun .nh-local-card__tag {
  color: var(--nh-sun-deep);
  background: rgba(255,154,50,.1);
}

.nh-local-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.nh-local-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
  color: var(--nh-ink-soft);
  font-size: .88rem;
  line-height: 1.55;
}

.nh-local-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.nh-local-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--nh-ink);
  font-size: .72rem;
  font-weight: 740;
}

.nh-local-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--nh-teal-soft);
  box-shadow: 0 0 0 4px rgba(78,166,154,.11);
}

.nh-local-card--sun li::before {
  background: var(--nh-sun);
  box-shadow: 0 0 0 4px rgba(255,154,50,.1);
}

.nh-local-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--nh-teal);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
}

.nh-local-card--sun > a {
  color: var(--nh-sun-deep);
}

.nh-local-card > a span {
  font-size: 1rem;
  transition: transform .2s ease;
}

.nh-local-card > a:hover span {
  transform: translate(3px, -3px);
}

/* Shared section headings */
.nh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.nh-section-head h2 {
  margin-bottom: 0;
  color: #fff;
}

.nh-section-head > p {
  max-width: 500px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.63);
}

.nh-section-head--ink h2 {
  color: var(--nh-ink);
}

.nh-section-head--ink > p {
  color: var(--nh-ink-soft);
}

/* Map */
.nh-map-section {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(19, 137, 124, .19), transparent 27%),
    linear-gradient(145deg, #061820, #0a2b35 62%, #0d3d42);
}

.nh-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.nh-map-filters,
.nh-profile-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nh-map-filters {
  margin-bottom: 24px;
}

.nh-map-filters button,
.nh-profile-filters button {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nh-map-filters button:hover,
.nh-map-filters button.is-active {
  color: #102229;
  border-color: var(--nh-gold);
  background: var(--nh-gold);
  transform: translateY(-1px);
}

.nh-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, .58fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--nh-radius-lg);
  background: rgba(3,18,25,.4);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
}

.nh-map-canvas {
  position: relative;
  min-width: 0;
  padding: 28px 24px 18px;
  border-right: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 46% 45%, rgba(21,119,111,.14), transparent 48%),
    rgba(4,19,26,.36);
}

.nh-map-canvas__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px 6px;
  color: rgba(255,255,255,.62);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-map-canvas__label span {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.1);
}

.nh-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 620;
}

.nh-world,
.nh-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nh-world {
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.22));
}

.nh-map-overlay {
  overflow: visible;
}

.nh-route {
  fill: none;
  stroke: rgba(255, 208, 125, .31);
  stroke-width: 1.35;
  stroke-dasharray: 5 6;
  vector-effect: non-scaling-stroke;
  transition: opacity .25s ease, stroke .25s ease, stroke-width .25s ease;
}

.nh-route.is-active {
  stroke: var(--nh-gold);
  stroke-width: 2.7;
  stroke-dasharray: 10 6;
  animation: nh-route-flow 1.35s linear infinite;
}

.nh-route.is-muted {
  opacity: .07;
}

@keyframes nh-route-flow {
  to { stroke-dashoffset: -32; }
}

.nh-origin .nh-origin__ring {
  fill: rgba(255,255,255,.11);
  stroke: rgba(255,255,255,.88);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  transform-origin: center;
  animation: nh-origin-pulse 2.8s ease-out infinite;
}

.nh-origin .nh-origin__dot {
  fill: #fff;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.7));
}

.nh-origin text {
  fill: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  paint-order: stroke;
  stroke: rgba(4,19,26,.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

@keyframes nh-origin-pulse {
  0% { opacity: .9; transform: scale(.65); }
  78%,100% { opacity: 0; transform: scale(1.8); }
}

.nh-pin {
  cursor: pointer;
  transition: opacity .25s ease;
}

.nh-pin.is-hidden {
  opacity: .09;
  pointer-events: none;
}

.nh-pin__halo {
  fill: rgba(255,154,50,.13);
  stroke: rgba(255,208,125,.42);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: nh-pin-pulse 2.5s ease-out infinite;
}

.nh-pin__core {
  fill: var(--nh-sun);
  stroke: #fff4df;
  stroke-width: 2.25;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(255,154,50,.62));
  transition: r .2s ease, fill .2s ease;
}

.nh-pin--partner .nh-pin__core {
  fill: var(--nh-mint);
  stroke: #fff;
  filter: drop-shadow(0 0 8px rgba(201,235,226,.45));
}

.nh-pin:hover .nh-pin__core,
.nh-pin:focus .nh-pin__core,
.nh-pin.is-active .nh-pin__core {
  fill: #fff;
  r: 9;
}

.nh-pin__label {
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.nh-pin:hover .nh-pin__label,
.nh-pin:focus .nh-pin__label,
.nh-pin.is-active .nh-pin__label {
  opacity: 1;
  transform: translateY(0);
}

.nh-pin__label rect {
  fill: rgba(4,19,26,.94);
  stroke: rgba(255,255,255,.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.nh-pin__label text {
  fill: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  paint-order: stroke;
}

@keyframes nh-pin-pulse {
  0% { opacity: .75; transform: scale(.5); }
  75%,100% { opacity: 0; transform: scale(1.55); }
}

.nh-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  padding: 13px 7px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.53);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nh-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nh-map-key {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.nh-map-key--origin { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.nh-map-key--mission { background: var(--nh-sun); }
.nh-map-key--partner { background: var(--nh-mint); }

.nh-map-story {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  background: #fff;
  color: var(--nh-ink);
}

.nh-map-story__media {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #193d48;
}

.nh-map-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,36,.55), transparent 56%);
}

.nh-map-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-map-story__index {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #10232b;
  background: var(--nh-gold);
  font-size: .72rem;
  font-weight: 900;
}

.nh-map-story__photo-note {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,26,36,.65);
  backdrop-filter: blur(8px);
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nh-map-story__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 27px 28px;
}

.nh-map-story__meta,
.nh-profile-card__meta,
.nh-dialog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
}

.nh-map-story__meta span,
.nh-profile-card__meta span,
.nh-dialog__meta span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.09);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nh-map-story h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.nh-map-story__location {
  margin-bottom: 16px;
  color: var(--nh-sun-deep);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nh-map-story__summary {
  margin-bottom: 19px;
  color: var(--nh-ink-soft);
  font-size: .88rem;
  line-height: 1.55;
}

.nh-map-story__pray {
  margin: auto 0 20px;
  padding: 15px 17px;
  border-left: 3px solid var(--nh-sun);
  border-radius: 0 14px 14px 0;
  background: var(--nh-cream);
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  line-height: 1.45;
}

.nh-map-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0 2px;
  border: 0;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-teal);
  background: none;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-map-story__button span {
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.nh-map-story__button:hover span {
  transform: translateX(4px);
}

.nh-map-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-top: 15px;
}

.nh-map-list button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.035);
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nh-map-list button:hover,
.nh-map-list button.is-active {
  color: #fff;
  border-color: rgba(255,208,125,.48);
  background: rgba(255,154,50,.11);
  transform: translateY(-2px);
}

.nh-map-list button.is-hidden {
  display: none;
}

.nh-map-list__index {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #10232b;
  background: var(--nh-sun);
  font-size: .56rem;
  font-weight: 900;
}

.nh-map-list button[data-type="partner"] .nh-map-list__index {
  background: var(--nh-mint);
}

.nh-map-list__text {
  min-width: 0;
}

.nh-map-list__text strong,
.nh-map-list__text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nh-map-list__text strong {
  color: inherit;
  font-size: .66rem;
  line-height: 1.25;
}

.nh-map-list__text small {
  margin-top: 2px;
  color: rgba(255,255,255,.38);
  font-size: .55rem;
}

/* Profiles */
.nh-profiles {
  background:
    radial-gradient(circle at 95% 5%, rgba(15,113,108,.06), transparent 25%),
    var(--nh-cream);
}

.nh-profile-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
  padding: 12px;
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 35px rgba(7,26,36,.05);
}

.nh-search {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 260px;
}

.nh-search svg {
  position: absolute;
  left: 11px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--nh-teal);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.nh-search input {
  width: 100%;
  min-height: 43px;
  padding: 8px 16px 8px 40px;
  border: 0;
  border-radius: 999px;
  color: var(--nh-ink);
  background: transparent;
  outline: 0;
}

.nh-search input::placeholder {
  color: #7b898e;
}

.nh-profile-filters {
  flex-wrap: nowrap;
}

.nh-profile-filters button {
  color: var(--nh-ink-soft);
  border-color: transparent;
  background: transparent;
}

.nh-profile-filters button:hover,
.nh-profile-filters button.is-active {
  color: #fff;
  border-color: var(--nh-teal);
  background: var(--nh-teal);
}

.nh-profile-count {
  margin: 0 0 22px 6px;
  color: var(--nh-ink-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.nh-profile-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20,36,44,.1);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: 0 13px 45px rgba(7,26,36,.07);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.nh-profile-card:hover {
  z-index: 2;
  border-color: rgba(15,113,108,.32);
  box-shadow: var(--nh-shadow-md);
  transform: translateY(-9px);
}

.nh-profile-card[hidden] {
  display: none;
}

.nh-profile-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--nh-night-3);
}

.nh-profile-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,36,.54), transparent 52%);
  pointer-events: none;
}

.nh-profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
}

.nh-profile-card:hover .nh-profile-card__media img {
  transform: scale(1.055);
}

.nh-profile-card__identity-logo,
.nh-map-story__identity-logo,
.nh-dialog__identity-logo,
.nh-prayer-card__identity-logo {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.94);
  box-shadow: 0 9px 24px rgba(2,15,22,.18);
  backdrop-filter: blur(8px);
}

.nh-profile-card__identity-logo {
  top: 13px;
  left: 13px;
  width: 116px;
  min-height: 43px;
  padding: 7px 9px;
  border-radius: 12px;
}

.nh-profile-card__identity-logo img,
.nh-map-story__identity-logo img,
.nh-dialog__identity-logo img,
.nh-prayer-card__identity-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none !important;
}

.nh-map-story__identity-logo {
  top: 14px;
  left: 14px;
  width: 105px;
  min-height: 40px;
  padding: 6px 8px;
  border-radius: 11px;
}

.nh-dialog__identity-logo {
  top: 24px;
  left: 24px;
  width: 140px;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 13px;
}

.nh-prayer-card__identity-logo {
  top: 12px;
  left: 12px;
  width: 92px;
  min-height: 35px;
  padding: 5px 7px;
  border-radius: 10px;
}

.nh-missions img.is-image-fallback {
  object-fit: contain !important;
  padding: 22px;
  background: #fff !important;
}

.nh-profile-card__field {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.nh-profile-card__field strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.nh-profile-card__field span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #10232b;
  background: var(--nh-gold);
  font-size: .51rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nh-profile-card__field .nh-profile-card__field--photo-note {
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(7,26,36,.72);
}

.nh-profile-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 23px 21px;
}

.nh-profile-card__meta {
  margin-bottom: 11px;
}

.nh-profile-card h3 {
  margin: 0 0 7px;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.nh-profile-card__org {
  min-height: 37px;
  margin-bottom: 14px;
  color: var(--nh-sun-deep);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.nh-profile-card__summary {
  margin-bottom: 18px;
  color: var(--nh-ink-soft);
  font-size: .83rem;
  line-height: 1.55;
}

.nh-profile-card__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 18px;
}

.nh-profile-card__focus span {
  padding: 5px 8px;
  border: 1px solid rgba(15,113,108,.14);
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.045);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .04em;
}

.nh-profile-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-teal);
  background: none;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-profile-card__button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nh-teal);
  font-size: 1rem;
  transition: transform .2s ease, background .2s ease;
}

.nh-profile-card__button:hover span {
  background: var(--nh-sun-deep);
  transform: translateX(3px);
}

.nh-empty {
  padding: 70px 24px;
  border: 1px dashed rgba(20,36,44,.2);
  border-radius: var(--nh-radius);
  text-align: center;
}

.nh-empty span {
  display: block;
  margin-bottom: 15px;
  color: var(--nh-teal);
  font-size: 3rem;
}

.nh-empty h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.nh-empty p {
  color: var(--nh-ink-soft);
}

/* Prayer Passport */
.nh-prayer {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 75% 45%, rgba(31, 145, 133, .24), transparent 34%),
    linear-gradient(135deg, #071a24, #0b3039 70%, #0f4b4b);
  overflow: hidden;
}

.nh-prayer::before {
  content: "PRAY";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(32vw, 430px);
  line-height: .8;
  pointer-events: none;
}

.nh-prayer__glow {
  position: absolute;
  top: -25%;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,154,50,.08);
  filter: blur(90px);
}

.nh-prayer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(440px, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.nh-prayer__intro h2 {
  margin-bottom: 28px;
}

.nh-prayer__intro > p:not(.nh-eyebrow):not(.nh-copy-status) {
  max-width: 510px;
  color: rgba(255,255,255,.66);
  font-size: 1.02rem;
}

.nh-prayer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.nh-copy-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--nh-mint);
  font-size: .72rem;
  font-weight: 750;
}

.nh-prayer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--nh-radius-lg);
  color: var(--nh-ink);
  background: #fff;
  box-shadow: 0 45px 110px rgba(1,11,16,.42);
}

.nh-prayer-card::before,
.nh-prayer-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 16px;
  background-image: radial-gradient(circle at center, transparent 7px, #fff 7.5px);
  background-size: 16px 34px;
}

.nh-prayer-card::before { left: -8px; }
.nh-prayer-card::after { right: -8px; }

.nh-prayer-card__top {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 225px;
  border-bottom: 1px dashed rgba(20,36,44,.22);
}

.nh-prayer-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--nh-night-3);
}

.nh-prayer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-prayer-card__photo span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7,26,36,.68);
  backdrop-filter: blur(7px);
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.nh-prayer-card__identity {
  padding: 28px 28px 23px;
}

.nh-prayer-card__week {
  margin-bottom: 12px;
  color: var(--nh-sun-deep);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nh-prayer-card__identity h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.nh-prayer-card__identity p {
  margin: 0;
  color: var(--nh-teal);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nh-prayer-card__body {
  padding: 27px 32px 31px;
}

.nh-prayer-card__body > p {
  margin-bottom: 16px;
  color: var(--nh-ink-soft);
  font-size: .82rem;
}

.nh-prayer-card__body ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: prayer;
}

.nh-prayer-card__body li {
  position: relative;
  min-height: 32px;
  padding-left: 42px;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .93rem;
  line-height: 1.45;
  counter-increment: prayer;
}

.nh-prayer-card__body li::before {
  content: counter(prayer, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--nh-teal);
  background: rgba(15,113,108,.1);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: .53rem;
  font-weight: 900;
}

/* Partners */
.nh-partners {
  background: #fff;
}

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

.nh-partner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius-lg);
  background: var(--nh-cream);
  box-shadow: var(--nh-shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}

.nh-partner-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--nh-shadow-md);
}

.nh-partner-card__media {
  position: relative;
  overflow: hidden;
  background: var(--nh-night-3);
}

.nh-partner-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,36,.05), rgba(7,26,36,.5));
}

.nh-partner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.nh-partner-card:hover .nh-partner-card__media img {
  transform: scale(1.05);
}

.nh-partner-card__body {
  display: flex;
  flex-direction: column;
  padding: 31px 30px;
}

.nh-partner-card__label {
  margin-bottom: 13px;
  color: var(--nh-sun-deep);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nh-partner-card h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.nh-partner-card__location {
  margin-bottom: 15px;
  color: var(--nh-teal);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nh-partner-card__summary {
  color: var(--nh-ink-soft);
  font-size: .82rem;
}

.nh-partner-card__pray {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  line-height: 1.45;
}

.nh-partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--nh-teal);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nh-partner-card__link span {
  font-size: 1rem;
}

/* Response */
.nh-response {
  background:
    linear-gradient(rgba(15,113,108,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,113,108,.045) 1px, transparent 1px),
    var(--nh-cream);
  background-size: 42px 42px;
}

.nh-response__head {
  max-width: 820px;
  margin-bottom: 54px;
}

.nh-response__head h2 {
  margin-bottom: 0;
}

.nh-response__lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--nh-ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.nh-response-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 35px rgba(7,26,36,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.nh-response-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--nh-shadow-md);
}

.nh-response-card--accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--nh-teal), #0b4849);
}

.nh-response-card__number {
  position: absolute;
  top: 20px;
  right: 25px;
  color: rgba(20,36,44,.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.nh-response-card--accent .nh-response-card__number {
  color: rgba(255,255,255,.12);
}

.nh-response-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 18px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.09);
}

.nh-response-card--accent .nh-response-card__icon {
  color: #15272e;
  background: var(--nh-gold);
}

.nh-response-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nh-response-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -.035em;
}

.nh-response-card p {
  color: var(--nh-ink-soft);
  font-size: .85rem;
}

.nh-response-card--accent p {
  color: rgba(255,255,255,.7);
}

.nh-response-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-teal);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nh-response-card--accent a {
  color: var(--nh-gold);
  border-color: rgba(255,255,255,.16);
}

.nh-response-card a span {
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.nh-response-card a:hover span {
  transform: translateX(4px);
}

/* Notes */
.nh-notes {
  padding: 40px 0 65px;
  background: var(--nh-cream);
}

.nh-notes details {
  border-top: 1px solid var(--nh-line);
  border-bottom: 1px solid var(--nh-line);
}

.nh-notes summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 2px;
  color: var(--nh-ink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-notes summary::-webkit-details-marker { display: none; }

.nh-notes summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .25s ease;
}

.nh-notes details[open] summary svg {
  transform: rotate(180deg);
}

.nh-notes__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 55px;
  padding: 0 0 34px;
}

.nh-notes__body h3 {
  margin: 0 0 6px;
  color: var(--nh-teal);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nh-notes__body p {
  margin: 0;
  color: var(--nh-ink-soft);
  font-size: .78rem;
}

/* Footer */
.nh-footer {
  padding: 70px 0 25px;
  color: #fff;
  background: var(--nh-night);
}

.nh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .75fr;
  gap: 60px;
  align-items: start;
}

.nh-wordmark--footer {
  margin-bottom: 20px;
}

.nh-footer__grid > div:first-child > p {
  max-width: 430px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

.nh-footer__links,
.nh-footer__address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nh-footer__links a,
.nh-footer__address a,
.nh-footer__address span {
  color: rgba(255,255,255,.58);
  font-size: .75rem;
  text-decoration: none;
}

.nh-footer__links a:hover,
.nh-footer__address a:hover {
  color: var(--nh-gold);
}

.nh-footer__address strong {
  margin-bottom: 4px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.nh-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.37);
  font-size: .59rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Dialog */
.nh-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: min(860px, calc(100dvh - 28px));
  padding: 0;
  overflow: hidden auto;
  border: 0;
  border-radius: 30px;
  color: var(--nh-ink);
  background: #fff;
  box-shadow: 0 50px 160px rgba(0,0,0,.5);
}

.nh-dialog::backdrop {
  background: rgba(3,15,22,.78);
  backdrop-filter: blur(9px);
}

.nh-dialog[open] {
  animation: nh-dialog-in .3s cubic-bezier(.2,.8,.2,1);
}

@keyframes nh-dialog-in {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.nh-dialog__close {
  position: sticky;
  z-index: 10;
  top: 15px;
  float: right;
  display: grid;
  width: 43px;
  height: 43px;
  margin: 15px 15px -58px 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,26,36,.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.nh-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.nh-dialog__hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: #fff;
  background: var(--nh-night-3);
}

.nh-dialog__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-dialog__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,22,30,.9) 0%, rgba(5,22,30,.55) 48%, rgba(5,22,30,.1) 100%), linear-gradient(to top, rgba(5,22,30,.5), transparent 50%);
}

.nh-dialog__hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 610px;
  min-height: 410px;
  flex-direction: column;
  justify-content: end;
  padding: 65px 55px 48px;
}

.nh-dialog__hero-copy .nh-dialog__meta span {
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(7px);
}

.nh-dialog__hero h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: .9;
}

.nh-dialog__hero p {
  margin: 0;
  color: var(--nh-gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nh-dialog__photo-note {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 13px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.8) !important;
  background: rgba(7,26,36,.58);
  font-size: .56rem !important;
  letter-spacing: .05em !important;
  text-transform: none !important;
}

.nh-dialog__body {
  padding: 47px 55px 55px;
}

.nh-dialog__lead {
  max-width: 800px;
  margin-bottom: 35px;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

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

.nh-dialog__panel {
  padding: 26px 27px;
  border: 1px solid var(--nh-line);
  border-radius: 20px;
  background: var(--nh-cream);
}

.nh-dialog__panel--prayer {
  border-color: rgba(15,113,108,.2);
  background: rgba(15,113,108,.065);
}

.nh-dialog__panel h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--nh-teal);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nh-dialog__panel h3::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--nh-sun);
}

.nh-dialog__panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nh-dialog__panel li {
  position: relative;
  padding-left: 18px;
  color: var(--nh-ink-soft);
  font-size: .82rem;
  line-height: 1.5;
}

.nh-dialog__panel li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nh-sun);
}

.nh-dialog__map-note {
  margin: 25px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--nh-teal);
  color: var(--nh-ink-soft);
  background: rgba(15,113,108,.045);
  font-size: .74rem;
}

.nh-dialog__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--nh-line);
}

.nh-dialog__sources strong {
  width: 100%;
  margin-bottom: 3px;
  color: var(--nh-ink);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nh-dialog__sources a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(15,113,108,.15);
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.04);
  font-size: .59rem;
  font-weight: 850;
  text-decoration: none;
}

.nh-dialog__sources a:hover {
  color: #fff;
  background: var(--nh-teal);
}

/* Reveal motion */
.nh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
}

.nh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nh-profile-card.nh-reveal:nth-child(3n+2),
.nh-response-card.nh-reveal:nth-child(2) {
  transition-delay: .08s;
}

.nh-profile-card.nh-reveal:nth-child(3n+3),
.nh-response-card.nh-reveal:nth-child(3) {
  transition-delay: .16s;
}

/* Responsive */
@media (max-width: 1120px) {
  .nh-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
  }

  .nh-hero__stats > div {
    padding-inline: 16px;
  }

  .nh-local__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  }

  .nh-local-spotlight__content {
    width: 94%;
  }

  .nh-map-layout {
    grid-template-columns: minmax(0, 1.45fr) 340px;
  }

  .nh-map-list {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .nh-partner-card {
    grid-template-columns: 1fr;
  }

  .nh-partner-card__media {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .nh-shell,
  .nh-page-nav {
    width: min(calc(100% - 34px), var(--nh-shell));
  }

  .nh-page-nav__links a:not(.nh-page-nav__give) {
    display: none;
  }

  .nh-hero {
    min-height: auto;
  }

  .nh-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .nh-hero__copy {
    max-width: 760px;
  }

  .nh-hero__visual {
    min-height: 560px;
    margin-top: 10px;
  }

  .nh-intro__grid,
  .nh-section-head,
  .nh-prayer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nh-intro__copy {
    padding-top: 0;
  }

  .nh-section-head {
    align-items: start;
  }

  .nh-section-head > p {
    max-width: 680px;
  }

  .nh-local__grid {
    grid-template-columns: 1fr;
  }

  .nh-local__partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .nh-local-card {
    min-height: 390px;
  }

  .nh-map-layout {
    grid-template-columns: 1fr;
  }

  .nh-map-canvas {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nh-map-story {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 0;
  }

  .nh-map-story__media {
    height: auto;
    min-height: 340px;
  }

  .nh-map-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .nh-profile-tools {
    align-items: stretch;
    flex-direction: column;
    border-radius: var(--nh-radius);
  }

  .nh-profile-filters {
    flex-wrap: wrap;
  }

  .nh-prayer__grid {
    gap: 55px;
  }

  .nh-response__grid {
    grid-template-columns: 1fr;
  }

  .nh-response-card {
    min-height: 290px;
  }

  .nh-footer__grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .nh-footer__address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .nh-section {
    padding: 82px 0;
  }

  .nh-shell,
  .nh-page-nav {
    width: min(calc(100% - 24px), var(--nh-shell));
  }

  .nh-page-nav {
    padding: 15px 0;
  }

  .nh-wordmark__mark {
    width: 40px;
    height: 40px;
  }

  .nh-wordmark strong {
    font-size: .92rem;
  }

  .nh-page-nav__links .nh-page-nav__give {
    padding: 8px 14px;
    font-size: .67rem;
  }

  .nh-hero__grid {
    padding: 62px 0 100px;
  }

  .nh-hero__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
  }

  .nh-hero__brand img {
    width: min(82vw, 290px);
  }

  .nh-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .nh-hero__lede {
    font-size: .98rem;
  }

  .nh-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nh-button {
    width: 100%;
  }

  .nh-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .nh-hero__stats > div {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    padding: 0 10px;
  }

  .nh-hero__stats strong {
    font-size: 2rem;
  }

  .nh-hero__stats span {
    font-size: .52rem;
  }

  .nh-hero__visual {
    min-height: 430px;
  }

  .nh-globe {
    width: 260px;
  }

  .nh-photo {
    border-width: 3px;
    border-radius: 14px;
  }

  .nh-photo figcaption {
    display: none;
  }

  .nh-photo--catalan { width: 49%; }
  .nh-photo--layne { width: 40%; }
  .nh-photo--mccrocklin { width: 43%; }
  .nh-photo--tica { width: 47%; }

  .nh-hero__tag {
    display: none;
  }

  .nh-intro__grid {
    gap: 24px;
  }

  .nh-missions h2,
  .nh-intro__headline h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .nh-intro__verse {
    padding: 25px 22px;
  }

  .nh-intro__verse svg {
    position: static;
    margin-bottom: 10px;
  }

  .nh-local__partners {
    grid-template-columns: 1fr;
  }

  .nh-local-spotlight {
    min-height: 620px;
    border-radius: var(--nh-radius);
  }

  .nh-local-spotlight__map {
    inset: -15px -105px auto -40px;
    height: 62%;
  }

  .nh-local-spotlight__content {
    width: 100%;
    padding: 30px 25px 34px;
  }

  .nh-local-spotlight h3 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .nh-local-card {
    min-height: 0;
    padding: 26px;
  }

  .nh-section-head {
    gap: 20px;
    margin-bottom: 38px;
  }

  .nh-map-filters,
  .nh-profile-filters {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nh-map-filters::-webkit-scrollbar,
  .nh-profile-filters::-webkit-scrollbar { display: none; }

  .nh-map-filters button,
  .nh-profile-filters button {
    flex: 0 0 auto;
  }

  .nh-map-layout {
    border-radius: 23px;
  }

  .nh-map-canvas {
    padding: 20px 10px 15px;
  }

  .nh-map-canvas__label {
    margin-left: 9px;
    font-size: .54rem;
  }

  .nh-map-stage {
    min-height: 310px;
  }

  .nh-world,
  .nh-map-overlay {
    object-fit: cover;
  }

  .nh-map-legend {
    gap: 10px;
    font-size: .51rem;
  }

  .nh-map-story {
    display: flex;
  }

  .nh-map-story__media {
    height: 250px;
    min-height: 0;
  }

  .nh-map-story__body {
    padding: 24px 22px 25px;
  }

  .nh-map-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .nh-map-list::-webkit-scrollbar { display: none; }

  .nh-map-list button {
    flex: 0 0 180px;
  }

  .nh-profile-tools {
    padding: 10px;
  }

  .nh-search {
    min-width: 0;
  }

  .nh-profile-grid {
    grid-template-columns: 1fr;
  }

  .nh-profile-card h3 {
    font-size: 1.8rem;
  }

  .nh-prayer__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nh-prayer-card__top {
    grid-template-columns: 125px 1fr;
    min-height: 185px;
  }

  .nh-prayer-card__identity {
    padding: 24px 18px;
  }

  .nh-prayer-card__identity h3 {
    font-size: 1.7rem;
  }

  .nh-prayer-card__body {
    padding: 24px 23px 28px;
  }

  .nh-partner-grid,
  .nh-notes__body {
    grid-template-columns: 1fr;
  }

  .nh-partner-card {
    grid-template-columns: 1fr;
  }

  .nh-partner-card__media {
    min-height: 210px;
  }

  .nh-response-card {
    min-height: 310px;
  }

  .nh-footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .nh-footer__address {
    grid-column: auto;
  }

  .nh-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nh-dialog {
    width: calc(100% - 14px);
    max-height: calc(100dvh - 14px);
    border-radius: 22px;
  }

  .nh-dialog__hero,
  .nh-dialog__hero-copy {
    min-height: 380px;
  }

  .nh-dialog__hero::after {
    background: linear-gradient(to top, rgba(5,22,30,.92), rgba(5,22,30,.2) 80%);
  }

  .nh-dialog__hero-copy {
    padding: 70px 24px 30px;
  }

  .nh-dialog__hero h2 {
    font-size: 2.9rem;
  }

  .nh-dialog__body {
    padding: 32px 23px 40px;
  }

  .nh-dialog__columns {
    grid-template-columns: 1fr;
  }
}

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

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

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

@media print {
  .nh-country-ribbon,
  .nh-map-filters,
  .nh-profile-tools,
  .nh-hero__actions,
  .nh-prayer__actions,
  .nh-dialog {
    display: none !important;
  }

  .nh-missions {
    color: #000;
    background: #fff;
  }

  .nh-hero,
  .nh-map-section,
  .nh-prayer {
    color: #000;
    background: #fff;
  }
}

@media (max-width: 620px) {
  .nh-support-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 19px;
  }

  .nh-support-note > span {
    justify-self: start;
  }

}


/* ================================================================
   One-screen profiles + linked missionary prayer cards
   Added August 2026
   ================================================================ */

/* Profile card dual actions */
.nh-profile-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--nh-line);
}

.nh-profile-card__actions .nh-profile-card__button {
  min-width: 0;
  padding: 0;
  border: 0;
}

.nh-profile-card__prayer,
.nh-map-story__prayer,
.nh-prayer-card__open,
.nh-profile-sheet__prayer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.08);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nh-profile-card__prayer {
  min-height: 38px;
  padding: 9px 12px;
  white-space: nowrap;
}

.nh-profile-card__prayer:hover,
.nh-map-story__prayer:hover,
.nh-prayer-card__open:hover,
.nh-profile-sheet__prayer-link:hover {
  color: #fff;
  background: var(--nh-sun-deep);
  transform: translateY(-1px);
}

.nh-map-story__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--nh-line);
}

.nh-map-story__actions .nh-map-story__button {
  padding: 0;
  border: 0;
}

.nh-map-story__prayer {
  padding: 10px 13px;
  white-space: nowrap;
}

/* Prayer Passport directory */
.nh-prayer__grid {
  align-items: start;
}

.nh-prayer-directory {
  grid-column: 1 / -1;
  margin-top: clamp(20px, 4vw, 46px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}

.nh-prayer-directory__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.nh-prayer-directory__head .nh-eyebrow {
  margin-bottom: 9px;
}

.nh-prayer-directory__head h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.nh-prayer-directory__head > p {
  margin: 0;
  color: rgba(255,255,255,.61);
  font-size: .82rem;
  line-height: 1.55;
}

.nh-prayer-card-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.nh-prayer-card-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.045);
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nh-prayer-card-link:hover,
.nh-prayer-card-link.is-active {
  color: #fff;
  border-color: rgba(255,208,125,.55);
  background: rgba(255,154,50,.13);
  transform: translateY(-2px);
}

.nh-prayer-card-link__photo {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--nh-night-3);
}

.nh-prayer-card-link__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-prayer-card-link__copy {
  min-width: 0;
}

.nh-prayer-card-link__copy strong,
.nh-prayer-card-link__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nh-prayer-card-link__copy strong {
  font-size: .73rem;
  line-height: 1.25;
}

.nh-prayer-card-link__copy small {
  margin-top: 3px;
  color: rgba(255,255,255,.49);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nh-prayer-card-link__arrow {
  color: var(--nh-gold);
  font-size: 1rem;
}

.nh-prayer-card__open {
  margin-top: 21px;
  padding: 12px 16px;
}

/* One-screen missionary profile dialog */
.nh-dialog {
  width: min(1180px, calc(100vw - 24px));
  height: min(760px, calc(100dvh - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
}

.nh-dialog__close,
.nh-prayer-dialog__close {
  position: absolute;
  z-index: 40;
  top: 14px;
  right: 14px;
  display: grid;
  float: none;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,26,36,.76);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.nh-dialog__close svg,
.nh-prayer-dialog__close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

#nh-dialog-content {
  height: 100%;
}

.nh-profile-sheet {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.45fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #fff;
}

.nh-profile-sheet__visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: var(--nh-night-3);
}

.nh-profile-sheet__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-profile-sheet__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,28,.96) 0%, rgba(4,20,28,.58) 42%, rgba(4,20,28,.08) 76%);
}

.nh-profile-sheet__identity {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 30px 30px;
}

.nh-profile-sheet__identity h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .92;
}

.nh-profile-sheet__location,
.nh-profile-sheet__org {
  margin: 0;
}

.nh-profile-sheet__location {
  color: var(--nh-gold);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nh-profile-sheet__org {
  margin-top: 5px;
  color: rgba(255,255,255,.67);
  font-size: .68rem;
  line-height: 1.35;
}

.nh-profile-sheet .nh-dialog__photo-note {
  margin-top: 9px;
}

.nh-profile-sheet .nh-dialog__identity-logo {
  top: 18px;
  right: auto;
  left: 18px;
}

.nh-profile-sheet__content {
  min-width: 0;
  min-height: 0;
  padding: 30px;
  background: linear-gradient(145deg, #fff, #fbf7ef);
}

.nh-profile-sheet__tabs {
  display: none;
}

.nh-profile-sheet__panels {
  display: grid;
  grid-template-columns: 1.03fr 1fr 1.08fr;
  gap: 14px;
  height: 100%;
  min-height: 0;
}

.nh-profile-sheet__panel {
  min-width: 0;
  min-height: 0;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
}

.nh-profile-sheet__panel--overview {
  display: flex;
  flex-direction: column;
}

.nh-profile-sheet__panel--prayer {
  border-color: rgba(15,113,108,.2);
  background: rgba(15,113,108,.065);
}

.nh-profile-sheet__kicker {
  margin: 0 0 14px;
  color: var(--nh-teal);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-profile-sheet__summary {
  margin: 0;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.92rem, 1.16vw, 1.08rem);
  line-height: 1.48;
}

.nh-profile-sheet__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.nh-profile-sheet__focus span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.08);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nh-profile-sheet__map {
  margin: auto 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-ink-soft);
  font-size: .64rem;
  line-height: 1.45;
}

.nh-profile-sheet__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.nh-profile-sheet__sources > strong {
  width: 100%;
  color: var(--nh-ink);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nh-profile-sheet__sources a {
  padding: 4px 7px;
  border: 1px solid rgba(15,113,108,.15);
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.04);
  font-size: .47rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.nh-profile-sheet__panel ul,
.nh-profile-sheet__panel ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nh-profile-sheet__panel li {
  position: relative;
  padding-left: 19px;
  color: var(--nh-ink-soft);
  font-size: clamp(.68rem, .82vw, .78rem);
  line-height: 1.48;
}

.nh-profile-sheet__panel li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nh-sun);
}

.nh-profile-sheet__panel--prayer ol {
  counter-reset: one-screen-prayer;
}

.nh-profile-sheet__panel--prayer li {
  counter-increment: one-screen-prayer;
}

.nh-profile-sheet__panel--prayer li::before {
  content: counter(one-screen-prayer, decimal-leading-zero);
  top: -.08em;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--nh-teal);
  background: rgba(15,113,108,.11);
  font-size: .42rem;
  font-weight: 900;
}

.nh-profile-sheet__prayer-link {
  width: 100%;
  margin-top: 16px;
  padding: 11px 12px;
}

/* Full one-screen prayer card */
.nh-prayer-dialog {
  width: min(1080px, calc(100vw - 24px));
  height: min(700px, calc(100dvh - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: var(--nh-ink);
  background: #fff;
  box-shadow: 0 50px 160px rgba(0,0,0,.5);
}

.nh-prayer-dialog::backdrop {
  background: rgba(3,15,22,.82);
  backdrop-filter: blur(10px);
}

.nh-prayer-dialog[open] {
  animation: nh-dialog-in .3s cubic-bezier(.2,.8,.2,1);
}

#nh-prayer-dialog-content {
  width: 100%;
  height: 100%;
}

.nh-prayer-sheet {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.25fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #fff;
}

.nh-prayer-sheet__visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: var(--nh-night-3);
}

.nh-prayer-sheet__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-prayer-sheet__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,28,.97) 0%, rgba(4,20,28,.62) 44%, rgba(4,20,28,.08) 78%);
}

.nh-prayer-sheet__identity-logo {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: grid;
  width: 70px;
  height: 48px;
  padding: 7px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.nh-prayer-sheet__identity-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nh-prayer-sheet__visual-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 31px 31px;
}

.nh-prayer-sheet__visual-copy p {
  margin: 0 0 10px;
  color: var(--nh-gold);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-prayer-sheet__visual-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.7vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}

.nh-prayer-sheet__visual-copy > span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nh-prayer-sheet__visual-copy small {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(7,26,36,.54);
  font-size: .47rem;
  font-weight: 800;
}

.nh-prayer-sheet__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 0;
  padding: 34px 36px 28px;
  background: linear-gradient(145deg, #fff, #fbf7ef);
}

.nh-prayer-sheet__eyebrow,
.nh-prayer-sheet__organization {
  margin: 0;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-prayer-sheet__eyebrow {
  color: var(--nh-sun-deep);
}

.nh-prayer-sheet__organization {
  margin-top: 6px;
  color: var(--nh-teal);
}

.nh-prayer-sheet__lead {
  margin: 15px 0 0;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.65vw, 1.34rem);
  line-height: 1.38;
}

.nh-prayer-sheet__requests {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.nh-prayer-sheet__requests li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(15,113,108,.14);
  border-radius: 15px;
  background: rgba(15,113,108,.05);
}

.nh-prayer-sheet__requests li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--nh-teal);
  background: rgba(15,113,108,.11);
  font-size: .53rem;
  font-weight: 900;
}

.nh-prayer-sheet__requests p {
  margin: 0;
  color: var(--nh-ink-soft);
  font-size: clamp(.7rem, .9vw, .8rem);
  line-height: 1.45;
}

.nh-prayer-sheet__footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  padding-top: 17px;
  border-top: 1px solid var(--nh-line);
}

.nh-prayer-sheet__nav,
.nh-prayer-sheet__tools {
  display: flex;
  gap: 7px;
  align-items: center;
}

.nh-prayer-sheet__tools {
  justify-content: end;
}

.nh-prayer-sheet__footer button {
  padding: 9px 11px;
  border: 1px solid rgba(15,113,108,.18);
  border-radius: 999px;
  color: var(--nh-teal);
  background: rgba(15,113,108,.05);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-prayer-sheet__footer button:hover {
  color: #fff;
  background: var(--nh-teal);
}

.nh-prayer-sheet__status {
  position: absolute;
  right: 0;
  bottom: -20px;
  margin: 0;
  color: var(--nh-teal);
  font-size: .55rem;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .nh-prayer-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nh-dialog,
  .nh-prayer-dialog {
    width: calc(100vw - 14px);
    height: calc(100dvh - 14px);
    max-height: calc(100dvh - 14px);
    border-radius: 22px;
  }

  .nh-profile-sheet {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, 37%) minmax(0, 63%);
  }

  .nh-profile-sheet__identity {
    padding: 30px 22px 20px;
  }

  .nh-profile-sheet__identity h2 {
    max-width: calc(100% - 42px);
    margin: 6px 0 7px;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .nh-profile-sheet__content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    padding: 14px 16px 16px;
  }

  .nh-profile-sheet__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 10px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15,113,108,.07);
  }

  .nh-profile-sheet__tabs button {
    min-width: 0;
    padding: 8px 6px;
    border: 0;
    border-radius: 999px;
    color: var(--nh-ink-soft);
    background: transparent;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nh-profile-sheet__tabs button.is-active {
    color: #fff;
    background: var(--nh-teal);
  }

  .nh-profile-sheet__panels {
    display: block;
    min-height: 0;
  }

  .nh-profile-sheet__panel {
    display: none;
    height: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .nh-profile-sheet__panel.is-active {
    display: flex;
    flex-direction: column;
  }

  .nh-profile-sheet__panel ul,
  .nh-profile-sheet__panel ol {
    gap: 9px;
  }

  .nh-profile-sheet__panel li {
    font-size: clamp(.67rem, 1.8vw, .77rem);
    line-height: 1.42;
  }

  .nh-profile-sheet__summary {
    font-size: clamp(.86rem, 2.2vw, 1.03rem);
  }

  .nh-profile-sheet__map {
    margin-top: auto;
  }

  .nh-profile-sheet__prayer-link {
    margin-top: auto;
  }

  .nh-prayer-sheet {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 36%) minmax(0, 64%);
  }

  .nh-prayer-sheet__visual-copy {
    padding: 28px 22px 20px;
  }

  .nh-prayer-sheet__visual-copy h2 {
    max-width: calc(100% - 42px);
    font-size: clamp(2.05rem, 8vw, 3.25rem);
  }

  .nh-prayer-sheet__content {
    padding: 16px 17px 14px;
  }

  .nh-prayer-sheet__lead {
    margin-top: 8px;
    font-size: clamp(.88rem, 2.8vw, 1.08rem);
  }

  .nh-prayer-sheet__requests {
    gap: 7px;
    margin: 10px 0;
  }

  .nh-prayer-sheet__requests li {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 7px;
    padding: 9px;
    border-radius: 12px;
  }

  .nh-prayer-sheet__requests li > span {
    width: 24px;
    height: 24px;
    font-size: .45rem;
  }

  .nh-prayer-sheet__requests p {
    font-size: clamp(.61rem, 1.7vw, .72rem);
    line-height: 1.38;
  }

  .nh-prayer-sheet__footer {
    padding-top: 10px;
  }
}

@media (max-width: 680px) {
  .nh-profile-card__actions,
  .nh-map-story__actions {
    grid-template-columns: 1fr;
  }

  .nh-profile-card__prayer,
  .nh-map-story__prayer {
    width: 100%;
  }

  .nh-prayer-directory {
    padding: 22px 15px;
    border-radius: 22px;
  }

  .nh-prayer-directory__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nh-prayer-card-list {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .nh-prayer-card-link {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 7px;
  }

  .nh-prayer-card-link__photo {
    width: 40px;
    height: 40px;
  }

  .nh-prayer-card-link__arrow {
    display: none;
  }

  .nh-profile-sheet {
    grid-template-rows: minmax(175px, 32%) minmax(0, 68%);
  }

  .nh-profile-sheet__identity {
    padding: 25px 17px 14px;
  }

  .nh-profile-sheet__identity h2 {
    font-size: clamp(1.8rem, 8.2vw, 2.55rem);
  }

  .nh-profile-sheet__location,
  .nh-profile-sheet__org {
    font-size: .56rem;
  }

  .nh-profile-sheet__content {
    padding: 10px 11px 11px;
  }

  .nh-profile-sheet__panel {
    padding: 13px;
  }

  .nh-profile-sheet__sources a {
    font-size: .43rem;
  }

  .nh-prayer-sheet {
    grid-template-rows: minmax(170px, 31%) minmax(0, 69%);
  }

  .nh-prayer-sheet__visual-copy {
    padding: 24px 18px 14px;
  }

  .nh-prayer-sheet__visual-copy p,
  .nh-prayer-sheet__visual-copy > span {
    font-size: .5rem;
  }

  .nh-prayer-sheet__visual-copy h2 {
    font-size: clamp(1.9rem, 9.2vw, 2.85rem);
  }

  .nh-prayer-sheet__content {
    padding: 12px 11px 10px;
  }

  .nh-prayer-sheet__organization,
  .nh-prayer-sheet__eyebrow {
    font-size: .48rem;
  }

  .nh-prayer-sheet__lead {
    font-size: .8rem;
    line-height: 1.3;
  }

  .nh-prayer-sheet__requests {
    gap: 5px;
    margin: 7px 0;
  }

  .nh-prayer-sheet__requests li {
    padding: 7px;
  }

  .nh-prayer-sheet__requests p {
    font-size: clamp(.56rem, 2.35vw, .66rem);
  }

  .nh-prayer-sheet__footer {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .nh-prayer-sheet__nav,
  .nh-prayer-sheet__tools {
    justify-content: space-between;
  }

  .nh-prayer-sheet__footer button {
    flex: 1;
    padding: 7px 6px;
    font-size: .48rem;
  }
}

@media (max-height: 650px) and (min-width: 901px) {
  .nh-dialog,
  .nh-prayer-dialog {
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
  }

  .nh-profile-sheet__content {
    padding: 20px;
  }

  .nh-profile-sheet__panel {
    padding: 15px;
  }

  .nh-profile-sheet__panel li {
    font-size: .64rem;
    line-height: 1.36;
  }

  .nh-profile-sheet__summary {
    font-size: .86rem;
  }

  .nh-prayer-sheet__content {
    padding: 20px 24px 16px;
  }

  .nh-prayer-sheet__requests li {
    padding: 10px;
  }
}

@media print {
  body.nh-print-prayer {
    margin: 0 !important;
    background: #fff !important;
  }

  body.nh-print-prayer .nh-missions > *:not(#nh-prayer-dialog) {
    display: none !important;
  }

  body.nh-print-prayer #nh-prayer-dialog {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.nh-print-prayer .nh-prayer-dialog__close,
  body.nh-print-prayer .nh-prayer-sheet__footer {
    display: none !important;
  }

  body.nh-print-prayer .nh-prayer-sheet {
    height: 100vh !important;
    grid-template-columns: 42% 58% !important;
  }

  body.nh-print-prayer .nh-prayer-sheet__content {
    padding: .42in !important;
  }

  body.nh-print-prayer .nh-prayer-sheet__requests {
    break-inside: avoid;
  }
}

/* Extra-compact, no-scroll profile treatment for very short phones. */
@media (max-width: 900px) and (max-height: 600px) {
  .nh-profile-sheet {
    grid-template-rows: minmax(145px, 29%) minmax(0, 71%);
  }

  .nh-profile-sheet__identity {
    padding: 20px 14px 10px;
  }

  .nh-profile-sheet__identity h2 {
    margin: 4px 0 5px;
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .nh-profile-sheet__location {
    font-size: .48rem;
  }

  .nh-profile-sheet__org,
  .nh-profile-sheet .nh-dialog__photo-note {
    display: none;
  }

  .nh-profile-sheet__content {
    padding: 7px 8px 8px;
  }

  .nh-profile-sheet__tabs {
    margin-bottom: 6px;
  }

  .nh-profile-sheet__tabs button {
    padding: 6px 3px;
    font-size: .47rem;
  }

  .nh-profile-sheet__panel {
    padding: 10px;
  }

  .nh-profile-sheet__kicker {
    margin-bottom: 7px;
    font-size: .5rem;
  }

  .nh-profile-sheet__summary {
    font-size: .76rem;
    line-height: 1.34;
  }

  .nh-profile-sheet__focus,
  .nh-profile-sheet__map,
  .nh-profile-sheet__sources {
    display: none;
  }

  .nh-profile-sheet__panel ul,
  .nh-profile-sheet__panel ol {
    gap: 6px;
  }

  .nh-profile-sheet__panel li {
    font-size: .58rem;
    line-height: 1.32;
  }

  .nh-profile-sheet__prayer-link {
    margin-top: auto;
    padding: 8px 9px;
    font-size: .48rem;
  }
}


/* Embedded-page section navigation */
.nh-prayer-directory {
  scroll-margin-top: 28px;
}

.nh-prayer-directory.is-scroll-target {
  animation: nhPrayerTargetPulse 2.2s ease both;
}

@keyframes nhPrayerTargetPulse {
  0%, 100% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
  }
  20% {
    box-shadow: 0 0 0 4px rgba(248, 175, 49, .84), 0 28px 76px rgba(0, 0, 0, .26);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nh-prayer-directory.is-scroll-target {
    animation: none;
    outline: 4px solid rgba(248, 175, 49, .84);
    outline-offset: 5px;
  }
}

/* =========================================================
   FINAL UX PATCH — reliable prayer navigation + full photos
   ========================================================= */

/* The prayer-focus control is now a real button, styled exactly like the
   response-card links. This removes fragile default anchor behavior. */
.nh-response-card__action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 17px 0 0;
  border: 0;
  border-top: 1px solid var(--nh-line);
  color: var(--nh-teal);
  background: transparent;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-response-card__action span {
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.nh-response-card__action:hover span,
.nh-response-card__action:focus-visible span {
  transform: translateX(4px);
}

/* Use the source-photo ratio (900 × 650) and show the entire image.
   The previous mixed portrait/square frames cropped heads and shoulders. */
.nh-photo {
  background: #f4f0e8;
}

.nh-photo img {
  object-fit: contain;
  object-position: center;
  background: #f4f0e8;
}

.nh-photo--catalan,
.nh-photo--layne,
.nh-photo--mccrocklin,
.nh-photo--tica {
  aspect-ratio: 18 / 13;
}

.nh-photo--catalan {
  top: 7%;
  right: 0;
  width: 48%;
}

.nh-photo--layne {
  top: 20%;
  left: -1%;
  width: 41%;
}

.nh-photo--mccrocklin {
  right: -1%;
  bottom: 7%;
  width: 42%;
}

.nh-photo--tica {
  bottom: 1%;
  left: 7%;
  width: 45%;
}

/* Missionary cards use the same source ratio and no longer zoom on hover. */
.nh-profile-card__media {
  aspect-ratio: 18 / 13;
  background: #e8efed;
}

.nh-profile-card__media img,
.nh-profile-card:hover .nh-profile-card__media img {
  object-fit: contain;
  object-position: center;
  background: #e8efed;
  transform: none;
}

/* Map stories and all prayer/profile presentations preserve the full photo. */
.nh-map-story__media {
  height: auto;
  aspect-ratio: 18 / 13;
  background: #102f3a;
}

.nh-map-story__media img,
.nh-prayer-card__photo img,
.nh-prayer-card-link__photo img,
.nh-profile-sheet__visual > img,
.nh-prayer-sheet__visual > img,
.nh-prayer-chooser__photo img,
.nh-dialog__hero img {
  object-fit: contain;
  object-position: center;
  background: #102f3a;
}

.nh-profile-sheet__visual > img,
.nh-prayer-sheet__visual > img {
  object-position: center top;
}

.nh-prayer-card__photo,
.nh-prayer-card-link__photo,
.nh-prayer-chooser__photo {
  background: #102f3a;
}

/* Logos and representative artwork keep their natural proportions. */
.nh-profile-card__identity-logo img,
.nh-map-story__identity-logo img,
.nh-dialog__identity-logo img,
.nh-prayer-card__identity-logo img,
.nh-prayer-sheet__identity-logo img {
  object-fit: contain !important;
  background: transparent !important;
}

/* Keep the destination clearly visible after the parent-page scroll bridge. */
.nh-prayer-directory {
  scroll-margin-top: 110px;
}

.nh-prayer-directory.is-scroll-target {
  animation: nhPrayerTargetPulse 2.4s ease both;
}

@media (max-width: 900px) {
  .nh-photo--catalan { width: 49%; }
  .nh-photo--layne { top: 19%; width: 43%; }
  .nh-photo--mccrocklin { width: 43%; }
  .nh-photo--tica { width: 46%; }

  .nh-profile-sheet__visual > img,
  .nh-prayer-sheet__visual > img {
    object-position: center;
  }
}

@media (max-width: 640px) {
  .nh-response-card__action {
    min-height: 48px;
  }
}


/* =========================================================
   PRAYER CHOOSER + UNCROPPED PHOTO PATCH
   ========================================================= */

/* Full photos sit over a softly blurred fill so no faces or family members
   are removed just to fit a decorative frame. */
.nh-photo::before,
.nh-map-story__media::before,
.nh-profile-card__media::before,
.nh-prayer-card__photo::before,
.nh-profile-sheet__visual::before,
.nh-prayer-sheet__visual::before,
.nh-response-prayer-preview__photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -10%;
  background-image: var(--nh-photo-src);
  background-position: center;
  background-size: cover;
  filter: blur(18px) brightness(.58) saturate(.95);
  opacity: .92;
  transform: scale(1.06);
  pointer-events: none;
}

.nh-photo img,
.nh-map-story__media > img,
.nh-profile-card__media > img,
.nh-prayer-card__photo > img,
.nh-profile-sheet__visual > img,
.nh-prayer-sheet__visual > img,
.nh-response-prayer-preview__photo > img {
  z-index: 1;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

.nh-photo img,
.nh-map-story__media > img,
.nh-profile-card__media > img,
.nh-prayer-card__photo > img {
  position: relative;
}

.nh-map-story__media::after,
.nh-profile-card__media::after,
.nh-profile-sheet__visual::after,
.nh-prayer-sheet__visual::after,
.nh-response-prayer-preview__photo::after {
  z-index: 2;
}

.nh-photo figcaption,
.nh-map-story__index,
.nh-map-story__photo-note,
.nh-profile-card__field,
.nh-profile-sheet__identity,
.nh-prayer-sheet__visual-copy,
.nh-response-prayer-preview__identity {
  z-index: 3;
}

.nh-response-card__action[aria-expanded="true"] span {
  transform: rotate(90deg);
}

.nh-response-prayer-picker {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(15,113,108,.16);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f5fbf8);
  box-shadow: 0 24px 70px rgba(7,26,36,.12);
}

.nh-response-prayer-picker[hidden] { display: none !important; }

.nh-response-prayer-picker.is-opening {
  animation: nhResponsePrayerIn .32s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes nhResponsePrayerIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.nh-response-prayer-picker__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.nh-response-prayer-picker__head h3 {
  margin: 5px 0 7px;
  color: var(--nh-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.nh-response-prayer-picker__head p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--nh-ink-soft);
  line-height: 1.65;
}

.nh-response-prayer-picker__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--nh-line);
  border-radius: 50%;
  color: var(--nh-ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
}

.nh-response-prayer-picker__layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.45fr);
  gap: 22px;
}

.nh-response-prayer-list {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 485px;
  padding-right: 6px;
  overflow: auto;
  scrollbar-width: thin;
}

.nh-response-prayer-list button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--nh-line);
  border-radius: 14px;
  color: var(--nh-ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nh-response-prayer-list button:hover,
.nh-response-prayer-list button.is-active {
  border-color: rgba(15,113,108,.42);
  background: rgba(15,113,108,.07);
  transform: translateX(3px);
}

.nh-response-prayer-list__photo {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--nh-night-3);
}

.nh-response-prayer-list__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nh-response-prayer-list__copy { min-width: 0; }

.nh-response-prayer-list__copy strong,
.nh-response-prayer-list__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nh-response-prayer-list__copy strong { font-size: .78rem; }
.nh-response-prayer-list__copy small {
  margin-top: 3px;
  color: var(--nh-ink-soft);
  font-size: .61rem;
}
.nh-response-prayer-list__arrow { color: var(--nh-sun-deep); font-size: 1rem; }

.nh-response-prayer-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  color: #fff;
  background: var(--nh-night);
  box-shadow: 0 20px 55px rgba(7,26,36,.18);
}

.nh-response-prayer-preview__grid {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(0, 1.35fr);
  min-height: 445px;
}

.nh-response-prayer-preview__photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--nh-night-3);
}

.nh-response-prayer-preview__photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nh-response-prayer-preview__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,28,.92), rgba(4,20,28,.05) 68%);
}

.nh-response-prayer-preview__identity {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.nh-response-prayer-preview__identity span {
  display: block;
  margin-bottom: 6px;
  color: var(--nh-gold);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nh-response-prayer-preview__identity h4 {
  margin: 0 0 5px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.nh-response-prayer-preview__identity p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
}

.nh-response-prayer-preview__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 30px;
}

.nh-response-prayer-preview__body > p:first-child {
  margin: 0 0 15px;
  color: var(--nh-gold);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nh-response-prayer-preview__body ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: responsePrayer;
}

.nh-response-prayer-preview__body li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.84);
  font-size: .75rem;
  line-height: 1.48;
  counter-increment: responsePrayer;
}

.nh-response-prayer-preview__body li::before {
  content: counter(responsePrayer, decimal-leading-zero);
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--nh-night);
  background: var(--nh-gold);
  font-size: .55rem;
  font-weight: 900;
}

.nh-response-prayer-preview__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
}

.nh-response-prayer-preview__tools button {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font: inherit;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nh-response-prayer-preview__tools button:first-child {
  color: var(--nh-night);
  border-color: var(--nh-gold);
  background: var(--nh-gold);
}

.nh-response-prayer-preview__status {
  min-height: 1.2em;
  margin: 9px 0 0;
  color: var(--nh-gold);
  font-size: .62rem;
}

@media (max-width: 900px) {
  .nh-response-prayer-picker__layout,
  .nh-response-prayer-preview__grid { grid-template-columns: 1fr; }
  .nh-response-prayer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }
  .nh-response-prayer-preview__photo { min-height: 340px; }
}

@media (max-width: 560px) {
  .nh-response-prayer-picker {
    margin-inline: -8px;
    padding: 22px 16px;
    border-radius: 23px;
  }
  .nh-response-prayer-picker__head { gap: 12px; }
  .nh-response-prayer-list { grid-template-columns: 1fr; }
  .nh-response-prayer-preview__photo { min-height: 285px; }
  .nh-response-prayer-preview__body { padding: 23px 20px; }
}

/* Preserve the full family image even in the compact prayer chooser list. */
.nh-response-prayer-list__photo img {
  object-fit: contain !important;
  object-position: center !important;
  background: #102f3a;
}

/* =========================================================
   VIEWPORT-SAFE POPUPS + COMPACT FLOW PATCH
   2026-08-16
   Keeps every popup inside the visitor's visible browser area
   even when the page is hosted inside a tall Squarespace iframe.
   ========================================================= */

:root {
  --nh-host-visible-top: 0px;
  --nh-host-visible-height: 760px;
  --nh-host-visible-width: 1200px;
  --nh-profile-modal-top: 8px;
  --nh-profile-modal-height: 640px;
  --nh-prayer-modal-top: 8px;
  --nh-prayer-modal-height: 590px;
}

/* Tighter page rhythm: remove decorative dead space without crowding content. */
.nh-section {
  padding: clamp(54px, 6vw, 92px) 0;
}

.nh-hero {
  min-height: 0;
}

.nh-hero__grid {
  min-height: clamp(620px, 76svh, 760px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(58px, 7vw, 86px);
}

.nh-hero__brand { margin-bottom: 18px; }
.nh-hero h1 { margin-bottom: 18px; }
.nh-hero__lede { margin-bottom: 22px; line-height: 1.5; }
.nh-hero__stats { margin-top: 32px; padding-top: 19px; }
.nh-hero__visual { min-height: 500px; }

.nh-section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.nh-response__head { margin-bottom: 32px; }
.nh-response__lede { margin-top: 15px; line-height: 1.55; }
.nh-response__grid { gap: 14px; }
.nh-response-card { min-height: 275px; padding: 24px; }
.nh-response-prayer-picker { margin-top: 16px; padding: clamp(18px, 3vw, 30px); }
.nh-prayer-directory { margin-top: 28px; }

/* Native <dialog> is positioned against the iframe by default. Override that
   and pin it to the actual visible portion of the parent browser window. */
.nh-dialog,
.nh-prayer-dialog {
  position: absolute !important;
  inset: auto !important;
  left: 50% !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  overflow: hidden !important;
}

.nh-dialog {
  top: var(--nh-profile-modal-top) !important;
  width: min(1160px, calc(100% - 18px));
  height: var(--nh-profile-modal-height) !important;
  max-height: var(--nh-profile-modal-height) !important;
  border-radius: 22px;
}

.nh-prayer-dialog {
  top: var(--nh-prayer-modal-top) !important;
  width: min(1060px, calc(100% - 18px));
  height: var(--nh-prayer-modal-height) !important;
  max-height: var(--nh-prayer-modal-height) !important;
  border-radius: 22px;
}

.nh-dialog__close,
.nh-prayer-dialog__close {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
}

/* Desktop profile: all information is visible simultaneously. */
.nh-profile-sheet {
  grid-template-columns: minmax(285px, .72fr) minmax(0, 1.58fr);
}

.nh-profile-sheet__identity {
  padding: 24px 22px 20px;
}

.nh-profile-sheet__identity h2 {
  margin: 7px 0 7px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: .94;
}

.nh-profile-sheet__content {
  padding: 18px;
}

.nh-profile-sheet__panels {
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 9px;
}

.nh-profile-sheet__panel {
  padding: 14px 13px;
  border-radius: 15px;
}

.nh-profile-sheet__kicker { margin-bottom: 9px; }
.nh-profile-sheet__summary { font-size: clamp(.78rem, 1vw, .94rem); line-height: 1.37; }
.nh-profile-sheet__focus { gap: 4px; margin-top: 10px; }
.nh-profile-sheet__focus span { padding: 4px 6px; font-size: .44rem; }
.nh-profile-sheet__map { padding-top: 9px; font-size: .56rem; line-height: 1.35; }
.nh-profile-sheet__sources { gap: 4px; margin-top: 7px; }
.nh-profile-sheet__sources > strong { font-size: .44rem; }
.nh-profile-sheet__sources a { padding: 3px 6px; font-size: .41rem; }
.nh-profile-sheet__panel ul,
.nh-profile-sheet__panel ol { gap: 7px; }
.nh-profile-sheet__panel li { padding-left: 16px; font-size: clamp(.59rem, .74vw, .7rem); line-height: 1.34; }
.nh-profile-sheet__panel li::before { width: 6px; height: 6px; }
.nh-profile-sheet__panel--prayer li::before { width: 15px; height: 15px; font-size: .37rem; }
.nh-profile-sheet__prayer-link { margin-top: 10px; padding: 8px 9px; font-size: .5rem; }

/* Prayer popup: condensed but still comfortably readable. */
.nh-prayer-sheet {
  grid-template-columns: minmax(285px, .76fr) minmax(0, 1.34fr);
}

.nh-prayer-sheet__visual-copy { padding: 24px 23px 20px; }
.nh-prayer-sheet__visual-copy h2 { margin-bottom: 7px; font-size: clamp(2rem, 3.8vw, 3.6rem); }
.nh-prayer-sheet__content { padding: 20px 22px 16px; }
.nh-prayer-sheet__lead { margin-top: 9px; font-size: clamp(.9rem, 1.25vw, 1.08rem); line-height: 1.3; }
.nh-prayer-sheet__requests { gap: 7px; margin: 12px 0; }
.nh-prayer-sheet__requests li { grid-template-columns: 28px minmax(0,1fr); gap: 7px; padding: 9px; border-radius: 12px; }
.nh-prayer-sheet__requests li > span { width: 26px; height: 26px; font-size: .44rem; }
.nh-prayer-sheet__requests p { font-size: clamp(.62rem, .76vw, .7rem); line-height: 1.34; }
.nh-prayer-sheet__footer { padding-top: 10px; gap: 8px; }
.nh-prayer-sheet__footer button { padding: 7px 9px; font-size: .48rem; }

/* Height-aware compaction comes from the real parent viewport, not iframe vh. */
html[data-nh-host-height="short"] .nh-profile-sheet__identity h2 { font-size: 1.75rem; }
html[data-nh-host-height="short"] .nh-profile-sheet__content { padding: 12px; }
html[data-nh-host-height="short"] .nh-profile-sheet__panels { gap: 6px; }
html[data-nh-host-height="short"] .nh-profile-sheet__panel { padding: 10px; }
html[data-nh-host-height="short"] .nh-profile-sheet__panel ul,
html[data-nh-host-height="short"] .nh-profile-sheet__panel ol { gap: 5px; }
html[data-nh-host-height="short"] .nh-profile-sheet__panel li { font-size: .56rem; line-height: 1.25; }
html[data-nh-host-height="short"] .nh-profile-sheet__summary { font-size: .72rem; line-height: 1.28; }
html[data-nh-host-height="short"] .nh-profile-sheet__map { font-size: .5rem; }
html[data-nh-host-height="short"] .nh-prayer-sheet__content { padding: 13px 16px 11px; }
html[data-nh-host-height="short"] .nh-prayer-sheet__requests { gap: 5px; margin: 7px 0; }
html[data-nh-host-height="short"] .nh-prayer-sheet__requests li { padding: 6px; }
html[data-nh-host-height="short"] .nh-prayer-sheet__requests p { font-size: .58rem; line-height: 1.25; }
html[data-nh-host-height="short"] .nh-prayer-sheet__lead { font-size: .78rem; }

/* On narrower screens the profile uses tabs, so every individual tab remains
   fully visible with no internal scrolling. */
@media (max-width: 900px) {
  .nh-dialog,
  .nh-prayer-dialog {
    width: calc(100% - 10px);
    border-radius: 16px;
  }

  .nh-profile-sheet {
    grid-template-rows: minmax(130px, 27%) minmax(0, 73%);
  }

  .nh-profile-sheet__identity { padding: 18px 14px 11px; }
  .nh-profile-sheet__identity h2 { max-width: calc(100% - 36px); font-size: clamp(1.55rem, 6vw, 2.4rem); }
  .nh-profile-sheet__content { padding: 8px 9px 9px; }
  .nh-profile-sheet__tabs { margin-bottom: 6px; padding: 3px; }
  .nh-profile-sheet__tabs button { padding: 6px 4px; font-size: .48rem; }
  .nh-profile-sheet__panel { padding: 10px; border-radius: 12px; }
  .nh-profile-sheet__summary { font-size: clamp(.72rem, 2vw, .9rem); }
  .nh-profile-sheet__panel li { font-size: clamp(.58rem, 1.65vw, .7rem); line-height: 1.3; }
  .nh-profile-sheet__focus { margin-top: 7px; }
  .nh-profile-sheet__map { padding-top: 6px; }
  .nh-profile-sheet__prayer-link { margin-top: auto; }

  .nh-prayer-sheet {
    grid-template-rows: minmax(125px, 25%) minmax(0, 75%);
  }

  .nh-prayer-sheet__visual-copy { padding: 18px 15px 11px; }
  .nh-prayer-sheet__visual-copy h2 { font-size: clamp(1.55rem, 7vw, 2.55rem); }
  .nh-prayer-sheet__content { padding: 9px 10px 8px; }
  .nh-prayer-sheet__lead { margin-top: 5px; font-size: clamp(.7rem, 2.1vw, .88rem); }
  .nh-prayer-sheet__requests { gap: 4px; margin: 6px 0; }
  .nh-prayer-sheet__requests li { grid-template-columns: 22px minmax(0,1fr); gap: 5px; padding: 6px; }
  .nh-prayer-sheet__requests li > span { width: 21px; height: 21px; font-size: .38rem; }
  .nh-prayer-sheet__requests p { font-size: clamp(.52rem, 1.5vw, .63rem); line-height: 1.25; }
  .nh-prayer-sheet__footer { padding-top: 6px; }
  .nh-prayer-sheet__footer button { padding: 6px 7px; font-size: .43rem; }
}

@media (max-width: 560px) {
  .nh-section { padding: 42px 0; }
  .nh-shell { width: min(calc(100% - 26px), var(--nh-shell)); }
  .nh-hero__grid { min-height: 0; padding: 38px 0 52px; }
  .nh-hero__stats { margin-top: 22px; padding-top: 14px; }
  .nh-response-card { min-height: 0; padding: 20px; }

  .nh-profile-sheet { grid-template-rows: minmax(112px, 23%) minmax(0,77%); }
  .nh-profile-sheet__identity { padding: 15px 11px 8px; }
  .nh-profile-sheet__identity h2 { margin: 4px 0; font-size: clamp(1.35rem, 7.2vw, 2rem); }
  .nh-profile-sheet__org,
  .nh-profile-sheet__location { font-size: .48rem; }
  .nh-profile-sheet__content { padding: 6px 7px 7px; }
  .nh-profile-sheet__tabs { margin-bottom: 4px; }
  .nh-profile-sheet__tabs button { padding: 5px 3px; font-size: .43rem; }
  .nh-profile-sheet__panel { padding: 8px; }
  .nh-profile-sheet__kicker { margin-bottom: 6px; font-size: .48rem; }
  .nh-profile-sheet__summary { font-size: .68rem; line-height: 1.25; }
  .nh-profile-sheet__panel ul,
  .nh-profile-sheet__panel ol { gap: 5px; }
  .nh-profile-sheet__panel li { font-size: .55rem; line-height: 1.22; }
  .nh-profile-sheet__map { font-size: .47rem; line-height: 1.22; }
  .nh-profile-sheet__sources a { font-size: .37rem; }
  .nh-profile-sheet__prayer-link { padding: 6px 7px; font-size: .43rem; }

  .nh-prayer-sheet { grid-template-rows: minmax(105px, 22%) minmax(0,78%); }
  .nh-prayer-sheet__visual-copy { padding: 15px 11px 8px; }
  .nh-prayer-sheet__visual-copy h2 { margin-bottom: 4px; font-size: clamp(1.35rem, 7vw, 2rem); }
  .nh-prayer-sheet__visual-copy p,
  .nh-prayer-sheet__visual-copy > span,
  .nh-prayer-sheet__visual-copy small { font-size: .4rem; }
  .nh-prayer-sheet__content { padding: 7px; }
  .nh-prayer-sheet__eyebrow,
  .nh-prayer-sheet__organization { font-size: .42rem; }
  .nh-prayer-sheet__lead { font-size: .66rem; line-height: 1.2; }
  .nh-prayer-sheet__requests { grid-template-columns: 1fr 1fr; gap: 3px; margin: 4px 0; }
  .nh-prayer-sheet__requests li { grid-template-columns: 18px minmax(0,1fr); gap: 4px; padding: 4px; }
  .nh-prayer-sheet__requests li > span { width: 17px; height: 17px; font-size: .31rem; }
  .nh-prayer-sheet__requests p { font-size: .48rem; line-height: 1.18; }
  .nh-prayer-sheet__footer { grid-template-columns: 1fr; gap: 3px; padding-top: 4px; }
  .nh-prayer-sheet__nav,
  .nh-prayer-sheet__tools { gap: 3px; }
  .nh-prayer-sheet__footer button { padding: 5px 4px; font-size: .38rem; }
}

/* =========================================================
   FINAL FIT-ON-SCREEN POPUP + ZERO-DEAD-SPACE PATCH
   2026-08-16
   Every popup is a self-contained viewport card. No popup body
   requires scrolling; compact modes are applied automatically.
   ========================================================= */

/* Global rhythm tightening */
.nh-section { padding: clamp(44px, 5vw, 74px) 0; }
.nh-section-head { margin-bottom: clamp(22px, 3vw, 36px); }
.nh-support-note { margin-top: 24px; }
.nh-map__shell, .nh-profiles__shell, .nh-prayer__grid { gap: clamp(18px, 2.5vw, 30px); }
.nh-profile-grid { gap: clamp(14px, 1.8vw, 22px); }
.nh-partner-grid { gap: 16px; }
.nh-local-grid { gap: 14px; }
.nh-response__grid { gap: 12px; }
.nh-response-card { min-height: 0; }
.nh-prayer-directory { margin-top: 20px; }
.nh-response-prayer-picker { margin-top: 12px; }

/* Dialog shell always clips; content adapts instead of scrolling. */
.nh-dialog,
.nh-prayer-dialog,
#nh-dialog-content,
#nh-prayer-dialog-content,
.nh-profile-sheet,
.nh-prayer-sheet,
.nh-profile-sheet__content,
.nh-profile-sheet__panels,
.nh-profile-sheet__panel,
.nh-prayer-sheet__content {
  overflow: hidden !important;
  min-height: 0 !important;
}

.nh-dialog {
  width: min(1100px, calc(100% - 14px));
  border-radius: 18px;
}

.nh-prayer-dialog {
  width: min(1020px, calc(100% - 14px));
  border-radius: 18px;
}

/* Use space for information, not decorative padding. */
.nh-profile-sheet { grid-template-columns: minmax(245px, .66fr) minmax(0, 1.7fr); }
.nh-profile-sheet__content { padding: 12px; }
.nh-profile-sheet__panels { gap: 7px; }
.nh-profile-sheet__panel { padding: 11px 10px; border-radius: 13px; }
.nh-profile-sheet__identity { padding: 20px 18px 16px; }
.nh-profile-sheet__identity h2 { margin: 5px 0; font-size: clamp(1.7rem, 2.7vw, 2.8rem); }
.nh-profile-sheet__kicker { margin-bottom: 7px; font-size: .5rem; }
.nh-profile-sheet__summary { font-size: clamp(.72rem, .86vw, .86rem); line-height: 1.3; }
.nh-profile-sheet__focus { margin-top: 7px; gap: 3px; }
.nh-profile-sheet__focus span { padding: 3px 5px; font-size: .39rem; }
.nh-profile-sheet__map { padding-top: 6px; font-size: .49rem; line-height: 1.25; }
.nh-profile-sheet__sources { margin-top: 5px; gap: 3px; }
.nh-profile-sheet__sources > strong { font-size: .39rem; }
.nh-profile-sheet__sources a { padding: 2px 5px; font-size: .36rem; }
.nh-profile-sheet__panel ul,
.nh-profile-sheet__panel ol { gap: 5px; }
.nh-profile-sheet__panel li { padding-left: 14px; font-size: clamp(.54rem, .64vw, .63rem); line-height: 1.24; }
.nh-profile-sheet__panel li::before { width: 5px; height: 5px; }
.nh-profile-sheet__panel--prayer li::before { width: 14px; height: 14px; font-size: .34rem; }
.nh-profile-sheet__prayer-link { margin-top: 7px; padding: 7px 8px; font-size: .45rem; }

.nh-prayer-sheet { grid-template-columns: minmax(245px, .7fr) minmax(0, 1.45fr); }
.nh-prayer-sheet__visual-copy { padding: 20px 19px 16px; }
.nh-prayer-sheet__visual-copy h2 { margin-bottom: 5px; font-size: clamp(1.75rem, 3.2vw, 3rem); }
.nh-prayer-sheet__content { padding: 14px 16px 11px; }
.nh-prayer-sheet__eyebrow,
.nh-prayer-sheet__organization { font-size: .47rem; }
.nh-prayer-sheet__organization { margin-top: 3px; }
.nh-prayer-sheet__lead { margin-top: 6px; font-size: clamp(.78rem, 1.02vw, .94rem); line-height: 1.24; }
.nh-prayer-sheet__requests { gap: 5px; margin: 8px 0; }
.nh-prayer-sheet__requests li { grid-template-columns: 24px minmax(0,1fr); gap: 6px; padding: 7px; border-radius: 10px; }
.nh-prayer-sheet__requests li > span { width: 22px; height: 22px; font-size: .38rem; }
.nh-prayer-sheet__requests p { font-size: clamp(.56rem, .64vw, .64rem); line-height: 1.23; }
.nh-prayer-sheet__footer { padding-top: 7px; gap: 6px; }
.nh-prayer-sheet__footer button { padding: 6px 8px; font-size: .42rem; }

/* Automatic fit levels set by missions.js when content is unusually long. */
.nh-dialog.nh-fit-tight .nh-profile-sheet__content { padding: 9px; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__panel { padding: 8px; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__summary { font-size: .68rem; line-height: 1.2; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__panel ul,
.nh-dialog.nh-fit-tight .nh-profile-sheet__panel ol { gap: 4px; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__panel li { font-size: .51rem; line-height: 1.18; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__map { font-size: .44rem; }
.nh-dialog.nh-fit-tight .nh-profile-sheet__focus span,
.nh-dialog.nh-fit-tight .nh-profile-sheet__sources a { font-size: .33rem; }

.nh-dialog.nh-fit-ultra .nh-profile-sheet__visual { display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__identity { padding: 11px 13px 10px; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__identity h2 { font-size: 1.45rem; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__content { padding: 6px; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__panel { padding: 6px; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__kicker { margin-bottom: 4px; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__summary { font-size: .61rem; line-height: 1.15; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__panel li { font-size: .47rem; line-height: 1.14; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__map { font-size: .4rem; }
.nh-dialog.nh-fit-ultra .nh-profile-sheet__sources { display: none; }

.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__content { padding: 10px 12px 8px; }
.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__lead { font-size: .72rem; }
.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__requests { gap: 3px; margin: 5px 0; }
.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__requests li { padding: 5px; }
.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__requests p { font-size: .53rem; line-height: 1.16; }
.nh-prayer-dialog.nh-fit-tight .nh-prayer-sheet__footer { padding-top: 4px; }

.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__visual-copy { padding: 12px; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__visual-copy h2 { font-size: 1.5rem; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__content { padding: 7px 8px 6px; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__lead { font-size: .64rem; line-height: 1.14; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__requests li { grid-template-columns: 18px minmax(0,1fr); gap: 3px; padding: 4px; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__requests li > span { width: 17px; height: 17px; font-size: .3rem; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__requests p { font-size: .48rem; line-height: 1.1; }
.nh-prayer-dialog.nh-fit-ultra .nh-prayer-sheet__footer button { padding: 4px 5px; font-size: .36rem; }

/* Short laptop screens: tabs are more readable than three squeezed columns. */
@media (min-width: 701px) and (max-height: 690px) {
  .nh-profile-sheet { grid-template-columns: minmax(220px, .62fr) minmax(0, 1.75fr); }
  .nh-profile-sheet__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 5px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(15,113,108,.07);
  }
  .nh-profile-sheet__tabs button {
    padding: 5px 4px;
    border: 0;
    border-radius: 999px;
    color: var(--nh-ink-soft);
    background: transparent;
    font-size: .43rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .nh-profile-sheet__tabs button.is-active { color: #fff; background: var(--nh-teal); }
  .nh-profile-sheet__panels { display: block; }
  .nh-profile-sheet__panel { display: none; height: 100%; }
  .nh-profile-sheet__panel.is-active { display: flex; flex-direction: column; }
}

@media (max-width: 900px) {
  .nh-profile-sheet { grid-template-rows: minmax(98px, 20%) minmax(0, 80%); }
  .nh-profile-sheet__identity { padding: 13px 11px 8px; }
  .nh-profile-sheet__identity h2 { font-size: clamp(1.3rem, 5.6vw, 2rem); }
  .nh-profile-sheet__content { padding: 5px 6px 6px; }
  .nh-profile-sheet__tabs { margin-bottom: 3px; }
  .nh-profile-sheet__tabs button { padding: 4px 3px; font-size: .4rem; }
  .nh-profile-sheet__panel { padding: 6px; }
  .nh-profile-sheet__summary { font-size: .62rem; line-height: 1.17; }
  .nh-profile-sheet__panel li { font-size: .49rem; line-height: 1.14; }
  .nh-profile-sheet__map { font-size: .41rem; }

  .nh-prayer-sheet { grid-template-rows: minmax(96px, 20%) minmax(0, 80%); }
  .nh-prayer-sheet__visual-copy { padding: 12px 10px 7px; }
  .nh-prayer-sheet__visual-copy h2 { font-size: clamp(1.25rem, 6vw, 2rem); }
  .nh-prayer-sheet__content { padding: 6px 7px; }
  .nh-prayer-sheet__lead { font-size: .61rem; line-height: 1.14; }
  .nh-prayer-sheet__requests { grid-template-columns: 1fr 1fr; gap: 3px; margin: 4px 0; }
  .nh-prayer-sheet__requests li { grid-template-columns: 18px minmax(0,1fr); gap: 3px; padding: 4px; }
  .nh-prayer-sheet__requests li > span { width: 17px; height: 17px; }
  .nh-prayer-sheet__requests p { font-size: .47rem; line-height: 1.1; }
  .nh-prayer-sheet__footer { grid-template-columns: 1fr 1fr; gap: 3px; padding-top: 3px; }
  .nh-prayer-sheet__footer button { padding: 4px 4px; font-size: .35rem; }
}

@media (max-width: 560px) {
  .nh-section { padding: 34px 0; }
  .nh-section-head { margin-bottom: 18px; }
  .nh-dialog__close,
  .nh-prayer-dialog__close { top: 6px; right: 6px; width: 30px; height: 30px; }
  .nh-profile-sheet { grid-template-rows: minmax(82px, 18%) minmax(0, 82%); }
  .nh-profile-sheet__identity { padding: 10px 8px 6px; }
  .nh-profile-sheet__identity h2 { font-size: clamp(1.05rem, 6.4vw, 1.55rem); }
  .nh-profile-sheet__org,
  .nh-profile-sheet__location { font-size: .4rem; }
  .nh-profile-sheet__content { padding: 4px; }
  .nh-profile-sheet__tabs button { font-size: .34rem; }
  .nh-profile-sheet__panel { padding: 5px; }
  .nh-profile-sheet__kicker { margin-bottom: 3px; font-size: .38rem; }
  .nh-profile-sheet__summary { font-size: .55rem; line-height: 1.12; }
  .nh-profile-sheet__panel li { font-size: .43rem; line-height: 1.1; }
  .nh-profile-sheet__map { font-size: .36rem; }
  .nh-profile-sheet__sources { display: none; }
  .nh-profile-sheet__prayer-link { padding: 4px 5px; font-size: .35rem; }

  .nh-prayer-sheet { grid-template-rows: minmax(80px, 17%) minmax(0, 83%); }
  .nh-prayer-sheet__visual-copy { padding: 10px 8px 5px; }
  .nh-prayer-sheet__visual-copy h2 { font-size: clamp(1.05rem, 6vw, 1.55rem); }
  .nh-prayer-sheet__visual-copy p,
  .nh-prayer-sheet__visual-copy > span,
  .nh-prayer-sheet__visual-copy small { font-size: .32rem; }
  .nh-prayer-sheet__content { padding: 4px 5px; }
  .nh-prayer-sheet__eyebrow,
  .nh-prayer-sheet__organization { font-size: .34rem; }
  .nh-prayer-sheet__lead { font-size: .53rem; }
  .nh-prayer-sheet__requests p { font-size: .4rem; }
  .nh-prayer-sheet__footer button { font-size: .3rem; }
}

/* =========================================================
   MOBILE MAP ALIGNMENT FIX — 2026-08-18
   Keep the world image and SVG pin layer on the exact same
   1200:620 geometry at narrow widths. Earlier mobile rules
   used object-fit: cover / a forced minimum height, which
   cropped the map image while the SVG pins still showed the
   full projection. That could visually place pins offshore.
   ========================================================= */
@media (max-width: 700px) {
  .nh-map-canvas {
    padding: 16px 8px 12px;
  }

  .nh-map-stage {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 1200 / 620 !important;
    overflow: hidden;
  }

  .nh-world,
  .nh-map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .nh-world {
    object-fit: contain !important;
    object-position: 50% 50% !important;
  }

  .nh-map-overlay {
    overflow: visible;
  }

  /* On a phone, the exact dot location matters more than a
     floating label, which can extend over water even when the
     pin itself is correctly on land. The selected missionary
     name remains directly below the map in the story panel. */
  .nh-pin__label,
  .nh-origin text {
    display: none;
  }

  .nh-pin__core {
    stroke-width: 2.75;
  }

  .nh-pin.is-active .nh-pin__core,
  .nh-pin:focus .nh-pin__core {
    r: 10;
  }

  .nh-map-legend {
    justify-content: center;
    gap: 8px 14px;
    padding-top: 9px;
    font-size: .48rem;
    letter-spacing: .055em;
  }

  .nh-map-canvas__label {
    margin: 0 0 7px 6px;
  }
}

@media (max-width: 420px) {
  .nh-map-canvas {
    padding-inline: 5px;
  }

  .nh-map-legend {
    font-size: .45rem;
  }
}
