/*
Nespher Investments — brand layer
Loaded after style.css. Overrides the Organic template and adds the
cold-chain components the trade catalogue is built from.

Brand greens sampled from the supplied logo artwork:
  #00A854  wordmark green
  #184830  device / "INVESTMENTS" forest
--------------------------------------------------------------- */

:root {
  --n-green:      #00A854;   /* brand, sampled from the logo — accents and large fills */
  --n-green-deep: #00803A;   /* button fills: white text clears 4.5:1 */
  --n-green-600:  #006F30;   /* links and small text on light grounds */
  --n-green-300:  #5CC98C;   /* on the forest ground */
  --n-forest:     #184830;
  --n-forest-900: #0B2A1A;
  --n-frost:      #E7F1EA;
  --n-frost-deep: #CFE3D7;
  --n-page:       #F6F8F5;
  --n-ink:        #0B1F14;
  --n-body:       #3D5147;
  --n-ochre:      #C98A2E;
  --n-ochre-soft: #F5E9D2;
  --n-muted:      #5E6D64;   /* label / caption grey at 5.4:1 on white */
  --n-line:       rgba(24, 72, 48, .16);
  --n-line-soft:  rgba(24, 72, 48, .09);

  --n-display: "Archivo", "Arial Narrow", Helvetica, sans-serif;
  --n-text:    "Source Serif 4", Georgia, "Times New Roman", serif;

  --n-shell:  1240px;
  --n-gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------------------------------------------------------------
   1. Base — retune the template's Bootstrap variables
--------------------------------------------------------------- */

body {
  --heading-font: var(--n-display);
  --bs-font-sans-serif: var(--n-text);
  --bs-body-font-family: var(--n-text);
  --bs-body-font-size: 1.0625rem;
  --bs-body-line-height: 1.7;
  --bs-body-color: var(--n-body);

  --bs-primary: var(--n-green);
  --bs-primary-rgb: 0, 168, 84;
  --bs-secondary: var(--n-forest);
  --bs-secondary-rgb: 24, 72, 48;
  --bs-success: var(--n-green-600);
  --bs-success-rgb: 0, 145, 63;
  --bs-danger: #B5451B;
  --bs-danger-rgb: 181, 69, 27;
  --bs-warning: var(--n-ochre);
  --bs-warning-rgb: 201, 138, 46;

  --bs-light-rgb: 246, 248, 245;
  --bs-primary-bg-subtle: var(--n-frost);
  --bs-success-bg-subtle: var(--n-frost);
  --bs-border-color: var(--n-line-soft);

  --bs-link-color: var(--n-forest);
  --bs-link-hover-color: var(--n-green-600);
  --bs-link-color-rgb: 24, 72, 48;
  --bs-link-hover-color-rgb: 0, 145, 63;

  background-color: #fff;
  color: var(--n-body);
  font-family: var(--n-text);
  -webkit-font-smoothing: antialiased;
}

/* Type scale — Archivo for anything structural, serif for prose */
h1, h2, h3, h4, h5, h6,
.n-display {
  font-family: var(--n-display);
  color: var(--n-ink);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.08;
}

.n-h1 { font-size: clamp(2.6rem, 6.2vw, 4.5rem); font-weight: 800; letter-spacing: -.032em; }
.n-h2 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -.026em; }
.n-h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem);  font-weight: 700; letter-spacing: -.018em; }
.n-h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }

/* the logo's wordmark is a slanted heavy grotesk — borrow it for emphasis */
.n-slant {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.035em;
}

.n-lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.66;
  max-width: 62ch;
}

.n-prose { max-width: 68ch; }
.n-prose p + p { margin-top: 1.1em; }

.n-measure-short { max-width: 46ch; }

.n-green    { color: var(--n-green-deep); }   /* text needs the deeper green */
.n-forest-t { color: var(--n-forest); }
.n-ochre-t  { color: var(--n-ochre); }

/* small structural text: the one place a compact sans is right */
.n-meta {
  font-family: var(--n-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: var(--n-forest);
}

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

/* the header is sticky, so anchored sections need room above them */
[id]:target,
section[id] { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.n-section    { padding-block: clamp(3.5rem, 7vw, 6rem); }
.n-section-sm { padding-block: clamp(2.5rem, 4.5vw, 3.75rem); }
.n-frost-bg   { background: var(--n-frost); }
.n-page-bg    { background: var(--n-page); }
.n-forest-bg  { background: var(--n-forest-900); color: rgba(255,255,255,.82); }
.n-forest-bg h1, .n-forest-bg h2, .n-forest-bg h3,
.n-forest-bg h4, .n-forest-bg h5 { color: #fff; }

/* ---------------------------------------------------------------
   2. The leaf marker — the logo's four petals as a section rule
--------------------------------------------------------------- */

.n-marker {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.n-marker::before {
  content: "";
  width: 30px;
  height: 15px;
  flex: none;
  background: url("../images/favicon.png") center/contain no-repeat;
}
.n-marker span {
  font-family: var(--n-display);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--n-forest);
}
.n-forest-bg .n-marker span { color: var(--n-green-300); }
.n-forest-bg .n-marker::before { filter: brightness(0) invert(1) opacity(.85); }

.n-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.n-section-head > div:first-child { max-width: 58ch; }

/* ---------------------------------------------------------------
   3. Oval frame — the logo's loop, used to hold photography
--------------------------------------------------------------- */

.n-oval {
  position: relative;
  display: block;
}
.n-oval > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 52% 50% 50% / 50%;
}
/* the encircling line, offset the way it is in the mark */
.n-oval::after {
  content: "";
  position: absolute;
  inset: -14px -22px -14px -8px;
  border: 2px solid var(--n-green);
  border-radius: 48% 52% 50% 50% / 50%;
  pointer-events: none;
}
.n-oval.n-oval--light::after { border-color: rgba(255,255,255,.5); }

/* away from the hero the oval sits landscape, as it does in the mark */
.n-oval:not(.n-oval--light) > img { aspect-ratio: 5 / 4; }
.n-oval:not(.n-oval--light)::after { inset: -16px -24px -16px -10px; border-width: 1px; }

.n-round > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ---------------------------------------------------------------
   4. Top bar + header
--------------------------------------------------------------- */

.n-topbar {
  background: var(--n-forest);
  color: rgba(255,255,255,.8);
  font-family: var(--n-display);
  font-size: .8125rem;
  font-weight: 500;
}
.n-topbar .n-shell {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  padding-block: .6rem;
}
.n-topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.n-topbar a { color: rgba(255,255,255,.8); text-decoration: none; }
.n-topbar a:hover { color: #fff; }
.n-topbar svg { vertical-align: -3px; margin-right: .4rem; color: var(--n-green-300); }

.n-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--n-line-soft);
}
.n-header .n-shell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .85rem;
}
.n-logo { flex: none; }
.n-logo img { display: block; height: 52px; width: auto; }

.n-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
}
.n-nav a {
  font-family: var(--n-display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--n-forest);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.n-nav a:hover,
.n-nav a[aria-current="page"] {
  color: var(--n-green-600);
  border-bottom-color: var(--n-green);
}
.n-header-cta { flex: none; }
.n-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--n-line);
  border-radius: 6px;
  padding: .5rem .6rem;
  color: var(--n-forest);
}

@media (max-width: 991.98px) {
  .n-nav, .n-header-cta { display: none; }
  .n-burger { display: inline-flex; }
  .n-logo img { height: 42px; }
}

/* offcanvas nav */
.n-offcanvas-nav { list-style: none; margin: 0; padding: 0; }
.n-offcanvas-nav a {
  display: block;
  font-family: var(--n-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--n-forest);
  text-decoration: none;
  padding: .8rem 0;
  border-bottom: 1px solid var(--n-line-soft);
}
.n-offcanvas-nav a:hover { color: var(--n-green-600); }

/* ---------------------------------------------------------------
   5. Buttons
--------------------------------------------------------------- */

.n-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--n-display);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -.005em;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.n-btn--green { background: var(--n-green-deep); color: #fff; }
.n-btn--green:hover { background: var(--n-forest); color: #fff; }
.n-btn--forest { background: var(--n-forest); color: #fff; }
.n-btn--forest:hover { background: var(--n-green-deep); color: #fff; }
.n-btn--ghost { border-color: var(--n-line); color: var(--n-forest); background: transparent; }
.n-btn--ghost:hover { border-color: var(--n-forest); background: var(--n-forest); color: #fff; }
.n-btn--light { border-color: rgba(255,255,255,.45); color: #fff; background: transparent; }
.n-btn--light:hover { background: #fff; color: var(--n-forest); border-color: #fff; }
.n-btn--sm { padding: .55rem 1.1rem; font-size: .875rem; }
.n-btn--block { width: 100%; }

.n-textlink {
  font-family: var(--n-display);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--n-green-600);
  text-decoration: none;
  border-bottom: 2px solid var(--n-frost-deep);
  padding-bottom: 2px;
}
.n-textlink:hover { color: var(--n-forest); border-bottom-color: var(--n-green); }

/* ---------------------------------------------------------------
   6. Hero — forest ground, oval image, temperature spine
--------------------------------------------------------------- */

.n-hero {
  position: relative;
  background: var(--n-forest-900);
  color: rgba(255,255,255,.8);
  overflow: hidden;
}
.n-hero::before {
  /* a cold bloom behind the produce, not a decorative gradient wash */
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,84,.24), transparent 62%);
  pointer-events: none;
}
.n-hero > .n-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.n-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.n-hero p { color: rgba(255,255,255,.76); }
.n-hero-tagline {
  display: block;
  height: 34px;
  width: auto;
  max-width: 380px;
  margin-bottom: 1.9rem;
}
.n-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }
.n-hero-media { position: relative; }
.n-hero-media { max-width: 400px; margin-left: auto; }
.n-hero-media .n-oval > img { aspect-ratio: 4 / 5; }
.n-hero-media .n-oval::after {
  inset: -18px -26px -18px -10px;
  border-width: 1px;
  border-color: rgba(255,255,255,.38);
}

/* On one column the headline leads; the photograph follows it as a wide oval.
   A full-bleed image above the copy would open the page with no words on it. */
@media (max-width: 900px) {
  .n-hero > .n-shell { grid-template-columns: 1fr; }
  .n-hero-media {
    order: 0;
    max-width: 100%;
    margin: .75rem 0 0;
  }
  .n-hero-media .n-oval > img { aspect-ratio: 4 / 3; }
  .n-hero-media .n-oval::after { inset: -10px -14px -10px -6px; }
}

/* The cold chain, stated as fact. Also the anchor nav into the range. */
.n-spine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}
.n-spine-stop {
  position: relative;
  padding: 1.4rem 1.25rem 1.5rem;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  border-right: 1px solid rgba(255,255,255,.13);
  transition: background-color .2s ease;
}
.n-spine-stop:last-child { border-right: 0; }
.n-spine-stop:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.9); }
/* the tick mark on the temperature axis */
.n-spine-stop::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.25rem;
  width: 34px;
  height: 3px;
  background: var(--n-green);
}
.n-spine-temp {
  display: block;
  font-family: var(--n-text);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}
.n-spine-label {
  display: block;
  font-family: var(--n-display);
  font-size: .875rem;
  font-weight: 700;
  color: var(--n-green-300);
  margin-bottom: .2rem;
}
.n-spine-note { display: block; font-size: .875rem; line-height: 1.45; }

@media (max-width: 700px) {
  .n-spine { grid-template-columns: 1fr; }
  .n-spine-stop { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .n-spine-stop:last-child { border-bottom: 0; }
}

/* ---------------------------------------------------------------
   7. Temperature badge — the site's core unit of information
--------------------------------------------------------------- */

.n-temp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--n-display);
  font-size: .75rem;
  font-weight: 700;
  padding: .28rem .6rem;
  border-radius: 4px;
  white-space: nowrap;
}
.n-temp::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.n-temp--frozen  { background: #E3EEF5; color: #14566E; }
.n-temp--chilled { background: var(--n-frost); color: var(--n-green-600); }
.n-temp--ambient { background: var(--n-ochre-soft); color: #8A5A12; }

/* ---------------------------------------------------------------
   8. Range cards — the four product divisions
--------------------------------------------------------------- */

.n-range {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.n-range-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--n-line-soft);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.n-range-card:hover { border-color: var(--n-green); transform: translateY(-3px); }
.n-range-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--n-frost);
}
.n-range-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.n-range-card:hover .n-range-figure img { transform: scale(1.04); }
.n-range-figure .n-temp { position: absolute; top: .75rem; left: .75rem; }
.n-range-body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.n-range-body h3 { font-size: 1.2rem; margin: 0 0 .45rem; }
.n-range-body p { font-size: .9375rem; line-height: 1.6; margin: 0 0 1rem; }
.n-range-lines {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-family: var(--n-display);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--n-body);
}
.n-range-lines li {
  padding: .4rem 0;
  border-top: 1px solid var(--n-line-soft);
}
.n-range-body .n-textlink { margin-top: auto; align-self: start; }

/* ---------------------------------------------------------------
   9. Spec cards — the trade catalogue. Pack format, not price.
--------------------------------------------------------------- */

.n-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.n-spec {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--n-line-soft);
  border-radius: 3px;
  overflow: hidden;
}
.n-spec:hover { border-color: var(--n-frost-deep); }
.n-spec-figure {
  aspect-ratio: 1;
  background: var(--n-page);
  overflow: hidden;
}
.n-spec-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.n-spec-body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.n-spec-body h3 { font-size: .9375rem; font-weight: 700; margin: 0; line-height: 1.3; }
.n-spec-dl {
  margin: 0;
  font-family: var(--n-display);
  font-size: .8125rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .15rem .6rem;
}
.n-spec-dl dt { color: var(--n-muted); font-weight: 500; }
.n-spec-dl dd { margin: 0; color: var(--n-forest); font-weight: 600; text-align: right; }
.n-spec-foot { margin-top: auto; padding-top: .3rem; }

/* ---------------------------------------------------------------
   10. Values, stats, sectors
--------------------------------------------------------------- */

.n-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0; }
.n-value {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-top: 2px solid var(--n-forest);
  margin-right: 1.5rem;
}
.n-value h3 { font-size: 1.0625rem; margin: 0 0 .5rem; }
.n-value p { font-size: .9375rem; line-height: 1.6; margin: 0; }
.n-value-icon { color: var(--n-green); margin-bottom: .9rem; display: block; }

.n-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--n-line);
}
.n-stat { background: #fff; padding: 1.75rem 1.5rem; }
.n-split .n-stats { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 420px) { .n-split .n-stats { grid-template-columns: 1fr; } }
.n-forest-bg .n-stats { background: rgba(255,255,255,.16); }
.n-forest-bg .n-stat { background: var(--n-forest-900); }
.n-stat-figure {
  display: block;
  font-family: var(--n-text);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--n-forest);
  margin-bottom: .55rem;
}
.n-forest-bg .n-stat-figure { color: #fff; }
.n-stat-label { font-family: var(--n-display); font-size: .875rem; font-weight: 500; line-height: 1.4; display: block; }

.n-sectors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
/* explicit column counts so rows fill evenly for a known number of tiles */
.n-sectors--3 { grid-template-columns: repeat(3, 1fr); }
.n-sectors--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .n-sectors--3, .n-sectors--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .n-sectors--3, .n-sectors--4 { grid-template-columns: 1fr; } }
.n-sector {
  background: #fff;
  border: 1px solid var(--n-line-soft);
  border-left: 3px solid var(--n-green);
  padding: 1.35rem 1.4rem;
}
.n-sector h3 { font-size: 1rem; margin: 0 0 .4rem; }
.n-sector p { font-size: .9rem; line-height: 1.55; margin: 0; }

/* ---------------------------------------------------------------
   11. Quotes — monogram, not stock portraits
--------------------------------------------------------------- */

.n-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.n-quote {
  background: #fff;
  border: 1px solid var(--n-line-soft);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.n-quote blockquote {
  margin: 0 0 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--n-ink);
}
.n-quote-by { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.n-monogram {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--n-frost);
  color: var(--n-forest);
  font-family: var(--n-display);
  font-weight: 800;
  font-size: .9375rem;
  display: grid;
  place-items: center;
  letter-spacing: -.02em;
}
.n-quote-by strong { display: block; font-family: var(--n-display); font-size: .9375rem; color: var(--n-ink); }
.n-quote-by span { font-size: .875rem; }

/* ---------------------------------------------------------------
   12. Split feature blocks
--------------------------------------------------------------- */

.n-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.n-split--wide-text { grid-template-columns: 1.2fr .8fr; }
.n-split--top { align-items: start; }
@media (max-width: 860px) {
  .n-split, .n-split--wide-text { grid-template-columns: 1fr; }
}

.n-figure-plain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.n-figure-plain figcaption {
  font-family: var(--n-display);
  font-size: .8125rem;
  color: var(--n-muted);
  padding-top: .7rem;
}

/* a numbered sequence — used only where the content really is a sequence */
.n-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.n-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--n-line-soft);
}
.n-steps li::before {
  content: counter(step);
  font-family: var(--n-text);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--n-green);
  line-height: 1.1;
}
.n-steps h3 { font-size: 1.0625rem; margin: 0 0 .35rem; }
.n-steps p { margin: 0; font-size: .9375rem; line-height: 1.6; }

/* ---------------------------------------------------------------
   13. Insight cards
--------------------------------------------------------------- */

.n-insights { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.n-insight { display: flex; flex-direction: column; text-decoration: none; }
.n-insight-figure { aspect-ratio: 16 / 10; overflow: hidden; background: var(--n-frost); margin-bottom: 1rem; }
.n-insight-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.n-insight:hover .n-insight-figure img { transform: scale(1.04); }
.n-insight h3 { font-size: 1.125rem; margin: .35rem 0 .5rem; }
.n-insight:hover h3 { color: var(--n-green-600); }
.n-insight p { font-size: .9375rem; line-height: 1.6; margin: 0; }

/* ---------------------------------------------------------------
   14. CTA band
--------------------------------------------------------------- */

.n-cta {
  background: var(--n-green);
  color: #0B2A1A;
}
.n-cta .n-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
.n-cta h2 { color: var(--n-forest-900); font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 .5rem; }
.n-cta p { color: var(--n-forest-900); margin: 0; max-width: 52ch; }
.n-cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.n-cta .n-btn--light {
  border-color: var(--n-forest-900);
  color: var(--n-forest-900);
}
.n-cta .n-btn--light:hover { background: var(--n-forest-900); color: #fff; border-color: var(--n-forest-900); }

/* ---------------------------------------------------------------
   15. Forms
--------------------------------------------------------------- */

.n-field { margin-bottom: 1.1rem; }
.n-field label {
  display: block;
  font-family: var(--n-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--n-forest);
  margin-bottom: .4rem;
}
.n-field .n-req { color: var(--n-green-600); }
.n-input {
  width: 100%;
  font-family: var(--n-text);
  font-size: 1rem;
  color: var(--n-ink);
  background: #fff;
  border: 1px solid var(--n-line);
  border-radius: 2px;
  padding: .75rem .9rem;
}
.n-input:focus {
  outline: none;
  border-color: var(--n-green);
  box-shadow: 0 0 0 3px rgba(0,168,84,.16);
}
textarea.n-input { min-height: 140px; resize: vertical; }
.n-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 640px) { .n-field-row { grid-template-columns: 1fr; } }
.n-form-note { font-size: .875rem; color: var(--n-muted); }
.n-formstatus {
  border-left: 3px solid var(--n-green);
  background: var(--n-frost);
  padding: .9rem 1.1rem;
  font-size: .9375rem;
  color: var(--n-forest);
  margin-bottom: 1.25rem;
}

.n-contact-list { list-style: none; margin: 0; padding: 0; }
.n-contact-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: .9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--n-line-soft);
  font-size: .9375rem;
}
.n-contact-list svg { color: var(--n-green); margin-top: .25rem; }
.n-contact-list a { color: var(--n-forest); text-decoration: none; border-bottom: 1px solid var(--n-frost-deep); }
.n-contact-list a:hover { color: var(--n-green-600); }
.n-contact-list strong {
  display: block;
  font-family: var(--n-display);
  font-size: .8125rem;
  color: var(--n-muted);
  font-weight: 600;
  margin-bottom: .1rem;
}

/* ---------------------------------------------------------------
   16. Page banner (interior pages)
--------------------------------------------------------------- */

.n-banner {
  background: var(--n-forest-900);
  color: rgba(255,255,255,.78);
  position: relative;
  overflow: hidden;
}
.n-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/favicon.png") right -30px top -40px / auto 150% no-repeat;
  opacity: .07;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.n-banner .n-shell { position: relative; padding-block: clamp(2.75rem, 5.5vw, 4.5rem); }
.n-banner h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 .85rem; }
.n-banner p { color: rgba(255,255,255,.74); max-width: 58ch; margin: 0; }
.n-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-family: var(--n-display);
  font-size: .8125rem;
}
.n-crumbs a { color: var(--n-green-300); text-decoration: none; }
.n-crumbs a:hover { color: #fff; }
.n-crumbs li + li::before { content: "/"; color: rgba(255,255,255,.35); margin-right: .5rem; }
.n-crumbs [aria-current] { color: rgba(255,255,255,.6); }

/* ---------------------------------------------------------------
   17. Footer
--------------------------------------------------------------- */

.n-footer {
  background: var(--n-forest-900);
  color: rgba(255,255,255,.66);
  padding-block: clamp(3rem, 5vw, 4.5rem) 0;
}
.n-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .n-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .n-footer-grid { grid-template-columns: 1fr; } }
.n-footer img.n-footer-logo { height: 58px; width: auto; display: block; margin-bottom: 1.1rem; }
.n-footer .n-footer-title {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: -.005em;
  margin: 0 0 1.1rem;
}
.n-footer ul { list-style: none; margin: 0; padding: 0; }
.n-footer li { margin-bottom: .55rem; font-size: .9375rem; }
.n-footer a { color: rgba(255,255,255,.66); text-decoration: none; }
.n-footer a:hover { color: #fff; }
.n-footer p { font-size: .9375rem; }
.n-footer .n-contact-list strong { color: rgba(255,255,255,.72); }
.n-footer .n-contact-list li { border-top-color: rgba(255,255,255,.14); }
.n-footer .n-contact-list a { border-bottom-color: rgba(255,255,255,.28); }
.n-footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.n-footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
}
.n-footer-social a:hover { background: var(--n-green); border-color: var(--n-green); color: #fff; }
.n-footer-bottom {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .8125rem;
  font-family: var(--n-display);
}
.n-footer-bottom a { color: rgba(255,255,255,.6); }

/* ---------------------------------------------------------------
   18. Quality floor — focus, motion, print
--------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
.n-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--n-green);
  outline-offset: 2px;
  border-radius: 2px;
}
.n-forest-bg a:focus-visible,
.n-hero a:focus-visible,
.n-footer a:focus-visible,
.n-banner a:focus-visible { outline-color: var(--n-green-300); }

.n-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--n-forest);
  color: #fff;
  padding: .75rem 1.1rem;
  z-index: 2000;
  font-family: var(--n-display);
  font-weight: 700;
}
.n-skip:focus { left: .5rem; top: .5rem; }

/* one orchestrated reveal, on the hero only */
@media (prefers-reduced-motion: no-preference) {
  .n-reveal > * {
    animation: n-rise .7s cubic-bezier(.22,.7,.3,1) backwards;
  }
  .n-reveal > :nth-child(1) { animation-delay: .05s; }
  .n-reveal > :nth-child(2) { animation-delay: .13s; }
  .n-reveal > :nth-child(3) { animation-delay: .21s; }
  .n-reveal > :nth-child(4) { animation-delay: .29s; }
  .n-reveal > :nth-child(5) { animation-delay: .37s; }
  @keyframes n-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.n-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* band anchors on the products page: the badge is the control */
.n-band-jump { display: flex; flex-wrap: wrap; gap: .6rem; }
.n-band-jump a {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: border-color .18s ease;
}
.n-band-jump a:hover { border-color: var(--n-forest); }
.n-band-jump .n-temp { padding: .45rem .8rem; font-size: .8125rem; }

/* packaging is an adjunct to the four food divisions, not a fifth of them */
.n-adjunct {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--n-line-soft);
  border-left: 3px solid var(--n-ochre);
  margin-top: 1.5rem;
}
.n-adjunct-figure { align-self: stretch; min-height: 220px; overflow: hidden; }
.n-adjunct-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.n-adjunct-body { padding: 1.75rem 1.9rem 1.75rem 0; }
.n-adjunct-body h3 { font-size: 1.35rem; margin: 0 0 .5rem; }
.n-adjunct-body p { font-size: .9375rem; margin: 0 0 1rem; max-width: 54ch; }
.n-adjunct-lines {
  list-style: none; margin: 0 0 1.1rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  font-family: var(--n-display); font-size: .8125rem; color: var(--n-body);
}
.n-adjunct-lines li::before { content: "4"; color: var(--n-ochre); margin-right: .45rem; }
@media (max-width: 760px) {
  .n-adjunct { grid-template-columns: 1fr; }
  .n-adjunct-body { padding: 1.5rem; }
  .n-adjunct-figure { min-height: 180px; }
}

/* ---------------------------------------------------------------
   19. Small utilities that used to be inline styles, so the page
       needs no style attributes and the CSP can stay tight
--------------------------------------------------------------- */

.n-sprite { display: none; }
.n-form-note--onDark { color: rgba(255, 255, 255, .6); }
.n-map {
  display: block;
  border: 1px solid var(--n-line);
  background: var(--n-frost);
}
