/* Decorative hero words, echoing the homepage's MISSION lettering. */
.hero-word-container { position: relative; isolation: isolate; container-type: inline-size; }
.hero-background-word {
 position: absolute;
 z-index: -1;
 top: 12px;
 inset-inline: 0;
 display: block;
 overflow: hidden;
 color: rgba(20,19,16,.03);
 font-family: Georgia, "Times New Roman", serif;
 font-size: clamp(72px,10vw,140px);
 font-size: min(140px,16cqi);
 font-weight: 400;
 line-height: 1;
 letter-spacing: -.035em;
 white-space: nowrap;
 pointer-events: none;
 user-select: none;
}
.hero-background-word--long { font-size: clamp(64px,7vw,104px); font-size: min(104px,10cqi); }
@media(max-width:760px), print { .hero-background-word { display: none; } }
