@font-face {
  font-family: "BB Uttara Grotesk Regular";
  src: url("/assets/fonts/BB-UttaraGrotesk-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "BB Uttara Grotesk Title";
  src: url("/assets/fonts/BB-UttaraGrotesk-Title.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "BB Uttara Grotesk Semibold";
  src: url("/assets/fonts/BB-UttaraGrotesk-Semibold.otf") format("opentype");
  font-display: swap;
}

.new-site {
  --nh-paper: #f1ede2;
  --nh-paper-light: #faf7ef;
  --nh-ink: #15272a;
  --nh-muted: #5b6867;
  --nh-line: #b9b8ad;
  --nh-river: #0b7771;
  --nh-river-dark: #07524f;
  --nh-sun: #efa53a;
  --nh-sun-soft: #f8d99d;
  --nh-focus: #1769aa;
  display: block;
  min-height: 100vh;
  margin: 0;
  background: var(--nh-paper);
  color: var(--nh-ink);
  font-family: "BB Uttara Grotesk Regular", "Trebuchet MS", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
}

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

.new-site a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.new-site a:hover {
  opacity: 1;
}

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

.new-site h1,
.new-site h2,
.new-site h3,
.new-site p,
.new-site dl,
.new-site dd,
.new-site ol {
  margin: 0;
}

.new-site h1,
.new-site h2,
.new-site h3 {
  color: inherit;
  font-weight: 400;
}

.new-site :focus-visible {
  outline: 3px solid var(--nh-focus);
  outline-offset: 4px;
}

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

.nh-skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--nh-ink);
  color: var(--nh-paper-light) !important;
  transform: translateY(-160%);
}

.nh-skip-link:focus {
  transform: translateY(0);
}

.nh-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--nh-ink) 26%, transparent);
  background: color-mix(in srgb, var(--nh-paper) 95%, transparent);
  backdrop-filter: blur(12px);
}

.nh-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.nh-brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.nh-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nh-brand__text strong,
.nh-footer__brand {
  font-family: "BB Uttara Grotesk Title", sans-serif;
  font-size: 21px;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.nh-brand__text span {
  margin-top: 4px;
  color: var(--nh-muted);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nh-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 14px;
  letter-spacing: .025em;
}

.nh-nav > a:not(.nh-nav__action) {
  position: relative;
  padding-block: 12px;
}

.nh-nav > a:not(.nh-nav__action)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--nh-river);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nh-nav > a:not(.nh-nav__action):hover::after {
  transform: scaleX(1);
}

.nh-nav__action {
  padding: 11px 22px 10px 18px;
  background: var(--nh-ink);
  color: var(--nh-paper-light) !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.nh-menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 10px 0 10px 12px;
  background: transparent;
  color: var(--nh-ink);
  font: 14px "BB Uttara Grotesk Semibold", sans-serif;
  cursor: pointer;
}

.nh-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 clamp(88px, 10vw, 150px);
}

.nh-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9vw;
  bottom: -12vw;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: clamp(50px, 7vw, 104px) solid color-mix(in srgb, var(--nh-sun) 26%, transparent);
  border-radius: 50%;
}

.nh-hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.nh-hero__copy {
  grid-column: 1 / span 8;
  max-width: 850px;
}

.nh-eyebrow,
.nh-date {
  color: var(--nh-river-dark);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 13px;
  letter-spacing: .115em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nh-eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 8px;
  margin-right: 10px;
  background: var(--nh-sun);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 50%, calc(100% - 7px) 100%, 0 100%);
}

.nh-hero h1 {
  margin-top: 24px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(3.5rem, 6.7vw, 5.9rem);
  letter-spacing: -.035em;
  line-height: .94;
}

.nh-hero h1 span {
  color: var(--nh-river);
}

.nh-hero__lead {
  max-width: 700px;
  margin-top: 34px !important;
  color: color-mix(in srgb, var(--nh-ink) 82%, var(--nh-paper));
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
}

.nh-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.nh-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 34px 11px 20px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 15px;
  letter-spacing: .025em;
  line-height: 1.1;
  clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 50%, calc(100% - 17px) 100%, 0 100%);
  transition: background-color 160ms ease, color 160ms ease;
}

.nh-button--primary {
  background: var(--nh-river);
  color: var(--nh-paper-light) !important;
}

.nh-button--primary:hover {
  background: var(--nh-river-dark);
}

.nh-button--paper {
  background: var(--nh-paper-light);
  color: var(--nh-ink) !important;
}

.nh-button--paper:hover {
  background: var(--nh-sun-soft);
}

.nh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.nh-text-link span {
  transition: transform 160ms ease;
}

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

.nh-city-connector {
  grid-column: 10 / span 3;
  display: grid;
  grid-template-rows: auto 90px auto;
  grid-template-columns: 54px 1fr;
  min-height: 395px;
  align-items: center;
  border-left: 1px solid var(--nh-line);
  padding-left: 26px;
}

.nh-city-connector__place {
  grid-column: 2;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.nh-city-connector__place--brandys {
  align-self: end;
}

.nh-city-connector__place--boleslav {
  align-self: start;
}

.nh-city-connector__line {
  grid-row: 2;
  grid-column: 2;
  position: relative;
  width: 100%;
  height: 3px;
  background: var(--nh-river);
}

.nh-city-connector__line::before,
.nh-city-connector__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid var(--nh-river);
  border-radius: 50%;
  background: var(--nh-paper);
  transform: translateY(-50%);
}

.nh-city-connector__line::before { left: -1px; }
.nh-city-connector__line::after { right: -1px; }

.nh-city-connector__river {
  grid-row: 2;
  grid-column: 1;
  writing-mode: vertical-rl;
  color: var(--nh-river-dark);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nh-city-connector__note {
  grid-row: 3;
  grid-column: 2;
  align-self: end;
  color: var(--nh-muted);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 12px;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nh-feature {
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--nh-ink);
  color: var(--nh-paper-light);
}

.nh-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.nh-section-heading--light {
  align-items: center;
  margin-bottom: 26px;
}

.nh-section-heading--light .nh-eyebrow {
  color: var(--nh-sun-soft);
}

.nh-section-heading__index {
  color: color-mix(in srgb, var(--nh-paper-light) 38%, transparent);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.nh-section-heading h2,
.nh-priorities h2 {
  margin-top: 14px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(2.75rem, 4.7vw, 4.15rem);
  letter-spacing: -.025em;
  line-height: 1;
}

.nh-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(330px, 4fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.nh-feature__media {
  position: relative;
  display: block;
}

.nh-feature__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 17%;
  height: 12px;
  background: var(--nh-sun);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  transform: translateY(-50%);
}

.nh-feature__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  transition: filter 180ms ease;
}

.nh-feature__media:hover img {
  filter: saturate(1.08) contrast(1.02);
}

.nh-feature__copy h2 {
  max-width: 540px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(2.55rem, 4.4vw, 3.9rem);
  letter-spacing: -.025em;
  line-height: 1;
}

.nh-feature__copy > p {
  max-width: 570px;
  margin-top: 24px !important;
  color: color-mix(in srgb, var(--nh-paper-light) 78%, transparent);
  font-size: 18px;
}

.nh-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 32px !important;
  border-top: 1px solid color-mix(in srgb, var(--nh-paper-light) 27%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--nh-paper-light) 27%, transparent);
  padding: 22px 0 20px;
}

.nh-proof-list div + div {
  border-left: 1px solid color-mix(in srgb, var(--nh-paper-light) 27%, transparent);
  padding-left: 14px;
}

.nh-proof-list dt {
  color: var(--nh-sun);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.nh-proof-list dd {
  margin-top: 7px;
  color: color-mix(in srgb, var(--nh-paper-light) 70%, transparent);
  font-size: 12px;
  line-height: 1.25;
}

.nh-feature__detail {
  display: inline-block;
  margin-top: 22px;
  margin-left: 4px;
  color: var(--nh-sun-soft) !important;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 14px;
}

.nh-news {
  padding: clamp(80px, 10vw, 144px) 0;
  background: var(--nh-paper-light);
}

.nh-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: clamp(50px, 8vw, 110px);
}

.nh-news-lead__image {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--nh-line);
}

.nh-news-lead__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 280ms ease;
}

.nh-news-lead__image:hover img {
  transform: scale(1.018);
}

.nh-news-lead h3 {
  max-width: 780px;
  margin-top: 12px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(2.3rem, 3.7vw, 3.35rem);
  letter-spacing: -.02em;
  line-height: 1.02;
}

.nh-news-lead h3 a:hover,
.nh-news-brief h3 a:hover {
  color: var(--nh-river);
}

.nh-news-lead__body > p:not(.nh-date) {
  max-width: 700px;
  margin: 20px 0 22px;
  color: var(--nh-muted);
}

.nh-news-briefs {
  border-top: 1px solid var(--nh-line);
}

.nh-news-brief {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--nh-line);
}

.nh-news-brief h3 {
  margin-top: 12px;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.08;
}

.nh-news-brief > p:not(.nh-date) {
  margin: 14px 0 18px;
  color: var(--nh-muted);
  font-size: 15px;
}

.nh-news .nh-date {
  color: var(--nh-muted);
  font-size: 11px;
}

.nh-priorities {
  padding: clamp(80px, 10vw, 145px) 0;
  border-top: 1px solid var(--nh-line);
  background: var(--nh-paper);
}

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

.nh-priorities__intro {
  grid-column: 1 / span 4;
  position: sticky;
  top: 30px;
  align-self: start;
}

.nh-priorities__intro > p:not(.nh-eyebrow) {
  max-width: 390px;
  margin: 28px 0 26px;
  color: var(--nh-muted);
}

.nh-priority-list {
  grid-column: 6 / span 7;
  list-style: none;
  padding: 0;
  border-top: 2px solid var(--nh-ink);
}

.nh-priority-list li {
  border-bottom: 1px solid var(--nh-line);
}

.nh-priority-list a {
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  gap: 18px;
  align-items: start;
  padding: 28px 0 30px;
}

.nh-priority-list__number {
  color: var(--nh-river);
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
}

.nh-priority-list__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nh-priority-list__content strong {
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.1;
}

.nh-priority-list__content > span {
  max-width: 600px;
  color: var(--nh-muted);
  font-size: 15px;
}

.nh-priority-list__arrow {
  color: var(--nh-river);
  font-size: 22px;
  transition: transform 160ms ease;
}

.nh-priority-list a:hover .nh-priority-list__arrow {
  transform: translate(3px, -3px);
}

.nh-trust {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 128px) 0;
  background: var(--nh-sun-soft);
}

.nh-trust::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -165px;
  width: 350px;
  height: 350px;
  border: 52px solid color-mix(in srgb, var(--nh-sun) 42%, transparent);
  border-radius: 50%;
}

.nh-trust__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .65fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
}

.nh-trust__statement {
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  letter-spacing: -.04em;
  line-height: .94;
}

.nh-trust__statement span {
  color: var(--nh-river-dark);
}

.nh-trust__copy > p {
  font-size: 18px;
}

.nh-trust__copy .nh-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.nh-footer {
  padding: 68px 0 34px;
  background: var(--nh-ink);
  color: var(--nh-paper-light);
}

.nh-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
}

.nh-footer__intro p {
  max-width: 480px;
  margin-top: 16px;
  color: color-mix(in srgb, var(--nh-paper-light) 64%, transparent);
  font-size: 15px;
}

.nh-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 28px;
  align-content: start;
  font-family: "BB Uttara Grotesk Semibold", sans-serif;
  font-size: 14px;
}

.nh-footer__nav a:hover {
  color: var(--nh-sun-soft);
}

.nh-footer__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--nh-paper-light) 22%, transparent);
  padding-top: 22px;
  color: color-mix(in srgb, var(--nh-paper-light) 48%, transparent);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .nh-hero__copy {
    grid-column: 1 / span 8;
  }

  .nh-city-connector {
    grid-column: 9 / span 4;
  }

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

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

  .nh-feature__copy h2 {
    max-width: 700px;
  }

  .nh-proof-list {
    max-width: 650px;
  }
}

@media (max-width: 920px) {
  .nh-header__inner {
    min-height: 72px;
  }

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

  .nh-menu-button {
    display: inline-flex;
  }

  .nh-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--nh-line);
    border-bottom: 1px solid var(--nh-line);
    padding: 10px 24px 22px;
    background: var(--nh-paper-light);
  }

  .nh-nav[data-open] {
    display: flex;
  }

  .nh-nav > a:not(.nh-nav__action) {
    border-bottom: 1px solid var(--nh-line);
    padding: 15px 0;
  }

  .nh-nav > a:not(.nh-nav__action)::after {
    display: none;
  }

  .nh-nav__action {
    align-self: flex-start;
    margin-top: 18px;
  }

  .nh-hero__copy {
    grid-column: 1 / span 9;
  }

  .nh-city-connector {
    grid-column: 10 / span 3;
    grid-template-columns: 30px 1fr;
    min-height: 330px;
    padding-left: 14px;
  }

  .nh-city-connector__place {
    font-size: 27px;
  }

  .nh-news__grid,
  .nh-trust__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nh-news-briefs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    border-top: 0;
  }

  .nh-news-brief {
    border-top: 1px solid var(--nh-line);
  }

  .nh-priorities__intro {
    grid-column: 1 / span 5;
  }

  .nh-priority-list {
    grid-column: 7 / span 6;
  }

  .nh-trust__copy {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .nh-shell {
    width: min(100% - 32px, 1240px);
  }

  .nh-brand__mark {
    width: 36px;
    height: 36px;
  }

  .nh-header__inner {
    gap: 12px;
  }

  .nh-brand__text strong {
    font-size: 17px;
  }

  .nh-brand__text span {
    max-width: 220px;
    font-size: 8px;
  }

  .nh-hero {
    padding: 68px 0 82px;
  }

  .nh-hero__grid {
    display: block;
  }

  .nh-hero h1 {
    margin-top: 20px;
    font-size: clamp(51px, 15vw, 76px);
  }

  .nh-hero__lead {
    margin-top: 27px !important;
    font-size: 18px;
  }

  .nh-city-connector {
    display: none;
  }

  .nh-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .nh-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .nh-section-heading--light {
    flex-direction: row;
    align-items: center;
  }

  .nh-section-heading h2,
  .nh-priorities h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .nh-feature__grid {
    gap: 38px;
  }

  .nh-feature__media img {
    aspect-ratio: 4 / 3;
  }

  .nh-feature__copy h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .nh-feature__copy > p {
    font-size: 17px;
  }

  .nh-proof-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .nh-proof-list div {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
  }

  .nh-proof-list div + div {
    border-top: 1px solid color-mix(in srgb, var(--nh-paper-light) 27%, transparent);
    border-left: 0;
    padding-left: 0;
  }

  .nh-proof-list dd {
    margin-top: 0;
    font-size: 13px;
  }

  .nh-feature__detail {
    display: block;
    margin-top: 24px;
    margin-left: 0;
  }

  .nh-news__grid {
    gap: 54px;
  }

  .nh-news-briefs {
    display: block;
  }

  .nh-news-brief:first-child {
    border-top: 1px solid var(--nh-line);
  }

  .nh-priorities__grid {
    display: block;
  }

  .nh-priorities__intro {
    position: static;
    margin-bottom: 50px;
  }

  .nh-priority-list a {
    grid-template-columns: 40px 1fr 20px;
    gap: 12px;
  }

  .nh-priority-list__content > span {
    font-size: 14px;
  }

  .nh-trust__statement {
    font-size: clamp(56px, 16vw, 82px);
  }

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

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

  .nh-footer__meta {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nh-brand__text span {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nh-menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .new-site *,
  .new-site *::before,
  .new-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
