@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --np-color-primary: #1A1A2E;
  --np-color-secondary: #16213E;
  --np-color-accent: #D4AF37;
  --np-color-background: #0A0A0F;
  --np-color-surface: #151520;
  --np-color-text: #E8E8F0;
  --np-color-text-light: #9898B0;
  --np-color-border: #2A2A44;
  --np-hero-overlay: linear-gradient(145deg, rgba(26, 26, 46, 0.92), rgba(22, 33, 62, 0.7));
  --np-card-surface: rgba(255, 255, 255, 0.05);
  --np-card-border: rgba(255, 255, 255, 0.1);
  --np-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
  --np-shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
  --np-max-width: 1240px;
  --np-radius-sm: 14px;
  --np-radius-md: 24px;
  --np-radius-lg: 36px;
  --np-space-section: clamp(6.25rem, 9vw, 8.5rem);
  --np-space-gutter: clamp(1.25rem, 3vw, 2rem);
  --np-topbar-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(57, 81, 150, 0.1), transparent 25%),
    linear-gradient(180deg, #0A0A0F 0%, #0F101A 55%, #0A0A0F 100%);
  color: var(--np-color-text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-width: 320px;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--np-color-text);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-shadow: var(--np-shadow-glow);
}

p {
  margin: 0;
}

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

.np-shell {
  margin: 0 auto;
  max-width: var(--np-max-width);
  padding-inline: var(--np-space-gutter);
  width: 100%;
}

.np-topbar {
  background: rgba(21, 21, 32, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.np-topbar::after {
  background:
    linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.2) 35%, transparent 70%);
  content: "";
  height: 1px;
  inset: auto 0 0;
  position: absolute;
}

.np-nav {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-height: var(--np-topbar-height);
}

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

.np-nav-seal {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.35), transparent 40%),
    linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.04);
  color: var(--np-color-accent);
  display: inline-flex;
  flex: 0 0 3rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  height: 3rem;
  justify-content: center;
}

.np-nav-wordmark {
  display: grid;
  gap: 0.15rem;
}

.np-nav-title {
  color: var(--np-color-text);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.np-nav-subtitle {
  color: var(--np-color-text-light);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.np-nav-link {
  color: var(--np-color-text-light);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.np-nav-link::after {
  background: var(--np-color-accent);
  border-radius: 999px;
  content: "";
  height: 2px;
  inset: auto 0 -0.45rem;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.np-nav-link:hover,
.np-nav-link:focus-visible,
.np-nav-link.is-active {
  color: var(--np-color-text);
}

.np-nav-link:hover::after,
.np-nav-link:focus-visible::after,
.np-nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.np-lang-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--np-color-text);
  cursor: pointer;
  display: inline-flex;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.35rem 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.np-lang-toggle:hover,
.np-lang-toggle:focus-visible {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--np-shadow-glow);
  transform: translateY(-1px);
}

.np-lang-pill {
  border-radius: 999px;
  color: var(--np-color-text-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.55rem;
  text-transform: uppercase;
}

[data-np-lang-current="da"] .np-lang-pill[data-np-lang-option="da"],
[data-np-lang-current="en"] .np-lang-pill[data-np-lang-option="en"] {
  background: rgba(212, 175, 55, 0.18);
  color: var(--np-color-accent);
}

.np-nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--np-color-text);
  cursor: pointer;
  display: none;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.np-nav-toggle-line {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: relative;
  transition: transform 180ms ease;
  width: 1.2rem;
}

.np-nav-toggle-line::before,
.np-nav-toggle-line::after {
  background: currentColor;
  border-radius: inherit;
  content: "";
  height: inherit;
  inset-inline: 0;
  position: absolute;
  transition: transform 180ms ease, top 180ms ease, bottom 180ms ease;
}

.np-nav-toggle-line::before {
  top: -0.38rem;
}

.np-nav-toggle-line::after {
  bottom: -0.38rem;
}

body.np-nav-open .np-nav-toggle-line {
  transform: rotate(45deg);
}

body.np-nav-open .np-nav-toggle-line::before {
  top: 0;
  transform: rotate(90deg);
}

body.np-nav-open .np-nav-toggle-line::after {
  bottom: 0;
  transform: rotate(90deg);
}

.np-hero {
  padding: clamp(4.5rem, 7vw, 7rem) 0 var(--np-space-section);
  position: relative;
}

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

.np-hero::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  content: "";
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.np-hero > .np-shell {
  position: relative;
  z-index: 1;
}

.np-hero-intro {
  margin: 0 auto clamp(2.75rem, 6vw, 4.5rem);
  max-width: 54rem;
  text-align: center;
}

.np-hero-kicker {
  color: var(--np-color-accent);
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.np-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1rem;
}

.np-hero-subtitle {
  color: rgba(232, 232, 240, 0.8);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  margin-inline: auto;
  max-width: 44rem;
}

.np-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.np-button,
.np-button-secondary {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 0.55rem;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 3.6rem;
  padding: 0.9rem 1.6rem;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.np-button {
  background: var(--np-color-accent);
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.2);
  color: #111117;
}

.np-button:hover,
.np-button:focus-visible {
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.np-button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--np-shadow-soft);
  color: var(--np-color-text);
}

.np-button-secondary:hover,
.np-button-secondary:focus-visible {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.14);
  transform: translateY(-2px);
}

.np-hero-spotlight {
  align-items: stretch;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
}

.np-hero-statpanel,
.np-hero-mission {
  background: var(--np-card-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--np-card-border);
  border-radius: var(--np-radius-lg);
  box-shadow: var(--np-shadow-soft);
  overflow: hidden;
  position: relative;
}

.np-hero-statpanel {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03)),
    var(--np-card-surface);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.np-hero-mission {
  background:
    linear-gradient(0deg, rgba(22, 33, 62, 0.4), rgba(22, 33, 62, 0.08)),
    var(--np-card-surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
}

.np-hero-mission-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.4rem);
}

.np-hero-mission-copy p {
  color: var(--np-color-text-light);
  font-size: 1.04rem;
}

.np-hero-mission-media {
  min-height: 100%;
  position: relative;
}

.np-hero-mission-media::before {
  background:
    linear-gradient(180deg, transparent, rgba(10, 10, 15, 0.38)),
    url('images/hero-2.jpg') center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-hero-statlabel {
  color: var(--np-color-text-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.np-hero-statitem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
}

.np-hero-statitem:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.np-hero-statvalue {
  color: var(--np-color-accent);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 0.9;
}

.np-hero-stattext {
  color: var(--np-color-text-light);
  font-size: 0.95rem;
  max-width: 18rem;
}

.np-band,
.np-programs,
.np-story,
.np-testimonials,
.np-partners,
.np-journal,
.np-cta-banner,
.np-newsletter,
.np-team,
.np-program-rail,
.np-contact-panel,
.np-page-hero,
.np-about-grid {
  padding: var(--np-space-section) 0;
  position: relative;
}

.np-band {
  padding-top: 4rem;
}

.np-section-heading {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.np-section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.np-section-note {
  color: var(--np-color-text-light);
  font-size: 1.02rem;
  max-width: 34rem;
}

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

.np-statcard,
.np-program-card,
.np-quote-card,
.np-logo-tile,
.np-post-card,
.np-team-card,
.np-contact-card {
  background: var(--np-card-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--np-card-border);
  box-shadow: var(--np-shadow-soft);
}

.np-statcard {
  border-radius: var(--np-radius-md);
  min-height: 16rem;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.np-statcard::before {
  background:
    linear-gradient(0deg, rgba(10, 10, 15, 0.84), rgba(10, 10, 15, 0.25)),
    var(--np-stat-image, url('images/community-1.jpg')) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-statcard > * {
  position: relative;
  z-index: 1;
}

.np-statcard-value {
  color: var(--np-color-accent);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.np-statcard-label {
  color: var(--np-color-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.np-statcard-text {
  color: rgba(232, 232, 240, 0.74);
  max-width: 18ch;
}

.np-program-grid,
.np-post-grid,
.np-team-grid {
  display: grid;
  gap: 1.4rem;
}

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

.np-program-card,
.np-post-card {
  border-radius: var(--np-radius-md);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.np-program-card:hover,
.np-post-card:hover,
.np-team-card:hover,
.np-quote-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
  transform: translateY(-6px);
}

.np-program-media,
.np-post-media,
.np-story-media,
.np-page-hero-media,
.np-contact-media {
  min-height: 15rem;
  position: relative;
}

.np-program-media::before,
.np-post-media::before,
.np-story-media::before,
.np-page-hero-media::before,
.np-contact-media::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.08), rgba(10, 10, 15, 0.68)),
    var(--np-card-image, url('images/community-2.jpg')) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-program-content,
.np-post-content {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
}

.np-program-icon {
  align-items: center;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 50%;
  color: var(--np-color-accent);
  display: inline-flex;
  font-size: 1.2rem;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.np-program-title,
.np-post-title,
.np-team-name,
.np-quote-name,
.np-contact-title {
  font-size: 1.55rem;
}

.np-program-text,
.np-post-text,
.np-team-role,
.np-quote-role,
.np-contact-text,
.np-logo-name {
  color: var(--np-color-text-light);
}

.np-text-link {
  color: var(--np-color-accent);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.np-text-link:hover,
.np-text-link:focus-visible {
  text-shadow: var(--np-shadow-glow);
}

.np-story-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
}

.np-story-media {
  border-radius: var(--np-radius-lg);
  min-height: 34rem;
  overflow: hidden;
}

.np-story-copy {
  align-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--np-radius-lg);
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 3rem);
}

.np-story-copy p {
  color: var(--np-color-text-light);
  font-size: 1.05rem;
}

.np-story-facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.np-story-fact {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
}

.np-story-fact strong {
  color: var(--np-color-accent);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.np-quote-rail {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.np-quote-card {
  border-radius: var(--np-radius-md);
  display: none;
  min-height: 100%;
  overflow: hidden;
}

.np-quote-card.is-active {
  display: grid;
}

.np-quote-inner {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 100%;
}

.np-quote-photo {
  min-height: 100%;
  position: relative;
}

.np-quote-photo::before {
  background:
    linear-gradient(180deg, rgba(22, 33, 62, 0.1), rgba(10, 10, 15, 0.34)),
    var(--np-quote-image, url('images/portrait-1.jpg')) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-quote-content {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
}

.np-quote-mark {
  color: rgba(212, 175, 55, 0.3);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.8;
}

.np-quote-text {
  color: var(--np-color-text);
  font-size: 1.06rem;
}

.np-quote-meta {
  margin-top: auto;
}

.np-carousel-dots {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.np-carousel-dot {
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.65rem;
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
  width: 0.65rem;
}

.np-carousel-dot.is-active {
  background: var(--np-color-accent);
  width: 2rem;
}

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

.np-logo-tile {
  align-items: center;
  border-radius: var(--np-radius-sm);
  display: flex;
  justify-content: center;
  min-height: 8rem;
  padding: 1rem;
  position: relative;
  text-align: center;
}

.np-logo-tile img {
  filter: grayscale(1) brightness(1.15);
  max-height: 3rem;
  mix-blend-mode: screen;
  object-fit: contain;
  width: auto;
}

.np-logo-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.np-post-media {
  min-height: 14rem;
}

.np-post-meta {
  color: var(--np-color-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.np-cta-banner {
  overflow: hidden;
}

.np-cta-banner::before {
  background:
    linear-gradient(110deg, rgba(212, 175, 55, 0.18), rgba(22, 33, 62, 0.45)),
    url('images/scene-1.jpg') center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-cta-banner > .np-shell {
  position: relative;
  z-index: 1;
}

.np-cta-panel {
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--np-radius-lg);
  box-shadow: var(--np-shadow-soft);
  margin: 0 auto;
  max-width: 56rem;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.np-cta-panel p {
  color: rgba(232, 232, 240, 0.76);
  margin: 1rem auto 1.8rem;
  max-width: 38rem;
}

.np-newsletter-panel {
  align-items: center;
  background:
    linear-gradient(160deg, rgba(21, 21, 32, 0.95), rgba(21, 21, 32, 0.72)),
    url('images/scene-2.jpg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--np-radius-lg);
  box-shadow: var(--np-shadow-soft);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.np-newsletter-copy p {
  color: var(--np-color-text-light);
  margin-top: 0.75rem;
  max-width: 36rem;
}

.np-newsletter-form {
  display: flex;
  gap: 0.9rem;
  justify-content: end;
  width: 100%;
}

.np-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--np-color-text);
  min-height: 3.6rem;
  min-width: min(24rem, 100%);
  padding: 0.9rem 1.2rem;
}

.np-input::placeholder {
  color: rgba(152, 152, 176, 0.8);
}

.np-input:focus-visible {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: var(--np-shadow-glow);
  outline: none;
}

.np-textarea {
  border-radius: 1.4rem;
  min-height: 10rem;
  padding-block: 1rem;
  resize: vertical;
}

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

.np-team-card {
  border-radius: var(--np-radius-md);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.np-team-photo {
  aspect-ratio: 0.82;
  position: relative;
}

.np-team-photo::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.02), rgba(10, 10, 15, 0.42)),
    var(--np-portrait-image, url('images/portrait-1.jpg')) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.np-team-content {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem;
}

.np-team-role {
  font-size: 0.95rem;
}

.np-page-hero {
  overflow: hidden;
  padding-top: clamp(4rem, 7vw, 6rem);
}

.np-page-hero-layout,
.np-about-layout,
.np-contact-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
}

.np-page-hero-copy,
.np-about-copy,
.np-contact-copy {
  align-content: center;
  display: grid;
  gap: 1rem;
}

.np-page-hero-copy p,
.np-about-copy p,
.np-contact-copy p {
  color: var(--np-color-text-light);
  font-size: 1.05rem;
}

.np-page-hero-media,
.np-contact-media {
  border-radius: var(--np-radius-lg);
  min-height: 28rem;
  overflow: hidden;
}

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

.np-about-photo {
  border-radius: var(--np-radius-md);
  min-height: 15rem;
  overflow: hidden;
  position: relative;
}

.np-about-photo::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.12), rgba(10, 10, 15, 0.44)),
    var(--np-about-image, url('images/scene-3.jpg')) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

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

.np-contact-layout {
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
}

.np-contact-card {
  border-radius: var(--np-radius-lg);
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

.np-contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
}

.np-contact-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.np-contact-label {
  color: var(--np-color-accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-contact-value,
.np-contact-value a {
  color: var(--np-color-text);
}

.np-contact-note {
  color: var(--np-color-text-light);
}

.np-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 3rem;
}

.np-footer-layout {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.np-footer-copy {
  color: var(--np-color-text-light);
}

.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1120px) {
  .np-statgrid,
  .np-logo-grid,
  .np-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-hero-spotlight,
  .np-story-layout,
  .np-page-hero-layout,
  .np-about-layout,
  .np-contact-layout,
  .np-newsletter-panel,
  .np-program-rail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .np-quote-card {
    min-height: auto;
  }

  .np-newsletter-form {
    justify-content: stretch;
  }
}

@media (max-width: 920px) {
  .np-nav-links {
    align-items: flex-start;
    background: rgba(15, 15, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    box-shadow: var(--np-shadow-soft);
    flex-direction: column;
    inset: calc(var(--np-topbar-height) - 0.25rem) var(--np-space-gutter) auto;
    opacity: 0;
    padding: 1.2rem;
    pointer-events: none;
    position: absolute;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.np-nav-open .np-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .np-nav-toggle {
    display: inline-flex;
  }

  .np-nav-utility {
    display: none;
  }

  .np-program-grid,
  .np-post-grid,
  .np-about-gallery {
    grid-template-columns: 1fr;
  }

  .np-quote-inner {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --np-topbar-height: 76px;
  }

  .np-nav-title {
    font-size: 1rem;
  }

  .np-nav-subtitle {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .np-hero {
    padding-top: 3.5rem;
  }

  .np-hero-title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .np-button,
  .np-button-secondary,
  .np-input {
    width: 100%;
  }

  .np-hero-actions,
  .np-newsletter-form,
  .np-footer-layout {
    flex-direction: column;
  }

  .np-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .np-statgrid,
  .np-logo-grid,
  .np-team-grid,
  .np-story-facts {
    grid-template-columns: 1fr;
  }

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

  .np-quote-photo {
    min-height: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
