@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --np-ink: #172536;
  --np-navy: #334155;
  --np-navy-deep: #243246;
  --np-cyan: #0ecae9;
  --np-blue: #067fae;
  --np-mist: #effaff;
  --np-white: #fff;
  --np-line: #d7e7ed;
  --np-muted: #5c6c7d;
  --np-shadow: 0 22px 60px rgba(23, 37, 54, 0.12);
  --np-display: "Cormorant Garamond", Georgia, serif;
  --np-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --np-wide: min(1180px, calc(100vw - 40px));
  --np-reading: min(760px, calc(100vw - 40px));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--np-navy);
  background: var(--np-white);
  font-family: var(--np-body);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

body.admin-bar .npdc-header {
  top: 32px;
}

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

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

img {
  height: auto;
}

a {
  color: var(--np-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #045e82;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--np-cyan);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 0.55em;
  color: var(--np-ink);
  font-family: var(--np-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 6.5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

p,
ul,
ol,
blockquote {
  margin-block: 0 1.25rem;
}

.npdc-main {
  min-height: 55vh;
}

.npdc-main > .wp-block-post-content {
  margin: 0;
}

.npdc-skip {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--np-ink);
  background: var(--np-cyan);
  font-weight: 700;
}

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

.npdc-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--np-white);
  background: rgba(36, 50, 70, 0.97);
  box-shadow: 0 8px 28px rgba(23, 37, 54, 0.14);
  backdrop-filter: blur(14px);
}

.npdc-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: min(1320px, calc(100vw - 40px));
  min-height: 82px;
  margin-inline: auto;
}

.npdc-brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.npdc-brand:hover {
  color: inherit;
}

.npdc-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.npdc-brand span {
  display: grid;
  line-height: 1;
}

.npdc-brand strong {
  font-family: var(--np-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.npdc-brand small {
  margin-top: 0.28rem;
  color: #c9d4df;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.npdc-nav {
  display: flex;
  gap: clamp(0.75rem, 1.45vw, 1.45rem);
  align-items: center;
  justify-content: center;
}

.npdc-nav > a,
.npdc-nav__parent > a {
  color: #f3f7fa;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.npdc-nav > a:hover,
.npdc-nav__parent > a:hover {
  color: var(--np-cyan);
}

.npdc-nav__parent {
  position: relative;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.npdc-nav__parent > button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: #dce7ec;
  background: transparent;
  cursor: pointer;
}

.npdc-nav__submenu {
  position: absolute;
  top: calc(100% + 25px);
  left: -1rem;
  display: grid;
  min-width: 220px;
  padding: 0.75rem;
  visibility: hidden;
  transform: translateY(-8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  opacity: 0;
  background: var(--np-navy-deep);
  box-shadow: var(--np-shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.npdc-nav__submenu--wide {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  min-width: 460px;
}

.npdc-nav__submenu a {
  padding: 0.58rem 0.7rem;
  border-radius: 8px;
  color: #eef5f7;
  font-size: 0.84rem;
  line-height: 1.35;
  text-decoration: none;
}

.npdc-nav__submenu a:hover,
.npdc-nav__submenu a:focus-visible {
  color: var(--np-ink);
  background: var(--np-cyan);
}

.npdc-nav__parent:hover .npdc-nav__submenu,
.npdc-nav__parent:focus-within .npdc-nav__submenu,
.npdc-nav__parent > button[aria-expanded="true"] + .npdc-nav__submenu {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.npdc-header__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.npdc-phone {
  display: grid;
  color: var(--np-white);
  line-height: 1.15;
  text-decoration: none;
}

.npdc-phone:hover {
  color: var(--np-cyan);
}

.npdc-phone small {
  color: #c9d4df;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.npdc-phone strong {
  margin-top: 0.28rem;
  font-size: 0.94rem;
}

.npdc-menu-toggle {
  display: none;
}

.npdc-button,
.wp-element-button,
.gform_button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.28rem;
  border: 2px solid var(--np-cyan);
  border-radius: 999px;
  color: var(--np-ink);
  background: var(--np-cyan);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.npdc-button:hover,
.wp-element-button:hover,
.gform_button:hover {
  transform: translateY(-2px);
  border-color: #5ce5f6;
  color: var(--np-ink);
  background: #5ce5f6;
}

/* Keep the button color stable if Elementor is reactivated only for rollback. */
a.npdc-button,
.elementor-kit-8 a.npdc-button {
  color: var(--np-ink);
}

a.npdc-button--outline,
.elementor-kit-8 a.npdc-button--outline {
  color: var(--np-white);
}

a.npdc-button:hover,
a.npdc-button:focus-visible,
a.npdc-button--outline:hover,
a.npdc-button--outline:focus-visible,
.elementor-kit-8 a.npdc-button:hover,
.elementor-kit-8 a.npdc-button:focus-visible {
  color: var(--np-ink);
}

.npdc-button--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
}

.npdc-button--outline {
  color: var(--np-white);
  background: transparent;
}

.npdc-button--outline:hover {
  color: var(--np-ink);
  background: var(--np-cyan);
}

.npdc-text-link {
  font-weight: 700;
}

.npdc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.npdc-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--np-blue);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.npdc-home-hero {
  position: relative;
  overflow: clip;
  color: var(--np-white);
  background: var(--np-navy-deep);
}

.npdc-home-hero::after {
  position: absolute;
  z-index: 2;
  top: 18%;
  bottom: -52px;
  left: calc(50% - 12px);
  width: 3px;
  border-radius: 99px;
  background: var(--np-cyan);
  box-shadow: 0 0 0 9px rgba(14, 202, 233, 0.1);
  content: "";
}

.npdc-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(760px, calc(100vh - 82px));
}

.npdc-home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(32px, calc((100vw - 1180px) / 2)) clamp(4rem, 8vw, 8rem) max(20px, calc((100vw - 1180px) / 2));
}

.npdc-home-hero .npdc-eyebrow {
  color: var(--np-cyan);
}

.npdc-page-hero .npdc-eyebrow,
.npdc-contact-card .npdc-eyebrow {
  color: var(--np-cyan);
}

.npdc-home-hero h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--np-white);
  font-size: clamp(3.15rem, 6.2vw, 6rem);
}

.npdc-home-hero__lead {
  max-width: 660px;
  color: #dce6ed;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
}

.npdc-home-hero__media {
  position: relative;
  min-height: 560px;
}

.npdc-home-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 50, 70, 0.38), transparent 34%), linear-gradient(0deg, rgba(23, 37, 54, 0.28), transparent 55%);
  content: "";
  pointer-events: none;
}

.npdc-home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.npdc-home-promises {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: var(--np-wide);
  margin: -52px auto 0;
  overflow: hidden;
  border: 1px solid rgba(14, 202, 233, 0.25);
  border-radius: 18px;
  background: #42536a;
  box-shadow: var(--np-shadow);
}

.npdc-promise {
  position: relative;
  min-height: 160px;
  padding: 1.7rem;
  color: #e9f0f4;
  background: var(--np-navy);
}

.npdc-promise::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 1.1rem;
  border-radius: 99px;
  background: var(--np-cyan);
  content: "";
}

.npdc-promise h2 {
  margin-bottom: 0.35rem;
  color: var(--np-white);
  font-family: var(--np-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
}

.npdc-promise p {
  margin: 0;
  color: #d2dee6;
  font-size: 0.9rem;
  line-height: 1.58;
}

.npdc-page-hero {
  position: relative;
  overflow: clip;
  color: var(--np-white);
  background: var(--np-navy-deep);
}

.npdc-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: var(--np-wide);
  min-height: 470px;
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.npdc-page-hero__inner--text {
  grid-template-columns: minmax(0, 820px);
  min-height: 390px;
}

.npdc-page-hero h1 {
  color: var(--np-white);
}

.npdc-page-hero__lead {
  max-width: 720px;
  color: #dce6ed;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.npdc-page-hero__media {
  position: relative;
}

.npdc-page-hero__media::before {
  position: absolute;
  z-index: 2;
  top: -26px;
  right: -26px;
  width: 86px;
  height: 86px;
  border: 3px solid var(--np-cyan);
  border-radius: 50%;
  content: "";
}

.npdc-page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px 22px 120px 22px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(6, 17, 31, 0.35);
}

.npdc-section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.npdc-section + .npdc-section {
  border-top: 1px solid var(--np-line);
}

.npdc-section__inner {
  width: var(--np-wide);
  margin-inline: auto;
}

.npdc-section--reading .npdc-section__inner {
  width: var(--np-reading);
}

.npdc-section--mist {
  background: var(--np-mist);
}

.npdc-section--navy {
  color: #dce6ed;
  background: var(--np-navy-deep);
}

.npdc-section--navy h2,
.npdc-section--navy h3,
.npdc-section--navy h4 {
  color: var(--np-white);
}

.npdc-section--cta {
  color: var(--np-white);
  background: var(--np-navy);
}

.npdc-section--cta .npdc-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.npdc-section--cta h2 {
  max-width: 840px;
  color: var(--np-white);
}

.npdc-flow > * + * {
  margin-top: 1.25rem;
}

.npdc-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

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

.npdc-layout > :only-child {
  grid-column: 1 / -1;
}

.npdc-contact-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  color: #dce6ed;
  background: var(--np-navy-deep);
  box-shadow: var(--np-shadow);
}

.npdc-contact-card h2,
.npdc-contact-card h3 {
  color: var(--np-white);
}

.npdc-contact-card a {
  color: var(--np-cyan);
}

.npdc-contact-card address {
  font-style: normal;
}

.npdc-card-grid,
.npdc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-block: 2rem;
}

.npdc-card,
.npdc-service-card {
  position: relative;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--np-line);
  border-radius: 18px;
  background: var(--np-white);
  box-shadow: 0 12px 34px rgba(23, 37, 54, 0.06);
}

.npdc-card::before,
.npdc-service-card::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 1.15rem;
  border-radius: 99px;
  background: var(--np-cyan);
  content: "";
}

.npdc-card h3,
.npdc-service-card h3 {
  font-family: var(--np-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.npdc-card p:last-child,
.npdc-service-card p:last-child {
  margin-bottom: 0;
}

/*
 * The converted homepage retains the source page's row/card group nesting.
 * Treat only the inner three-column groups as cards; otherwise each card
 * becomes its own three-column grid and the section collapses to ninths.
 */
.home .npdc-layout > .npdc-layout--three {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border: 1px solid var(--np-line);
  border-radius: 18px;
  background: var(--np-white);
  box-shadow: 0 12px 34px rgba(23, 37, 54, 0.06);
}

.home .npdc-layout > .npdc-layout--three > .npdc-image:first-child {
  width: 58px;
  margin: 0 0 0.65rem;
}

.home .npdc-layout > .npdc-layout--three > .npdc-image:first-child img {
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.home .npdc-layout > .npdc-layout--three > .npdc-image:not(:first-child) {
  margin: 0.9rem 0 1rem;
}

.home .npdc-layout > .npdc-layout--three > .npdc-image:not(:first-child) img {
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  object-fit: cover;
}

.home .npdc-layout > .npdc-layout--three > .wp-block-buttons {
  margin-top: auto;
  padding-top: 1rem;
}

.home .npdc-flow > .npdc-layout + .npdc-layout {
  margin-top: 1.25rem;
}

.npdc-service-card a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.npdc-image {
  margin-block: 2rem;
}

.npdc-image img {
  width: 100%;
  max-height: 680px;
  border-radius: 18px;
  object-fit: cover;
}

.npdc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-block: 2rem;
}

.npdc-stat {
  padding: 1.5rem;
  border-left: 3px solid var(--np-cyan);
  background: rgba(239, 250, 255, 0.65);
}

.npdc-stat strong {
  display: block;
  color: var(--np-ink);
  font-family: var(--np-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.npdc-faq {
  max-width: 900px;
  margin: 2.2rem auto 0;
}

.npdc-faq details {
  border-bottom: 1px solid var(--np-line);
}

.npdc-faq summary {
  position: relative;
  padding: 1.3rem 3rem 1.3rem 0;
  color: var(--np-ink);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.npdc-faq summary::after {
  position: absolute;
  top: 1.2rem;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--np-ink);
  background: var(--np-cyan);
  content: "+";
}

.npdc-faq details[open] summary::after {
  content: "–";
}

.npdc-faq__answer {
  padding: 0 2.5rem 1.35rem 0;
}

.npdc-video-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  font-weight: 700;
}

.npdc-video-link::before {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--np-ink);
  background: var(--np-cyan);
  content: "▶";
}

.npdc-map {
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--np-shadow);
}

.npdc-map iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.npdc-inline-cta {
  margin-block: clamp(3rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 24px 24px 110px 24px;
  color: #dce6ed;
  background: var(--np-navy-deep);
}

.npdc-inline-cta h2 {
  max-width: 720px;
  color: var(--np-white);
}

.npdc-article__hero {
  padding-block: clamp(4rem, 8vw, 7rem) 2.5rem;
  text-align: center;
}

.npdc-article__hero h1 {
  max-width: 950px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.npdc-article__date {
  color: var(--np-muted);
  font-size: 0.86rem;
}

.npdc-article__body {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.npdc-article__image img {
  border-radius: 24px;
  box-shadow: var(--np-shadow);
}

.npdc-article__body .wp-block-post-content > :where(h2, h3) {
  margin-top: 2.2em;
}

.npdc-article__body .wp-block-post-content > :where(p, ul, ol, h2, h3, h4, blockquote) {
  max-width: 760px;
  margin-inline: auto;
}

.npdc-index,
.npdc-not-found {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.npdc-post-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.npdc-post-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--np-line);
  border-radius: 18px;
  background: var(--np-white);
}

.npdc-post-card .wp-block-post-featured-image img {
  border-radius: 12px;
  object-fit: cover;
}

.npdc-post-card .wp-block-post-date {
  margin-top: 1rem;
  color: var(--np-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.npdc-post-card .wp-block-post-title {
  margin-top: 0.35rem;
  font-family: var(--np-display);
  font-size: 1.7rem;
}

.npdc-post-card .wp-block-post-title a {
  color: var(--np-ink);
  text-decoration: none;
}

.gform_wrapper {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--np-line);
  border-radius: 18px;
  background: var(--np-white);
  box-shadow: 0 14px 38px rgba(23, 37, 54, 0.07);
}

.gform_wrapper input:not([type="checkbox"]):not([type="radio"]),
.gform_wrapper textarea,
.gform_wrapper select {
  min-height: 50px;
  border: 1px solid #aebdc8;
  border-radius: 10px;
  color: var(--np-ink);
  background: var(--np-white);
}

.gform_wrapper textarea {
  min-height: 150px;
}

.gform_wrapper .gfield_label {
  color: var(--np-ink);
  font-weight: 700;
}

.npdc-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) max(20px, calc((100vw - 1180px) / 2)) 1.5rem;
  color: #d9e4eb;
  background: var(--np-navy-deep);
}

.npdc-footer__mark {
  position: absolute;
  top: -0.32em;
  left: max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--np-display);
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.npdc-footer__mark::before {
  content: "Let’s connect.";
}

.npdc-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.75fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.npdc-brand--footer {
  color: var(--np-white);
}

.npdc-footer h2 {
  margin-bottom: 1rem;
  color: var(--np-white);
  font-family: var(--np-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.npdc-footer p,
.npdc-footer address {
  color: #bfcdd7;
  font-size: 0.88rem;
  font-style: normal;
}

.npdc-footer a {
  display: block;
  margin-block: 0.48rem;
  color: #e9f2f6;
  font-size: 0.88rem;
  text-decoration: none;
}

.npdc-footer a:hover {
  color: var(--np-cyan);
}

.npdc-footer__base {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a7b4;
  font-size: 0.875rem;
}

@media (max-width: 1120px) {
  #rom-callbar .rom-cb-call {
    color: var(--np-white) !important;
    background: #006c80 !important;
  }

  #rom-callbar .rom-cb-quote {
    color: var(--np-white) !important;
    background: #0a596b !important;
  }

  #rom-callbar a small {
    color: var(--np-white) !important;
    opacity: 1 !important;
  }

  .npdc-header__bar {
    grid-template-columns: auto auto 1fr;
  }

  .npdc-menu-toggle {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-width: 44px;
    min-height: 44px;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9px;
    color: var(--np-white);
    background: transparent;
    cursor: pointer;
  }

  .npdc-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 110px);
    padding: 1rem;
    overflow: auto;
    border-radius: 0 0 16px 16px;
    background: var(--np-navy-deep);
    box-shadow: var(--np-shadow);
  }

  .npdc-nav[data-open] {
    display: grid;
  }

  .npdc-nav__parent {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .npdc-nav > a,
  .npdc-nav__parent > a {
    padding: 0.7rem;
  }

  .npdc-nav__submenu,
  .npdc-nav__submenu--wide {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: none;
    min-width: 0;
    visibility: visible;
    transform: none;
    border: 0;
    opacity: 1;
    box-shadow: none;
  }

  .npdc-nav__parent:hover .npdc-nav__submenu,
  .npdc-nav__parent:focus-within .npdc-nav__submenu {
    display: none;
  }

  .npdc-nav__parent > button[aria-expanded="true"] + .npdc-nav__submenu {
    display: grid;
  }

  .npdc-header__actions {
    justify-self: end;
  }

  .npdc-header__actions .npdc-button {
    display: none;
  }
}

@media (max-width: 820px) {
  body.admin-bar .npdc-header {
    top: 46px;
  }

  .npdc-header__bar {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 28px);
    min-height: 72px;
  }

  .npdc-brand img {
    width: 42px;
    height: 42px;
  }

  .npdc-header__actions {
    display: none;
  }

  .npdc-home-hero__inner {
    grid-template-columns: 1fr;
  }

  .npdc-home-hero__copy {
    padding: 4.5rem 20px 3rem;
  }

  .npdc-home-hero__media {
    min-height: 430px;
  }

  .npdc-home-hero__media img {
    min-height: 430px;
  }

  .npdc-home-hero::after {
    top: auto;
    right: 34px;
    bottom: -36px;
    left: auto;
    height: 135px;
  }

  .npdc-home-promises {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
  }

  .npdc-promise {
    min-height: 0;
  }

  .npdc-page-hero__inner,
  .npdc-page-hero__inner--text {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 4.5rem;
  }

  .npdc-page-hero__media {
    max-width: 620px;
  }

  .npdc-section--cta .npdc-section__inner,
  .npdc-layout,
  .npdc-layout--three {
    grid-template-columns: 1fr;
  }

  .npdc-card-grid,
  .npdc-service-grid,
  .npdc-post-grid .wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 560px) {
  :root {
    --np-wide: calc(100vw - 32px);
    --np-reading: calc(100vw - 32px);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .npdc-brand span {
    display: none;
  }

  .npdc-menu-toggle__label {
    display: none;
  }

  .npdc-nav__submenu,
  .npdc-nav__submenu--wide {
    grid-template-columns: 1fr;
  }

  .npdc-home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .npdc-home-hero__media,
  .npdc-home-hero__media img {
    min-height: 350px;
  }

  .npdc-card-grid,
  .npdc-service-grid,
  .npdc-post-grid .wp-block-post-template,
  .npdc-stat-grid,
  .npdc-footer__grid {
    grid-template-columns: 1fr;
  }

  .npdc-section {
    padding-block: 4.25rem;
  }

  .npdc-page-hero__media::before {
    top: -14px;
    right: -8px;
    width: 58px;
    height: 58px;
  }

  .npdc-actions {
    align-items: stretch;
  }

  .npdc-actions > * {
    width: 100%;
  }

  .npdc-footer__base {
    display: grid;
    gap: 0.35rem;
  }
}

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

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