:root {
  --nf-green-900: #0d4222;
  --nf-green-800: #146335;
  --nf-green-700: #1b8443;
  --nf-green-600: #239150;
  --nf-green-100: #e7f3eb;
  --nf-green-50: #f3f8f4;
  --nf-cream: #f6f3ec;
  --nf-paper: #fbfaf6;
  --nf-ink: #14241a;
  --nf-muted: #516057;
  --nf-line: #d7e3da;
  --nf-white: #ffffff;
  --nf-shadow: 0 18px 40px rgba(13, 66, 34, 0.08);
  --nf-max: 1180px;
  --nf-serif: "Gilda Display", "PT Serif", Georgia, serif;
  --nf-body: "PT Serif", Georgia, serif;
  --nf-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --nf-ease: 0.25s ease;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  color: var(--nf-ink);
  background: var(--nf-paper);
  font-family: var(--nf-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--nf-green-800); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--nf-green-900); }

h1, h2, h3, h4 {
  font-family: var(--nf-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nf-green-900);
  margin: 0 0 0.7em;
}

h1 { font-size: clamp(2.3rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }

.nf-wrap {
  width: min(var(--nf-max), calc(100% - 2.5rem));
  margin-inline: auto;
  min-width: 0;
}

.nf-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--nf-green-900);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.nf-skip:focus { left: 1rem; top: 1rem; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px; width: 1px;
}

.nf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nf-line);
  overflow: visible;
}

.nf-header-inner {
  width: min(var(--nf-max), calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nf-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--nf-green-900);
}

.nf-logo-mark {
  width: 14px;
  height: 36px;
  background: var(--nf-green-700);
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
}

.nf-logo-text {
  font-family: var(--nf-serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nf-logo-text em { font-style: normal; color: var(--nf-green-700); }

.nf-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  font-family: var(--nf-sans);
  font-weight: 500;
}

.nf-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  color: var(--nf-ink);
  text-decoration: none;
  line-height: 1;
}

.nf-nav-list > li.is-current > a,
.nf-nav-list > li > a:hover {
  color: var(--nf-green-800);
}

.nf-nav-cta {
  background: var(--nf-green-700);
  color: #fff !important;
  border-radius: 2px;
  margin-left: 0.4rem;
}
.nf-nav-cta:hover { background: var(--nf-green-900); }

.nf-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nf-nav-toggle-bars,
.nf-nav-toggle-bars::before,
.nf-nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nf-green-900);
  position: relative;
}
.nf-nav-toggle-bars::before,
.nf-nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nf-nav-toggle-bars::before { top: -7px; }
.nf-nav-toggle-bars::after { top: 7px; }

.nf-nav-overlay,
.nf-nav-drawer-head { display: none; }

.has-mega { position: static; }
.has-mega > a { gap: 0.32rem; }
@media (min-width: 901px) {
  .has-mega::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: min(var(--nf-max), calc(100% - 2.5rem));
    max-width: calc(100vw - 1.6rem);
    height: 1.4rem;
    margin-top: -0.85rem;
    transform: translateX(-50%);
    display: none;
    z-index: 91;
  }
  .has-mega:hover::after,
  .has-mega:focus-within::after,
  .has-mega.is-open::after { display: block; }
}
.nf-nav-chevron {
  display: inline-flex;
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.2s ease;
}
.nf-nav-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}
.has-mega:hover > a .nf-nav-chevron,
.has-mega:focus-within > a .nf-nav-chevron,
.has-mega.is-open > a .nf-nav-chevron {
  transform: rotate(180deg);
}
.nf-mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--nf-max), calc(100% - 2.5rem));
  max-width: calc(100vw - 1.6rem);
  background: #fff;
  border: 1px solid var(--nf-line);
  box-shadow: var(--nf-shadow);
  padding: 1.5rem 1.6rem 1.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}
.has-mega:hover .nf-mega,
.has-mega:focus-within .nf-mega,
.has-mega.is-open .nf-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nf-mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 0 2rem;
  align-items: start;
}
.nf-mega-fin ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0.05rem 1.2rem;
}
.nf-mega-side {
  display: grid;
  gap: 1rem;
  padding-left: 1.8rem;
  border-left: 1px solid var(--nf-line);
  min-width: 0;
  align-content: start;
}
.nf-mega-label {
  font-family: var(--nf-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nf-green-700);
  margin: 0 0 0.7rem;
}
.nf-mega ul { list-style: none; margin: 0; padding: 0; }
.nf-mega-col ul a {
  display: flex;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0.45rem;
  border-radius: 2px;
  min-width: 0;
}
.nf-mega-col ul a > span:last-child {
  min-width: 0;
  flex: 1;
}
.nf-mega-col ul a:hover { background: var(--nf-green-50); }
.nf-mega strong {
  display: block;
  font-family: var(--nf-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--nf-green-900);
  line-height: 1.3;
  overflow-wrap: break-word;
}
.nf-mega em {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--nf-muted);
  line-height: 1.4;
  margin-top: 0.15rem;
  overflow: hidden;
}
.nf-mega-icon {
  flex: 0 0 24px;
  color: var(--nf-green-700);
  margin-top: 0.12rem;
}
.nf-mega-icon svg { width: 24px; height: 24px; }
.nf-mega-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--nf-line);
}
.nf-mega-all {
  font-family: var(--nf-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--nf-green-800);
  text-decoration: none;
}
.nf-mega-all:hover { color: var(--nf-green-900); }

.nf-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--nf-green-900) var(--nf-hero-image) center/cover no-repeat;
}
.nf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,66,34,0.88) 8%, rgba(13,66,34,0.55) 52%, rgba(13,66,34,0.22) 100%);
}
.nf-hero-grid {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
  max-width: 820px;
}
.nf-hero h1 { color: #fff; max-width: none; }
.nf-lede {
  font-size: 1.12rem;
  max-width: 46rem;
  color: inherit;
  opacity: 0.94;
}
.nf-eyebrow {
  font-family: var(--nf-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nf-green-600);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.nf-hero .nf-eyebrow { color: #cfe7d6; }
.nf-hero-trust {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 36rem;
  border-left: 2px solid var(--nf-green-700);
  padding-left: 1rem;
  margin-top: 1.6rem;
}
.nf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
}
.nf-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  color: var(--nf-paper);
  z-index: 2;
}
.nf-wave svg { display: block; width: 100%; height: 70px; }

.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  font-family: var(--nf-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--nf-ease);
}
.nf-btn-primary {
  background: var(--nf-green-700);
  color: #fff;
}
.nf-btn-primary:hover { background: var(--nf-green-900); color: #fff; }
.nf-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.nf-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nf-btn-ghost-dark {
  background: transparent;
  color: var(--nf-green-900);
  border-color: var(--nf-green-900);
}
.nf-btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.nf-btn-light {
  background: #fff;
  color: var(--nf-green-900);
}
.nf-btn-light:hover { background: var(--nf-cream); color: var(--nf-green-900); }

.nf-strip {
  background: var(--nf-green-900);
  color: #e7f3eb;
  padding: 1.6rem 0;
}
.nf-strip-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.nf-strip p { margin: 0; }
.nf-strip p:first-child {
  font-family: var(--nf-serif);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.3;
}

.nf-section { padding: 5rem 0; }
.nf-section-alt { background: var(--nf-cream); }
.nf-section-dark { background: var(--nf-ink); color: #e8eee9; }
.nf-section-dark h2, .nf-section-dark h3 { color: #fff; }
.nf-section-green { background: var(--nf-green-900); color: #e8f3eb; }
.nf-section-green h2, .nf-section-green h3, .nf-section-head.light h2 { color: #fff; }
.nf-section-head { max-width: none; margin-bottom: 2.4rem; }
.nf-section-head.light .nf-eyebrow { color: #b7d7c2; }

.nf-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.nf-prose,
.nf-prose p { color: var(--nf-ink); }
.nf-section-head h2 { color: var(--nf-green-900); }
.nf-prose-wide { max-width: 46rem; margin-inline: auto; }
.nf-prose p + p { margin-top: 1rem; }
.nf-prose h2 { margin-top: 2rem; }

.nf-challenge-grid,
.nf-service-grid,
.nf-why-grid,
.nf-who-grid,
.nf-card-grid,
.nf-feature-grid,
.nf-insight-grid {
  display: grid;
  gap: 1.1rem;
}
.nf-challenge-grid,
.nf-why-grid,
.nf-card-grid { grid-template-columns: repeat(3, 1fr); }
.nf-service-grid { grid-template-columns: repeat(4, 1fr); }
.nf-service-grid-compact { grid-template-columns: repeat(3, 1fr); }
.nf-who-grid, .nf-feature-grid, .nf-insight-grid { grid-template-columns: repeat(2, 1fr); }

.nf-challenge,
.nf-why-grid article,
.nf-card-grid article,
.nf-who-grid article,
.nf-feature {
  background: #fff;
  border: 1px solid var(--nf-line);
  padding: 1.35rem 1.3rem 1.2rem;
  box-shadow: 0 1px 0 rgba(13,66,34,0.03);
}
.nf-section-alt .nf-challenge,
.nf-section-alt .nf-why-grid article { background: var(--nf-paper); }
.nf-feature { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: #dce8e0; }
.nf-feature h3 { color: #fff; }
.nf-feature a, .nf-challenge a { font-family: var(--nf-sans); font-weight: 600; font-size: 0.9rem; }

.nf-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--nf-line);
  padding: 1.4rem 1.25rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--nf-ease), box-shadow var(--nf-ease), border-color var(--nf-ease);
}
.nf-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nf-shadow);
  border-color: var(--nf-green-700);
  color: inherit;
}
.nf-card-icon {
  width: 36px;
  color: var(--nf-green-700);
  margin-bottom: 1rem;
}
.nf-card-icon svg { width: 36px; height: 36px; }
.nf-service-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.nf-service-card p {
  color: var(--nf-muted);
  font-size: 0.95rem;
  flex: 1;
}
.nf-card-link {
  font-family: var(--nf-sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--nf-green-800);
  margin-top: 0.8rem;
}

.nf-center-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--nf-muted);
}

.nf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.nf-steps li {
  counter-increment: step;
  padding-top: 0.4rem;
  border-top: 2px solid var(--nf-green-700);
}
.nf-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--nf-serif);
  font-size: 1.6rem;
  color: var(--nf-green-700);
  margin-bottom: 0.5rem;
}
.nf-service .nf-steps,
.nf-layout-editorial .nf-steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.nf-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2rem;
}
.nf-outcomes li {
  padding-left: 1.1rem;
  position: relative;
}
.nf-outcomes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--nf-green-600);
}

.nf-founder {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  align-items: center;
}
.nf-founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(18%);
}

.nf-insight-card {
  background: #fff;
  border: 1px solid var(--nf-line);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.nf-insight-card-media {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--nf-green-900);
}
.nf-insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--nf-ease);
}
.nf-insight-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,66,34,0.12), rgba(13,66,34,0.38));
  pointer-events: none;
}
.nf-insight-card:hover .nf-insight-card-media img { transform: scale(1.03); }
.nf-insight-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.nf-insight-card-body p:not(.nf-meta) { color: var(--nf-muted); flex: 1; }
.nf-insight-card h2, .nf-insight-card h3 { font-size: 1.35rem; margin: 0.45rem 0 0.7rem; }
.nf-insight-card a { text-decoration: none; color: inherit; }
.nf-insight-card a:hover { color: var(--nf-green-800); }
.nf-meta {
  font-family: var(--nf-sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--nf-muted);
  text-transform: uppercase;
}

.nf-faq { max-width: 48rem; }
.nf-faq details {
  border-bottom: 1px solid var(--nf-line);
  padding: 0.9rem 0;
}
.nf-faq summary {
  cursor: pointer;
  font-family: var(--nf-sans);
  font-weight: 600;
  color: var(--nf-green-900);
  list-style: none;
}
.nf-faq summary::-webkit-details-marker { display: none; }
.nf-faq summary::after {
  content: "+";
  float: right;
  color: var(--nf-green-700);
  font-weight: 400;
}
.nf-faq details[open] summary::after { content: "–"; }
.nf-faq p { margin: 0.7rem 0 0.2rem; color: var(--nf-muted); }

.nf-cta-band {
  background: var(--nf-green-800);
  color: #fff;
  padding: 3.5rem 0;
}
.nf-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.nf-cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.nf-cta-band p { margin: 0; max-width: 38rem; opacity: 0.92; }

.nf-page-hero {
  position: relative;
  color: #fff;
  padding: 6.5rem 0 3.5rem;
  overflow: hidden;
  background: var(--nf-green-900);
  width: 100%;
}
.nf-page-hero-compact { padding: 5.5rem 0 2.8rem; }
.nf-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}
.nf-page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,66,34,0.92), rgba(13,66,34,0.55));
}
.nf-page-hero .nf-wrap { position: relative; z-index: 1; }
.nf-page-hero h1 { color: #fff; max-width: none; }
.nf-hero-intro { max-width: 46rem; opacity: 0.92; }
.nf-crumbs {
  font-family: var(--nf-sans);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}
.nf-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.nf-crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; opacity: 0.6; }
.nf-crumbs a { color: #d5eadb; text-decoration: none; }
.nf-page-hero .nf-lede { color: #eef6f0; }

.nf-plain-list {
  columns: 2;
  gap: 2rem;
  margin: 1.2rem 0 0;
}
.nf-plain-list li { break-inside: avoid; margin-bottom: 0.45rem; }

.nf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.nf-chips li {
  font-family: var(--nf-sans);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--nf-green-700);
  color: var(--nf-green-800);
  padding: 0.42rem 0.8rem;
}
.nf-section-green .nf-chips li {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.nf-subblock {
  margin-top: 1.6rem;
  max-width: 46rem;
}
.nf-subblock h3 {
  font-size: 1.22rem;
  margin-bottom: 0.4rem;
}
.nf-subblock .nf-plain-list {
  columns: 1;
  margin-top: 0.7rem;
}
.nf-service-photo {
  margin: 0;
}
.nf-service-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background: var(--nf-green-50);
}
.nf-card-grid-numbered {
  counter-reset: nf-card;
}
.nf-card-grid-numbered article {
  counter-increment: nf-card;
}
.nf-card-grid-numbered article h3::before {
  content: counter(nf-card, decimal-leading-zero);
  display: block;
  font-family: var(--nf-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--nf-green-700);
  margin-bottom: 0.45rem;
}
.nf-section-green .nf-prose p { color: #e8f3eb; }
.nf-section-green .nf-why-grid article h3,
.nf-section-green .nf-card-grid article h3 {
  color: var(--nf-green-900);
}
.nf-section-green .nf-why-grid article p,
.nf-section-green .nf-card-grid article p {
  color: var(--nf-muted);
}
.nf-cta-band-mid {
  padding: 3.2rem 0;
}

.nf-contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 3rem;
}
.nf-contact-aside {
  background: var(--nf-cream);
  padding: 1.6rem;
  height: fit-content;
}
.nf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.nf-form label span {
  display: block;
  font-family: var(--nf-sans);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.nf-form input,
.nf-form select,
.nf-form textarea {
  width: 100%;
  border: 1px solid var(--nf-line);
  background: #fff;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: inherit;
  border-radius: 2px;
}
.nf-form input:focus,
.nf-form select:focus,
.nf-form textarea:focus {
  outline: 2px solid var(--nf-green-700);
  outline-offset: 1px;
}
.nf-span-2 { grid-column: span 2; }
.nf-hp { position: absolute; left: -9999px; }
.nf-form-note { font-size: 0.9rem; color: var(--nf-muted); margin-top: 1rem; }
.nf-form-success {
  background: var(--nf-green-100);
  border: 1px solid var(--nf-green-700);
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
}
.nf-form button { margin-top: 0.4rem; }

.nf-footer {
  background: #000;
  color: #d7e6db;
  padding-top: 3.5rem;
}
.nf-footer a { color: #fff; text-decoration: none; }
.nf-footer a:hover { text-decoration: underline; }
.nf-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.nf-footer-brand p { max-width: 22rem; }
.nf-logo-light { color: #fff; }
.nf-logo-light .nf-logo-text em { color: #9ad0ad; }
.nf-footer-label {
  font-family: var(--nf-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ad0ad;
  margin: 0 0 0.8rem;
}
.nf-footer ul { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.nf-footer li { margin: 0 0 0.35rem; }
.nf-footer address { font-style: normal; margin-bottom: 0.8rem; }
.nf-footer-base {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0;
  font-size: 0.88rem;
}

.nf-reveal {
  animation: nfUp 0.55s ease both;
}
@keyframes nfUp {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nf-reveal, .nf-service-card { animation: none; transform: none; opacity: 1; }
  .nf-insight-card:hover .nf-insight-card-media img { transform: none; }
  .nf-nav-chevron { transition: none; }
  .nf-nav,
  .nf-nav-overlay { transition: none; }
}

@media (max-width: 1100px) {
  .nf-service-grid { grid-template-columns: repeat(2, 1fr); }
  .nf-steps { grid-template-columns: repeat(2, 1fr); }
  .nf-footer-grid { grid-template-columns: 1fr 1fr; }
  .nf-mega-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr); }
}

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .nf-nav-toggle { display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 122; }
  .nf-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(13, 66, 34, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 110;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  body.nav-open .nf-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nf-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(20.5rem, 86vw);
    height: 100dvh;
    background: var(--nf-paper);
    border-bottom: 0;
    padding: 0.85rem 1.2rem 1.5rem;
    overflow: auto;
    z-index: 120;
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
    box-shadow: none;
  }
  body.nav-open .nf-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: 12px 0 40px rgba(13, 66, 34, 0.14);
  }
  .nf-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin: 0 0 0.6rem;
    padding: 0.15rem 0 0.85rem;
    border-bottom: 1px solid var(--nf-line);
  }
  .nf-nav-drawer-title {
    font-family: var(--nf-serif);
    font-size: 1.2rem;
    color: var(--nf-green-900);
    letter-spacing: 0.01em;
  }
  .nf-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: -0.45rem;
    border: 0;
    background: transparent;
    color: var(--nf-green-900);
    cursor: pointer;
    flex-shrink: 0;
  }
  .nf-nav-close svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .nf-mega em { display: none; }
  .nf-nav-list { display: block; }
  .has-mega { position: relative; }
  .has-mega > a { width: 100%; justify-content: space-between; }
  .has-mega::after { content: none; display: none; }
  .nf-mega {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0.15rem 0 0.6rem 0.4rem;
    background: transparent;
  }
  .has-mega.is-open .nf-mega { display: block; }
  .nf-mega-inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .nf-mega-fin ul {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
  .nf-mega-side {
    padding-left: 0;
    border-left: 0;
    gap: 0.85rem;
  }
  .nf-mega-foot {
    justify-content: flex-start;
    margin-top: 0.4rem;
    padding-top: 0.5rem;
  }
  .nf-nav-cta { display: inline-block; margin: 0.6rem 0 0; }
  .nf-split,
  .nf-strip-inner,
  .nf-founder,
  .nf-cta-inner,
  .nf-contact-grid,
  .nf-challenge-grid,
  .nf-why-grid,
  .nf-who-grid,
  .nf-card-grid,
  .nf-feature-grid,
  .nf-insight-grid { grid-template-columns: 1fr; }
  .nf-plain-list { columns: 1; }
  .nf-hero { min-height: 78vh; }
  .nf-hero-grid { padding-top: 6rem; margin-left: 1.25rem; margin-right: 1.25rem; }
  .nf-section { padding: 3.4rem 0; }
}

@media (max-width: 640px) {
  .nf-service-grid,
  .nf-service-grid-compact,
  .nf-outcomes,
  .nf-form-grid { grid-template-columns: 1fr; }
  .nf-span-2 { grid-column: auto; }
  .nf-footer-grid { grid-template-columns: 1fr; }
  .nf-hero h1, .nf-page-hero h1 { max-width: none; }
  .nf-wrap,
  .nf-header-inner { width: calc(100% - 1.6rem); }
}
