@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --nlo-paper: #F0EDE6;
  --nlo-white: #FFFFFF;
  --nlo-fog: #CAC5BC;
  --nlo-ground: #4A4540;
  --nlo-ink: #1A1A18;
  --nlo-ink-alt: #232320;
  --nlo-celadon: #7E9E8A;
  --nlo-celadon-deep: #5C7D6A;
  --nlo-warm-mist: #E8E4DC;

  --nlo-font-heading: 'Playfair Display', Georgia, serif;
  --nlo-font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  --nlo-size-display: clamp(2.5rem, 6vw, 4rem);
  --nlo-size-h1: clamp(2rem, 4.5vw, 3rem);
  --nlo-size-h2: clamp(1.6rem, 3.5vw, 2.25rem);
  --nlo-size-h3: clamp(1.1rem, 2vw, 1.5rem);
  --nlo-size-h4: 1.125rem;
  --nlo-size-body-lg: 1.125rem;
  --nlo-size-body: 1rem;
  --nlo-size-body-sm: 0.875rem;
  --nlo-size-label: 0.75rem;
  --nlo-size-price: 1.75rem;

  --nlo-radius: 2px;
  --nlo-radius-sm: 1px;
  --nlo-transition: 0.22s ease;

  --nlo-container: 1280px;
  --nlo-container-text: 720px;
  --nlo-gap: clamp(1.5rem, 4vw, 3rem);
  --nlo-section-pad: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--nlo-ink);
  background-color: var(--nlo-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--nlo-font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input, textarea, select {
  font-family: var(--nlo-font-body);
}


.nlo-container {
  width: 100%;
  max-width: var(--nlo-container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.nlo-container--narrow {
  max-width: 900px;
}

.nlo-container--text {
  max-width: var(--nlo-container-text);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.nlo-section {
  padding-block: var(--nlo-section-pad);
}

.nlo-section--paper {
  background-color: var(--nlo-paper);
  color: var(--nlo-ink);
}

.nlo-section--white {
  background-color: var(--nlo-white);
  color: var(--nlo-ink);
}

.nlo-section--warm-mist {
  background-color: var(--nlo-warm-mist);
  color: var(--nlo-ink);
}

.nlo-section--dark {
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
}

.nlo-section--ink {
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
}

.nlo-section--brand {
  background-color: var(--nlo-celadon);
  color: var(--nlo-ink);
}

.nlo-label {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-section--dark .nlo-label,
.nlo-section--ink .nlo-label {
  color: #9DBDAA;
}

.nlo-section--brand .nlo-label {
  color: var(--nlo-ink);
  opacity: 0.7;
}

.nlo-heading-display {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nlo-heading-1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.nlo-heading-2 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  line-height: 1.25;
}

.nlo-heading-3 {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h3);
  font-weight: 600;
  line-height: 1.3;
}

.nlo-heading-4 {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h4);
  font-weight: 600;
  line-height: 1.4;
}

.nlo-body-lg {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  line-height: 1.75;
}

.nlo-body-sm {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
}

.nlo-section--dark .nlo-body-sm,
.nlo-section--ink .nlo-body-sm {
  color: var(--nlo-fog);
}

.nlo-italic {
  font-style: italic;
}

.nlo-product-name {
  font-family: var(--nlo-font-heading);
  font-style: italic;
}


.nlo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: var(--nlo-radius);
  transition: background-color var(--nlo-transition), color var(--nlo-transition), border-color var(--nlo-transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.nlo-btn--primary {
  background-color: var(--nlo-celadon);
  color: var(--nlo-paper);
  border: 1.5px solid var(--nlo-celadon);
}

.nlo-btn--primary:hover {
  background-color: var(--nlo-celadon-deep);
  border-color: var(--nlo-celadon-deep);
  color: var(--nlo-paper);
}

.nlo-btn--outline-dark {
  background-color: transparent;
  color: var(--nlo-ink);
  border: 1.5px solid var(--nlo-ink);
}

.nlo-btn--outline-dark:hover {
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
}

.nlo-btn--ghost-on-dark {
  background-color: transparent;
  color: var(--nlo-paper);
  border: 1.5px solid rgba(240, 237, 230, 0.5);
}

.nlo-btn--ghost-on-dark:hover {
  border-color: var(--nlo-paper);
  background-color: rgba(240, 237, 230, 0.1);
  color: var(--nlo-paper);
}

.nlo-btn--ghost-on-light {
  background-color: transparent;
  color: var(--nlo-ground);
  border: 1.5px solid var(--nlo-fog);
}

.nlo-btn--ghost-on-light:hover {
  border-color: var(--nlo-ground);
  color: var(--nlo-ink);
}

.nlo-btn--text-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--nlo-celadon);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--nlo-transition), color var(--nlo-transition);
}

.nlo-btn--text-link:hover {
  text-decoration-color: var(--nlo-celadon);
  color: var(--nlo-celadon-deep);
}

.nlo-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}


.nlo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nlo-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.25rem;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: var(--nlo-container);
  margin-inline: auto;
}

.nlo-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.nlo-nav__logo img {
  height: 28px;
  width: auto;
}

.nlo-nav__logo-dark {
  display: none;
}

.nlo-nav__logo-light {
  display: block;
}

.nlo-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nlo-nav__link {
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--nlo-paper);
  transition: color var(--nlo-transition);
  position: relative;
}

.nlo-nav__link:hover {
  color: #9DBDAA;
}

.nlo-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: #9DBDAA;
  transition: right var(--nlo-transition);
}

.nlo-nav__link:hover::after {
  right: 0;
}

.nlo-nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nlo-nav__dropdown-icon {
  font-size: 0.6rem;
  transition: transform var(--nlo-transition);
}

.nlo-nav__dropdown:hover .nlo-nav__dropdown-icon,
.nlo-nav__dropdown.is-open .nlo-nav__dropdown-icon {
  transform: rotate(180deg);
}

.nlo-nav__dropdown {
  position: relative;
}

.nlo-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nlo-ink-alt);
  border: 1px solid rgba(240, 237, 230, 0.12);
  min-width: 180px;
  padding: 0.75rem 0 0.5rem;
  border-radius: var(--nlo-radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease 0.08s, transform 0.18s ease 0.08s;
  transform: translateX(-50%) translateY(-6px);
}

.nlo-nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nlo-nav__dropdown:hover .nlo-nav__dropdown-menu,
.nlo-nav__dropdown.is-open .nlo-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nlo-nav__dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 400;
  color: var(--nlo-fog);
  transition: color var(--nlo-transition), background-color var(--nlo-transition);
  letter-spacing: 0.04em;
}

.nlo-nav__dropdown-item:hover {
  color: var(--nlo-paper);
  background-color: rgba(240, 237, 230, 0.06);
}

.nlo-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
}

.nlo-nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--nlo-paper);
  font-size: 1rem;
  transition: color var(--nlo-transition);
  border-radius: 50%;
}

.nlo-nav__icon-btn:hover {
  color: #9DBDAA;
}

.nlo-nav__cta {
  font-size: var(--nlo-size-body-sm) !important;
  padding: 0.625rem 1.25rem !important;
}

.nlo-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nlo-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--nlo-paper);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color var(--nlo-transition);
}

.nlo-page--dark-top .nlo-nav {
  background-color: transparent;
}

.nlo-page--light-top .nlo-nav {
  background-color: var(--nlo-paper);
  box-shadow: 0 1px 0 rgba(26, 26, 24, 0.08);
}

.nlo-page--light-top .nlo-nav__logo-dark {
  display: block;
}

.nlo-page--light-top .nlo-nav__logo-light {
  display: none;
}

.nlo-page--light-top .nlo-nav__link {
  color: var(--nlo-ink);
}

.nlo-page--light-top .nlo-nav__link:hover {
  color: var(--nlo-celadon);
}

.nlo-page--light-top .nlo-nav__link::after {
  background: var(--nlo-celadon);
}

.nlo-page--light-top .nlo-nav__icon-btn {
  color: var(--nlo-ink);
}

.nlo-page--light-top .nlo-nav__icon-btn:hover {
  color: var(--nlo-celadon);
}

.nlo-page--light-top .nlo-nav__hamburger-bar {
  background-color: var(--nlo-ink);
}

.nlo-nav--scrolled {
  background-color: var(--nlo-ink) !important;
  box-shadow: 0 2px 20px rgba(26, 26, 24, 0.4) !important;
}

.nlo-nav--scrolled .nlo-nav__logo-dark {
  display: none !important;
}

.nlo-nav--scrolled .nlo-nav__logo-light {
  display: block !important;
}

.nlo-nav--scrolled .nlo-nav__link {
  color: var(--nlo-paper) !important;
}

.nlo-nav--scrolled .nlo-nav__link:hover {
  color: #9DBDAA !important;
}

.nlo-nav--scrolled .nlo-nav__link::after {
  background: #9DBDAA !important;
}

.nlo-nav--scrolled .nlo-nav__icon-btn {
  color: var(--nlo-paper) !important;
}

.nlo-nav--scrolled .nlo-nav__icon-btn:hover {
  color: #9DBDAA !important;
}

.nlo-nav--scrolled .nlo-nav__hamburger-bar {
  background-color: var(--nlo-paper) !important;
}

.nlo-nav--scrolled .nlo-btn--ghost-on-dark {
  color: var(--nlo-paper) !important;
  border-color: rgba(240, 237, 230, 0.5) !important;
}

.nlo-page--light-top .nlo-nav__cta.nlo-btn--primary {
  background-color: var(--nlo-celadon);
  color: var(--nlo-paper);
  border-color: var(--nlo-celadon);
}

.nlo-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--nlo-ink);
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  flex-direction: column;
  overflow-y: auto;
}

.nlo-mobile-menu.is-open {
  display: flex;
}

.nlo-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.nlo-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--nlo-paper);
  font-size: 1.25rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nlo-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nlo-mobile-menu__link {
  font-family: var(--nlo-font-heading);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--nlo-paper);
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(240, 237, 230, 0.1);
  transition: color var(--nlo-transition);
  letter-spacing: -0.01em;
}

.nlo-mobile-menu__link:hover {
  color: #9DBDAA;
}

.nlo-mobile-menu__sub {
  padding-left: 1.25rem;
}

.nlo-mobile-menu__sub-link {
  display: block;
  font-family: var(--nlo-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--nlo-fog);
  padding-block: 0.5rem;
  transition: color var(--nlo-transition);
  letter-spacing: 0.04em;
}

.nlo-mobile-menu__sub-link:hover {
  color: var(--nlo-paper);
}

.nlo-mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.nlo-footer {
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}

.nlo-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nlo-gap);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(240, 237, 230, 0.12);
}

.nlo-footer__col-heading {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-fog);
  margin-bottom: 1.25rem;
}

.nlo-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.nlo-footer__link {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  transition: color var(--nlo-transition);
  letter-spacing: 0.02em;
}

.nlo-footer__link:hover {
  color: var(--nlo-paper);
}

.nlo-footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nlo-footer__bottom-text {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  letter-spacing: 0.02em;
}

.nlo-footer__signature {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-body-sm);
  font-style: italic;
  color: var(--nlo-fog);
}

.nlo-footer__cookie-link {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--nlo-transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--nlo-font-body);
}

.nlo-footer__cookie-link:hover {
  color: var(--nlo-paper);
}


.nlo-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
  background-color: var(--nlo-ink);
}

.nlo-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--nlo-ink);
}

.nlo-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  mix-blend-mode: luminosity;
}

.nlo-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.nlo-hero__label {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 1.5rem;
  display: block;
}

.nlo-hero__h1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--nlo-paper);
  margin-bottom: 1.5rem;
}

.nlo-hero__sub {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--nlo-fog);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.nlo-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240, 237, 230, 0.4);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.nlo-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(240, 237, 230, 0.4), transparent);
}


.nlo-product-hero {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-product-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.nlo-product-hero__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius);
}

.nlo-product-hero__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.nlo-product-hero__label {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 0.875rem;
  display: block;
}

.nlo-product-hero__name {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.nlo-product-hero__tagline {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.nlo-product-hero__specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--nlo-celadon);
  background-color: var(--nlo-warm-mist);
}

.nlo-product-hero__spec {
  font-size: var(--nlo-size-body-sm);
  font-weight: 400;
  color: var(--nlo-ground);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nlo-product-hero__spec::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--nlo-celadon);
  border-radius: 50%;
  flex-shrink: 0;
}


.nlo-philosophy {
  padding-block: clamp(5rem, 10vw, 9rem);
  background-color: var(--nlo-ink);
  text-align: center;
}

.nlo-philosophy__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 2rem;
}

.nlo-philosophy__statement {
  font-family: var(--nlo-font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--nlo-paper);
  max-width: 760px;
  margin-inline: auto;
}

.nlo-philosophy__accent {
  color: #9DBDAA;
}


.nlo-collection-grid {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-collection-grid__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nlo-collection-grid__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
}

.nlo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nlo-product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.nlo-product-card:hover .nlo-product-card__img-secondary {
  opacity: 1;
}

.nlo-product-card:hover .nlo-product-card__img-primary {
  opacity: 0;
}

.nlo-product-card__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius);
  position: relative;
  margin-bottom: 1rem;
}

.nlo-product-card__img-primary,
.nlo-product-card__img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.nlo-product-card__img-secondary {
  opacity: 0;
}

.nlo-product-card__category {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 0.375rem;
}

.nlo-product-card__name {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.nlo-product-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--nlo-ink);
}

.nlo-product-card__quick-add {
  margin-top: 0.875rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nlo-product-card:hover .nlo-product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}


.nlo-science-intro {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-warm-mist);
}

.nlo-science-intro__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.nlo-science-intro__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.2;
}

.nlo-science-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nlo-science-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nlo-science-col__diagram {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.nlo-science-col__heading {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h3);
  font-weight: 600;
  color: var(--nlo-ink);
}

.nlo-science-col__body {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
}

.nlo-science-intro__cta {
  text-align: center;
}


.nlo-lifestyle-editorial {
  position: relative;
  overflow: hidden;
  background-color: var(--nlo-ink);
}

.nlo-lifestyle-editorial__img {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.75;
}

.nlo-lifestyle-editorial__caption {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.25rem, 5vw, 3rem);
  color: var(--nlo-paper);
}

.nlo-lifestyle-editorial__caption-primary {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  display: block;
  margin-bottom: 0.375rem;
}

.nlo-lifestyle-editorial__caption-sub {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  letter-spacing: 0.04em;
  display: block;
}


.nlo-journal-preview {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-journal-preview__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nlo-journal-preview__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
}

.nlo-journal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nlo-journal-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.nlo-journal-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius);
  margin-bottom: 1rem;
}

.nlo-journal-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.nlo-journal-card:hover .nlo-journal-card__image img {
  transform: scale(1.04);
}

.nlo-journal-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.nlo-journal-card__category {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-journal-card__date {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
}

.nlo-journal-card__title {
  font-family: var(--nlo-font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--nlo-ink);
  line-height: 1.4;
  transition: color var(--nlo-transition);
}

.nlo-journal-card:hover .nlo-journal-card__title {
  color: var(--nlo-celadon-deep);
}

.nlo-journal-card__excerpt {
  margin-top: 0.625rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.6;
}


.nlo-founder-note {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-ink);
}

.nlo-founder-note__split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.nlo-founder-note__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--nlo-ink-alt);
  border-radius: var(--nlo-radius);
}

.nlo-founder-note__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.nlo-founder-note__content {
  color: var(--nlo-paper);
}

.nlo-founder-note__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 1.75rem;
}

.nlo-founder-note__quote {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.625rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--nlo-paper);
  margin-bottom: 1.75rem;
}

.nlo-founder-note__attribution {
  font-size: var(--nlo-size-body-sm);
  font-weight: 400;
  color: var(--nlo-fog);
  letter-spacing: 0.04em;
}


.nlo-cta-strip {
  padding-block: clamp(4rem, 8vw, 6rem);
  background-color: var(--nlo-celadon);
  text-align: center;
}

.nlo-cta-strip__heading {
  font-family: var(--nlo-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.nlo-cta-strip .nlo-btn-group {
  justify-content: center;
}


.nlo-page-hero {
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.nlo-page-hero--paper {
  background-color: var(--nlo-paper);
}

.nlo-page-hero--dark {
  background-color: var(--nlo-ink);
}

.nlo-page-hero__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 1.25rem;
}

.nlo-page-hero--dark .nlo-page-hero__label {
  color: #9DBDAA;
}

.nlo-page-hero__h1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.nlo-page-hero--dark .nlo-page-hero__h1 {
  color: var(--nlo-paper);
}

.nlo-page-hero__sub {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  max-width: 640px;
  line-height: 1.7;
}

.nlo-page-hero--dark .nlo-page-hero__sub {
  color: var(--nlo-fog);
}

.nlo-page-hero__visual-accent {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nlo-page-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nlo-page-hero__stat-value {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--nlo-celadon);
  line-height: 1;
}

.nlo-page-hero__stat-label {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-ground);
}


.nlo-collection-header {
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background-color: var(--nlo-paper);
}

.nlo-collection-header__h1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  margin-bottom: 0.75rem;
}

.nlo-collection-header__sub {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  margin-bottom: 2rem;
  max-width: 560px;
}

.nlo-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1px;
}

.nlo-filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--nlo-ground);
  border: 1px solid var(--nlo-fog);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--nlo-transition);
  background: none;
  font-family: var(--nlo-font-body);
}

.nlo-filter-tab.is-active,
.nlo-filter-tab:hover {
  background-color: var(--nlo-ink);
  border-color: var(--nlo-ink);
  color: var(--nlo-paper);
}


.nlo-product-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-white);
}

.nlo-brand-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background-color: var(--nlo-ink);
}

.nlo-brand-strip__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.nlo-brand-strip__metrics::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 33.333%;
  right: 33.333%;
  height: 1px;
  background: rgba(240, 237, 230, 0.12);
  transform: translateY(-50%);
  display: none;
}

.nlo-brand-strip__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-right: 1px solid rgba(240, 237, 230, 0.12);
}

.nlo-brand-strip__metric:last-child {
  border-right: none;
}

.nlo-brand-strip__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--nlo-paper);
  line-height: 1;
  font-family: var(--nlo-font-heading);
}

.nlo-brand-strip__label {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-fog);
}


.nlo-product-detail {
  padding-block: clamp(3rem, 6vw, 5rem);
  background-color: var(--nlo-white);
}

.nlo-product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.nlo-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nlo-product-gallery__main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius);
  cursor: zoom-in;
}

.nlo-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nlo-product-gallery__main:hover img {
  transform: scale(1.04);
}

.nlo-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.nlo-product-gallery__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color var(--nlo-transition);
}

.nlo-product-gallery__thumb.is-active,
.nlo-product-gallery__thumb:hover {
  border-color: var(--nlo-celadon);
}

.nlo-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nlo-product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 5rem;
}

.nlo-product-info__category {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-product-info__name {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--nlo-ink);
  line-height: 1.2;
}

.nlo-product-info__price {
  font-size: var(--nlo-size-price);
  font-weight: 600;
  color: var(--nlo-ink);
  line-height: 1;
}

.nlo-product-info__divider {
  height: 1px;
  background-color: var(--nlo-fog);
  margin-block: 0.25rem;
}

.nlo-product-info__selector-label {
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--nlo-ground);
  margin-bottom: 0.625rem;
  display: block;
  text-transform: uppercase;
  font-size: var(--nlo-size-label);
}

.nlo-size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nlo-size-btn {
  min-width: 48px;
  height: 40px;
  padding-inline: 0.75rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  color: var(--nlo-ink);
  border: 1px solid var(--nlo-fog);
  border-radius: var(--nlo-radius);
  cursor: pointer;
  transition: all var(--nlo-transition);
  background: none;
  font-family: var(--nlo-font-body);
}

.nlo-size-btn:hover,
.nlo-size-btn.is-active {
  border-color: var(--nlo-ink);
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
}

.nlo-size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.nlo-width-selector {
  display: flex;
  gap: 0.5rem;
}

.nlo-width-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  color: var(--nlo-ink);
  border: 1px solid var(--nlo-fog);
  border-radius: var(--nlo-radius);
  cursor: pointer;
  transition: all var(--nlo-transition);
  background: none;
  font-family: var(--nlo-font-body);
  text-align: center;
}

.nlo-width-btn:hover,
.nlo-width-btn.is-active {
  border-color: var(--nlo-ink);
  background-color: var(--nlo-ink);
  color: var(--nlo-paper);
}

.nlo-add-to-cart-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background-color: var(--nlo-celadon);
  color: var(--nlo-paper);
  border: none;
  border-radius: var(--nlo-radius);
  cursor: pointer;
  transition: background-color var(--nlo-transition);
  font-family: var(--nlo-font-body);
}

.nlo-add-to-cart-btn:hover {
  background-color: var(--nlo-celadon-deep);
}

.nlo-specs-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--nlo-fog);
}

.nlo-accordion-item {
  border-bottom: 1px solid var(--nlo-fog);
}

.nlo-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 0.875rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  color: var(--nlo-ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--nlo-font-body);
  letter-spacing: 0.04em;
}

.nlo-accordion-trigger-icon {
  font-size: 0.75rem;
  transition: transform 0.22s ease;
  color: var(--nlo-ground);
}

.nlo-accordion-item.is-open .nlo-accordion-trigger-icon {
  transform: rotate(180deg);
}

.nlo-accordion-body {
  display: none;
  padding-bottom: 1rem;
}

.nlo-accordion-item.is-open .nlo-accordion-body {
  display: block;
}

.nlo-accordion-body p,
.nlo-accordion-body li {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}

.nlo-accordion-body ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.nlo-accordion-body li {
  margin-bottom: 0.25rem;
}


.nlo-specs-table-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-white);
}

.nlo-specs-table-section h2 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
}

.nlo-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.nlo-specs-table th,
.nlo-specs-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: var(--nlo-size-body-sm);
  border-bottom: 1px solid var(--nlo-fog);
}

.nlo-specs-table th {
  font-weight: 500;
  color: var(--nlo-ground);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--nlo-size-label);
  background-color: var(--nlo-warm-mist);
}

.nlo-specs-table td {
  font-weight: 400;
  color: var(--nlo-ink);
}

.nlo-specs-table tr:last-child td,
.nlo-specs-table tr:last-child th {
  border-bottom: none;
}


.nlo-size-guide-callout {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background-color: var(--nlo-warm-mist);
}

.nlo-size-guide-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.nlo-size-guide-callout__text {
  max-width: 540px;
}

.nlo-size-guide-callout__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h3);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 0.625rem;
}

.nlo-size-guide-callout__body {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}


.nlo-related-products {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-related-products__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.nlo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}


.nlo-story-hero {
  padding-top: clamp(8rem, 12vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background-color: var(--nlo-ink);
  position: relative;
}

.nlo-story-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, transparent, rgba(35, 35, 32, 0.4));
  pointer-events: none;
}

.nlo-founding-narrative {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-founding-narrative__split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.nlo-founding-narrative__timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 5rem;
}

.nlo-timeline-item__year {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 0.375rem;
  display: block;
}

.nlo-timeline-item__heading {
  font-family: var(--nlo-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--nlo-ink);
  line-height: 1.3;
}

.nlo-founding-narrative__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.nlo-narrative-chapter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nlo-narrative-chapter__text {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.8;
}

.nlo-narrative-chapter__image {
  border-radius: var(--nlo-radius);
  overflow: hidden;
}

.nlo-narrative-chapter__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.nlo-founder-portrait-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-warm-mist);
}

.nlo-founder-portrait-section__split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.nlo-founder-portrait-section__image {
  border-radius: var(--nlo-radius);
  overflow: hidden;
}

.nlo-founder-portrait-section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.nlo-founder-portrait-section__values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nlo-value-item__heading {
  font-family: var(--nlo-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nlo-ink);
  margin-bottom: 0.375rem;
}

.nlo-value-item__text {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}

.nlo-location-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-ink);
}

.nlo-location-section__content {
  max-width: 600px;
}

.nlo-location-section__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 1.25rem;
}

.nlo-location-section__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-paper);
  margin-bottom: 1.25rem;
}

.nlo-location-section__body {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-fog);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.nlo-location-section__address {
  font-style: normal;
  font-size: var(--nlo-size-body-sm);
  font-weight: 400;
  color: var(--nlo-fog);
  line-height: 1.8;
  border-left: 2px solid #9DBDAA;
  padding-left: 1rem;
}


.nlo-science-problem {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-white);
}

.nlo-science-problem__intro {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.nlo-science-problem__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 1rem;
}

.nlo-science-problem__sub {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
}

.nlo-science-diagrams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.nlo-science-diagram {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nlo-science-diagram__svg {
  height: 100px;
}

.nlo-science-diagram__heading {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h3);
  font-weight: 600;
  color: var(--nlo-ink);
}

.nlo-science-diagram__body {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
}

.nlo-science-solution {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-ink);
}

.nlo-science-solution__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 1.25rem;
}

.nlo-science-solution__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-paper);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
}

.nlo-science-solution__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nlo-science-principle {
  padding: 1.5rem;
  border: 1px solid rgba(240, 237, 230, 0.12);
  border-radius: var(--nlo-radius);
}

.nlo-science-principle__number {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #9DBDAA;
  margin-bottom: 0.75rem;
  display: block;
}

.nlo-science-principle__heading {
  font-family: var(--nlo-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nlo-paper);
  margin-bottom: 0.75rem;
}

.nlo-science-principle__body {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  line-height: 1.75;
}

.nlo-science-transition {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-science-transition__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 600px;
}

.nlo-transition-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nlo-transition-step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem;
  background-color: var(--nlo-warm-mist);
  border-radius: var(--nlo-radius);
}

.nlo-transition-step__week {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-transition-step__heading {
  font-family: var(--nlo-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nlo-ink);
}

.nlo-transition-step__body {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}

.nlo-science-references {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-warm-mist);
}

.nlo-science-references__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
}

.nlo-reference-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nlo-reference-card {
  padding: 1.5rem;
  background-color: var(--nlo-white);
  border-radius: var(--nlo-radius);
  color: inherit;
  text-decoration: none;
  display: block;
  transition: box-shadow var(--nlo-transition);
}

.nlo-reference-card:hover {
  box-shadow: 0 4px 20px rgba(26, 26, 24, 0.1);
}

.nlo-reference-card__source {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 0.625rem;
  display: block;
}

.nlo-reference-card__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--nlo-ink);
  line-height: 1.4;
}

.nlo-reference-card__year {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
}


.nlo-journal-masthead {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-color: var(--nlo-paper);
}

.nlo-journal-masthead__title {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nlo-ground);
  margin-bottom: 0.875rem;
  display: block;
}

.nlo-journal-masthead__tagline {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--nlo-ink);
  max-width: 600px;
}

.nlo-featured-article {
  padding-block: clamp(3rem, 6vw, 5rem);
  background-color: var(--nlo-white);
}

.nlo-featured-article-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.nlo-featured-article-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--nlo-radius);
  background-color: var(--nlo-warm-mist);
}

.nlo-featured-article-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.nlo-featured-article-card:hover .nlo-featured-article-card__image img {
  transform: scale(1.04);
}

.nlo-featured-article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nlo-featured-article-card__category {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-featured-article-card__date {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
}

.nlo-featured-article-card__title {
  font-family: var(--nlo-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--nlo-ink);
  line-height: 1.3;
  margin-bottom: 1rem;
  transition: color var(--nlo-transition);
}

.nlo-featured-article-card:hover .nlo-featured-article-card__title {
  color: var(--nlo-celadon-deep);
}

.nlo-featured-article-card__excerpt {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.nlo-article-grid-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-article-grid-section__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.nlo-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}


.nlo-article-page {
  background-color: var(--nlo-white);
}

.nlo-article-header {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background-color: var(--nlo-paper);
}

.nlo-article-header__category {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 1rem;
}

.nlo-article-header__title {
  font-family: var(--nlo-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--nlo-ink);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.nlo-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nlo-article-header__author,
.nlo-article-header__date,
.nlo-article-header__read-time {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
}

.nlo-article-header__meta-sep {
  color: var(--nlo-fog);
}

.nlo-article-cover {
  background-color: var(--nlo-white);
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.nlo-article-cover__img {
  width: 100%;
  height: auto;
  max-width: 960px;
  margin-inline: auto;
  border-radius: var(--nlo-radius);
  object-fit: cover;
  display: block;
}

.nlo-article-body {
  background-color: var(--nlo-white);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.nlo-article-body__content {
  max-width: var(--nlo-container-text);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.nlo-article-body__content h2 {
  font-family: var(--nlo-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nlo-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.nlo-article-body__content h3 {
  font-family: var(--nlo-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nlo-ink);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.nlo-article-body__content p {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ink);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.nlo-article-body__content ul,
.nlo-article-body__content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.nlo-article-body__content ol {
  list-style: decimal;
}

.nlo-article-body__content li {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ink);
  line-height: 1.8;
  margin-bottom: 0.375rem;
}

.nlo-article-body__content blockquote {
  border-left: 3px solid var(--nlo-celadon);
  padding-left: 1.5rem;
  margin-block: 2rem;
}

.nlo-article-body__content blockquote p {
  font-family: var(--nlo-font-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--nlo-ground);
}

.nlo-article-body__content img {
  width: 100%;
  height: auto;
  border-radius: var(--nlo-radius);
  margin-block: 1.5rem;
}

.nlo-related-articles {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-related-articles__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.nlo-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}


.nlo-fit-guide {
  background-color: var(--nlo-paper);
}

.nlo-sizing-chart {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-white);
}

.nlo-sizing-chart__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
}

.nlo-size-table-wrap {
  overflow-x: auto;
}

.nlo-size-table {
  width: 100%;
  min-width: 500px;
}

.nlo-size-table th,
.nlo-size-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: var(--nlo-size-body-sm);
  border-bottom: 1px solid var(--nlo-fog);
}

.nlo-size-table th {
  font-weight: 500;
  font-size: var(--nlo-size-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nlo-ground);
  background-color: var(--nlo-warm-mist);
}

.nlo-size-table td {
  color: var(--nlo-ink);
  font-weight: 400;
}

.nlo-measure-guide {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-warm-mist);
}

.nlo-measure-guide__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nlo-measure-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.nlo-measure-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nlo-measure-step__num {
  font-size: 3rem;
  font-weight: 600;
  color: var(--nlo-fog);
  line-height: 1;
  font-family: var(--nlo-font-heading);
}

.nlo-measure-step__heading {
  font-family: var(--nlo-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nlo-ink);
}

.nlo-measure-step__body {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}

.nlo-width-guide {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-width-guide__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.nlo-width-guide__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 1.25rem;
}

.nlo-width-guide__body {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.nlo-transition-timeline {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-ink);
}

.nlo-transition-timeline__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 1.25rem;
}

.nlo-transition-timeline__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-paper);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
}

.nlo-timeline-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nlo-timeline-week {
  padding: 1.5rem;
  border: 1px solid rgba(240, 237, 230, 0.12);
  border-radius: var(--nlo-radius);
}

.nlo-timeline-week__num {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9DBDAA;
  margin-bottom: 0.875rem;
  display: block;
}

.nlo-timeline-week__heading {
  font-family: var(--nlo-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nlo-paper);
  margin-bottom: 0.625rem;
}

.nlo-timeline-week__body {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  line-height: 1.7;
}


.nlo-returns-page {
  background-color: var(--nlo-paper);
}

.nlo-policy-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-white);
}

.nlo-policy-section__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
}

.nlo-policy-block {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nlo-policy-block h3 {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h4);
  font-weight: 600;
  color: var(--nlo-ink);
  margin-bottom: 0.375rem;
}

.nlo-policy-block p {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.75;
}

.nlo-policy-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.nlo-policy-block li {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.7;
}

.nlo-shipping-section {
  padding-block: var(--nlo-section-pad);
  background-color: var(--nlo-paper);
}

.nlo-shipping-section__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h2);
  font-weight: 400;
  color: var(--nlo-ink);
  margin-bottom: 2rem;
}

.nlo-shipping-table th,
.nlo-shipping-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: var(--nlo-size-body-sm);
  border-bottom: 1px solid var(--nlo-fog);
}

.nlo-shipping-table th {
  font-weight: 500;
  font-size: var(--nlo-size-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nlo-ground);
  background-color: var(--nlo-warm-mist);
}

.nlo-shipping-table td {
  color: var(--nlo-ink);
  font-weight: 400;
}


.nlo-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.nlo-contact-info__label {
  display: block;
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
  margin-bottom: 1.25rem;
}

.nlo-contact-info__h1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.nlo-contact-info__sub {
  font-size: var(--nlo-size-body-lg);
  font-weight: 300;
  color: var(--nlo-ground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.nlo-contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nlo-contact-info__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nlo-contact-info__detail-label {
  font-size: var(--nlo-size-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlo-celadon);
}

.nlo-contact-info__detail-value {
  font-size: var(--nlo-size-body);
  font-weight: 400;
  color: var(--nlo-ink);
}

.nlo-contact-form-wrap {
  background-color: var(--nlo-white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--nlo-radius);
  border: 1px solid var(--nlo-fog);
}

.nlo-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nlo-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nlo-form-label {
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  color: var(--nlo-ink);
  letter-spacing: 0.04em;
}

.nlo-form-input,
.nlo-form-textarea,
.nlo-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--nlo-size-body);
  font-weight: 400;
  font-family: var(--nlo-font-body);
  color: var(--nlo-ink);
  background-color: var(--nlo-paper);
  border: 1px solid var(--nlo-fog);
  border-radius: var(--nlo-radius);
  outline: none;
  transition: border-color var(--nlo-transition);
  -webkit-appearance: none;
}

.nlo-form-input:focus,
.nlo-form-textarea:focus,
.nlo-form-select:focus {
  border-color: var(--nlo-celadon);
}

.nlo-form-input::placeholder,
.nlo-form-textarea::placeholder {
  color: var(--nlo-fog);
}

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

.nlo-form-hint {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--nlo-ground);
  letter-spacing: 0.02em;
}


.nlo-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--nlo-paper);
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
}

.nlo-auth-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--nlo-white);
  border: 1px solid var(--nlo-fog);
  border-radius: var(--nlo-radius);
  padding: clamp(2rem, 5vw, 3rem);
}

.nlo-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.nlo-auth-card__logo img {
  height: 24px;
  width: auto;
}

.nlo-auth-card__heading {
  font-family: var(--nlo-font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--nlo-ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.nlo-auth-card__sub {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  text-align: center;
  margin-bottom: 2rem;
}

.nlo-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block: 1.25rem;
}

.nlo-auth-divider::before,
.nlo-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--nlo-fog);
}

.nlo-auth-divider__text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--nlo-ground);
}

.nlo-auth-card__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.nlo-auth-card__link {
  font-size: var(--nlo-size-body-sm);
  font-weight: 400;
  color: var(--nlo-ground);
}

.nlo-auth-card__link a {
  color: var(--nlo-celadon);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--nlo-transition);
}

.nlo-auth-card__link a:hover {
  color: var(--nlo-celadon-deep);
}

.nlo-auth-card__legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--nlo-fog);
  text-align: center;
}

.nlo-auth-card__legal p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.6;
}

.nlo-auth-card__legal a {
  color: var(--nlo-celadon);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--nlo-transition);
}

.nlo-auth-card__legal a:hover {
  color: var(--nlo-celadon-deep);
}


.nlo-legal-page {
  background-color: var(--nlo-white);
}

.nlo-legal-page main {
  background-color: var(--nlo-white);
  color: var(--nlo-ink);
}

.nlo-legal-header {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background-color: var(--nlo-paper);
}

.nlo-legal-header__heading {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  margin-bottom: 0.625rem;
}

.nlo-legal-body {
  padding-block: clamp(3rem, 6vw, 5rem);
  background-color: var(--nlo-white);
  color: var(--nlo-ink);
}

.nlo-legal-body .legal-article {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.nlo-legal-body .legal-header h1 {
  font-family: var(--nlo-font-heading);
  font-size: var(--nlo-size-h1);
  font-weight: 700;
  color: var(--nlo-ink);
  margin-bottom: 0.5rem;
}

.nlo-legal-body .legal-meta {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  margin-bottom: 0.25rem;
}

.nlo-legal-body section {
  margin-bottom: 2.5rem;
}

.nlo-legal-body h2 {
  font-family: var(--nlo-font-body);
  font-size: var(--nlo-size-h4);
  font-weight: 600;
  color: var(--nlo-ink);
  margin-bottom: 0.875rem;
  margin-top: 2rem;
}

.nlo-legal-body p {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.nlo-legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.nlo-legal-body li {
  font-size: var(--nlo-size-body);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.8;
  margin-bottom: 0.375rem;
}

.nlo-legal-body a {
  color: var(--nlo-celadon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nlo-legal-body a:hover {
  color: var(--nlo-celadon-deep);
}

.nlo-legal-body address {
  font-style: normal;
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-ground);
  line-height: 1.8;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--nlo-celadon);
  background-color: var(--nlo-paper);
  border-radius: 0 var(--nlo-radius) var(--nlo-radius) 0;
  margin-top: 1rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: var(--nlo-size-body-sm);
  border-bottom: 1px solid var(--nlo-fog);
  color: var(--nlo-ink);
}

.legal-table th {
  font-weight: 500;
  background-color: var(--nlo-warm-mist);
  color: var(--nlo-ground);
}


.nlo-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--nlo-ink-alt);
  border-top: 1px solid rgba(240, 237, 230, 0.12);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.125rem clamp(1.25rem, 5vw, 3rem);
  max-width: var(--nlo-container);
  margin-inline: auto;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: var(--nlo-size-body-sm);
  font-weight: 300;
  color: var(--nlo-fog);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #9DBDAA;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.625rem 1.375rem;
  font-size: var(--nlo-size-body-sm);
  font-weight: 500;
  font-family: var(--nlo-font-body);
  color: var(--nlo-paper);
  background-color: transparent;
  border: 1px solid rgba(240, 237, 230, 0.4);
  border-radius: var(--nlo-radius);
  cursor: pointer;
  transition: background-color var(--nlo-transition), border-color var(--nlo-transition);
  letter-spacing: 0.04em;
}

.cookie-banner__btn:hover {
  background-color: rgba(240, 237, 230, 0.1);
  border-color: var(--nlo-paper);
}


.nlo-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;
}

.nlo-text-center { text-align: center; }
.nlo-text-right { text-align: right; }

.nlo-mt-xs { margin-top: 0.5rem; }
.nlo-mt-sm { margin-top: 1rem; }
.nlo-mt-md { margin-top: 1.75rem; }
.nlo-mt-lg { margin-top: 2.5rem; }
.nlo-mt-xl { margin-top: 4rem; }

.nlo-mb-xs { margin-bottom: 0.5rem; }
.nlo-mb-sm { margin-bottom: 1rem; }
.nlo-mb-md { margin-bottom: 1.75rem; }
.nlo-mb-lg { margin-bottom: 2.5rem; }

.nlo-divider {
  height: 1px;
  background-color: var(--nlo-fog);
  margin-block: 1.5rem;
}

.nlo-list-plain {
  list-style: none;
  padding: 0;
}


@media (max-width: 1024px) {
  .nlo-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nlo-science-cols {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-science-diagrams {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-founding-narrative__split {
    grid-template-columns: 1fr;
  }

  .nlo-founding-narrative__timeline {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nlo-transition-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nlo-timeline-weeks {
    grid-template-columns: repeat(2, 1fr);
  }

  .nlo-reference-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nlo-science-solution__principles {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-founder-portrait-section__split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nlo-nav__links,
  .nlo-nav__actions {
    display: none;
  }

  .nlo-nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .nlo-hero__scroll-indicator {
    display: none;
  }

  .nlo-product-hero__split {
    grid-template-columns: 1fr;
  }

  .nlo-collection-grid__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nlo-journal-cards {
    grid-template-columns: 1fr;
  }

  .nlo-journal-preview__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nlo-founder-note__split {
    grid-template-columns: 1fr;
  }

  .nlo-founder-note__portrait {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .nlo-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nlo-brand-strip__metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nlo-brand-strip__metric {
    border-right: none;
    border-bottom: 1px solid rgba(240, 237, 230, 0.12);
    padding-bottom: 1.5rem;
  }

  .nlo-brand-strip__metric:last-child {
    border-bottom: none;
  }

  .nlo-product-detail__layout {
    grid-template-columns: 1fr;
  }

  .nlo-product-info {
    position: static;
  }

  .nlo-science-cols {
    grid-template-columns: 1fr;
  }

  .nlo-science-diagrams {
    grid-template-columns: 1fr;
  }

  .nlo-science-solution__principles {
    grid-template-columns: 1fr;
  }

  .nlo-transition-steps {
    grid-template-columns: 1fr;
  }

  .nlo-timeline-weeks {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-measure-steps {
    grid-template-columns: 1fr;
  }

  .nlo-width-guide__split {
    grid-template-columns: 1fr;
  }

  .nlo-reference-cards {
    grid-template-columns: 1fr;
  }

  .nlo-featured-article-card {
    grid-template-columns: 1fr;
  }

  .nlo-article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-related-grid {
    grid-template-columns: 1fr;
  }

  .nlo-contact-split {
    grid-template-columns: 1fr;
  }

  .nlo-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-related-products .nlo-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .nlo-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nlo-footer__grid {
    grid-template-columns: 1fr;
  }

  .nlo-article-grid {
    grid-template-columns: 1fr;
  }

  .nlo-timeline-weeks {
    grid-template-columns: 1fr;
  }

  .nlo-btn {
    width: 100%;
    justify-content: center;
  }

  .nlo-btn-group {
    flex-direction: column;
  }

  .nlo-hero__h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .nlo-related-products .nlo-related-grid {
    grid-template-columns: 1fr;
  }

  .nlo-size-guide-callout__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nlo-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


.nlo-auth-form {
  width: 100%;
}

.nlo-timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 26, 24, 0.1);
}

.nlo-timeline-item:last-child {
  border-bottom: none;
}

.nlo-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--nlo-fog);
}

.nlo-value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
