@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --np-color-primary: #E07A5F;
  --np-color-secondary: #F2A07B;
  --np-color-accent: #3D405B;
  --np-color-background: #FFF5F0;
  --np-color-surface: #FFFFFF;
  --np-color-text: #2F2F2F;
  --np-color-text-light: #7A6A6A;
  --np-color-border: #F0DDD5;
  --np-hero-overlay: linear-gradient(125deg, rgba(224, 122, 95, 0.85), rgba(242, 160, 123, 0.5));
  --np-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --np-radius-card: 16px;
  --np-radius-image: 12px;
  --np-radius-pill: 50px;
  --np-site-width: min(1180px, calc(100% - 32px));
  --np-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--np-color-background);
  color: var(--np-color-text);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
  border-radius: var(--np-radius-image);
}

a {
  color: var(--np-color-accent);
  text-decoration: none;
  transition: color var(--np-transition);
}

a:hover,
a:focus-visible {
  color: var(--np-color-primary);
}

button,
.np-button,
.np-cta-button,
.np-nav-action,
.np-footer-cta,
.np-language-toggle button {
  border: 0;
  border-radius: var(--np-radius-pill);
  cursor: pointer;
  font: inherit;
  transition: transform var(--np-transition), background-color var(--np-transition), color var(--np-transition), box-shadow var(--np-transition);
}

button:hover,
.np-button:hover,
.np-cta-button:hover,
.np-nav-action:hover,
.np-footer-cta:hover,
.np-language-toggle button:hover {
  transform: scale(1.02);
}

h1,
h2,
h3,
h4,
h5,
h6,
.np-display,
.np-title,
.np-stat-value,
.np-kicker {
  margin: 0;
  color: var(--np-color-text);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.np-site-shell {
  min-height: 100vh;
}

.np-site-frame,
.np-nav-inner,
.np-hero-inner,
.np-story-row,
.np-programs-shell,
.np-stats-shell,
.np-case-shell,
.np-team-shell,
.np-blog-shell,
.np-map-shell,
.np-footer-shell,
.np-page-shell,
.np-contact-shell,
.np-program-grid,
.np-about-grid,
.np-team-grid,
.np-registry-shell {
  width: var(--np-site-width);
  margin-inline: auto;
}

.np-surface {
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: var(--np-radius-card);
  box-shadow: var(--np-shadow-soft);
}

.np-slab {
  position: relative;
  padding-block: 80px;
}

.np-slab[data-np-tone="surface"] {
  background: var(--np-color-surface);
}

.np-slab[data-np-tone="background"] {
  background: var(--np-color-background);
}

.np-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--np-color-primary);
  font-size: 1.05rem;
}

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

.np-button,
.np-cta-button,
.np-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  box-shadow: var(--np-shadow-soft);
}

.np-button,
.np-cta-button {
  background: var(--np-color-accent);
  color: var(--np-color-surface);
}

.np-button:hover,
.np-cta-button:hover {
  background: var(--np-color-primary);
  color: var(--np-color-surface);
}

.np-button[data-np-style="secondary"],
.np-nav-action[data-np-style="secondary"],
.np-footer-cta[data-np-style="secondary"] {
  background: var(--np-color-secondary);
  color: var(--np-color-text);
}

.np-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 245, 240, 0.96);
  border-bottom: 1px solid var(--np-color-border);
  backdrop-filter: blur(14px);
}

.np-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.np-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--np-color-text);
}

.np-nav-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--np-color-primary);
  color: var(--np-color-surface);
  box-shadow: var(--np-shadow-soft);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.np-nav-brandtext strong,
.np-nav-brandtext span {
  display: block;
}

.np-nav-brandtext strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.np-nav-brandtext span {
  color: var(--np-color-text-light);
  font-size: 0.78rem;
  line-height: 1.4;
}

.np-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.np-nav-links a {
  position: relative;
  color: var(--np-color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.np-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--np-color-primary);
  transition: transform var(--np-transition);
}

.np-nav-links a:hover::after,
.np-nav-links a:focus-visible::after,
.np-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.np-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.np-nav-action {
  background: var(--np-color-primary);
  color: var(--np-color-surface);
}

.np-language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 999px;
  box-shadow: var(--np-shadow-soft);
}

.np-language-toggle button {
  min-width: 52px;
  padding: 8px 14px;
  background: transparent;
  color: var(--np-color-text-light);
}

.np-language-toggle button.is-active {
  background: var(--np-color-accent);
  color: var(--np-color-surface);
}

.np-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  color: var(--np-color-accent);
  box-shadow: var(--np-shadow-soft);
}

.np-nav-toggle-line,
.np-nav-toggle-line::before,
.np-nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--np-transition), opacity var(--np-transition);
  content: '';
}

.np-nav-toggle-line::before {
  transform: translateY(-6px);
}

.np-nav-toggle-line::after {
  transform: translateY(4px);
}

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

.np-nav.is-open .np-nav-toggle-line::before {
  transform: translateY(0);
  opacity: 0;
}

.np-nav.is-open .np-nav-toggle-line::after {
  transform: translateY(-2px) rotate(-90deg);
}

.np-hero {
  position: relative;
  overflow: clip;
  padding: 92px 0 80px;
}

.np-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--np-hero-overlay);
  z-index: 1;
}

.np-hero-media,
.np-hero-media img,
.np-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.np-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 32px;
  align-items: stretch;
}

.np-hero-stats,
.np-hero-story {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(61, 64, 91, 0.12);
}

.np-hero-stats {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
}

.np-hero-statgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.np-hero-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--np-color-text);
}

.np-stat-value {
  display: block;
  margin-bottom: 8px;
  color: var(--np-color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.np-stat-label {
  color: var(--np-color-text-light);
  font-size: 0.88rem;
}

.np-hero-story {
  display: grid;
  align-content: center;
  padding: 48px;
  min-height: 520px;
  text-align: center;
}

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

.np-hero-story h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  text-wrap: balance;
}

.np-hero-story p {
  max-width: 680px;
  margin: 18px auto 30px;
  font-size: 1.05rem;
}

.np-hero-story .np-cta-button {
  justify-self: center;
  min-width: min(280px, 100%);
  padding: 18px 34px;
  background: var(--np-color-accent);
  font-size: 1rem;
}

.np-ribbon-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.np-ribbon-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-ribbon-card strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--np-color-primary);
}

.np-ribbon-card span {
  color: var(--np-color-text-light);
  font-size: 0.85rem;
}

.np-story-row {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.np-story-row + .np-story-row {
  margin-top: 40px;
}

.np-story-row[data-np-flip="true"] .np-story-media {
  order: -1;
}

.np-story-copy,
.np-story-media {
  min-width: 0;
}

.np-story-copy {
  padding: 36px;
  border-radius: 28px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-story-copy h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.np-story-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}

.np-story-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(242, 160, 123, 0.14);
}

.np-story-points li::before {
  content: '•';
  color: var(--np-color-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.np-story-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--np-shadow-soft);
}

.np-story-media img,
.np-story-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-story-media::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px auto;
  width: 128px;
  height: 128px;
  border-radius: 30px;
  background: rgba(255, 245, 240, 0.35);
  backdrop-filter: blur(6px);
}

.np-programs-shell {
  display: grid;
  gap: 28px;
}

.np-programs-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.np-programs-head h2,
.np-stats-shell h2,
.np-case-shell h2,
.np-team-shell h2,
.np-blog-shell h2,
.np-map-shell h2,
.np-page-shell h1,
.np-page-shell h2,
.np-contact-shell h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.np-program-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 350px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--np-color-primary) transparent;
}

.np-program-track::-webkit-scrollbar {
  height: 8px;
}

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

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

.np-program-card:hover,
.np-case-card:hover,
.np-team-card:hover,
.np-blog-card:hover,
.np-cta-card:hover,
.np-location-card:hover,
.np-story-copy:hover,
.np-story-media:hover {
  transform: scale(1.02);
}

.np-program-figure {
  position: relative;
  min-height: 240px;
}

.np-program-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.np-program-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(61, 64, 91, 0.84);
  color: var(--np-color-surface);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-program-body {
  padding: 24px;
}

.np-program-body h3,
.np-case-body h3,
.np-blog-card h3,
.np-team-card h3,
.np-cta-card h3,
.np-location-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.np-program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.np-program-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.1);
  color: var(--np-color-primary);
  font-size: 0.82rem;
}

.np-stats-shell {
  display: grid;
  gap: 22px;
}

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

.np-stats-card {
  padding: 24px 18px;
  text-align: center;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 24px;
  box-shadow: var(--np-shadow-soft);
}

.np-stats-card .np-stat-value {
  margin-bottom: 10px;
}

.np-case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  overflow: hidden;
  border-radius: 28px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
}

.np-case-media {
  min-height: 100%;
}

.np-case-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.np-case-body {
  display: grid;
  gap: 18px;
  padding: 36px;
}

.np-case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.np-case-outcomes li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(61, 64, 91, 0.06);
}

.np-case-outcomes strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--np-color-primary);
  line-height: 1;
}

.np-team-shell {
  display: grid;
  gap: 26px;
}

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

.np-team-card {
  overflow: hidden;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 24px;
  box-shadow: var(--np-shadow-soft);
}

.np-team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.np-team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.np-team-body {
  padding: 18px 18px 22px;
}

.np-team-role {
  color: var(--np-color-text-light);
  font-size: 0.9rem;
}

.np-blog-shell {
  display: grid;
  gap: 28px;
}

.np-blog-carousel {
  position: relative;
  overflow: hidden;
}

.np-blog-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 20px;
  transition: transform 0.5s ease;
}

.np-blog-card {
  overflow: hidden;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 24px;
  box-shadow: var(--np-shadow-soft);
}

.np-blog-card img {
  width: 100%;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
}

.np-blog-body {
  padding: 24px;
}

.np-blog-meta {
  color: var(--np-color-text-light);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.np-blog-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

.np-blog-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 999px;
  box-shadow: var(--np-shadow-soft);
  color: var(--np-color-accent);
}

.np-map-shell {
  display: grid;
  gap: 24px;
}

.np-map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid var(--np-color-border);
  box-shadow: var(--np-shadow-soft);
  background:
    linear-gradient(rgba(61, 64, 91, 0.08), rgba(61, 64, 91, 0.08)),
    url('images/scene-3.jpg') center/cover no-repeat;
}

.np-map-frame iframe,
.np-map-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.np-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.np-location-card {
  padding: 22px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 22px;
  box-shadow: var(--np-shadow-soft);
}

.np-location-card address,
.np-contact-card address {
  color: var(--np-color-text-light);
  font-style: normal;
}

.np-footer-cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(242, 160, 123, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(61, 64, 91, 0.16), transparent 28%),
    var(--np-color-surface);
}

.np-footer-shell {
  display: grid;
  gap: 30px;
}

.np-footer-head {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.np-footer-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.np-footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.np-cta-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--np-color-background);
  border: 1px solid var(--np-color-border);
  border-radius: 24px;
  box-shadow: var(--np-shadow-soft);
}

.np-footer-cta {
  justify-self: start;
  padding: 12px 20px;
  background: var(--np-color-accent);
  color: var(--np-color-surface);
}

.np-site-footer {
  padding: 28px 0 36px;
  background: var(--np-color-accent);
  color: rgba(255, 255, 255, 0.82);
}

.np-site-footer a {
  color: #ffffff;
}

.np-site-footer-inner {
  width: var(--np-site-width);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.np-site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.np-page-hero,
.np-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    var(--np-hero-overlay),
    url('images/hero-2.jpg') center/cover no-repeat;
}

.np-page-shell,
.np-contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.np-page-hero h1,
.np-page-hero p,
.np-contact-hero h1,
.np-contact-hero p {
  color: var(--np-color-surface);
  max-width: 760px;
}

.np-page-hero h1,
.np-contact-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.np-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.np-about-panel,
.np-contact-card,
.np-registry-card {
  padding: 28px;
  background: var(--np-color-surface);
  border: 1px solid var(--np-color-border);
  border-radius: 24px;
  box-shadow: var(--np-shadow-soft);
}

.np-about-panel[data-np-photo="history"] {
  background:
    linear-gradient(rgba(61, 64, 91, 0.22), rgba(61, 64, 91, 0.22)),
    url('images/scene-1.jpg') center/cover no-repeat;
  color: var(--np-color-surface);
}

.np-about-panel[data-np-photo="mission"] {
  background:
    linear-gradient(rgba(224, 122, 95, 0.18), rgba(224, 122, 95, 0.18)),
    url('images/community-2.jpg') center/cover no-repeat;
}

.np-about-panel[data-np-photo="community"] {
  background:
    linear-gradient(rgba(242, 160, 123, 0.18), rgba(242, 160, 123, 0.18)),
    url('images/scene-2.jpg') center/cover no-repeat;
}

.np-about-panel[data-np-photo] {
  min-height: 360px;
  display: grid;
  align-content: end;
}

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

.np-program-grid .np-program-card {
  height: 100%;
}

.np-program-card[data-np-photo="community-1"] .np-program-figure {
  background: url('images/community-1.jpg') center/cover no-repeat;
}

.np-program-card[data-np-photo="community-2"] .np-program-figure {
  background: url('images/community-2.jpg') center/cover no-repeat;
}

.np-program-card[data-np-photo="scene-1"] .np-program-figure {
  background: url('images/scene-1.jpg') center/cover no-repeat;
}

.np-program-card[data-np-photo="scene-2"] .np-program-figure {
  background: url('images/scene-2.jpg') center/cover no-repeat;
}

.np-registry-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.np-registry-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--np-color-primary);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
}

.np-contact-shell {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.np-contact-visual {
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--np-shadow-soft);
}

.np-contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-contact-stack {
  display: grid;
  gap: 18px;
}

.np-contact-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.np-contact-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(224, 122, 95, 0.08);
}

.np-form-grid {
  display: grid;
  gap: 14px;
}

.np-form-grid input,
.np-form-grid textarea,
.np-form-grid select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--np-color-border);
  border-radius: 16px;
  background: var(--np-color-surface);
  color: var(--np-color-text);
  font: inherit;
}

.np-form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.np-form-grid input:focus,
.np-form-grid textarea:focus,
.np-form-grid select:focus {
  outline: 2px solid rgba(224, 122, 95, 0.2);
  border-color: var(--np-color-primary);
}

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

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

[data-np-lang] {
  display: none;
}

html[data-np-lang="ro"] [data-np-lang="ro"],
html[data-np-lang="en"] [data-np-lang="en"] {
  display: initial;
}

html[data-np-lang="ro"] [data-np-lang-block="ro"],
html[data-np-lang="en"] [data-np-lang-block="en"] {
  display: block;
}

html[data-np-lang="ro"] [data-np-lang-flex="ro"],
html[data-np-lang="en"] [data-np-lang-flex="en"] {
  display: flex;
}

html[data-np-lang="ro"] [data-np-lang-grid="ro"],
html[data-np-lang="en"] [data-np-lang-grid="en"] {
  display: grid;
}

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

@media (max-width: 1100px) {
  .np-hero-inner,
  .np-case-card,
  .np-contact-shell {
    grid-template-columns: 1fr;
  }

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

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

  .np-hero-story {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .np-nav-inner {
    flex-wrap: wrap;
    padding: 18px 0;
  }

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

  .np-nav-links,
  .np-nav-tools {
    width: 100%;
  }

  .np-nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--np-color-surface);
    border: 1px solid var(--np-color-border);
    border-radius: 24px;
    box-shadow: var(--np-shadow-soft);
  }

  .np-nav.is-open .np-nav-links {
    display: flex;
  }

  .np-nav-tools {
    display: none;
    justify-content: space-between;
  }

  .np-nav.is-open .np-nav-tools {
    display: flex;
  }

  .np-story-row,
  .np-about-grid,
  .np-program-grid {
    grid-template-columns: 1fr;
  }

  .np-story-row[data-np-flip="true"] .np-story-media {
    order: initial;
  }

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

@media (max-width: 640px) {
  .np-slab,
  .np-footer-cta-band,
  .np-page-hero,
  .np-contact-hero {
    padding-block: 64px;
  }

  .np-nav-brandtext strong {
    font-size: 1.35rem;
  }

  .np-hero {
    padding-top: 72px;
  }

  .np-hero-stats,
  .np-hero-story,
  .np-story-copy,
  .np-case-body,
  .np-about-panel,
  .np-contact-card,
  .np-registry-card {
    padding: 24px;
  }

  .np-hero-story h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .np-hero-statgrid,
  .np-stats-grid,
  .np-team-grid,
  .np-footer-cta-grid,
  .np-location-grid,
  .np-registry-shell,
  .np-ribbon-row,
  .np-case-outcomes {
    grid-template-columns: 1fr;
  }

  .np-program-track,
  .np-blog-track {
    grid-auto-columns: minmax(86vw, 86vw);
  }

  .np-programs-head,
  .np-site-footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .np-blog-controls {
    justify-content: flex-start;
  }
}
