﻿.ncl-page {
  --ink: #243020;
  --moss: #465342;
  --moss-dark: #1f2d18;
  --sage: #93c48a;
  --paper: #fbfbf6;
  --white: #ffffff;
  --orange: #ff8500;
  --orange-dark: #ef7900;
  --yellow: #ffec62;
  --soft-yellow: #ffe86a;
  --radius: 8px;
  --max: 1540px;
}

.ncl-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

.ncl-page {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.28;
}

.ncl-page img,
.ncl-page video {
  display: block;
  max-width: 100%;
}

.ncl-page a {
  color: inherit;
  text-decoration: none;
}

.ncl-page button {
  font: inherit;
}

.ncl-site-header {
  position: sticky;
  z-index: 20;
  top: 16px;
  left: 0;
  width: min(calc(100% - 100px), var(--max));
  min-height: 58px;
  margin: 16px auto 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 28px 10px 30px;
  background: rgba(58, 70, 55, .88);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(21, 30, 21, .16);
  backdrop-filter: blur(12px);
}

.ncl-site-header.is-scrolled {
  background: rgba(58, 70, 55, .84);
}

.ncl-brand {
  display: flex;
  align-items: center;
  width: 174px;
  height: 38px;
}

.ncl-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.ncl-main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ncl-main-nav a {
  opacity: .95;
}

.ncl-main-nav a:hover {
  color: var(--yellow);
}

.ncl-nav-cta,
.ncl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.ncl-nav-cta {
  padding: 11px 19px;
  background: var(--orange);
  color: #141209;
}

.ncl-button {
  min-height: 30px;
  padding: 9px 17px;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease;
}

.ncl-button:hover {
  transform: translateY(-1px);
}

.ncl-button-primary {
  background: var(--orange);
  color: #1e1506;
}

.ncl-button-soft {
  background: var(--soft-yellow);
  color: #1f2619;
}

.ncl-section-shell {
  width: min(calc(100% - 100px), var(--max));
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 104px;
}

.ncl-hero {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
  background: #1e261f;
  color: var(--white);
}

.ncl-hero-media,
.ncl-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ncl-hero-media {
  object-fit: cover;
}

.ncl-hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 197, 39, .34), rgba(28, 35, 26, .08) 45%),
    linear-gradient(0deg, rgba(24, 32, 24, .52), rgba(244, 237, 173, .34));
}

.ncl-hero-content {
  position: relative;
  width: min(850px, calc(100% - 48px));
  text-align: center;
  padding-top: 26px;
}

.ncl-eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.ncl-eyebrow span {
  color: var(--orange);
  font-weight: 600;
  text-transform: none;
}

.ncl-eyebrow-yellow {
  color: var(--yellow);
}

.ncl-page h1,
.ncl-page h2,
.ncl-page h3 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
  line-height: .94;
  letter-spacing: 0;
}

.ncl-page h1 {
  max-width: 800px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: 62px;
  text-wrap: balance;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .34);
}

.ncl-page h2 {
  font-size: 60px;
}

.ncl-split-band,
.ncl-stories-band {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: stretch;
  background: var(--sage);
}

.ncl-intro {
  min-height: 510px;
}

.ncl-intro-copy,
.ncl-stories-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5.4vw, 70px) clamp(34px, 5vw, 72px);
}

.ncl-intro-copy p:not(.ncl-eyebrow),
.ncl-stories-copy p:not(.ncl-eyebrow) {
  max-width: 540px;
  margin: 24px 0 18px;
  color: #253123;
}

.ncl-intro-copy .ncl-button,
.ncl-stories-copy .ncl-button {
  align-self: flex-start;
}

.ncl-intro-media,
.ncl-stories-image {
  min-height: 390px;
  padding: 28px;
}

.ncl-intro-media img,
.ncl-stories-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.ncl-intro-media img {
  object-position: 52% 44%;
}

.ncl-work {
  overflow: visible;
  padding-top: 4px;
}

.ncl-section-heading {
  max-width: 620px;
  margin-bottom: 14px;
}

.ncl-section-heading h2 {
  font-size: 62px;
}

.ncl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 18px 0 12px;
  color: #273125;
  font-size: 14px;
  font-weight: 500;
}

.ncl-tabs a.is-active {
  color: var(--orange-dark);
  font-weight: 800;
}

.ncl-work-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ncl-work-viewport::-webkit-scrollbar {
  display: none;
}

.ncl-work-track {
  display: flex;
  gap: 16px;
  min-width: max-content;
  padding: 0 0 8px;
}

.ncl-work-card {
  position: relative;
  width: clamp(620px, 46vw, 760px);
  min-height: 360px;
  flex: 0 0 clamp(620px, 46vw, 760px);
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  scroll-snap-align: start;
}

.ncl-work-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ncl-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(25, 34, 22, .18), rgba(25, 34, 22, .86));
}

.ncl-work-card div {
  position: absolute;
  left: 32px;
  right: 30px;
  bottom: 30px;
  color: var(--yellow);
}

.ncl-work-card h3 {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 42px;
}

.ncl-work-card p {
  max-width: 580px;
  margin: 0;
  font-size: 14px;
  line-height: 1.12;
}

.ncl-work-controls {
  display: flex;
  gap: 9px;
  margin-top: 4px;
}

.ncl-work-arrow {
  min-width: 44px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #1e1506;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.ncl-work-arrow:disabled {
  opacity: .36;
  cursor: default;
}

.ncl-values {
  padding: 8px 0 38px;
  text-align: center;
  overflow: visible;
}

.ncl-values h2 {
  margin-bottom: 24px;
  font-size: 54px;
}

.ncl-values-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.ncl-values-grid div {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  grid-column: span 4;
  border-radius: var(--radius);
  background: var(--moss-dark);
  color: var(--yellow);
  font-size: 29px;
  font-weight: 800;
  line-height: .98;
}

.ncl-values-grid div:nth-child(n+4) {
  grid-column: span 3;
}

.ncl-values-grid .ncl-accent {
  color: var(--orange);
}

.ncl-stories-band {
  margin-top: 18px;
  min-height: 505px;
}

.ncl-stories-image img {
  object-position: 50% 42%;
}

.ncl-support {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  color: var(--white);
  isolation: isolate;
}

.ncl-support img,
.ncl-support-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ncl-support img {
  z-index: -3;
  object-fit: cover;
}

.ncl-support-overlay {
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(26, 32, 20, .56), rgba(26, 32, 20, .56)),
    radial-gradient(circle at 50% 48%, rgba(255, 133, 0, .18), transparent 46%);
}

.ncl-support-content {
  width: min(840px, calc(100% - 40px));
  text-align: center;
}

.ncl-support h2 {
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 59px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .34);
}

.ncl-site-footer {
  width: min(calc(100% - 100px), var(--max));
  margin: 0 auto 34px;
  padding: 36px 0 30px;
  color: var(--ink);
}

.ncl-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.ncl-footer-brand img {
  width: 126px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.ncl-footer-brand p {
  margin: 0;
  font-weight: 800;
}

.ncl-footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(36, 48, 32, .18);
  padding-top: 24px;
}

.ncl-footer-columns h3 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 24px;
  text-transform: uppercase;
}

.ncl-footer-columns p,
.ncl-footer-columns a {
  display: block;
  margin: 0 0 8px;
  color: #3d4939;
  font-size: 14px;
  font-weight: 700;
}

.ncl-menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
}

.ncl-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

@media (max-width: 900px) {
  .ncl-site-header,
  .ncl-section-shell,
  .ncl-site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .ncl-site-header {
    top: 10px;
    margin-top: 12px;
    padding: 9px 14px 9px 18px;
  }

  .ncl-brand {
    width: 162px;
  }

  .ncl-menu-toggle {
    display: block;
  }

  .ncl-main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(58, 70, 55, .96);
  }

  .ncl-main-nav.is-open {
    display: flex;
  }

  .ncl-main-nav a {
    padding: 12px 10px;
  }

  .ncl-nav-cta {
    margin-top: 4px;
  }

  .ncl-hero {
    min-height: 610px;
  }

  .ncl-page h1 {
    font-size: 50px;
  }

  .ncl-page h2,
  .ncl-section-heading h2,
  .ncl-support h2 {
    font-size: 45px;
  }

  .ncl-split-band,
  .ncl-stories-band {
    grid-template-columns: 1fr;
  }

  .ncl-intro-media,
  .ncl-stories-image {
    min-height: 330px;
    padding-top: 0;
  }

  .ncl-work-card {
    width: calc(100vw - 56px);
    flex-basis: calc(100vw - 56px);
  }

  .ncl-values-grid {
    grid-template-columns: 1fr;
  }

  .ncl-values-grid div,
  .ncl-values-grid div:nth-child(n+4) {
    grid-column: auto;
  }

  .ncl-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 94px;
  }

  .ncl-site-header,
  .ncl-section-shell,
  .ncl-site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .ncl-brand {
    width: 150px;
  }

  .ncl-hero {
    min-height: 560px;
  }

  .ncl-hero-content {
    text-align: left;
  }

  .ncl-page h1 {
    font-size: 43px;
  }

  .ncl-page h2,
  .ncl-section-heading h2,
  .ncl-support h2,
  .ncl-values h2 {
    font-size: 38px;
  }

  .ncl-eyebrow {
    font-size: 21px;
  }

  .ncl-intro-copy,
  .ncl-stories-copy {
    padding: 32px 22px;
  }

  .ncl-intro-media,
  .ncl-stories-image {
    padding: 0 22px 22px;
  }

  .ncl-tabs {
    gap: 10px 14px;
    font-size: 13px;
  }

  .ncl-work-card {
    min-height: 360px;
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
  }

  .ncl-work-card div {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .ncl-work-card h3 {
    font-size: 34px;
  }

  .ncl-work-card p {
    font-size: 13px;
  }

  .ncl-values-grid div {
    min-height: 72px;
    font-size: 25px;
  }

  .ncl-footer-brand {
    align-items: flex-start;
  }

  .ncl-footer-columns {
    grid-template-columns: 1fr;
  }
}

