@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --np-color-primary: #37474F;
  --np-color-secondary: #546E7A;
  --np-color-accent: #00BCD4;
  --np-color-background: #ECEFF1;
  --np-color-surface: #FFFFFF;
  --np-color-text: #263238;
  --np-color-text-light: #607D8B;
  --np-color-border: #CFD8DC;
  --np-hero-overlay: linear-gradient(165deg, rgba(55, 71, 79, 0.9), rgba(84, 110, 122, 0.55));
  --np-shadow-soft: 0 18px 40px rgba(38, 50, 56, 0.08);
  --np-shadow-strong: 0 24px 60px rgba(38, 50, 56, 0.18);
  --np-radius-blob-a: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --np-radius-blob-b: 59% 41% 52% 48% / 33% 44% 56% 67%;
  --np-radius-blob-c: 41% 59% 34% 66% / 56% 31% 69% 44%;
  --np-radius-button: 18px 28px 20px 26px;
  --np-radius-panel: 34px 20px 30px 24px;
  --np-radius-card: 28px 18px 30px 22px;
  --np-site-width: min(1180px, calc(100% - 2rem));
  --np-pattern: repeating-linear-gradient(
    135deg,
    rgba(55, 71, 79, 0.03) 0,
    rgba(55, 71, 79, 0.03) 2px,
    transparent 2px,
    transparent 14px
  );
  --np-wave-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23ECEFF1' d='M0,96L80,80C160,64,320,32,480,37.3C640,43,800,85,960,96C1120,107,1280,85,1360,74.7L1440,64V140H1360C1280,140,1120,140,960,140C800,140,640,140,480,140C320,140,160,140,80,140H0Z'/%3E%3C/svg%3E");
  --np-wave-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%2337474F' d='M0,32L80,37.3C160,43,320,53,480,80C640,107,800,149,960,149.3C1120,149,1280,107,1360,85.3L1440,64V140H1360C1280,140,1120,140,960,140C800,140,640,140,480,140C320,140,160,140,80,140H0Z'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--np-color-text);
  background-color: var(--np-color-background);
  background-image: var(--np-pattern);
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.08;
  color: var(--np-color-primary);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.np-site-shell {
  overflow: clip;
}

.np-site-shell::selection {
  background: rgba(0, 188, 212, 0.2);
}

.np-layout-width {
  width: var(--np-site-width);
  margin-inline: auto;
}

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

.np-site-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(55, 71, 79, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207, 216, 220, 0.18);
}

.np-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82px;
}

.np-nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.np-nav-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--np-color-surface);
  background: linear-gradient(135deg, var(--np-color-accent), #78e7f3);
  border-radius: var(--np-radius-blob-b);
  border: 2px dashed rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(55, 71, 79, 0.14);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
}

.np-nav-title {
  color: var(--np-color-surface);
  font-size: 1rem;
  letter-spacing: 0.02em;
  max-width: 22rem;
}

.np-nav-title span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.79rem;
  color: rgba(236, 239, 241, 0.82);
}

.np-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.np-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.np-nav-links a,
.np-language-toggle,
.np-nav-cta,
.np-nav-toggle {
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.np-nav-links a {
  color: var(--np-color-surface);
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.np-nav-links a:hover,
.np-nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-1deg);
}

.np-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.np-language-toggle {
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--np-color-surface);
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.np-language-toggle:hover,
.np-language-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(1deg);
}

.np-nav-cta,
.np-button-primary,
.np-button-secondary,
.np-footer-cta a,
.np-blog-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: var(--np-radius-button);
  padding: 0.92rem 1.4rem;
  font-weight: 700;
}

.np-nav-cta,
.np-button-primary,
.np-footer-cta a:first-child {
  background: var(--np-color-accent);
  color: var(--np-color-primary);
  box-shadow: 0 14px 28px rgba(0, 188, 212, 0.24);
}

.np-button-secondary,
.np-footer-cta a:not(:first-child),
.np-blog-controls button {
  background: var(--np-color-surface);
  color: var(--np-color-primary);
  border: 1px dashed var(--np-color-border);
}

.np-nav-cta:hover,
.np-button-primary:hover,
.np-button-secondary:hover,
.np-footer-cta a:hover,
.np-blog-controls button:hover {
  transform: rotate(-1.5deg) translateY(-2px);
}

.np-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: var(--np-radius-blob-c);
  background: transparent;
  color: var(--np-color-surface);
  cursor: pointer;
}

.np-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.np-nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.np-nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.np-nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.np-hero {
  position: relative;
  isolation: isolate;
  padding: 4rem 0 5rem;
  color: var(--np-color-surface);
}

.np-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--np-hero-overlay), url('images/hero-1.jpg') center/cover no-repeat;
}

.np-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: var(--np-wave-light) center bottom / cover no-repeat;
  z-index: -1;
}

.np-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 2rem;
  align-items: end;
}

.np-hero-statpanel,
.np-hero-story {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.34);
  box-shadow: var(--np-shadow-strong);
  backdrop-filter: blur(10px);
}

.np-hero-statpanel {
  border-radius: var(--np-radius-blob-a);
}

.np-hero-story {
  border-radius: var(--np-radius-panel);
}

.np-hero-kicker,
.np-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.np-section-kicker {
  border-color: var(--np-color-border);
  color: var(--np-color-secondary);
  background: rgba(255, 255, 255, 0.72);
}

.np-hero-statline {
  display: grid;
  gap: 1rem;
}

.np-hero-statitem {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.np-hero-statitem strong,
.np-stats-card strong {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1;
}

.np-hero-statitem span,
.np-stats-card span {
  color: rgba(236, 239, 241, 0.82);
  font-size: 0.95rem;
}

.np-hero h1 {
  color: var(--np-color-surface);
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 11ch;
}

.np-hero p {
  max-width: 56ch;
  font-size: 1.06rem;
  color: rgba(236, 239, 241, 0.9);
}

.np-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.np-hero-media {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
}

.np-hero-video,
.np-hero-image {
  width: min(100%, 920px);
  min-height: 280px;
  border-radius: 36px 18px 44px 22px;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  box-shadow: var(--np-shadow-strong);
}

.np-hero-video video,
.np-hero-video iframe,
.np-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-main-section,
.np-contrast-section,
.np-footer-cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.np-main-section::after,
.np-contrast-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: var(--np-wave-light) center bottom / cover no-repeat;
}

.np-main-section:last-of-type::after {
  display: none;
}

.np-contrast-section {
  background: linear-gradient(180deg, rgba(55, 71, 79, 0.04), rgba(84, 110, 122, 0.08));
}

.np-contrast-section::after {
  background-image: var(--np-wave-dark);
}

.np-alternating-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.np-alternating-block[data-np-flip='true'] .np-alternating-copy {
  order: 2;
}

.np-alternating-block[data-np-flip='true'] .np-alternating-media {
  order: 1;
}

.np-alternating-copy {
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed var(--np-color-border);
  border-radius: var(--np-radius-panel);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--np-shadow-soft);
}

.np-alternating-copy p,
.np-case-body p,
.np-team-card p,
.np-program-card p,
.np-contact-card p,
.np-footer-card p,
.np-map-panel p {
  color: var(--np-color-text-light);
}

.np-alternating-media {
  position: relative;
}

.np-alternating-media img,
.np-case-media img,
.np-program-card img,
.np-team-card img,
.np-blog-card img,
.np-map-card img,
.np-page-hero-media img,
.np-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-alternating-media-frame,
.np-case-media,
.np-map-card,
.np-page-hero-media,
.np-gallery-image {
  overflow: hidden;
  min-height: 340px;
  border: 2px dashed var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-alternating-media-frame {
  border-radius: var(--np-radius-blob-c);
}

.np-programs-shell {
  display: grid;
  gap: 1.5rem;
}

.np-programs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x proximity;
}

.np-programs-track::-webkit-scrollbar {
  height: 10px;
}

.np-programs-track::-webkit-scrollbar-thumb {
  background: var(--np-color-secondary);
  border-radius: 999px;
}

.np-program-card {
  scroll-snap-align: start;
  display: grid;
  background: var(--np-color-surface);
  border: 1px dashed var(--np-color-border);
  border-radius: var(--np-radius-card);
  overflow: hidden;
  box-shadow: var(--np-shadow-soft);
}

.np-program-card img {
  aspect-ratio: 4 / 3;
}

.np-program-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.np-program-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--np-color-secondary);
  font-size: 0.92rem;
}

.np-program-tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 188, 212, 0.1);
  color: var(--np-color-primary);
  border-radius: 999px;
}

.np-stats-band {
  background: var(--np-color-primary);
  color: var(--np-color-surface);
}

.np-stats-band::after {
  background-image: var(--np-wave-light);
}

.np-stats-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.np-stats-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--np-radius-card);
  padding: 1.25rem 1rem;
  text-align: center;
}

.np-stats-card p {
  margin: 0;
  color: rgba(236, 239, 241, 0.82);
}

.np-case-study {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98));
  border-radius: 36px 20px 44px 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px dashed var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-case-media {
  min-height: 420px;
  border-radius: var(--np-radius-blob-b);
}

.np-case-body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 0.4rem 0;
}

.np-case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.np-case-outcomes li {
  background: rgba(0, 188, 212, 0.08);
  border: 1px dashed var(--np-color-border);
  border-radius: 22px 12px 20px 16px;
  padding: 1rem;
}

.np-case-outcomes strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--np-color-primary);
}

.np-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.np-team-card {
  display: grid;
  background: var(--np-color-surface);
  border: 1px dashed var(--np-color-border);
  border-radius: var(--np-radius-card);
  overflow: hidden;
  box-shadow: var(--np-shadow-soft);
  text-align: center;
}

.np-team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
}

.np-team-card-body {
  padding: 1.1rem 1rem 1.3rem;
}

.np-team-role {
  color: var(--np-color-secondary);
  font-size: 0.92rem;
}

.np-team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.np-team-page-grid .np-team-card:nth-child(1) img { content: url('images/portrait-1.jpg'); }
.np-team-page-grid .np-team-card:nth-child(2) img { content: url('images/portrait-2.jpg'); }
.np-team-page-grid .np-team-card:nth-child(3) img { content: url('images/portrait-3.jpg'); }
.np-team-page-grid .np-team-card:nth-child(4) img { content: url('images/portrait-4.jpg'); }
.np-team-page-grid .np-team-card:nth-child(5) img { content: url('images/portrait-5.jpg'); }
.np-team-page-grid .np-team-card:nth-child(6) img { content: url('images/portrait-6.jpg'); }
.np-team-page-grid .np-team-card:nth-child(7) img { content: url('images/portrait-7.jpg'); }
.np-team-page-grid .np-team-card:nth-child(8) img { content: url('images/portrait-8.jpg'); }

.np-blog-shell {
  display: grid;
  gap: 1.5rem;
}

.np-blog-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 38px 18px 30px 22px;
}

.np-blog-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.np-blog-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--np-color-surface);
  border: 1px dashed var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-blog-card img {
  min-height: 340px;
}

.np-blog-card-body {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.np-blog-meta {
  color: var(--np-color-secondary);
  font-size: 0.92rem;
}

.np-blog-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.np-map-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.np-map-card {
  min-height: 420px;
  border-radius: 32px 18px 38px 24px;
  background: linear-gradient(rgba(55, 71, 79, 0.2), rgba(55, 71, 79, 0.2)), url('images/scene-3.jpg') center/cover no-repeat;
}

.np-map-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--np-radius-panel);
  background: var(--np-color-surface);
  border: 1px dashed var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-map-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.np-map-list li,
.np-contact-list li {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--np-color-accent);
  background: rgba(84, 110, 122, 0.06);
  border-radius: 16px 10px 18px 12px;
}

.np-footer-cta-band {
  background: linear-gradient(165deg, var(--np-color-primary), var(--np-color-secondary));
  color: var(--np-color-surface);
}

.np-footer-cta-band::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 88px;
  background: var(--np-wave-dark) center top / cover no-repeat;
  transform: rotate(180deg);
}

.np-footer-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.np-footer-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 32px 18px 34px 22px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--np-shadow-strong);
}

.np-footer-card h2,
.np-footer-card h3,
.np-footer-card p,
.np-footer-card a,
.np-footer-meta,
.np-footer-legal {
  color: var(--np-color-surface);
}

.np-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.np-footer-grid {
  display: grid;
  gap: 1rem;
}

.np-footer-contact {
  display: grid;
  gap: 0.8rem;
}

.np-footer-legal {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(236, 239, 241, 0.86);
}

.np-page-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  color: var(--np-color-surface);
}

.np-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--np-hero-overlay), url('images/hero-2.jpg') center/cover no-repeat;
}

.np-page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.np-page-hero-copy {
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--np-radius-panel);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  box-shadow: var(--np-shadow-strong);
}

.np-page-hero-copy h1,
.np-page-hero-copy p {
  color: var(--np-color-surface);
}

.np-page-hero-media {
  border-radius: var(--np-radius-blob-a);
}

.np-about-gallery,
.np-program-grid,
.np-contact-grid {
  display: grid;
  gap: 1.25rem;
}

.np-about-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.np-gallery-image:nth-child(1) {
  border-radius: 28px 14px 34px 20px;
}

.np-gallery-image:nth-child(2) {
  border-radius: var(--np-radius-blob-b);
}

.np-gallery-image:nth-child(3) {
  border-radius: var(--np-radius-blob-c);
}

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

.np-program-grid .np-program-card:nth-child(1) img { content: url('images/community-1.jpg'); }
.np-program-grid .np-program-card:nth-child(2) img { content: url('images/community-2.jpg'); }
.np-program-grid .np-program-card:nth-child(3) img { content: url('images/scene-1.jpg'); }
.np-program-grid .np-program-card:nth-child(4) img { content: url('images/community-4.jpg'); }

.np-contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.np-contact-card {
  background: var(--np-color-surface);
  border: 1px dashed var(--np-color-border);
  border-radius: var(--np-radius-panel);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--np-shadow-soft);
}

.np-contact-list {
  display: grid;
  gap: 0.9rem;
}

.np-contact-visual {
  min-height: 100%;
  border-radius: var(--np-radius-blob-a);
  border: 2px dashed var(--np-color-border);
  background: linear-gradient(rgba(55, 71, 79, 0.16), rgba(55, 71, 79, 0.16)), url('images/hero-3.jpg') center/cover no-repeat;
  box-shadow: var(--np-shadow-soft);
}

.np-contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.np-contact-field {
  display: grid;
  gap: 0.45rem;
}

.np-contact-field span {
  font-weight: 700;
  color: var(--np-color-primary);
}

.np-contact-field input,
.np-contact-field textarea {
  width: 100%;
  border: 1px solid var(--np-color-border);
  border-radius: 18px 12px 20px 14px;
  background: rgba(236, 239, 241, 0.72);
  color: var(--np-color-text);
  padding: 0.95rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.np-contact-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.np-contact-field input:focus,
.np-contact-field textarea:focus {
  outline: none;
  border-color: var(--np-color-accent);
  background: var(--np-color-surface);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.12);
}

.np-home-hero-bg-alt {
  background-image: var(--np-hero-overlay), url('images/hero-3.jpg');
}

.np-home-section-story {
  background-image: linear-gradient(rgba(236, 239, 241, 0.35), rgba(236, 239, 241, 0.55)), url('images/community-3.jpg');
  background-position: center;
  background-size: cover;
}

.np-about-page .np-page-hero::before {
  background-image: var(--np-hero-overlay), url('images/scene-1.jpg');
}

.np-programs-page .np-page-hero::before {
  background-image: var(--np-hero-overlay), url('images/community-4.jpg');
}

.np-team-page .np-page-hero::before {
  background-image: var(--np-hero-overlay), url('images/portrait-6.jpg');
}

.np-contact-page .np-page-hero::before {
  background-image: var(--np-hero-overlay), url('images/scene-2.jpg');
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes np-wobble {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  35% {
    transform: rotate(-1.2deg) translateY(-2px);
  }
  70% {
    transform: rotate(1deg) translateY(1px);
  }
}

.np-program-card:hover,
.np-team-card:hover,
.np-case-study:hover,
.np-blog-card:hover,
.np-alternating-copy:hover,
.np-contact-card:hover {
  animation: np-wobble 0.45s ease-in-out 1;
}

@media (max-width: 1100px) {
  .np-hero-grid,
  .np-case-study,
  .np-map-grid,
  .np-footer-cta-grid,
  .np-page-hero-grid,
  .np-contact-grid {
    grid-template-columns: 1fr;
  }

  .np-team-grid,
  .np-team-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-about-gallery,
  .np-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .np-nav {
    min-height: 74px;
  }

  .np-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .np-nav-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: var(--np-color-primary);
    border: 1px solid rgba(207, 216, 220, 0.16);
    border-radius: 26px 14px 30px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .np-nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .np-nav-links,
  .np-nav-actions {
    display: grid;
    gap: 0.5rem;
  }

  .np-nav-title {
    max-width: 16rem;
    font-size: 0.9rem;
  }

  .np-alternating-block,
  .np-blog-card {
    grid-template-columns: 1fr;
  }

  .np-alternating-block[data-np-flip='true'] .np-alternating-copy,
  .np-alternating-block[data-np-flip='true'] .np-alternating-media {
    order: initial;
  }

  .np-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-case-outcomes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --np-site-width: min(100% - 1.25rem, 100%);
  }

  .np-hero,
  .np-page-hero,
  .np-main-section,
  .np-contrast-section,
  .np-footer-cta-band {
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }

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

  .np-hero h1,
  .np-page-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .np-programs-track {
    grid-auto-columns: minmax(86%, 86%);
  }

  .np-team-grid,
  .np-team-page-grid,
  .np-about-gallery,
  .np-program-grid,
  .np-stats-row {
    grid-template-columns: 1fr;
  }

  .np-footer-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .np-nav-brand {
    gap: 0.75rem;
  }

  .np-nav-mark {
    width: 46px;
    height: 46px;
  }
}
